Skip to content

Commit d48c1fb

Browse files
committed
model name underscores to hyphens
1 parent 861f697 commit d48c1fb

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

Re-TrainModel.ipynb

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
"metadata": {},
5858
"outputs": [],
5959
"source": [
60-
"classifier_file_name = f\"models/ssl_ukb_c24_rw_{WINSEC}s_{datetime.now().strftime('%Y%m%d')}.joblib.lzma\""
60+
"classifier_file_name = f\"models/ssl-ukb-c24-rw-{WINSEC}s-{datetime.now().strftime('%Y%m%d')}.joblib.lzma\""
6161
]
6262
},
6363
{
@@ -145,23 +145,23 @@
145145
{
146146
"cell_type": "code",
147147
"execution_count": null,
148-
"id": "eefc79ef",
148+
"id": "342dda28",
149149
"metadata": {},
150150
"outputs": [],
151151
"source": [
152-
"y = loaded_classifier.predict_from_frame(data, 100, True,'5H', True)\n",
153-
"p = plotTimeSeries(y, \"Single sleep block per day, minimum 5 hour sleep\")"
152+
"y = loaded_classifier.predict_from_frame(data, 100, True, None, False)\n",
153+
"p = plotTimeSeries(y, \"Keep naps, no minimum sleep duration\")"
154154
]
155155
},
156156
{
157157
"cell_type": "code",
158158
"execution_count": null,
159-
"id": "2bd50def",
159+
"id": "eefc79ef",
160160
"metadata": {},
161161
"outputs": [],
162162
"source": [
163-
"y = loaded_classifier.predict_from_frame(data, 100, True, None, False)\n",
164-
"p = plotTimeSeries(y, \"Keep naps, no minimum sleep duration\")"
163+
"y = loaded_classifier.predict_from_frame(data, 100, True,'5H', True)\n",
164+
"p = plotTimeSeries(y, \"Single sleep block per day, minimum 5 hour sleep\")"
165165
]
166166
},
167167
{

TrainModel.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@
188188
"metadata": {},
189189
"outputs": [],
190190
"source": [
191-
"classifier_file_name = f\"models/ssl_ukb_c24_rw_{WINSEC}s_{datetime.now().strftime('%Y%m%d')}.joblib.lzma\""
191+
"classifier_file_name = f\"models/ssl-ukb-c24-rw-{WINSEC}s-{datetime.now().strftime('%Y%m%d')}.joblib.lzma\""
192192
]
193193
},
194194
{

src/actinet/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
__maintainer_email__ = "shing.chan@ndph.ox.ac.uk"
55
__license__ = "See LICENSE file."
66

7-
__classifier_version__ = "ssl_ukb_c24_rw_30s_20250716"
8-
__classifier_md5__ = "7d4cbd5ec5f173fc7babfcf92d46d8bb"
7+
__classifier_version__ = "ssl-ukb-c24-rw-30s-20250717"
8+
__classifier_md5__ = "b6742740c6bf629bc7a863ebf6e103df"
99

1010
from . import _version
1111

0 commit comments

Comments
 (0)