-
Notifications
You must be signed in to change notification settings - Fork 8
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
Create dummy measurements.json file if not present #216
Conversation
MLCommons CLA bot All contributors have signed the MLCommons CLA ✍️ ✅ |
print( | ||
f"Warning: measurements.json file not present, creating a dummy measurements.json in path {measurements_json_path}") | ||
dummy_measurements_data = { | ||
"input_data_types": env['MLC_ML_MODEL_INPUTS_DATA_TYPE'] if env.get('MLC_ML_MODEL_INPUTS_DATA_TYPE') else None, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we should change None to 'TBD' so that submission checker doesnt complain.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes I do remember getting a similar error. Fixed in latest commit
No description provided.