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
12410686
Unverified
Commit
12410686
authored
Jun 21, 2019
by
chicm-ms
Committed by
GitHub
Jun 21, 2019
Browse files
Merge pull request #20 from microsoft/master
pull code
parents
611a45fc
61fec446
Changes
235
Show whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
133 additions
and
27 deletions
+133
-27
src/webui/src/static/interface.ts
src/webui/src/static/interface.ts
+1
-1
src/webui/src/static/style/openRow.scss
src/webui/src/static/style/openRow.scss
+1
-1
src/webui/src/static/style/overview.scss
src/webui/src/static/style/overview.scss
+1
-1
src/webui/src/static/style/overviewTitle.scss
src/webui/src/static/style/overviewTitle.scss
+1
-1
src/webui/src/static/style/para.scss
src/webui/src/static/style/para.scss
+3
-3
src/webui/src/static/style/progress.scss
src/webui/src/static/style/progress.scss
+1
-1
src/webui/src/static/style/slideBar.scss
src/webui/src/static/style/slideBar.scss
+81
-5
src/webui/src/static/style/table.scss
src/webui/src/static/style/table.scss
+4
-4
test/async_sharing_test/config.yml
test/async_sharing_test/config.yml
+1
-1
test/config_test/examples/mnist-nas.test.yml
test/config_test/examples/mnist-nas.test.yml
+20
-0
test/config_test/multi_phase/search_space.json
test/config_test/multi_phase/search_space.json
+1
-1
test/config_test/multi_thread/search_space.json
test/config_test/multi_thread/search_space.json
+1
-1
test/config_test/tuners/search_space_batchtuner.json
test/config_test/tuners/search_space_batchtuner.json
+2
-2
test/metrics_test.py
test/metrics_test.py
+1
-1
test/metrics_test/search_space.json
test/metrics_test/search_space.json
+1
-1
test/metrics_test/trial.py
test/metrics_test/trial.py
+1
-1
test/naive_test/README.md
test/naive_test/README.md
+1
-1
test/pipelines-it-pai-windows.yml
test/pipelines-it-pai-windows.yml
+4
-0
test/pipelines-it-remote-windows.yml
test/pipelines-it-remote-windows.yml
+6
-0
test/remote_docker.py
test/remote_docker.py
+1
-1
No files found.
src/webui/src/static/interface.ts
View file @
12410686
src/webui/src/static/style/openRow.scss
View file @
12410686
src/webui/src/static/style/overview.scss
View file @
12410686
src/webui/src/static/style/overviewTitle.scss
View file @
12410686
src/webui/src/static/style/para.scss
View file @
12410686
src/webui/src/static/style/progress.scss
View file @
12410686
src/webui/src/static/style/slideBar.scss
View file @
12410686
$barHeight
:
56px
;
/* drowdown and select default bgcolor */
$drowBgColor
:
#f2f2f2
;
/* drowdown and select hover bgcolor */
$drowHoverBgColor
:
#e2e2e2
;
.nav
{
list-style
:
none
;
width
:
9
4
%
;
width
:
9
5
%
;
height
:
$barHeight
;
margin
:
0
auto
;
position
:
relative
;
.tab
{
font-family
:
'Segoe'
;
line-height
:
$barHeight
;
...
...
@@ -14,7 +19,7 @@ $barHeight: 56px;
}
}
.firstTab
{
margin
:
0
3
2px
;
margin
:
0
2
0
px
;
}
.logo
{
margin-top
:
2px
;
...
...
@@ -28,17 +33,26 @@ $barHeight: 56px;
}
.feedback
{
text-align
:
right
;
position
:
fixed
;
right
:
19%
;
line-height
:
$barHeight
;
font-size
:
16px
;
color
:
#fff
;
.fresh
{
span
{
margin
:
0
10px
0
3px
;
}
}
.fresh
:hover
{
cursor
:
pointer
;
}
a
{
color
:
#fff
;
text-decoration
:
none
;
margin-left
:
10px
;
}
img
{
width
:
2
4
px
;
width
:
2
0
px
;
margin-right
:
8px
;
}
.version
{
...
...
@@ -51,4 +65,66 @@ $barHeight: 56px;
}
.dropdown
{
margin-right
:
10px
;
/* make dropdown content box position in blue bar bottom */
padding-bottom
:
14px
;
}
.interval
{
position
:
fixed
;
right
:
7%
;
top
:
12px
;
.ant-select-selection
{
background-color
:
transparent
;
border
:
none
;
color
:
#fff
;
outline
:
none
;
font-size
:
16px
;
}
.ant-select-arrow
{
color
:
#fff
;
}
}
/* set select bgcolor */
.ant-select-dropdown-menu
{
background-color
:
$drowBgColor
;
}
.ant-select-dropdown-menu-item
:hover
{
background-color
:
$drowHoverBgColor
;
}
.ant-select-dropdown-menu-item-active
{
background-color
:
transparent
;
}
/* set dropdown bgcolor */
.ant-dropdown
{
.ant-dropdown-menu
{
padding
:
0
;
background-color
:
$drowBgColor
;
border-radius
:
0
;
.ant-dropdown-menu-item
:hover
{
background-color
:
$drowHoverBgColor
;
}
}
}
/* nav style*/
.little
{
width
:
100%
;
.menu
{
.show
{
display
:
block
;
}
.hide
{
display
:
none
;
}
.more
{
color
:
#fff
;
font-size
:
24px
;
margin-top
:
16px
;
}
.more
:hover
{
cursor
:
pointer
;
}
}
.logo
{
text-align
:
center
;
}
}
src/webui/src/static/style/table.scss
View file @
12410686
test/async_sharing_test/config.yml
View file @
12410686
test/config_test/examples/mnist-nas.test.yml
0 → 100644
View file @
12410686
authorName
:
nni
experimentName
:
default_test
maxExecDuration
:
5m
maxTrialNum
:
4
trialConcurrency
:
2
tuner
:
codeDir
:
../../../examples/tuners/random_nas_tuner
classFileName
:
random_nas_tuner.py
className
:
RandomNASTuner
trial
:
codeDir
:
../../../examples/trials/mnist-nas
command
:
python3 mnist.py --batch_num
100
gpuNum
:
0
useAnnotation
:
true
multiPhase
:
false
multiThread
:
false
trainingServicePlatform
:
local
test/config_test/multi_phase/search_space.json
View file @
12410686
test/config_test/multi_thread/search_space.json
View file @
12410686
test/config_test/tuners/search_space_batchtuner.json
View file @
12410686
test/metrics_test.py
View file @
12410686
test/metrics_test/search_space.json
View file @
12410686
test/metrics_test/trial.py
View file @
12410686
test/naive_test/README.md
View file @
12410686
test/pipelines-it-pai-windows.yml
View file @
12410686
...
...
@@ -55,6 +55,10 @@ jobs:
python --version
powershell.exe -file install.ps1
displayName
:
'
Install
nni
toolkit
via
source
code'
-
script
:
|
set PATH=$(ENV_PATH)
python -m pip install scikit-learn==0.21.0 --user
displayName
:
'
Install
dependencies
for
integration
tests'
-
script
:
|
cd test
set PATH=$(ENV_PATH)
...
...
test/pipelines-it-remote-windows.yml
View file @
12410686
...
...
@@ -47,3 +47,9 @@ jobs:
runOptions
:
commands
commands
:
python3 /tmp/nnitest/$(Build.BuildId)/nni-remote/test/remote_docker.py --mode stop --name $(Build.BuildId) --os windows
displayName
:
'
Stop
docker'
-
task
:
SSH@0
inputs
:
sshEndpoint
:
$(end_point)
runOptions
:
commands
commands
:
sudo rm -rf /tmp/nnitest/$(Build.BuildId)
displayName
:
'
Clean
the
remote
files'
test/remote_docker.py
View file @
12410686
Prev
1
…
7
8
9
10
11
12
Next
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