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

Fix hyperband pop issue #1340

Merged
merged 40 commits into from
Jul 25, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
6099fb4
fix link err in docs
suiguoxin May 28, 2019
44cf69c
add spaces
suiguoxin May 28, 2019
3f87626
re-organise links for detailed descriptions of the tuners and accesso…
suiguoxin May 28, 2019
b92c4ab
add in-page link by change .md to .html
suiguoxin May 29, 2019
3be8892
Merge branch 'master' of git://github.com/microsoft/nni
suiguoxin May 29, 2019
0717988
delete #section from cross-file links to make links work in both read…
suiguoxin May 29, 2019
db20820
Merge branch 'master' of git://github.com/microsoft/nni
suiguoxin Jun 5, 2019
21725f9
gp_tuner init from fmfn's repo
suiguoxin Jun 20, 2019
e35fa2b
fix params bug by adding float>int transition
suiguoxin Jun 20, 2019
17be796
add optimal choices; support randint&quniform type; add doc
suiguoxin Jun 21, 2019
3906b34
refine doc and code
suiguoxin Jun 21, 2019
b776d7e
change mnist yml comments
suiguoxin Jun 21, 2019
dbac6ed
typo fix
suiguoxin Jun 21, 2019
df3952a
fix val err
suiguoxin Jun 23, 2019
37f4b12
fix minimize mode err
suiguoxin Jun 23, 2019
56a1575
add config test and Hpo result
suiguoxin Jun 23, 2019
ba8dccd
Merge branch 'master' of https://github.com/microsoft/nni
suiguoxin Jun 23, 2019
8cd50e3
support quniform type; update doc; update test config
suiguoxin Jun 24, 2019
942f519
update doc
suiguoxin Jun 24, 2019
ce4906f
un-commit changed in yarn.lock
suiguoxin Jun 24, 2019
a0d6cd1
fix optimize mode bug
suiguoxin Jun 25, 2019
10df680
optimize mode
suiguoxin Jun 25, 2019
c5f3da0
optimize mode
suiguoxin Jun 25, 2019
77c9547
reset pylint, gitignore
suiguoxin Jun 25, 2019
d6febf2
Merge branch 'master' of git://github.com/microsoft/nni
suiguoxin Jun 25, 2019
66ba114
revert .gitignore yarn.lock
suiguoxin Jun 25, 2019
eef6bd3
realise automatic line change in table cell by adding custom css to S…
suiguoxin Jun 25, 2019
99dfd65
fix typo
suiguoxin Jun 25, 2019
8afd8a3
Merge branch 'master' of git://github.com/microsoft/nni
suiguoxin Jun 25, 2019
3c3b729
delete toy
suiguoxin Jun 25, 2019
1b48f91
fix config test file ; update docs & readme
suiguoxin Jun 26, 2019
3d58106
remove changes to another branch
suiguoxin Jun 26, 2019
1c3bf4f
Merge branch 'master' of git://github.com/microsoft/nni
suiguoxin Jun 27, 2019
f20b49e
fix custom css bug
suiguoxin Jun 27, 2019
571817e
Merge branch 'master' of git://github.com/microsoft/nni
suiguoxin Jun 27, 2019
5fd3b08
Merge branch 'master' of git://github.com/microsoft/nni
suiguoxin Jul 5, 2019
d92c69f
Merge branch 'master' of git://github.com/microsoft/nni
suiguoxin Jul 11, 2019
4bbffd1
Merge branch 'master' of git://github.com/microsoft/nni
suiguoxin Jul 17, 2019
1b0c153
Merge branch 'master' of git://github.com/microsoft/nni
suiguoxin Jul 21, 2019
cf6acc4
fix pop issue
suiguoxin Jul 21, 2019
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 src/sdk/pynni/nni/bohb_advisor/bohb_advisor.py
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,7 @@ def _get_one_trial_job(self):
send(CommandType.NoMoreTrialJobs, json_tricks.dumps(ret))
return None
assert self.generated_hyper_configs
params = self.generated_hyper_configs.pop()
params = self.generated_hyper_configs.pop(0)
ret = {
'parameter_id': params[0],
'parameter_source': 'algorithm',
Expand Down
2 changes: 1 addition & 1 deletion src/sdk/pynni/nni/hyperband_advisor/hyperband_advisor.py
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ def _get_one_trial_job(self):
self.curr_s -= 1

assert self.generated_hyper_configs
params = self.generated_hyper_configs.pop()
params = self.generated_hyper_configs.pop(0)
ret = {
'parameter_id': params[0],
'parameter_source': 'algorithm',
Expand Down