Yeah, a very annoying error. The last time I tried to submit, my model took almost 24 hours to train, and the submission file didn't load. Very frustrating
If anyone is still getting submission error. It will be strange.
None of my submission failed and here are my suggestions.
1. The file size: my file size has not been more than 35MB. Check yours to see if file size is too big.
2. The Target column is an integer column. Ensure that yours is not float.
3. If not already avoided, don't save with the index
sub.to_csv(filename.csv, index=False) should be enough
4. The ID column has the following format Test{int1}_{int2}, where int2 is the time column of your initial test files , and int1 is just an identifier from the test file name. If yours has Test{int}_{float}, it's likely to be in error.
Yeah, a very annoying error. The last time I tried to submit, my model took almost 24 hours to train, and the submission file didn't load. Very frustrating
I don't get that error
First try submitting your results.. Amazingly some are able to submit without issues.
Does zindi competition hoster know this?
I believe so. I think some efforts were made to solve the issue. Amy say submission file has been increased. Correct me if am wrong @Amyflorida626??
If anyone is still getting submission error. It will be strange.
None of my submission failed and here are my suggestions.
1. The file size: my file size has not been more than 35MB. Check yours to see if file size is too big.
2. The Target column is an integer column. Ensure that yours is not float.
3. If not already avoided, don't save with the index
sub.to_csv(filename.csv, index=False) should be enough
4. The ID column has the following format Test{int1}_{int2}, where int2 is the time column of your initial test files , and int1 is just an identifier from the test file name. If yours has Test{int}_{float}, it's likely to be in error.
Happy coding
Oh thanks 4 fixed iit