Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
seminar-breakout
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Shashank Suhas
seminar-breakout
Commits
683fe429
Commit
683fe429
authored
Aug 11, 2017
by
Yuxin Wu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add TOC to more documentation pages
parent
f431ea04
Changes
10
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
48 additions
and
17 deletions
+48
-17
docs/_static/jquery-3.2.1.min.js
docs/_static/jquery-3.2.1.min.js
+4
-0
docs/_static/pymunk.js
docs/_static/pymunk.js
+7
-8
docs/_templates/layout.html
docs/_templates/layout.html
+5
-0
docs/conf.py
docs/conf.py
+1
-1
docs/modules/callbacks.rst
docs/modules/callbacks.rst
+7
-0
docs/modules/dataflow.dataset.rst
docs/modules/dataflow.dataset.rst
+7
-0
docs/modules/dataflow.imgaug.rst
docs/modules/dataflow.imgaug.rst
+6
-0
docs/modules/dataflow.rst
docs/modules/dataflow.rst
+3
-7
docs/modules/models.rst
docs/modules/models.rst
+7
-0
tensorpack/models/__init__.py
tensorpack/models/__init__.py
+1
-1
No files found.
docs/_static/jquery-3.2.1.min.js
0 → 100644
View file @
683fe429
This diff is collapsed.
Click to expand it.
docs/_static/pymunk.js
View file @
683fe429
...
@@ -5,9 +5,13 @@ $(function (){
...
@@ -5,9 +5,13 @@ $(function (){
var
createList
=
function
(
selected
)
{
var
createList
=
function
(
selected
)
{
var
ul
=
$
(
'
<ul>
'
);
var
ul
=
$
(
'
<ul>
'
);
selected
.
clone
().
each
(
function
(
i
,
e
)
{
selected
.
each
(
function
(
i
,
e
)
{
var
n
=
$
(
e
).
children
(
'
.descname
'
);
var
fullname
=
e
.
id
;
var
n
=
$
(
e
).
children
(
'
.descname
'
).
clone
();
if
(
fullname
.
startsWith
(
'
tensorpack.
'
))
fullname
=
fullname
.
substr
(
11
);
n
[
0
].
innerText
=
fullname
;
var
l
=
$
(
e
).
children
(
'
.headerlink
'
);
var
l
=
$
(
e
).
children
(
'
.headerlink
'
);
var
a
=
$
(
'
<a>
'
);
var
a
=
$
(
'
<a>
'
);
...
@@ -26,12 +30,7 @@ $(function (){
...
@@ -26,12 +30,7 @@ $(function (){
var
customIndex
=
$
(
'
.custom-index
'
);
var
customIndex
=
$
(
'
.custom-index
'
);
customIndex
.
empty
();
customIndex
.
empty
();
var
mod_content
=
$
(
'
#module-contents
'
);
var
selected
=
$
(
'
div.section>dl>dt
'
);
if
(
mod_content
.
length
==
0
)
return
;
var
mc_container
=
mod_content
[
0
].
parentNode
;
var
selected
=
$
(
mc_container
).
find
(
'
>dl>dt
'
);
if
(
selected
.
length
===
0
)
if
(
selected
.
length
===
0
)
return
;
return
;
...
...
docs/_templates/layout.html
0 → 100644
View file @
683fe429
{% extends "!layout.html" %}
{%- block extrahead %}
<script
type=
"text/javascript"
src=
'/_static/jquery-3.2.1.min.js'
></script>
{% endblock %}
docs/conf.py
View file @
683fe429
...
@@ -160,7 +160,7 @@ html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
...
@@ -160,7 +160,7 @@ html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
# Theme options are theme-specific and customize the look and feel of a theme
# Theme options are theme-specific and customize the look and feel of a theme
# further. For a list of options available for each theme, see the
# further. For a list of options available for each theme, see the
# documentation.
# documentation.
html_theme_options
=
{}
html_theme_options
=
{
}
# The name for this set of Sphinx documents. If None, it defaults to
# The name for this set of Sphinx documents. If None, it defaults to
# "<project> v<release> documentation".
# "<project> v<release> documentation".
...
...
docs/modules/callbacks.rst
View file @
683fe429
tensorpack.callbacks package
tensorpack.callbacks package
============================
============================
.. container:: custom-index
.. raw:: html
<script type="text/javascript" src='/_static/pymunk.js'></script>
.. automodule:: tensorpack.callbacks
.. automodule:: tensorpack.callbacks
:members:
:members:
:no-undoc-members:
:no-undoc-members:
...
...
docs/modules/dataflow.dataset.rst
View file @
683fe429
tensorpack.dataflow.dataset package
tensorpack.dataflow.dataset package
===================================
===================================
.. container:: custom-index
.. raw:: html
<script type="text/javascript" src='/_static/pymunk.js'></script>
.. automodule:: tensorpack.dataflow.dataset
.. automodule:: tensorpack.dataflow.dataset
:members:
:members:
:undoc-members:
:undoc-members:
...
...
docs/modules/dataflow.imgaug.rst
View file @
683fe429
tensorpack.dataflow.imgaug package
tensorpack.dataflow.imgaug package
==================================
==================================
.. container:: custom-index
.. raw:: html
<script type="text/javascript" src='/_static/pymunk.js'></script>
.. automodule:: tensorpack.dataflow.imgaug
.. automodule:: tensorpack.dataflow.imgaug
:members:
:members:
:undoc-members:
:undoc-members:
...
...
docs/modules/dataflow.rst
View file @
683fe429
tensorpack.dataflow package
tensorpack.dataflow package
===========================
===========================
Subpackages
Table of Contents
-----------
-----------------
.. toctree::
.. toctree::
dataflow.dataset
dataflow.dataset
dataflow.imgaug
dataflow.imgaug
Table of Contents
-----------------
.. container:: custom-index
.. container:: custom-index
.. raw:: html
.. raw:: html
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script type="text/javascript" src='/_static/pymunk.js'></script>
<script type="text/javascript" src='/_static/pymunk.js'></script>
Module Contents
DataFlow
---------------
---------------
.. automodule:: tensorpack.dataflow
.. automodule:: tensorpack.dataflow
...
...
docs/modules/models.rst
View file @
683fe429
tensorpack.models package
tensorpack.models package
=========================
=========================
.. container:: custom-index
.. raw:: html
<script type="text/javascript" src='/_static/pymunk.js'></script>
.. automodule:: tensorpack.models
.. automodule:: tensorpack.models
:members:
:members:
:undoc-members:
:undoc-members:
...
...
tensorpack/models/__init__.py
View file @
683fe429
...
@@ -8,7 +8,7 @@ import os.path
...
@@ -8,7 +8,7 @@ import os.path
# this line is necessary for _TFModuleFunc to work
# this line is necessary for _TFModuleFunc to work
import
tensorflow
as
tf
# noqa: F401
import
tensorflow
as
tf
# noqa: F401
__all__
=
[
'LinearWrap'
]
__all__
=
[]
def
_global_import
(
name
):
def
_global_import
(
name
):
...
...
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