Closed eddiebergman closed 3 years ago
@eddiebergman Sorry for my late reply, and thanks for catching the bug! I have fixed it in the latest commit (76d322448e3850e9afd04f4d1da13ad389432719), and have verified that the installed library (pip installed from git cloned local source) works well on the demo in the root README.md
.
The PyPI version hasn't been updated because of the 100MB size limit. I will try to find a workaround.
Hi @chengrunyang,
Thats no problem and thanks for fixing that, I'll try it out once I can :) Do you mind me asking how the repo is more than 100MB?
Great.
oboe
uses meta-learning to pick models for a new dataset. The files in defaults
folder that were not included in installation are the performance and runtime of models on meta-training datasets. Despite the disadvantage of the large size, including those meta-training data files will make it possible for users to tweak the matrix/tensor factorization ranks of the meta-training matrix/tensor. Nevertheless, I will take a look at whether just including the latent factors of these matrices/tensors in the installation would suffice for most use cases.
You could try to compress those files and use setup.py
to decompress them once dependencies are installed :) However this is likely difficult to the fact you would have to assume the user has the decompression application you would wish to use
Now in the latest release (v0.2.0, and the same version number on PyPI), the library can be installed either by pip
or from source, and the installation includes necessary files. Thanks again for reporting and discussing this bug! I'll close this issue for now. Feel free to reopen it or submit another issue for anything.
Hello,
As part of a project, I am trying to fix up some things with automlbenchmark and from there realized oboe does not install correctly.
Reproducible code (sample shown in README.md)
Error log:
Looking at
/home/skantify/code/oboe/.venv/lib/python3.8/site-packages/oboe/defaults/Oboe/classification.json
I can see that pip didn't include everythingAs you can see, the
defaults
folder and deeper is not included. Upon inspecting these folders, it seems it's because these are not python modules (lacking the__init__.py
file). There for yoursetup.py
would have to be modified according to this stack overflow answer