-
Notifications
You must be signed in to change notification settings - Fork 191
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
removing data, models and logs directories from repo? #111
Comments
I just made a pull request with the changes proposed. By the way, I think we should explain clearly in the The correct way to use it should be:
|
Sorry I removed the section because I was thinking about the ability to load the data directly from the package, either from disk or from internet. Instead of using a python command. Like they do in Keras for the data: https://keras.io/datasets/ |
Ah ok, I see. I think it is a good idea! However, what about the creation of the folders |
I think we can be inspired keras' |
The idea is to download a ressource if it is not already cached in a path = get_file(
path,
origin='https://s3.amazonaws.com/keras-datasets/boston_housing.npz',
file_hash='f553886a1f8d56431e820c5b82552d9d95cfcb96d1e678153f8839538947dff5') |
Ideally, we can do the same for the datasets and models. For the log repository, we can maybe use |
So actually we will create a cache repo
I don't know this library, but I will take a look on it. |
I agree. We can do it later, let's focus on these other issues |
Came across this after sklearn consortium, might be a good source of inspiration for this issue: http://scikit-learn.org/stable/modules/generated/sklearn.datasets.fetch_openml.html |
I am not sure if it suits our needs as our interest is to be able to download the model. It works only for datasets. Do you also want to make it possible to download BNP data? |
I think the primary idea is to remove the data, models and logs directory from this repo. I usually don't see such directories across python repositories. Users would therefore be able to download manually the models from release, and them read them from anywhere and manage the data and logs as they wish. The only thing is, if we remove those 3 directories now, what do we need to change ? What is the impact? If none, let's remove these and close the issue. |
Got it. I do not think it will have an impact if we delete them, but I will do some tests to assure us. The other point I want to adress in my PR (that I am already working on) is #119 |
We could just let the script create them?
The text was updated successfully, but these errors were encountered: