mirror of
https://github.com/webclinic017/drift.git
synced 2026-07-28 11:17:47 +00:00
57f63f1e93
* fix(Selection): dynamic step size for feature selection * refactor(Pipeline): type definition * chore(Cache): renamed clear_cache script * feat(Config): dynamic feature selection is now a toggleable feature * fix(Training): not passing in necessary parameter
5 lines
140 B
Python
5 lines
140 B
Python
from diskcache import Cache
|
|
cache_1 = Cache(".cachedir/feature_selection")
|
|
cache_2 = Cache(".cachedir/data")
|
|
cache_1.clear()
|
|
cache_2.clear() |