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
TensorFlow is a 600Mb dependency that is now pulled in when installing TopoStats. This can be slow and cumbersome if not on a fast connection (~4 minutes to download on my home connection a supposed 100Mbps connection).
How core is the Tensorflow functionality in the wider community of TopoStats users?
Would it be useful to provide a convenience option of installing without this dependency?
It could be achieved by splitting the dependencies off into their own optional set...
[project.optional-dependencies]
ml = [
keras,
tensorflow,
]
And update the documentation to indicate that to get all dependencies for that functionality you should install with pip install topostats[ml].
The text was updated successfully, but these errors were encountered:
TensorFlow is a 600Mb dependency that is now pulled in when installing TopoStats. This can be slow and cumbersome if not on a fast connection (~4 minutes to download on my home connection a supposed 100Mbps connection).
How core is the Tensorflow functionality in the wider community of TopoStats users?
Would it be useful to provide a convenience option of installing without this dependency?
It could be achieved by splitting the dependencies off into their own optional set...
And update the documentation to indicate that to get all dependencies for that functionality you should install with
pip install topostats[ml]
.The text was updated successfully, but these errors were encountered: