This repository has been archived by the owner on Sep 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Show experiment name in nnictl experiment list #1726
Merged
Merged
Changes from 1 commit
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -99,9 +99,13 @@ def check_experiment_id(args, update=True): | |
print_error('There are multiple experiments, please set the experiment id...') | ||
experiment_information = "" | ||
for key in running_experiment_list: | ||
experiment_information += (EXPERIMENT_DETAIL_FORMAT % (key, experiment_dict[key]['status'], \ | ||
experiment_dict[key]['port'], experiment_dict[key].get('platform'), experiment_dict[key]['startTime'],\ | ||
experiment_dict[key]['endTime'])) | ||
experiment_information += EXPERIMENT_DETAIL_FORMAT % (key, | ||
experiment_dict[key].get('experimentName', 'N/A'), | ||
experiment_dict[key]['status'], | ||
experiment_dict[key]['port'], | ||
experiment_dict[key].get('platform'), | ||
experiment_dict[key]['startTime'], | ||
experiment_dict[key]['endTime']) | ||
print(EXPERIMENT_INFORMATION_FORMAT % experiment_information) | ||
exit(1) | ||
elif not running_experiment_list: | ||
|
@@ -155,9 +159,13 @@ def parse_ids(args): | |
print_error('There are multiple experiments, please set the experiment id...') | ||
experiment_information = "" | ||
for key in running_experiment_list: | ||
experiment_information += (EXPERIMENT_DETAIL_FORMAT % (key, experiment_dict[key]['status'], \ | ||
experiment_dict[key]['port'], experiment_dict[key].get('platform'), experiment_dict[key]['startTime'], \ | ||
experiment_dict[key]['endTime'])) | ||
experiment_information += EXPERIMENT_DETAIL_FORMAT % (key, | ||
experiment_dict[key].get('experimentName', 'N/A'), | ||
experiment_dict[key]['status'], | ||
experiment_dict[key]['port'], | ||
experiment_dict[key].get('platform'), | ||
experiment_dict[key]['startTime'], | ||
experiment_dict[key]['endTime']) | ||
print(EXPERIMENT_INFORMATION_FORMAT % experiment_information) | ||
exit(1) | ||
else: | ||
|
@@ -573,8 +581,13 @@ def experiment_list(args): | |
print_warning('There is no experiment running...\nYou can use \'nnictl experiment list --all\' to list all experiments.') | ||
experiment_information = "" | ||
for key in experiment_id_list: | ||
experiment_information += (EXPERIMENT_DETAIL_FORMAT % (key, experiment_dict[key]['status'], experiment_dict[key]['port'],\ | ||
experiment_dict[key].get('platform'), experiment_dict[key]['startTime'], experiment_dict[key]['endTime'])) | ||
experiment_information += EXPERIMENT_DETAIL_FORMAT % (key, | ||
experiment_dict[key].get('experimentName', 'N/A'), | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. why add a new line in 585 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. To make it neat, symmetrical and beautiful. |
||
experiment_dict[key]['status'], | ||
experiment_dict[key]['port'], | ||
experiment_dict[key].get('platform'), | ||
experiment_dict[key]['startTime'], | ||
experiment_dict[key]['endTime']) | ||
print(EXPERIMENT_INFORMATION_FORMAT % experiment_information) | ||
|
||
def get_time_interval(time1, time2): | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what is
author_name
used for?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's an important metadata. Save it for future use. Also okay to eject. Suggestions?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Don't know if it will be used in the future, do not suggest to maintain unuseful information in metadata.