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

Commit

Permalink
update (#2730)
Browse files Browse the repository at this point in the history
* Update nni exp dir (#2686)

* Bump npm-registry-fetch from 4.0.2 to 4.0.5 in /src/nni_manager (#2655)

Bumps [npm-registry-fetch](https://github.com/npm/registry-fetch) from 4.0.2 to 4.0.5.
- [Release notes](https://github.com/npm/registry-fetch/releases)
- [Changelog](https://github.com/npm/npm-registry-fetch/blob/latest/CHANGELOG.md)
- [Commits](https://github.com/npm/registry-fetch/commits)

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump lodash from 4.17.14 to 4.17.19 in /src/nni_manager (#2697)

Bumps [lodash](https://github.com/lodash/lodash) from 4.17.14 to 4.17.19.
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](lodash/lodash@4.17.14...4.17.19)

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* fix typo "vv1.7" (#2687)

* Fix _graph_utils import (#2675)

* Update builtin_quantizers.py (#2656)

The method used is QAT, not DoReFa, the annotation is wrong.

* update

* update

Co-authored-by: chicm-ms <38930155+chicm-ms@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: lin bin <756691769@qq.com>
Co-authored-by: Lijiao <15910218274@163.com>
  • Loading branch information
5 people authored Jul 24, 2020
1 parent 8446e71 commit 34b6506
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 6 deletions.
8 changes: 4 additions & 4 deletions docs/en_US/_templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,11 @@ <h1 class="title">NNI capabilities in a glance</h1>
<table class="tuner">
<tbody>
<tr>
<td></td>
<td class="references"></td>
<td>
<b>Built-in</b>
</td>
<td class="references">
<td class="algorithms references">
<b>References</b>
</td>
</tr>
Expand Down Expand Up @@ -116,7 +116,7 @@ <h1 class="title">NNI capabilities in a glance</h1>
</ul>
</td>
<td>
<ul>
<ul class="algorithms">
<li><a href="https://nni.readthedocs.io/en/latest/autotune_ref.html#trial">Python API</a></li>
<li><a href="{{ pathto('Tutorial/AnnotationSpec') }}">NNI Annotation</a></li>
<li><a href="https://nni.readthedocs.io/en/latest/installation.html">Supported OS</a></li>
Expand Down Expand Up @@ -184,7 +184,7 @@ <h1 class="title">NNI capabilities in a glance</h1>
</ul>
</td>
<td>
<ul>
<ul class="algorithms">
<li><a href="{{ pathto('Tuner/CustomizeTuner') }}">CustomizeTuner</a></li>
<li><a href="{{ pathto('Assessor/CustomizeAssessor') }}">CustomizeAssessor</a></li>
<li><a href="{{ pathto('Tutorial/InstallCustomizedAlgos') }}">Install Customized Algorithms as
Expand Down
24 changes: 22 additions & 2 deletions docs/static/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -86,17 +86,19 @@

.tuner{
width: 90%;
min-width: 674px;
margin: 0 auto;
margin-bottom: 25px;
table-layout: fixed;
}

.tuner, .tuner td{
border: 1px solid #ccc;
font-size: 14px;
}

.tuner td.references{
width: 25%;
.tuner .references{
width: 16%;
}

.tuner td:not(.core-td) {
Expand All @@ -108,8 +110,22 @@
}

.tuner ul.core{
word-break: break-word;
padding-left: 25px;
padding-top: 25px;
box-sizing: border-box;
}

@media screen and (min-width:1361px){
.tuner ul.core{
width: 25%;
}
}

@media screen and (max-width:1360px){
.tuner ul.core{
width: 32%;
}
}

.tuner .title {
Expand All @@ -125,6 +141,10 @@
line-height: 26px;
}

.tuner .algorithms{
word-break: break-word;
}

.wy-nav-content .tuner li{
list-style-type: none;
line-height: 26px;
Expand Down

0 comments on commit 34b6506

Please sign in to comment.