lecrapaud 0.16.3__py3-none-any.whl → 0.16.4__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of lecrapaud might be problematic. Click here for more details.
- lecrapaud/db/alembic.ini +7 -1
- lecrapaud/model_selection.py +1 -1
- {lecrapaud-0.16.3.dist-info → lecrapaud-0.16.4.dist-info}/METADATA +1 -1
- {lecrapaud-0.16.3.dist-info → lecrapaud-0.16.4.dist-info}/RECORD +6 -6
- {lecrapaud-0.16.3.dist-info → lecrapaud-0.16.4.dist-info}/LICENSE +0 -0
- {lecrapaud-0.16.3.dist-info → lecrapaud-0.16.4.dist-info}/WHEEL +0 -0
lecrapaud/db/alembic.ini
CHANGED
|
@@ -82,7 +82,7 @@ sqlalchemy.url = %(DATABASE_URL)s
|
|
|
82
82
|
|
|
83
83
|
# Logging configuration
|
|
84
84
|
[loggers]
|
|
85
|
-
keys = root,sqlalchemy,alembic
|
|
85
|
+
keys = root,sqlalchemy,alembic,lecrapaud
|
|
86
86
|
|
|
87
87
|
[loggers_root]
|
|
88
88
|
disable_existing_loggers = False
|
|
@@ -108,6 +108,12 @@ level = INFO
|
|
|
108
108
|
handlers =
|
|
109
109
|
qualname = alembic
|
|
110
110
|
|
|
111
|
+
[logger_lecrapaud]
|
|
112
|
+
level = INFO
|
|
113
|
+
handlers = console
|
|
114
|
+
qualname = lecrapaud
|
|
115
|
+
propagate = 0
|
|
116
|
+
|
|
111
117
|
[handler_console]
|
|
112
118
|
class = StreamHandler
|
|
113
119
|
args = (sys.stderr,)
|
lecrapaud/model_selection.py
CHANGED
|
@@ -1253,7 +1253,7 @@ class ModelSelectionEngine:
|
|
|
1253
1253
|
try:
|
|
1254
1254
|
with open(best_params_file, "r") as f:
|
|
1255
1255
|
target_params = json.load(f)
|
|
1256
|
-
all_best_params[target_number] = target_params
|
|
1256
|
+
all_best_params[int(target_number)] = target_params
|
|
1257
1257
|
except Exception as e:
|
|
1258
1258
|
logger.warning(
|
|
1259
1259
|
f"Error loading best params for {target_dir}: {str(e)}"
|
|
@@ -9,7 +9,7 @@ lecrapaud/db/alembic/versions/2025_06_23_1748-f089dfb7e3ba_.py,sha256=hyPW0Mt_B4
|
|
|
9
9
|
lecrapaud/db/alembic/versions/2025_06_24_1216-c62251b129ed_.py,sha256=6Pf36HAXEVrVlnrohAe2O7gVaXpDiv3LLIP_EEgTyA0,917
|
|
10
10
|
lecrapaud/db/alembic/versions/2025_06_24_1711-86457e2f333f_.py,sha256=KjwjYvFaNqYmBLTYel8As37fyaBtNVWTqN_3M7y_2eI,1357
|
|
11
11
|
lecrapaud/db/alembic/versions/2025_06_25_1759-72aa496ca65b_.py,sha256=MiqooJuZ1etExl2he3MniaEv8G0LrmqY-0m22m9xKmc,943
|
|
12
|
-
lecrapaud/db/alembic.ini,sha256=
|
|
12
|
+
lecrapaud/db/alembic.ini,sha256=Zw2rdwsKV6c7J1SPtoFIPDX08_oTP3MuUKnNxBDiY8I,3796
|
|
13
13
|
lecrapaud/db/models/__init__.py,sha256=Lhyw9fVLdom0Fc6yIP-ip8FjkU1EwVwjae5q2VM815Q,740
|
|
14
14
|
lecrapaud/db/models/base.py,sha256=J9ew-0z_-tnWAwhVvOmVDys2R6jPF_oSca_ny6wpXQE,7606
|
|
15
15
|
lecrapaud/db/models/experiment.py,sha256=mQmbp_LzwMYVLzwYlaoRWYgzZCSJCA9dDcLpuvddsms,10931
|
|
@@ -36,10 +36,10 @@ lecrapaud/misc/tabpfn_tests.ipynb,sha256=VkgsCUJ30d8jaL2VaWtQAgb8ngHPNtPgnXLs7QQ
|
|
|
36
36
|
lecrapaud/misc/test-gpu-bilstm.ipynb,sha256=4nLuZRJVe2kn6kEmauhRiz5wkWT9AVrYhI9CEk_dYUY,9608
|
|
37
37
|
lecrapaud/misc/test-gpu-resnet.ipynb,sha256=27Vu7nYwujYeh3fOxBNCnKJn3MXNPKZU-U8oDDUbymg,4944
|
|
38
38
|
lecrapaud/misc/test-gpu-transformers.ipynb,sha256=k6MBSs_Um1h4PykvE-LTBcdpbWLbIFST_xl_AFW2jgI,8444
|
|
39
|
-
lecrapaud/model_selection.py,sha256=
|
|
39
|
+
lecrapaud/model_selection.py,sha256=tjBM9X5CP02pNiuNLdNK2MFZblrH7w-gQgBc5FEN-TY,68514
|
|
40
40
|
lecrapaud/search_space.py,sha256=-JkzuMhaomdwiWi4HvVQY5hiw3-oREemJA16tbwEIp4,34854
|
|
41
41
|
lecrapaud/utils.py,sha256=JdBB1NvbNIx4y0Una-kSZdo1_ZEocc5hwyYFIZKHmGg,8305
|
|
42
|
-
lecrapaud-0.16.
|
|
43
|
-
lecrapaud-0.16.
|
|
44
|
-
lecrapaud-0.16.
|
|
45
|
-
lecrapaud-0.16.
|
|
42
|
+
lecrapaud-0.16.4.dist-info/LICENSE,sha256=MImCryu0AnqhJE_uAZD-PIDKXDKb8sT7v0i1NOYeHTM,11350
|
|
43
|
+
lecrapaud-0.16.4.dist-info/METADATA,sha256=cJJFa99bkNUUq21Tyn1ykT9vMzqMXzQ-iVgcm-mcM3k,11081
|
|
44
|
+
lecrapaud-0.16.4.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
45
|
+
lecrapaud-0.16.4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|