I’ve made my model, but I dont know what to do next, pls help
Hi @azkazia, is this question for the Youth Mental Health Narratives competition? If so, you can post in the category for the competition here and see other questions/answers. For guidance on how to make a submission, you can look at the code submission format page and the benchmark submission blog post. Good luck!
yes, but whenever I run my model here it gives me an error that my submission didn’t produce the expected file- but it runs completely fine in docker and vs code. What to do?
Making a smoke test submission would be a useful next step - if your submission fails there, you can use logging to determine what the cause is and correct your code. If the submission fails on the full test set, you should check that the column and row order are the same as the submission format and that all your responses are valid integers. The benchmark submission shows how to do these checks.
I ran a smoke test but I cant see the logs cause it has a limit of 1000 and importing numpy uses up all of those, do I need to put numpy and pandas in my assets folder? The submission format etc is not very clear, thank you
Hi @azkazia , you do not need to put any packages in your assets folder - you should check to make sure the runtime environment has all the packages your submission needs to run before submitting (if you need additional packages, feel free to open a PR to add them). I am unsure why the import of numpy is logging so extensively, but you might want to see there is some sort of warning there that you can resolve or suppress.