-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Initial submission from Stanford team. #7
Conversation
Hi @mcruzloya ! Thanks for your submission for the WNV challenge! Was just checking the submission and there's a couple of minor issues. The first one is that the YML has a strange character in some lines instead of the
The second issue has to do with the CSV file, as some of the values sum to either more or less than 1 due to floating-point rounding. For example:
which is throwing warnings on the validation script. It would be best to fix the values to sum up to 1 in the cdf to avoid problems with the hubVerse scheme. Thanks for your interest and submission, and we'll be here to help as needed! |
Apologies for the issues! I think they should be fixed now. Do I need to submit another pull request? |
In case it is useful, here's a way to check the file locally: https://github.com/cdphmodeling/wnvca-2024/tree/main/model-output#local-validation |
After some minor modifications, the output csv file seems to pass the tests in my machine. |
Initial commit including only a negative binomial baseline model. Note that this model differs from CDPH's as a different distribution is fit for every county-month combination and the previous year cases are not used explicitly as a covariate. We plan to submit additional models for subsequent deadlines.