nyan102 commited on
Commit
5dac231
·
verified ·
1 Parent(s): 6f3fd85

Upload /kaggle/working//__notebook__.ipynb with huggingface_hub

Browse files
Files changed (1) hide show
  1. kaggle/working/__notebook__.ipynb +221 -177
kaggle/working/__notebook__.ipynb CHANGED
@@ -2,13 +2,13 @@
2
  "cells": [
3
  {
4
  "cell_type": "markdown",
5
- "id": "ade69838",
6
  "metadata": {
7
  "papermill": {
8
- "duration": 0.012174,
9
- "end_time": "2025-04-28T15:42:15.220051",
10
  "exception": false,
11
- "start_time": "2025-04-28T15:42:15.207877",
12
  "status": "completed"
13
  },
14
  "tags": []
@@ -36,19 +36,19 @@
36
  {
37
  "cell_type": "code",
38
  "execution_count": 1,
39
- "id": "4c77afbf",
40
  "metadata": {
41
  "execution": {
42
- "iopub.execute_input": "2025-04-28T15:42:15.244207Z",
43
- "iopub.status.busy": "2025-04-28T15:42:15.243969Z",
44
- "iopub.status.idle": "2025-04-28T15:42:15.251458Z",
45
- "shell.execute_reply": "2025-04-28T15:42:15.250708Z"
46
  },
47
  "papermill": {
48
- "duration": 0.02119,
49
- "end_time": "2025-04-28T15:42:15.252943",
50
  "exception": false,
51
- "start_time": "2025-04-28T15:42:15.231753",
52
  "status": "completed"
53
  },
54
  "tags": []
@@ -62,19 +62,19 @@
62
  {
63
  "cell_type": "code",
64
  "execution_count": 2,
65
- "id": "bf2ef8c0",
66
  "metadata": {
67
  "execution": {
68
- "iopub.execute_input": "2025-04-28T15:42:15.277238Z",
69
- "iopub.status.busy": "2025-04-28T15:42:15.277016Z",
70
- "iopub.status.idle": "2025-04-28T15:42:19.428177Z",
71
- "shell.execute_reply": "2025-04-28T15:42:19.427280Z"
72
  },
73
  "papermill": {
74
- "duration": 4.165551,
75
- "end_time": "2025-04-28T15:42:19.430176",
76
  "exception": false,
77
- "start_time": "2025-04-28T15:42:15.264625",
78
  "status": "completed"
79
  },
80
  "tags": []
@@ -85,48 +85,58 @@
85
  "output_type": "stream",
86
  "text": [
87
  "配置文件已创建\n",
88
- "正在启动frp ,端口17860\n",
89
- "正在启动frp ,端口27860\n"
90
- ]
91
- },
92
- {
93
- "name": "stderr",
94
- "output_type": "stream",
95
- "text": [
96
- "cp: cannot stat '/kaggle/input/d/yiyiooo/net-tools/frpc': No such file or directory\n"
97
  ]
98
  },
99
  {
100
  "name": "stdout",
101
  "output_type": "stream",
102
  "text": [
103
- "2025/04/28 15:42:15 [I] frpc version: 0.51.0-sakura-9.2 (built: 2024-10-14 19:50)\n",
104
- "2025/04/28 15:42:15 [I] 检查更新中...\n",
105
- "2025/04/28 15:42:15 [I] 出现错误, 请打开 https://doc.natfrp.com 查看帮助文档\n",
106
- "2025/04/28 15:42:15 [W] 更新检查失败: API is not initialized\n",
107
- "2025/04/28 15:42:15 [I] 正在连接节点 [45.194.32.78, tcp]\n",
108
- "2025/04/28 15:42:15 [I] frpc version: 0.51.0-sakura-9.2 (built: 2024-10-14 19:50)\n",
109
- "2025/04/28 15:42:15 [I] 检查更新中...\n",
110
- "2025/04/28 15:42:15 [I] 出现错误, 请打开 https://doc.natfrp.com 查看帮助文档\n",
111
- "2025/04/28 15:42:15 [W] 更新检查失败: API is not initialized\n",
112
- "2025/04/28 15:42:15 [I] 正在连接节点 [45.194.32.78, tcp]\n"
 
 
 
 
 
 
 
 
 
 
 
 
113
  ]
114
  }
115
  ],
116
  "source": [
117
  "# 使用的库\n",
 
 
 
 
 
118
  "import subprocess\n",
119
  "import os\n",
120
  "import threading\n",
121
  "\n",
122
  "use_frpc = True\n",
123
  "frp_token = \"BiliBili_Nyan9\" # 这里填服务器密码(token)\n",
124
- "port1 = \"17860\" # 这里填第一个端口\n",
125
- "port2 = \"27860\" # 这里填第二个端口\n",
126
  "\n",
127
  "config1 = f\"\"\"\n",
128
  "[common]\n",
129
- "server_addr = 45.194.32.78\n",
130
  "server_port = 7000\n",
131
  "token = {frp_token} \n",
132
  "heartbeat_interval = 30\n",
@@ -142,7 +152,7 @@
142
  "\n",
143
  "config2 = f\"\"\"\n",
144
  "[common]\n",
145
- "server_addr = 45.194.32.78\n",
146
  "server_port = 7000\n",
147
  "token = {frp_token} \n",
148
  "heartbeat_interval = 30\n",
@@ -161,8 +171,8 @@
161
  "with open('./cyanfrp2.ini', 'w') as config_file:\n",
162
  " config_file.write(config2)\n",
163
  "print(f\"配置文件已创建\")\n",
164
- "subprocess.run(['cp', '/kaggle/input/d/yiyiooo/net-tools/frpc', '/kaggle/working'])\n",
165
- "subprocess.run(['cp', '/kaggle/input/net-tools/frpc', '/kaggle/working'])\n",
166
  "subprocess.run(['chmod', '+x', '/kaggle/working/frpc'], check=True)\n",
167
  "def install_Frpc(file_path, port, use_frpc, log_file_path):\n",
168
  " if use_frpc:\n",
@@ -183,19 +193,19 @@
183
  {
184
  "cell_type": "code",
185
  "execution_count": 3,
186
- "id": "f7c477da",
187
  "metadata": {
188
  "execution": {
189
- "iopub.execute_input": "2025-04-28T15:42:19.457937Z",
190
- "iopub.status.busy": "2025-04-28T15:42:19.457469Z",
191
- "iopub.status.idle": "2025-04-28T15:42:23.485885Z",
192
- "shell.execute_reply": "2025-04-28T15:42:23.484921Z"
193
  },
194
  "papermill": {
195
- "duration": 4.042773,
196
- "end_time": "2025-04-28T15:42:23.487645",
197
  "exception": false,
198
- "start_time": "2025-04-28T15:42:19.444872",
199
  "status": "completed"
200
  },
201
  "tags": []
@@ -207,7 +217,7 @@
207
  "text": [
208
  "配置文件已创建\n",
209
  "正在启动frp ,端口51419\n",
210
- "正在启动frp ,端口5141\n"
211
  ]
212
  },
213
  {
@@ -222,18 +232,18 @@
222
  "name": "stdout",
223
  "output_type": "stream",
224
  "text": [
225
- "2025/04/28 15:42:19 [I] frpc version: 0.51.0-sakura-9.2 (built: 2024-10-14 19:50)\n",
226
- "2025/04/28 15:42:19 [I] 检查更新中...\n",
227
- "2025/04/28 15:42:19 [I] 出现错误, 请打开 https://doc.natfrp.com 查看帮助文档\n",
228
- "2025/04/28 15:42:19 [W] 更新检查失败: API is not initialized\n",
229
- "2025/04/28 15:42:19 [I] 正在连接节点 [128.204.223.114, tcp]\n",
230
- "2025/04/28 15:42:19 [W] 登录节点失败: dial tcp 128.204.223.114:31000: connect: connection refused, 请检查网络连接\n",
231
- "2025/04/28 15:42:19 [I] frpc version: 0.51.0-sakura-9.2 (built: 2024-10-14 19:50)\n",
232
- "2025/04/28 15:42:19 [I] 检查更新中...\n",
233
- "2025/04/28 15:42:19 [I] 出现错误, 请打开 https://doc.natfrp.com 查看帮助文档\n",
234
- "2025/04/28 15:42:19 [W] 更新检查失败: API is not initialized\n",
235
- "2025/04/28 15:42:19 [I] 正在连接节点 [128.204.223.114, tcp]\n",
236
- "2025/04/28 15:42:19 [W] 登录节点失败: dial tcp 128.204.223.114:31000: connect: connection refused, 请检查网络连接\n"
237
  ]
238
  }
239
  ],
@@ -246,7 +256,7 @@
246
  "use_frpc = True\n",
247
  "frp_token = \"Qq2575044704\" # 这里填服务器密码(token)\n",
248
  "port1 = \"51419\" # 这里填第一个端口\n",
249
- "port2 = \"5141\" # 这里填第二个端口\n",
250
  "\n",
251
  "config1 = f\"\"\"\n",
252
  "[common]\n",
@@ -306,24 +316,58 @@
306
  {
307
  "cell_type": "code",
308
  "execution_count": 4,
309
- "id": "38b0fbf3",
310
  "metadata": {
311
  "execution": {
312
- "iopub.execute_input": "2025-04-28T15:42:23.514270Z",
313
- "iopub.status.busy": "2025-04-28T15:42:23.514006Z",
314
- "iopub.status.idle": "2025-04-28T15:42:26.544797Z",
315
- "shell.execute_reply": "2025-04-28T15:42:26.543837Z"
316
  },
317
  "papermill": {
318
- "duration": 3.04627,
319
- "end_time": "2025-04-28T15:42:26.546740",
320
  "exception": false,
321
- "start_time": "2025-04-28T15:42:23.500470",
322
  "status": "completed"
323
  },
324
  "tags": []
325
  },
326
- "outputs": [],
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
327
  "source": [
328
  "\n",
329
  "def read_hftoken_file():\n",
@@ -332,27 +376,29 @@
332
  " hftoken = file.read()\n",
333
  "\n",
334
  "read_hftoken_file()\n",
 
335
  "!echo \"echo '欢迎使用Kaggle免费显卡服务器,人人都可以有免费显卡。本人作者首页:https://www.kaggle.com/qq2575044704' \" >> ~/.bashrc\n",
336
  "!echo \"echo '你已成功连接,显卡运行状态↓↓↓↓↓↓↓↓' && /opt/bin/nvidia-smi && echo ↑↑↑↑↑↑↑↑ && echo -e '系统信息:' && neofetch\" >> ~/.bashrc\n",
337
- "!echo \"echo 'Kaggle服务器SSH连接脚本by Nyan9。服务器完全免费,禁止在服务器进行挖矿,搭建VPN服务等违法法律行为。禁止滥用Kaggle平台的谷歌公益显卡资源,账号被封后果自负,请妥善保管好ssh密码,请勿泄露给他人。更新时间 2022年11月20日' \" >> ~/.bashrc"
 
338
  ]
339
  },
340
  {
341
  "cell_type": "code",
342
  "execution_count": 5,
343
- "id": "999cf3e3",
344
  "metadata": {
345
  "execution": {
346
- "iopub.execute_input": "2025-04-28T15:42:26.573467Z",
347
- "iopub.status.busy": "2025-04-28T15:42:26.572860Z",
348
- "iopub.status.idle": "2025-04-28T15:42:27.114139Z",
349
- "shell.execute_reply": "2025-04-28T15:42:27.113217Z"
350
  },
351
  "papermill": {
352
- "duration": 0.55743,
353
- "end_time": "2025-04-28T15:42:27.117017",
354
  "exception": false,
355
- "start_time": "2025-04-28T15:42:26.559587",
356
  "status": "completed"
357
  },
358
  "tags": []
@@ -408,19 +454,19 @@
408
  {
409
  "cell_type": "code",
410
  "execution_count": 6,
411
- "id": "e8e6290d",
412
  "metadata": {
413
  "execution": {
414
- "iopub.execute_input": "2025-04-28T15:42:27.146839Z",
415
- "iopub.status.busy": "2025-04-28T15:42:27.146390Z",
416
- "iopub.status.idle": "2025-04-28T15:42:27.359591Z",
417
- "shell.execute_reply": "2025-04-28T15:42:27.358884Z"
418
  },
419
  "papermill": {
420
- "duration": 0.228462,
421
- "end_time": "2025-04-28T15:42:27.361321",
422
  "exception": false,
423
- "start_time": "2025-04-28T15:42:27.132859",
424
  "status": "completed"
425
  },
426
  "tags": []
@@ -526,7 +572,7 @@
526
  " import os\n",
527
  " !sudo apt update\n",
528
  " # Install and start ssh-server\n",
529
- " !sudo apt install -y openssh-server\n",
530
  " !sudo service ssh status\n",
531
  " !sudo service ssh start\n",
532
  " !sudo service ssh status\n",
@@ -568,19 +614,19 @@
568
  {
569
  "cell_type": "code",
570
  "execution_count": 7,
571
- "id": "5e80a26f",
572
  "metadata": {
573
  "execution": {
574
- "iopub.execute_input": "2025-04-28T15:42:27.387220Z",
575
- "iopub.status.busy": "2025-04-28T15:42:27.386994Z",
576
- "iopub.status.idle": "2025-04-28T15:42:51.000829Z",
577
- "shell.execute_reply": "2025-04-28T15:42:50.999748Z"
578
  },
579
  "papermill": {
580
- "duration": 23.629094,
581
- "end_time": "2025-04-28T15:42:51.003120",
582
  "exception": false,
583
- "start_time": "2025-04-28T15:42:27.374026",
584
  "status": "completed"
585
  },
586
  "tags": []
@@ -742,13 +788,7 @@
742
  "output_type": "stream",
743
  "text": [
744
  "Selecting previously unselected package libgoogle-perftools4.\r\n",
745
- "Preparing to unpack libgoogle-perftools4_2.5-2.2ubuntu3_amd64.deb ...\r\n"
746
- ]
747
- },
748
- {
749
- "name": "stdout",
750
- "output_type": "stream",
751
- "text": [
752
  "Unpacking libgoogle-perftools4 (2.5-2.2ubuntu3) ...\r\n"
753
  ]
754
  },
@@ -756,13 +796,7 @@
756
  "name": "stdout",
757
  "output_type": "stream",
758
  "text": [
759
- "Selecting previously unselected package libtcmalloc-minimal4.\r\n"
760
- ]
761
- },
762
- {
763
- "name": "stdout",
764
- "output_type": "stream",
765
- "text": [
766
  "Preparing to unpack libtcmalloc-minimal4_2.5-2.2ubuntu3_amd64.deb ...\r\n",
767
  "Unpacking libtcmalloc-minimal4 (2.5-2.2ubuntu3) ...\r\n"
768
  ]
@@ -771,22 +805,22 @@
771
  "name": "stdout",
772
  "output_type": "stream",
773
  "text": [
774
- "Setting up libtcmalloc-minimal4 (2.5-2.2ubuntu3) ...\r\n",
775
- "Setting up libgoogle-perftools4 (2.5-2.2ubuntu3) ...\r\n"
776
  ]
777
  },
778
  {
779
  "name": "stdout",
780
  "output_type": "stream",
781
  "text": [
782
- "Setting up google-perftools (2.5-2.2ubuntu3) ...\r\n"
 
 
783
  ]
784
  },
785
  {
786
  "name": "stdout",
787
  "output_type": "stream",
788
  "text": [
789
- "Setting up libgoogle-perftools-dev (2.5-2.2ubuntu3) ...\r\n",
790
  "Processing triggers for man-db (2.9.1-1) ...\r\n"
791
  ]
792
  },
@@ -841,7 +875,7 @@
841
  {
842
  "cell_type": "code",
843
  "execution_count": null,
844
- "id": "a849506a",
845
  "metadata": {
846
  "execution": {
847
  "iopub.execute_input": "2024-05-13T11:43:26.036984Z",
@@ -851,7 +885,7 @@
851
  "duration": null,
852
  "end_time": null,
853
  "exception": false,
854
- "start_time": "2025-04-28T15:42:51.017190",
855
  "status": "running"
856
  },
857
  "tags": []
@@ -1028,7 +1062,7 @@
1028
  }
1029
  },
1030
  "cell_type": "markdown",
1031
- "id": "37bf689e",
1032
  "metadata": {
1033
  "papermill": {
1034
  "duration": null,
@@ -1047,7 +1081,7 @@
1047
  },
1048
  {
1049
  "cell_type": "markdown",
1050
- "id": "9a2ec987",
1051
  "metadata": {
1052
  "papermill": {
1053
  "duration": null,
@@ -1087,7 +1121,7 @@
1087
  {
1088
  "cell_type": "code",
1089
  "execution_count": null,
1090
- "id": "4ebf578e",
1091
  "metadata": {
1092
  "papermill": {
1093
  "duration": null,
@@ -1157,7 +1191,7 @@
1157
  },
1158
  {
1159
  "cell_type": "markdown",
1160
- "id": "20c371b1",
1161
  "metadata": {
1162
  "papermill": {
1163
  "duration": null,
@@ -1174,7 +1208,7 @@
1174
  },
1175
  {
1176
  "cell_type": "markdown",
1177
- "id": "21242f9a",
1178
  "metadata": {
1179
  "papermill": {
1180
  "duration": null,
@@ -1192,7 +1226,7 @@
1192
  {
1193
  "cell_type": "code",
1194
  "execution_count": null,
1195
- "id": "87ed2cb8",
1196
  "metadata": {
1197
  "papermill": {
1198
  "duration": null,
@@ -1238,7 +1272,7 @@
1238
  },
1239
  {
1240
  "cell_type": "markdown",
1241
- "id": "560857b9",
1242
  "metadata": {
1243
  "papermill": {
1244
  "duration": null,
@@ -1255,7 +1289,7 @@
1255
  },
1256
  {
1257
  "cell_type": "markdown",
1258
- "id": "df3dab74",
1259
  "metadata": {
1260
  "papermill": {
1261
  "duration": null,
@@ -1276,7 +1310,7 @@
1276
  {
1277
  "cell_type": "code",
1278
  "execution_count": null,
1279
- "id": "2e20dc38",
1280
  "metadata": {
1281
  "papermill": {
1282
  "duration": null,
@@ -1484,7 +1518,7 @@
1484
  },
1485
  {
1486
  "cell_type": "markdown",
1487
- "id": "d52c4554",
1488
  "metadata": {
1489
  "papermill": {
1490
  "duration": null,
@@ -1501,7 +1535,7 @@
1501
  },
1502
  {
1503
  "cell_type": "markdown",
1504
- "id": "451312a4",
1505
  "metadata": {
1506
  "papermill": {
1507
  "duration": null,
@@ -1521,7 +1555,7 @@
1521
  {
1522
  "cell_type": "code",
1523
  "execution_count": null,
1524
- "id": "ac2deb64",
1525
  "metadata": {
1526
  "papermill": {
1527
  "duration": null,
@@ -1584,7 +1618,7 @@
1584
  },
1585
  {
1586
  "cell_type": "markdown",
1587
- "id": "0475e756",
1588
  "metadata": {
1589
  "papermill": {
1590
  "duration": null,
@@ -1601,7 +1635,7 @@
1601
  },
1602
  {
1603
  "cell_type": "markdown",
1604
- "id": "7a806cbd",
1605
  "metadata": {
1606
  "papermill": {
1607
  "duration": null,
@@ -1619,7 +1653,7 @@
1619
  {
1620
  "cell_type": "code",
1621
  "execution_count": null,
1622
- "id": "a0010d1e",
1623
  "metadata": {
1624
  "papermill": {
1625
  "duration": null,
@@ -1638,7 +1672,7 @@
1638
  {
1639
  "cell_type": "code",
1640
  "execution_count": null,
1641
- "id": "244aaf2e",
1642
  "metadata": {
1643
  "papermill": {
1644
  "duration": null,
@@ -1690,7 +1724,7 @@
1690
  },
1691
  {
1692
  "cell_type": "markdown",
1693
- "id": "67060b43",
1694
  "metadata": {
1695
  "papermill": {
1696
  "duration": null,
@@ -1709,7 +1743,7 @@
1709
  },
1710
  {
1711
  "cell_type": "markdown",
1712
- "id": "d346321a",
1713
  "metadata": {
1714
  "papermill": {
1715
  "duration": null,
@@ -1727,7 +1761,7 @@
1727
  {
1728
  "cell_type": "code",
1729
  "execution_count": null,
1730
- "id": "5da8fbfb",
1731
  "metadata": {
1732
  "papermill": {
1733
  "duration": null,
@@ -1762,7 +1796,7 @@
1762
  {
1763
  "cell_type": "code",
1764
  "execution_count": null,
1765
- "id": "05c5d35a",
1766
  "metadata": {
1767
  "papermill": {
1768
  "duration": null,
@@ -1816,7 +1850,7 @@
1816
  },
1817
  {
1818
  "cell_type": "markdown",
1819
- "id": "c345a1e0",
1820
  "metadata": {
1821
  "papermill": {
1822
  "duration": null,
@@ -1833,7 +1867,7 @@
1833
  },
1834
  {
1835
  "cell_type": "markdown",
1836
- "id": "488e9d4a",
1837
  "metadata": {
1838
  "papermill": {
1839
  "duration": null,
@@ -1851,7 +1885,7 @@
1851
  {
1852
  "cell_type": "code",
1853
  "execution_count": null,
1854
- "id": "241b7dd1",
1855
  "metadata": {
1856
  "papermill": {
1857
  "duration": null,
@@ -1941,7 +1975,7 @@
1941
  },
1942
  {
1943
  "cell_type": "markdown",
1944
- "id": "23c5afb5",
1945
  "metadata": {
1946
  "papermill": {
1947
  "duration": null,
@@ -1959,7 +1993,7 @@
1959
  {
1960
  "cell_type": "code",
1961
  "execution_count": null,
1962
- "id": "492ffa48",
1963
  "metadata": {
1964
  "papermill": {
1965
  "duration": null,
@@ -2134,7 +2168,7 @@
2134
  },
2135
  {
2136
  "cell_type": "markdown",
2137
- "id": "cfb08017",
2138
  "metadata": {
2139
  "papermill": {
2140
  "duration": null,
@@ -2152,7 +2186,7 @@
2152
  {
2153
  "cell_type": "code",
2154
  "execution_count": null,
2155
- "id": "e66ff177",
2156
  "metadata": {
2157
  "papermill": {
2158
  "duration": null,
@@ -2330,7 +2364,7 @@
2330
  },
2331
  {
2332
  "cell_type": "markdown",
2333
- "id": "eec6b60d",
2334
  "metadata": {
2335
  "papermill": {
2336
  "duration": null,
@@ -2347,7 +2381,7 @@
2347
  },
2348
  {
2349
  "cell_type": "markdown",
2350
- "id": "b4c1727c",
2351
  "metadata": {
2352
  "papermill": {
2353
  "duration": null,
@@ -2365,7 +2399,7 @@
2365
  {
2366
  "cell_type": "code",
2367
  "execution_count": null,
2368
- "id": "52f27300",
2369
  "metadata": {
2370
  "papermill": {
2371
  "duration": null,
@@ -2412,7 +2446,7 @@
2412
  },
2413
  {
2414
  "cell_type": "markdown",
2415
- "id": "2772ef8d",
2416
  "metadata": {
2417
  "papermill": {
2418
  "duration": null,
@@ -2430,7 +2464,7 @@
2430
  {
2431
  "cell_type": "code",
2432
  "execution_count": null,
2433
- "id": "d63d4037",
2434
  "metadata": {
2435
  "papermill": {
2436
  "duration": null,
@@ -2518,7 +2552,7 @@
2518
  },
2519
  {
2520
  "cell_type": "markdown",
2521
- "id": "cbc735a0",
2522
  "metadata": {
2523
  "papermill": {
2524
  "duration": null,
@@ -2535,7 +2569,7 @@
2535
  },
2536
  {
2537
  "cell_type": "markdown",
2538
- "id": "54bdcf5f",
2539
  "metadata": {
2540
  "papermill": {
2541
  "duration": null,
@@ -2553,7 +2587,7 @@
2553
  {
2554
  "cell_type": "code",
2555
  "execution_count": null,
2556
- "id": "e29f02af",
2557
  "metadata": {
2558
  "papermill": {
2559
  "duration": null,
@@ -2662,7 +2696,7 @@
2662
  {
2663
  "cell_type": "code",
2664
  "execution_count": null,
2665
- "id": "3c4f3e8d",
2666
  "metadata": {
2667
  "ExecutionIndicator": {
2668
  "show": false
@@ -2726,7 +2760,7 @@
2726
  },
2727
  {
2728
  "cell_type": "markdown",
2729
- "id": "b4eed13c",
2730
  "metadata": {
2731
  "papermill": {
2732
  "duration": null,
@@ -2743,7 +2777,7 @@
2743
  },
2744
  {
2745
  "cell_type": "markdown",
2746
- "id": "98e47d18",
2747
  "metadata": {
2748
  "papermill": {
2749
  "duration": null,
@@ -2761,7 +2795,7 @@
2761
  {
2762
  "cell_type": "code",
2763
  "execution_count": null,
2764
- "id": "aec57d21",
2765
  "metadata": {
2766
  "papermill": {
2767
  "duration": null,
@@ -2852,7 +2886,7 @@
2852
  },
2853
  {
2854
  "cell_type": "markdown",
2855
- "id": "96f97364",
2856
  "metadata": {
2857
  "papermill": {
2858
  "duration": null,
@@ -2869,7 +2903,7 @@
2869
  },
2870
  {
2871
  "cell_type": "markdown",
2872
- "id": "03622f54",
2873
  "metadata": {
2874
  "papermill": {
2875
  "duration": null,
@@ -2887,7 +2921,7 @@
2887
  {
2888
  "cell_type": "code",
2889
  "execution_count": null,
2890
- "id": "11504d7d",
2891
  "metadata": {
2892
  "_kg_hide-input": true,
2893
  "_kg_hide-output": false,
@@ -2922,7 +2956,7 @@
2922
  }
2923
  },
2924
  "cell_type": "markdown",
2925
- "id": "a2fd2dd1",
2926
  "metadata": {
2927
  "papermill": {
2928
  "duration": null,
@@ -2944,7 +2978,7 @@
2944
  {
2945
  "cell_type": "code",
2946
  "execution_count": null,
2947
- "id": "40c189b1",
2948
  "metadata": {
2949
  "papermill": {
2950
  "duration": null,
@@ -2964,7 +2998,7 @@
2964
  {
2965
  "cell_type": "code",
2966
  "execution_count": null,
2967
- "id": "0564a889",
2968
  "metadata": {
2969
  "papermill": {
2970
  "duration": null,
@@ -2983,7 +3017,7 @@
2983
  },
2984
  {
2985
  "cell_type": "markdown",
2986
- "id": "848fa092",
2987
  "metadata": {
2988
  "papermill": {
2989
  "duration": null,
@@ -3002,7 +3036,7 @@
3002
  },
3003
  {
3004
  "cell_type": "markdown",
3005
- "id": "ebb5df4d",
3006
  "metadata": {
3007
  "papermill": {
3008
  "duration": null,
@@ -3080,7 +3114,7 @@
3080
  {
3081
  "cell_type": "code",
3082
  "execution_count": null,
3083
- "id": "4cd4cdee",
3084
  "metadata": {
3085
  "papermill": {
3086
  "duration": null,
@@ -3109,7 +3143,7 @@
3109
  },
3110
  {
3111
  "cell_type": "markdown",
3112
- "id": "9857433b",
3113
  "metadata": {
3114
  "papermill": {
3115
  "duration": null,
@@ -3126,7 +3160,7 @@
3126
  },
3127
  {
3128
  "cell_type": "markdown",
3129
- "id": "5ac18e6a",
3130
  "metadata": {
3131
  "papermill": {
3132
  "duration": null,
@@ -3158,7 +3192,7 @@
3158
  {
3159
  "cell_type": "code",
3160
  "execution_count": null,
3161
- "id": "5c7a8a0a",
3162
  "metadata": {
3163
  "papermill": {
3164
  "duration": null,
@@ -3337,7 +3371,7 @@
3337
  },
3338
  {
3339
  "cell_type": "markdown",
3340
- "id": "fa712cb1",
3341
  "metadata": {
3342
  "papermill": {
3343
  "duration": null,
@@ -3354,7 +3388,7 @@
3354
  },
3355
  {
3356
  "cell_type": "markdown",
3357
- "id": "aada2ba4",
3358
  "metadata": {
3359
  "papermill": {
3360
  "duration": null,
@@ -3373,7 +3407,7 @@
3373
  },
3374
  {
3375
  "cell_type": "markdown",
3376
- "id": "1f877f8f",
3377
  "metadata": {
3378
  "papermill": {
3379
  "duration": null,
@@ -3475,11 +3509,21 @@
3475
  "sourceId": 8458134,
3476
  "sourceType": "datasetVersion"
3477
  },
 
 
 
 
 
3478
  {
3479
  "datasetId": 2908961,
3480
  "sourceId": 9924910,
3481
  "sourceType": "datasetVersion"
3482
  },
 
 
 
 
 
3483
  {
3484
  "sourceId": 172059415,
3485
  "sourceType": "kernelVersion"
@@ -3521,7 +3565,7 @@
3521
  "input_path": "__notebook__.ipynb",
3522
  "output_path": "__notebook__.ipynb",
3523
  "parameters": {},
3524
- "start_time": "2025-04-28T15:42:12.752337",
3525
  "version": "2.5.0"
3526
  }
3527
  },
 
2
  "cells": [
3
  {
4
  "cell_type": "markdown",
5
+ "id": "d111f658",
6
  "metadata": {
7
  "papermill": {
8
+ "duration": 0.01265,
9
+ "end_time": "2025-04-29T07:59:39.546012",
10
  "exception": false,
11
+ "start_time": "2025-04-29T07:59:39.533362",
12
  "status": "completed"
13
  },
14
  "tags": []
 
36
  {
37
  "cell_type": "code",
38
  "execution_count": 1,
39
+ "id": "13419dd9",
40
  "metadata": {
41
  "execution": {
42
+ "iopub.execute_input": "2025-04-29T07:59:39.570963Z",
43
+ "iopub.status.busy": "2025-04-29T07:59:39.570672Z",
44
+ "iopub.status.idle": "2025-04-29T07:59:39.578644Z",
45
+ "shell.execute_reply": "2025-04-29T07:59:39.577998Z"
46
  },
47
  "papermill": {
48
+ "duration": 0.02216,
49
+ "end_time": "2025-04-29T07:59:39.580100",
50
  "exception": false,
51
+ "start_time": "2025-04-29T07:59:39.557940",
52
  "status": "completed"
53
  },
54
  "tags": []
 
62
  {
63
  "cell_type": "code",
64
  "execution_count": 2,
65
+ "id": "dc4abc05",
66
  "metadata": {
67
  "execution": {
68
+ "iopub.execute_input": "2025-04-29T07:59:39.605403Z",
69
+ "iopub.status.busy": "2025-04-29T07:59:39.605168Z",
70
+ "iopub.status.idle": "2025-04-29T07:59:43.675794Z",
71
+ "shell.execute_reply": "2025-04-29T07:59:43.674874Z"
72
  },
73
  "papermill": {
74
+ "duration": 4.086366,
75
+ "end_time": "2025-04-29T07:59:43.678084",
76
  "exception": false,
77
+ "start_time": "2025-04-29T07:59:39.591718",
78
  "status": "completed"
79
  },
80
  "tags": []
 
85
  "output_type": "stream",
86
  "text": [
87
  "配置文件已创建\n",
88
+ "正在启动frp ,端口17861\n",
89
+ "正在启动frp ,端口27861\n"
 
 
 
 
 
 
 
90
  ]
91
  },
92
  {
93
  "name": "stdout",
94
  "output_type": "stream",
95
  "text": [
96
+ "2025/04/29 07:59:39 [I] 检查更新中...\n",
97
+ "2025/04/29 07:59:39 [I] 出现错误, 请打开 https://doc.natfrp.com 查看帮助文档\n",
98
+ "2025/04/29 07:59:39 [W] 更新检查失败: API is not initialized\n",
99
+ "2025/04/29 07:59:39 [I] frpc version: 0.51.0-sakura-5.3 (built: 2024-06-21 23:15)\n",
100
+ "2025/04/29 07:59:39 [I] 正在连接节点 [proxy.lovedraw.cn, tcp]\n",
101
+ "2025/04/29 07:59:40 [I] [f92381ea] 连接节点成功, 运行 ID [f92381ea]\n",
102
+ "2025/04/29 07:59:40 [I] [f92381ea] 隧道启动: [sdwebuip_27861, tcp -> 127.0.0.1:7861]\n",
103
+ "TCP 隧道启动成功\n",
104
+ "使用 >>proxy.lovedraw.cn:27861<< 连接你的隧道\n",
105
+ "或使用 IP 地址连接: >>3.39.48.219:27861<<\n",
106
+ "2025/04/29 07:59:41 [I] [f92381ea] [sdwebuip_27861] 隧道启动成功\n",
107
+ "2025/04/29 07:59:39 [I] 检查更新中...\n",
108
+ "2025/04/29 07:59:39 [I] 出现错误, 请打开 https://doc.natfrp.com 查看帮助文档\n",
109
+ "2025/04/29 07:59:39 [W] 更新检查失败: API is not initialized\n",
110
+ "2025/04/29 07:59:39 [I] frpc version: 0.51.0-sakura-5.3 (built: 2024-06-21 23:15)\n",
111
+ "2025/04/29 07:59:39 [I] 正在连接节点 [proxy.lovedraw.cn, tcp]\n",
112
+ "2025/04/29 07:59:40 [I] [29d695f0] 连接节��成功, 运行 ID [29d695f0]\n",
113
+ "2025/04/29 07:59:40 [I] [29d695f0] 隧道启动中: [sdwebuip_17861, tcp -> 127.0.0.1:7860]\n",
114
+ "TCP 隧道启动成功\n",
115
+ "使用 >>proxy.lovedraw.cn:17861<< 连接你的隧道\n",
116
+ "或使用 IP 地址连接: >>3.39.48.219:17861<<\n",
117
+ "2025/04/29 07:59:40 [I] [29d695f0] [sdwebuip_17861] 隧道启动成功\n"
118
  ]
119
  }
120
  ],
121
  "source": [
122
  "# 使用的库\n",
123
+ "## 提示(必看!!):\n",
124
+ "## 1.使用前请先导入net tools工具,链接:https://www.kaggle.com/datasets/leaffallen/net-tools-new \n",
125
+ "## 2.如果有问题联系qq2575044704\n",
126
+ "## 3.密码严禁分享给他人,禁止放在公开的互联网上\n",
127
+ "## 4.使用此frp代码,请勿将notebook设置为public(共享),否则密码会泄露\n",
128
  "import subprocess\n",
129
  "import os\n",
130
  "import threading\n",
131
  "\n",
132
  "use_frpc = True\n",
133
  "frp_token = \"BiliBili_Nyan9\" # 这里填服务器密码(token)\n",
134
+ "port1 = \"17861\" # 这里填第一个端口\n",
135
+ "port2 = \"27861\" # 这里填第二个端口\n",
136
  "\n",
137
  "config1 = f\"\"\"\n",
138
  "[common]\n",
139
+ "server_addr = proxy.lovedraw.cn\n",
140
  "server_port = 7000\n",
141
  "token = {frp_token} \n",
142
  "heartbeat_interval = 30\n",
 
152
  "\n",
153
  "config2 = f\"\"\"\n",
154
  "[common]\n",
155
+ "server_addr = proxy.lovedraw.cn\n",
156
  "server_port = 7000\n",
157
  "token = {frp_token} \n",
158
  "heartbeat_interval = 30\n",
 
171
  "with open('./cyanfrp2.ini', 'w') as config_file:\n",
172
  " config_file.write(config2)\n",
173
  "print(f\"配置文件已创建\")\n",
174
+ "#subprocess.run(['cp', '/kaggle/input/d/yiyiooo/net-tools/frpc', '/kaggle/working'])\n",
175
+ "subprocess.run(['cp', '/kaggle/input/net-tools-new/frpc', '/kaggle/working'])\n",
176
  "subprocess.run(['chmod', '+x', '/kaggle/working/frpc'], check=True)\n",
177
  "def install_Frpc(file_path, port, use_frpc, log_file_path):\n",
178
  " if use_frpc:\n",
 
193
  {
194
  "cell_type": "code",
195
  "execution_count": 3,
196
+ "id": "8dfb6c3a",
197
  "metadata": {
198
  "execution": {
199
+ "iopub.execute_input": "2025-04-29T07:59:43.710244Z",
200
+ "iopub.status.busy": "2025-04-29T07:59:43.710004Z",
201
+ "iopub.status.idle": "2025-04-29T07:59:47.738520Z",
202
+ "shell.execute_reply": "2025-04-29T07:59:47.737708Z"
203
  },
204
  "papermill": {
205
+ "duration": 4.043775,
206
+ "end_time": "2025-04-29T07:59:47.740404",
207
  "exception": false,
208
+ "start_time": "2025-04-29T07:59:43.696629",
209
  "status": "completed"
210
  },
211
  "tags": []
 
217
  "text": [
218
  "配置文件已创建\n",
219
  "正在启动frp ,端口51419\n",
220
+ "正在启动frp ,端口5140\n"
221
  ]
222
  },
223
  {
 
232
  "name": "stdout",
233
  "output_type": "stream",
234
  "text": [
235
+ "2025/04/29 07:59:43 [I] 检查更新中...\n",
236
+ "2025/04/29 07:59:43 [I] frpc version: 0.51.0-sakura-5.3 (built: 2024-06-21 23:15)\n",
237
+ "2025/04/29 07:59:43 [I] 正在连接节点 [128.204.223.114, tcp]\n",
238
+ "2025/04/29 07:59:43 [I] 出现错误, 请打开 https://doc.natfrp.com 查看帮助文档\n",
239
+ "2025/04/29 07:59:43 [W] 更新检查失败: API is not initialized\n",
240
+ "2025/04/29 07:59:43 [W] 登录节点失败: dial tcp 128.204.223.114:31000: connect: connection refused, 请检查网络连接\n",
241
+ "2025/04/29 07:59:43 [I] 检查更新中...\n",
242
+ "2025/04/29 07:59:43 [I] 出现错误, 请打开 https://doc.natfrp.com 查看帮助文档\n",
243
+ "2025/04/29 07:59:43 [W] 更新检查失败: API is not initialized\n",
244
+ "2025/04/29 07:59:43 [I] frpc version: 0.51.0-sakura-5.3 (built: 2024-06-21 23:15)\n",
245
+ "2025/04/29 07:59:43 [I] 正在连接节点 [128.204.223.114, tcp]\n",
246
+ "2025/04/29 07:59:43 [W] 登录节点失败: dial tcp 128.204.223.114:31000: connect: connection refused, 请检查网络连接\n"
247
  ]
248
  }
249
  ],
 
256
  "use_frpc = True\n",
257
  "frp_token = \"Qq2575044704\" # 这里填服务器密码(token)\n",
258
  "port1 = \"51419\" # 这里填第一个端口\n",
259
+ "port2 = \"5140\" # 这里填第二个端口\n",
260
  "\n",
261
  "config1 = f\"\"\"\n",
262
  "[common]\n",
 
316
  {
317
  "cell_type": "code",
318
  "execution_count": 4,
319
+ "id": "fccd8de9",
320
  "metadata": {
321
  "execution": {
322
+ "iopub.execute_input": "2025-04-29T07:59:47.767418Z",
323
+ "iopub.status.busy": "2025-04-29T07:59:47.767158Z",
324
+ "iopub.status.idle": "2025-04-29T07:59:53.019828Z",
325
+ "shell.execute_reply": "2025-04-29T07:59:53.018618Z"
326
  },
327
  "papermill": {
328
+ "duration": 5.267755,
329
+ "end_time": "2025-04-29T07:59:53.021933",
330
  "exception": false,
331
+ "start_time": "2025-04-29T07:59:47.754178",
332
  "status": "completed"
333
  },
334
  "tags": []
335
  },
336
+ "outputs": [
337
+ {
338
+ "name": "stdout",
339
+ "output_type": "stream",
340
+ "text": [
341
+ "--2025-04-29 07:59:48-- https://huggingface.co/datasets/nyan102/ssh/resolve/main/lanyun-motd\r\n",
342
+ "Resolving huggingface.co (huggingface.co)... "
343
+ ]
344
+ },
345
+ {
346
+ "name": "stdout",
347
+ "output_type": "stream",
348
+ "text": [
349
+ "18.160.143.32, 18.160.143.75, 18.160.143.76, ...\r\n",
350
+ "Connecting to huggingface.co (huggingface.co)|18.160.143.32|:443... connected.\r\n",
351
+ "HTTP request sent, awaiting response... "
352
+ ]
353
+ },
354
+ {
355
+ "name": "stdout",
356
+ "output_type": "stream",
357
+ "text": [
358
+ "200 OK\r\n",
359
+ "Length: 4247 (4.1K) [text/plain]\r\n",
360
+ "Saving to: '/etc/lanyun-motd'\r\n",
361
+ "\r\n",
362
+ "\r",
363
+ "lanyun-motd 0%[ ] 0 --.-KB/s \r",
364
+ "lanyun-motd 100%[===================>] 4.15K --.-KB/s in 0s \r\n",
365
+ "\r\n",
366
+ "2025-04-29 07:59:48 (465 MB/s) - '/etc/lanyun-motd' saved [4247/4247]\r\n",
367
+ "\r\n"
368
+ ]
369
+ }
370
+ ],
371
  "source": [
372
  "\n",
373
  "def read_hftoken_file():\n",
 
376
  " hftoken = file.read()\n",
377
  "\n",
378
  "read_hftoken_file()\n",
379
+ "!sudo wget -P /etc \"https://huggingface.co/datasets/nyan102/ssh/resolve/main/lanyun-motd\"\n",
380
  "!echo \"echo '欢迎使用Kaggle免费显卡服务器,人人都可以有免费显卡。本人作者首页:https://www.kaggle.com/qq2575044704' \" >> ~/.bashrc\n",
381
  "!echo \"echo '你已成功连接,显卡运行状态↓↓↓↓↓↓↓↓' && /opt/bin/nvidia-smi && echo ↑↑↑↑↑↑↑↑ && echo -e '系统信息:' && neofetch\" >> ~/.bashrc\n",
382
+ "!echo \"echo 'Kaggle服务器SSH连接脚本by Nyan9。服务器完全免费,禁止在服务器进行挖矿,搭建VPN服务等违法法律行为。禁止滥用Kaggle平台的谷歌公益显卡资源,账号被封后果自负,请妥善保管好ssh密码,请勿泄露给他人。更新时间 2022年11月20日' \" >> ~/.bashrc\n",
383
+ "!echo \"source /etc/lanyun-motd\" >> ~/.bashrc"
384
  ]
385
  },
386
  {
387
  "cell_type": "code",
388
  "execution_count": 5,
389
+ "id": "a205bbfa",
390
  "metadata": {
391
  "execution": {
392
+ "iopub.execute_input": "2025-04-29T07:59:53.048946Z",
393
+ "iopub.status.busy": "2025-04-29T07:59:53.048202Z",
394
+ "iopub.status.idle": "2025-04-29T07:59:53.554098Z",
395
+ "shell.execute_reply": "2025-04-29T07:59:53.553193Z"
396
  },
397
  "papermill": {
398
+ "duration": 0.521523,
399
+ "end_time": "2025-04-29T07:59:53.556243",
400
  "exception": false,
401
+ "start_time": "2025-04-29T07:59:53.034720",
402
  "status": "completed"
403
  },
404
  "tags": []
 
454
  {
455
  "cell_type": "code",
456
  "execution_count": 6,
457
+ "id": "838ee5e0",
458
  "metadata": {
459
  "execution": {
460
+ "iopub.execute_input": "2025-04-29T07:59:53.582859Z",
461
+ "iopub.status.busy": "2025-04-29T07:59:53.582418Z",
462
+ "iopub.status.idle": "2025-04-29T07:59:53.788819Z",
463
+ "shell.execute_reply": "2025-04-29T07:59:53.787956Z"
464
  },
465
  "papermill": {
466
+ "duration": 0.221651,
467
+ "end_time": "2025-04-29T07:59:53.790692",
468
  "exception": false,
469
+ "start_time": "2025-04-29T07:59:53.569041",
470
  "status": "completed"
471
  },
472
  "tags": []
 
572
  " import os\n",
573
  " !sudo apt update\n",
574
  " # Install and start ssh-server\n",
575
+ " !sudo apt install -y openssh-server neofetch\n",
576
  " !sudo service ssh status\n",
577
  " !sudo service ssh start\n",
578
  " !sudo service ssh status\n",
 
614
  {
615
  "cell_type": "code",
616
  "execution_count": 7,
617
+ "id": "b9be079a",
618
  "metadata": {
619
  "execution": {
620
+ "iopub.execute_input": "2025-04-29T07:59:53.817526Z",
621
+ "iopub.status.busy": "2025-04-29T07:59:53.817005Z",
622
+ "iopub.status.idle": "2025-04-29T08:00:22.397310Z",
623
+ "shell.execute_reply": "2025-04-29T08:00:22.396159Z"
624
  },
625
  "papermill": {
626
+ "duration": 28.595361,
627
+ "end_time": "2025-04-29T08:00:22.399344",
628
  "exception": false,
629
+ "start_time": "2025-04-29T07:59:53.803983",
630
  "status": "completed"
631
  },
632
  "tags": []
 
788
  "output_type": "stream",
789
  "text": [
790
  "Selecting previously unselected package libgoogle-perftools4.\r\n",
791
+ "Preparing to unpack libgoogle-perftools4_2.5-2.2ubuntu3_amd64.deb ...\r\n",
 
 
 
 
 
 
792
  "Unpacking libgoogle-perftools4 (2.5-2.2ubuntu3) ...\r\n"
793
  ]
794
  },
 
796
  "name": "stdout",
797
  "output_type": "stream",
798
  "text": [
799
+ "Selecting previously unselected package libtcmalloc-minimal4.\r\n",
 
 
 
 
 
 
800
  "Preparing to unpack libtcmalloc-minimal4_2.5-2.2ubuntu3_amd64.deb ...\r\n",
801
  "Unpacking libtcmalloc-minimal4 (2.5-2.2ubuntu3) ...\r\n"
802
  ]
 
805
  "name": "stdout",
806
  "output_type": "stream",
807
  "text": [
808
+ "Setting up libtcmalloc-minimal4 (2.5-2.2ubuntu3) ...\r\n"
 
809
  ]
810
  },
811
  {
812
  "name": "stdout",
813
  "output_type": "stream",
814
  "text": [
815
+ "Setting up libgoogle-perftools4 (2.5-2.2ubuntu3) ...\r\n",
816
+ "Setting up google-perftools (2.5-2.2ubuntu3) ...\r\n",
817
+ "Setting up libgoogle-perftools-dev (2.5-2.2ubuntu3) ...\r\n"
818
  ]
819
  },
820
  {
821
  "name": "stdout",
822
  "output_type": "stream",
823
  "text": [
 
824
  "Processing triggers for man-db (2.9.1-1) ...\r\n"
825
  ]
826
  },
 
875
  {
876
  "cell_type": "code",
877
  "execution_count": null,
878
+ "id": "87f3c85b",
879
  "metadata": {
880
  "execution": {
881
  "iopub.execute_input": "2024-05-13T11:43:26.036984Z",
 
885
  "duration": null,
886
  "end_time": null,
887
  "exception": false,
888
+ "start_time": "2025-04-29T08:00:22.413544",
889
  "status": "running"
890
  },
891
  "tags": []
 
1062
  }
1063
  },
1064
  "cell_type": "markdown",
1065
+ "id": "0fba398b",
1066
  "metadata": {
1067
  "papermill": {
1068
  "duration": null,
 
1081
  },
1082
  {
1083
  "cell_type": "markdown",
1084
+ "id": "0b39edf7",
1085
  "metadata": {
1086
  "papermill": {
1087
  "duration": null,
 
1121
  {
1122
  "cell_type": "code",
1123
  "execution_count": null,
1124
+ "id": "c7b7df9c",
1125
  "metadata": {
1126
  "papermill": {
1127
  "duration": null,
 
1191
  },
1192
  {
1193
  "cell_type": "markdown",
1194
+ "id": "e5809724",
1195
  "metadata": {
1196
  "papermill": {
1197
  "duration": null,
 
1208
  },
1209
  {
1210
  "cell_type": "markdown",
1211
+ "id": "ebed5b0d",
1212
  "metadata": {
1213
  "papermill": {
1214
  "duration": null,
 
1226
  {
1227
  "cell_type": "code",
1228
  "execution_count": null,
1229
+ "id": "856eb242",
1230
  "metadata": {
1231
  "papermill": {
1232
  "duration": null,
 
1272
  },
1273
  {
1274
  "cell_type": "markdown",
1275
+ "id": "9f6a6d09",
1276
  "metadata": {
1277
  "papermill": {
1278
  "duration": null,
 
1289
  },
1290
  {
1291
  "cell_type": "markdown",
1292
+ "id": "4346d180",
1293
  "metadata": {
1294
  "papermill": {
1295
  "duration": null,
 
1310
  {
1311
  "cell_type": "code",
1312
  "execution_count": null,
1313
+ "id": "6f965757",
1314
  "metadata": {
1315
  "papermill": {
1316
  "duration": null,
 
1518
  },
1519
  {
1520
  "cell_type": "markdown",
1521
+ "id": "3c9532c5",
1522
  "metadata": {
1523
  "papermill": {
1524
  "duration": null,
 
1535
  },
1536
  {
1537
  "cell_type": "markdown",
1538
+ "id": "50c0145a",
1539
  "metadata": {
1540
  "papermill": {
1541
  "duration": null,
 
1555
  {
1556
  "cell_type": "code",
1557
  "execution_count": null,
1558
+ "id": "ebd3e989",
1559
  "metadata": {
1560
  "papermill": {
1561
  "duration": null,
 
1618
  },
1619
  {
1620
  "cell_type": "markdown",
1621
+ "id": "9cc3fc00",
1622
  "metadata": {
1623
  "papermill": {
1624
  "duration": null,
 
1635
  },
1636
  {
1637
  "cell_type": "markdown",
1638
+ "id": "7d3c042f",
1639
  "metadata": {
1640
  "papermill": {
1641
  "duration": null,
 
1653
  {
1654
  "cell_type": "code",
1655
  "execution_count": null,
1656
+ "id": "b273db5b",
1657
  "metadata": {
1658
  "papermill": {
1659
  "duration": null,
 
1672
  {
1673
  "cell_type": "code",
1674
  "execution_count": null,
1675
+ "id": "e656ed24",
1676
  "metadata": {
1677
  "papermill": {
1678
  "duration": null,
 
1724
  },
1725
  {
1726
  "cell_type": "markdown",
1727
+ "id": "4ac68f66",
1728
  "metadata": {
1729
  "papermill": {
1730
  "duration": null,
 
1743
  },
1744
  {
1745
  "cell_type": "markdown",
1746
+ "id": "af1bc24f",
1747
  "metadata": {
1748
  "papermill": {
1749
  "duration": null,
 
1761
  {
1762
  "cell_type": "code",
1763
  "execution_count": null,
1764
+ "id": "f765e020",
1765
  "metadata": {
1766
  "papermill": {
1767
  "duration": null,
 
1796
  {
1797
  "cell_type": "code",
1798
  "execution_count": null,
1799
+ "id": "a42574b5",
1800
  "metadata": {
1801
  "papermill": {
1802
  "duration": null,
 
1850
  },
1851
  {
1852
  "cell_type": "markdown",
1853
+ "id": "6b6581c7",
1854
  "metadata": {
1855
  "papermill": {
1856
  "duration": null,
 
1867
  },
1868
  {
1869
  "cell_type": "markdown",
1870
+ "id": "be5cd8b8",
1871
  "metadata": {
1872
  "papermill": {
1873
  "duration": null,
 
1885
  {
1886
  "cell_type": "code",
1887
  "execution_count": null,
1888
+ "id": "5f83a53a",
1889
  "metadata": {
1890
  "papermill": {
1891
  "duration": null,
 
1975
  },
1976
  {
1977
  "cell_type": "markdown",
1978
+ "id": "14d71714",
1979
  "metadata": {
1980
  "papermill": {
1981
  "duration": null,
 
1993
  {
1994
  "cell_type": "code",
1995
  "execution_count": null,
1996
+ "id": "320e5ed5",
1997
  "metadata": {
1998
  "papermill": {
1999
  "duration": null,
 
2168
  },
2169
  {
2170
  "cell_type": "markdown",
2171
+ "id": "af2b50f2",
2172
  "metadata": {
2173
  "papermill": {
2174
  "duration": null,
 
2186
  {
2187
  "cell_type": "code",
2188
  "execution_count": null,
2189
+ "id": "73eb59a4",
2190
  "metadata": {
2191
  "papermill": {
2192
  "duration": null,
 
2364
  },
2365
  {
2366
  "cell_type": "markdown",
2367
+ "id": "0dcc1039",
2368
  "metadata": {
2369
  "papermill": {
2370
  "duration": null,
 
2381
  },
2382
  {
2383
  "cell_type": "markdown",
2384
+ "id": "49fe924c",
2385
  "metadata": {
2386
  "papermill": {
2387
  "duration": null,
 
2399
  {
2400
  "cell_type": "code",
2401
  "execution_count": null,
2402
+ "id": "1d9d77b0",
2403
  "metadata": {
2404
  "papermill": {
2405
  "duration": null,
 
2446
  },
2447
  {
2448
  "cell_type": "markdown",
2449
+ "id": "b31d898d",
2450
  "metadata": {
2451
  "papermill": {
2452
  "duration": null,
 
2464
  {
2465
  "cell_type": "code",
2466
  "execution_count": null,
2467
+ "id": "c2d490eb",
2468
  "metadata": {
2469
  "papermill": {
2470
  "duration": null,
 
2552
  },
2553
  {
2554
  "cell_type": "markdown",
2555
+ "id": "b79d9ded",
2556
  "metadata": {
2557
  "papermill": {
2558
  "duration": null,
 
2569
  },
2570
  {
2571
  "cell_type": "markdown",
2572
+ "id": "a4ee1b82",
2573
  "metadata": {
2574
  "papermill": {
2575
  "duration": null,
 
2587
  {
2588
  "cell_type": "code",
2589
  "execution_count": null,
2590
+ "id": "3306ce79",
2591
  "metadata": {
2592
  "papermill": {
2593
  "duration": null,
 
2696
  {
2697
  "cell_type": "code",
2698
  "execution_count": null,
2699
+ "id": "6d54aac9",
2700
  "metadata": {
2701
  "ExecutionIndicator": {
2702
  "show": false
 
2760
  },
2761
  {
2762
  "cell_type": "markdown",
2763
+ "id": "fcaf2170",
2764
  "metadata": {
2765
  "papermill": {
2766
  "duration": null,
 
2777
  },
2778
  {
2779
  "cell_type": "markdown",
2780
+ "id": "57b5737f",
2781
  "metadata": {
2782
  "papermill": {
2783
  "duration": null,
 
2795
  {
2796
  "cell_type": "code",
2797
  "execution_count": null,
2798
+ "id": "e9eb7697",
2799
  "metadata": {
2800
  "papermill": {
2801
  "duration": null,
 
2886
  },
2887
  {
2888
  "cell_type": "markdown",
2889
+ "id": "f0ba5924",
2890
  "metadata": {
2891
  "papermill": {
2892
  "duration": null,
 
2903
  },
2904
  {
2905
  "cell_type": "markdown",
2906
+ "id": "d3c67bc9",
2907
  "metadata": {
2908
  "papermill": {
2909
  "duration": null,
 
2921
  {
2922
  "cell_type": "code",
2923
  "execution_count": null,
2924
+ "id": "072cda99",
2925
  "metadata": {
2926
  "_kg_hide-input": true,
2927
  "_kg_hide-output": false,
 
2956
  }
2957
  },
2958
  "cell_type": "markdown",
2959
+ "id": "12fd4d38",
2960
  "metadata": {
2961
  "papermill": {
2962
  "duration": null,
 
2978
  {
2979
  "cell_type": "code",
2980
  "execution_count": null,
2981
+ "id": "5eab5e82",
2982
  "metadata": {
2983
  "papermill": {
2984
  "duration": null,
 
2998
  {
2999
  "cell_type": "code",
3000
  "execution_count": null,
3001
+ "id": "14686fc8",
3002
  "metadata": {
3003
  "papermill": {
3004
  "duration": null,
 
3017
  },
3018
  {
3019
  "cell_type": "markdown",
3020
+ "id": "2705324f",
3021
  "metadata": {
3022
  "papermill": {
3023
  "duration": null,
 
3036
  },
3037
  {
3038
  "cell_type": "markdown",
3039
+ "id": "a7d3360b",
3040
  "metadata": {
3041
  "papermill": {
3042
  "duration": null,
 
3114
  {
3115
  "cell_type": "code",
3116
  "execution_count": null,
3117
+ "id": "6095e958",
3118
  "metadata": {
3119
  "papermill": {
3120
  "duration": null,
 
3143
  },
3144
  {
3145
  "cell_type": "markdown",
3146
+ "id": "abf054a2",
3147
  "metadata": {
3148
  "papermill": {
3149
  "duration": null,
 
3160
  },
3161
  {
3162
  "cell_type": "markdown",
3163
+ "id": "9ec201fa",
3164
  "metadata": {
3165
  "papermill": {
3166
  "duration": null,
 
3192
  {
3193
  "cell_type": "code",
3194
  "execution_count": null,
3195
+ "id": "1a6480fa",
3196
  "metadata": {
3197
  "papermill": {
3198
  "duration": null,
 
3371
  },
3372
  {
3373
  "cell_type": "markdown",
3374
+ "id": "d34948ae",
3375
  "metadata": {
3376
  "papermill": {
3377
  "duration": null,
 
3388
  },
3389
  {
3390
  "cell_type": "markdown",
3391
+ "id": "87d0d6f4",
3392
  "metadata": {
3393
  "papermill": {
3394
  "duration": null,
 
3407
  },
3408
  {
3409
  "cell_type": "markdown",
3410
+ "id": "29177e25",
3411
  "metadata": {
3412
  "papermill": {
3413
  "duration": null,
 
3509
  "sourceId": 8458134,
3510
  "sourceType": "datasetVersion"
3511
  },
3512
+ {
3513
+ "datasetId": 6099790,
3514
+ "sourceId": 9924430,
3515
+ "sourceType": "datasetVersion"
3516
+ },
3517
  {
3518
  "datasetId": 2908961,
3519
  "sourceId": 9924910,
3520
  "sourceType": "datasetVersion"
3521
  },
3522
+ {
3523
+ "datasetId": 6148636,
3524
+ "sourceId": 9990707,
3525
+ "sourceType": "datasetVersion"
3526
+ },
3527
  {
3528
  "sourceId": 172059415,
3529
  "sourceType": "kernelVersion"
 
3565
  "input_path": "__notebook__.ipynb",
3566
  "output_path": "__notebook__.ipynb",
3567
  "parameters": {},
3568
+ "start_time": "2025-04-29T07:59:36.918683",
3569
  "version": "2.5.0"
3570
  }
3571
  },