Skip to content
This repository has been archived by the owner on Sep 18, 2024. It is now read-only.

quick fix bug: assessor validation in nnictl #200

Merged
merged 39 commits into from
Oct 11, 2018
Merged
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
dc780cd
Merge pull request #1 from Microsoft/master
SparkSnail Sep 14, 2018
86243e7
Merge pull request #2 from Microsoft/master
SparkSnail Sep 14, 2018
3d1e4e9
fix nnictl bug
Sep 14, 2018
6d09780
Merge pull request #4 from Microsoft/master
SparkSnail Sep 17, 2018
0d24158
Merge branch 'master' of https://github.com/SparkSnail/nni
Sep 18, 2018
6d669c6
Merge pull request #6 from Microsoft/master
SparkSnail Sep 19, 2018
af2615d
Merge pull request #8 from Microsoft/master
SparkSnail Sep 20, 2018
f6b7c0a
Merge pull request #9 from Microsoft/master
SparkSnail Sep 24, 2018
a74febc
Merge pull request #10 from Microsoft/master
SparkSnail Sep 25, 2018
334b0a4
Merge pull request #12 from Microsoft/master
SparkSnail Sep 27, 2018
efe93df
Merge pull request #13 from Microsoft/master
SparkSnail Sep 27, 2018
0d9b074
Merge branch 'master' of https://github.com/SparkSnail/nni
Sep 28, 2018
863d137
add hdfs host validation
Sep 28, 2018
7c4bf9b
fix bugs
Sep 28, 2018
61e7f86
Merge pull request #14 from Microsoft/v0.2
SparkSnail Sep 28, 2018
3dfce3a
fix dockerfile
Sep 28, 2018
30f8feb
fix install.sh
Sep 29, 2018
0926045
update install.sh
Sep 29, 2018
c3160e4
fix dockerfile
Sep 29, 2018
d3f68be
Set timeout for HDFSUtility exists function
Sep 29, 2018
4959a93
remove unused TODO
Sep 29, 2018
46fad2a
Merge branch 'v0.2' of https://github.com/SparkSnail/nni into v0.2
Sep 29, 2018
b1ae562
fix sdk
Sep 29, 2018
7c571b2
add optional for outputDir and dataDir
Sep 29, 2018
9744692
refactor dockerfile.base
Sep 29, 2018
2fe73a6
Remove unused import in hdfsclientUtility
Sep 29, 2018
26e8864
Merge pull request #15 from Microsoft/v0.2
SparkSnail Sep 30, 2018
f5fdeab
add config_pai.yml
Sep 30, 2018
c5373f0
refactor nnictl create logic and add colorful print
Sep 30, 2018
349c0a7
fix nnictl stop logic
Sep 30, 2018
64e8d7d
add annotation for config_pai.yml
Sep 30, 2018
f8c8ddb
add document for start experiment
Sep 30, 2018
60eae23
fix config.yml
Sep 30, 2018
8bb958c
fix document
Sep 30, 2018
8530cda
Merge pull request #21 from Microsoft/v0.2
SparkSnail Oct 8, 2018
688b890
fix dataDir and outputDir in config_pai.yml
Oct 8, 2018
2e96c54
fix config_pai.yml
Oct 8, 2018
eb561af
Merge pull request #25 from Microsoft/v0.2
SparkSnail Oct 11, 2018
7d6b9cf
fix assessor launcher
Oct 11, 2018
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: 1 addition & 1 deletion tools/nnicmd/config_schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
'builtinAssessorName': lambda x: x in ['Medianstop'],
'classArgs': {
'optimize_mode': lambda x: x in ['maximize', 'minimize']},
'gpuNum': And(int, lambda x: 0 <= x <= 99999)
Optional('gpuNum'): And(int, lambda x: 0 <= x <= 99999)
},{
'codeDir': os.path.exists,
'classFileName': str,
Expand Down