Skip to content
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 jetstream/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -1274,9 +1274,10 @@ def export_experiment_logs_to_json(
@recreate_enrollments_option
@config_repos_option
@private_config_repos_option
@analysis_periods_option()
@image_option
@image_version_option
@analysis_periods_option()
@memory_request_option
Comment thread
mikewilli marked this conversation as resolved.
@click.pass_context
def rerun_config_changed(
ctx,
Expand All @@ -1296,6 +1297,7 @@ def rerun_config_changed(
analysis_periods,
image,
image_version,
memory_request,
):
"""Rerun all available analyses for experiments with new or updated config files."""
# TODO: make this smarter: figure out if we need to rerun metrics or just statistics,
Expand Down Expand Up @@ -1335,6 +1337,7 @@ def rerun_config_changed(
analysis_periods=analysis_periods,
image=image,
image_version=image_version,
memory_request=memory_request,
)

success = AnalysisExecutor(
Expand Down
Loading