Skip to content
This repository has been archived by the owner on Nov 22, 2022. It is now read-only.

Adds an option to skip test run after models have been trained (fixing unlanded D21780336) #1372

Closed
wants to merge 1 commit into from
Closed
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
2 changes: 2 additions & 0 deletions pytext/config/pytext_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,8 @@ class PyTextConfig(ConfigBase):
use_deterministic_cudnn: bool = False
# Run eval set after model has been trained - for hyperparameter search
report_eval_results: bool = False
# Run test set after model has been trained
report_test_results: bool = True
# include components from custom directories
include_dirs: Optional[List[str]] = None
# config version
Expand Down