FLAML icon indicating copy to clipboard operation
FLAML copied to clipboard

Missing .csv in tune_example.py script

Open joaquingarciaatos opened this issue 2 years ago • 1 comments

Hi everyone,

I just started testing the FLAML framework and I notice one file is missing in one of the scripts. If you take a look to the "test" folder, there is a script called "tune_example.py". When trying to execute it, the file under line 11 ("housing.csv") is missing. I have tried to found it in all the subfolders, but I didn't. Could you help me with that?

csv_file_name = "test/housing.csv"

Thank you in advance.

joaquingarciaatos avatar Aug 24 '23 11:08 joaquingarciaatos

df_train.to_csv(csv_file_name, index=False) The csv_file_name is used as a file name to write data. The file will be created after the script is executed.

sonichi avatar Aug 24 '23 15:08 sonichi