You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Yes, metadata related to training is something we were thinking of as a future feature. We have some ideas here, but would be interested to hear your thoughts about a lightweight way to capture this might be? (presently we are focussed on post-training metadata that can be extracted from pretrained models).
fromsotabencheval.image_classificationimportImageClassificationParams, ImageNetEvaluatorevaluator=ImageNetEvaluator(
model_name='FixResNeXt-101 32x48d',
paper_arxiv_id='1906.06423',
params=ImageClassificationParams( # could also just be a dict if you annotate the function with params: ImageClassificationParamsepochs=200,
batch_size=32,
weight_decay=.1,
extra_data=True,
fixres=True# new key introduced by this method
)
)
I guess for enum/choice support something like a dataclass might be better than a typed dict.
This looks like an awesome project.
Would be great if there was a way to report hyper parameters with each submission.
The text was updated successfully, but these errors were encountered: