Skip to content
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

Docs: Insert eval_collector.data_collect when evaluate from checkpoint (calculate ItemCoverage) #1364

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion docs/source/user_guide/usage/use_modules.rst
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,11 @@ In this example, we present how to test a model based on the previous saved para
# trainer loading and initialization
trainer = get_trainer(config['MODEL_TYPE'], config['model'])(config, model)

# When calculate ItemCoverage metrics, we need to run this code for set item_nums in eval_collector.
trainer.eval_collector.data_collect(train_data)

# model evaluation
checkpoint_file = 'checkpoint.pth'
test_result = trainer.evaluate(test_data, model_file=checkpoint_file)
print(test_result)
...
...