Reputation: 7
hi guys so i'm currently trying to use h2o and encountering a problem for uploading the data
train = h2o.upload_file("train_FD004.txt")
test = h2o.upload_file("test_FD004.txt")
train.set_names(input_file_column_names);
test.set_names(input_file_column_names);
how to fix this?
Upvotes: 1
Views: 164
Reputation: 66
I don't know anything about H20, but generally that type of error,
H2OValueError: File train_FD004.txt does not exist
Means it cannot find the file you are trying to upload.
You should try:
Upvotes: 2