Skip to content

Commit 69c24aa

Browse files
committed
updating benchmarks in 4.3 to the sync
1 parent 40f6e0f commit 69c24aa

File tree

6 files changed

+81
-167
lines changed

6 files changed

+81
-167
lines changed

benchmarks/online-inference-pipeline/1_fraud_online_feature_pipeline.ipynb

Lines changed: 11 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@
101101
"source": [
102102
"# Read the profiles data from a CSV file\n",
103103
"profiles_df = pd.read_csv(\n",
104-
" \"https://repo.hops.works/branch-4.3/hopsworks-tutorials/data/card_fraud_online/profiles.csv\", \n",
104+
" \"https://repo.hops.works/master/hopsworks-tutorials/data/card_fraud_online/profiles.csv\", \n",
105105
" parse_dates=[\"birthdate\"],\n",
106106
")\n",
107107
"\n",
@@ -223,7 +223,7 @@
223223
"source": [
224224
"# Read the transactions data from a CSV file\n",
225225
"trans_df = pd.read_csv(\n",
226-
" \"https://repo.hops.works/branch-4.3/hopsworks-tutorials/data/card_fraud_online/transactions.csv\", \n",
226+
" \"https://repo.hops.works/master/hopsworks-tutorials/data/card_fraud_online/transactions.csv\", \n",
227227
" parse_dates=[\"datetime\"],\n",
228228
")\n",
229229
"\n",
@@ -418,11 +418,11 @@
418418
"name": "stdout",
419419
"output_type": "stream",
420420
"text": [
421-
"2025-06-26 10:51:40,162 INFO: Initializing external client\n",
422-
"2025-06-26 10:51:40,162 INFO: Base URL: https://10.87.42.15:28181\n",
423-
"2025-06-26 10:51:40,956 INFO: Python Engine initialized.\n",
421+
"2025-06-26 17:24:25,984 INFO: Initializing external client\n",
422+
"2025-06-26 17:24:25,984 INFO: Base URL: https://10.87.43.79:28181\n",
423+
"2025-06-26 17:24:26,739 INFO: Python Engine initialized.\n",
424424
"\n",
425-
"Logged in to project, explore it here https://10.87.42.15:28181/p/119\n"
425+
"Logged in to project, explore it here https://10.87.43.79:28181/p/119\n"
426426
]
427427
}
428428
],
@@ -463,14 +463,14 @@
463463
"output_type": "stream",
464464
"text": [
465465
"Feature Group created successfully, explore it at \n",
466-
"https://10.87.42.15:28181/p/119/fs/67/fg/1037\n"
466+
"https://10.87.43.79:28181/p/119/fs/67/fg/13\n"
467467
]
468468
},
469469
{
470470
"name": "stderr",
471471
"output_type": "stream",
472472
"text": [
473-
"Uploading Dataframe: 100.00% |█████████████████████████████████████████████████████████████████████████████████████████████████| Rows 365112/365112 | Elapsed Time: 02:18 | Remaining Time: 00:00\n"
473+
"Uploading Dataframe: 100.00% |█████████████████████████████████████████████████████████████████████████████████████████████████| Rows 365112/365112 | Elapsed Time: 02:06 | Remaining Time: 00:00\n"
474474
]
475475
},
476476
{
@@ -479,7 +479,7 @@
479479
"text": [
480480
"Launching job: transactions_fraud_online_fg_1_offline_fg_materialization\n",
481481
"Job started successfully, you can follow the progress at \n",
482-
"https://10.87.42.15:28181/p/119/jobs/named/transactions_fraud_online_fg_1_offline_fg_materialization/executions\n",
482+
"https://10.87.43.79:28181/p/119/jobs/named/transactions_fraud_online_fg_1_offline_fg_materialization/executions\n",
483483
"✅ Done!\n"
484484
]
485485
}
@@ -532,7 +532,7 @@
532532
"output_type": "stream",
533533
"text": [
534534
"Feature Group created successfully, explore it at \n",
535-
"https://10.87.42.15:28181/p/119/fs/67/fg/1038\n"
535+
"https://10.87.43.79:28181/p/119/fs/67/fg/14\n"
536536
]
537537
},
538538
{
@@ -548,7 +548,7 @@
548548
"text": [
549549
"Launching job: profile_fraud_online_fg_1_offline_fg_materialization\n",
550550
"Job started successfully, you can follow the progress at \n",
551-
"https://10.87.42.15:28181/p/119/jobs/named/profile_fraud_online_fg_1_offline_fg_materialization/executions\n",
551+
"https://10.87.43.79:28181/p/119/jobs/named/profile_fraud_online_fg_1_offline_fg_materialization/executions\n",
552552
"✅ Done!\n"
553553
]
554554
}
@@ -584,28 +584,6 @@
584584
" profile_fg.update_feature_description(desc[\"name\"], desc[\"description\"])"
585585
]
586586
},
587-
{
588-
"cell_type": "code",
589-
"execution_count": 13,
590-
"id": "25199ca6-a3ad-4780-8cc9-580549bc204a",
591-
"metadata": {},
592-
"outputs": [
593-
{
594-
"ename": "AttributeError",
595-
"evalue": "'Project' object has no attribute '_api_key_value'",
596-
"output_type": "error",
597-
"traceback": [
598-
"\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
599-
"\u001b[0;31mAttributeError\u001b[0m Traceback (most recent call last)",
600-
"Cell \u001b[0;32mIn[13], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m \u001b[43mproject\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_api_key_value\u001b[49m\n",
601-
"\u001b[0;31mAttributeError\u001b[0m: 'Project' object has no attribute '_api_key_value'"
602-
]
603-
}
604-
],
605-
"source": [
606-
"project._api_key_value"
607-
]
608-
},
609587
{
610588
"cell_type": "code",
611589
"execution_count": null,

0 commit comments

Comments
 (0)