Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
nni
Commits
e0ec38e7
Unverified
Commit
e0ec38e7
authored
Apr 23, 2021
by
SparkSnail
Committed by
GitHub
Apr 23, 2021
Browse files
Fix resume bug (#3569)
parent
441267d1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
ts/nni_manager/core/nnimanager.ts
ts/nni_manager/core/nnimanager.ts
+5
-2
No files found.
ts/nni_manager/core/nnimanager.ts
View file @
e0ec38e7
...
...
@@ -210,9 +210,12 @@ class NNIManager implements Manager {
return
Promise
.
resolve
();
}
this
.
log
.
info
(
'
Setup training service...
'
);
const
config
:
ExperimentConfig
=
this
.
experimentProfile
.
params
;
this
.
trainingService
=
await
this
.
initTrainingService
(
config
);
this
.
config
=
config
;
if
(
this
.
trainingService
===
undefined
)
{
this
.
log
.
info
(
'
Setup training service...
'
);
this
.
trainingService
=
await
this
.
initTrainingService
(
config
);
}
this
.
log
.
info
(
'
Setup tuner...
'
);
const
dispatcherCommand
:
string
=
getMsgDispatcherCommand
(
config
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment