We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 187572b commit e82f6d1Copy full SHA for e82f6d1
README.md
@@ -75,7 +75,7 @@ python -m chebifier predict --help
75
You can also use the package programmatically:
76
77
```python
78
-from chebifier import BaseEnsemble
+from chebifier.ensemble.base_ensemble import BaseEnsemble
79
80
# Instantiate ensemble model. If desired, can pass
81
# a path to a configuration, like 'configs/example_config.yml'
chebifier/__init__.py
@@ -2,10 +2,6 @@
2
# even if multiple subpackages are imported later.
3
4
from ._custom_cache import PerSmilesPerModelLRUCache
5
-from chebifier.ensemble.base_ensemble import BaseEnsemble
6
7
-__all__ = [
8
- "BaseEnsemble",
9
-]
10
11
modelwise_smiles_lru_cache = PerSmilesPerModelLRUCache(max_size=100)
0 commit comments