You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# can also install the newer lightning package with more dependencies instead, it will be prioritized
42
-
"pytorch_lightning>=2.0",
43
-
"skorch>=0.15", # for rtdl models
44
-
"dask[dataframe]>=2023", # this is here because of a pandas warning:
52
+
# for rtdl models (MLP, ResNet) but also lightly used in TabR
53
+
# note that scikit-learn 1.6 needs skorch >= 1.1.0
54
+
"skorch>=0.15",
55
+
"dask[dataframe]>=2023", # this is here because of a pandas warning:
45
56
# "Dask dataframe query planning is disabled because dask-expr is not installed"
46
57
# "packaging", # unclear why this is here?
47
-
"tqdm", # for TabM with verbosity >= 1
48
-
"psutil>=5.0",
49
-
# more classification metrics and post-hoc calibrators (could be an optional dependency)
58
+
59
+
"tqdm", # for TabM with verbosity >= 1
60
+
61
+
# more classification metrics and post-hoc calibrators
62
+
# not necessary unless these things are actually used
50
63
"probmetrics>=0.0.1",
51
64
52
-
#packages for saving objects in different formats
53
-
"dill",
65
+
# saving objects in yaml/msgpack
66
+
# needed if used in utils.serialize() / deserialize()
54
67
"pyyaml>=5.0",
55
68
"msgpack>=1.0",
56
69
# apparently msgpack_numpy fixed some bug in using numpy arrays in msgpack?
57
-
# but apparently it can also cause a bug in ray due to its monkey-patching of msgpack functions
58
-
#in theory we shouldn't be using if for numpy arrays at the moment, not sure why the need for this occured
70
+
# but apparently it can also cause a bug in ray due to its monkey-patching of msgpack functions# in theory we shouldn't be using if for numpy arrays at the moment, not sure why the need for this occured
71
+
#maybe it occured because we tried to save hyperparameters that were numpy scalars instead of python scalars
0 commit comments