Skip to content

Add documentation for the mode parameter #57

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
7 changes: 6 additions & 1 deletion g3doc/api_docs/python/tfma/load_eval_results.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,12 @@ Run model analysis for a single model on multiple data sets.

* <b>`output_paths`</b>: A list of output paths of completed tfma runs.
* <b>`mode`</b>: The mode of the evaluation. Currently, tfma.DATA_CENTRIC_MODE
and tfma.MODEL_CENTRIC_MODE are supported.
and tfma.MODEL_CENTRIC_MODE are supported. In tfma.MODEL_CENTRIC_MODE, the
data will be presented in a model centric way which shows how a model
progresses over each run (i.e., the main axis will be the model run id). In
DATA_CENTRIC_MODE, the data will be presented in a data centric way which
shows how the latest version of the model performs as new evaluation data
become available (i.e., the main axis is the last data span).

#### Returns:

Expand Down