aimclub / FEDOT

Automated modeling and machine learning framework FEDOT
https://fedot.readthedocs.io
BSD 3-Clause "New" or "Revised" License
632 stars 86 forks source link

How to change path to Fedot temp files (%temp%/FEDOT)? #1003

Closed geniusserg closed 1 year ago

geniusserg commented 1 year ago

Hello!

During model optimization, Fedot framework created folder C:\Users\\AppData\Local\Temp\FEDOT with databases with size more than 17Gb. How can I change path to these temp files? On C:/ part I haven't enough free space for storing them.

Thank you!

IIaKyJIuH commented 1 year ago

Hello!

You can set a cache_folder parameter in main API with your custom path for the database files.

So, it would look like:

...
model = Fedot(..., cache_folder=<your_custom_path>, ...)
...
geniusserg commented 1 year ago

Thank you! This works for me.