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
b419cc81
Commit
b419cc81
authored
Jun 13, 2019
by
Yuxin Wu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update docs
parent
99872a7b
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
7 deletions
+13
-7
.github/ISSUE_TEMPLATE.md
.github/ISSUE_TEMPLATE.md
+6
-4
.github/ISSUE_TEMPLATE/feature-requests.md
.github/ISSUE_TEMPLATE/feature-requests.md
+4
-3
docs/tutorial/summary.md
docs/tutorial/summary.md
+3
-0
No files found.
.github/ISSUE_TEMPLATE.md
View file @
b419cc81
...
...
@@ -16,11 +16,13 @@ Otherwise, you can post here for:
Some typical questions that we DO NOT answer:
+
"Could you improve/implement an example/paper ?" --
We have no plans to do so. We don't consider feature
requests for examples or implement a paper for you.
+
"Could you implement a paper / other variants of a paper / additional features of a paper ?"
-- The answer is: we have no plans to do so.
We take feature requests on the library, but not on examples.
We don't implement papers or variants/features of a paper for you,
unless it can demonstrate some Tensorpack features not yet demonstrated in the existing examples.
If you don't know how to do something yourself, you may ask a usage question.
+
"The examples do not perform as expected after I change the models/dataset/parameters/etc."
Tensorpack maintainers make sure the examples perform well without modifications.
...
...
.github/ISSUE_TEMPLATE/feature-requests.md
View file @
b419cc81
...
...
@@ -8,8 +8,9 @@ about: Suggest an idea for Tensorpack
(See http://tensorpack.readthedocs.io/tutorial/index.html#extend-tensorpack).
It does not have to be added to Tensorpack unless you have a good reason.
+
"Could you implement a paper / other variants of a paper ?"
+
"Could you implement a paper / other variants of a paper
/ additional features of a paper
?"
-- The answer is: we have no plans to do so.
We don't implement papers or variants of a paper for you,
unless it demonstrates some Tensorpack features not yet demonstrated in the existing examples.
We take feature requests on the library, but not on examples.
We don't implement papers or variants/features of a paper for you,
unless it can demonstrate some Tensorpack features not yet demonstrated in the existing examples.
If you don't know how to do something yourself, you may ask a usage question.
docs/tutorial/summary.md
View file @
b419cc81
...
...
@@ -11,6 +11,7 @@ This is how TensorFlow summaries eventually get logged/saved/printed:
1.
__What to Log__: Define what you want to log in the graph.
When you call
`tf.summary.xxx`
in your graph code, TensorFlow adds an op to
`tf.GraphKeys.SUMMARIES`
collection (by default).
Tensorpack further removes summaries not from the first training tower.
2.
__When to Log__:
[
MergeAllSummaries
](
../modules/callbacks.html#tensorpack.callbacks.MergeAllSummaries
)
callback is one of the
[
default callbacks
](
../modules/train.html#tensorpack.train.DEFAULT_CALLBACKS
)
.
It runs ops in the
`tf.GraphKeys.SUMMARIES`
collection (by default) every epoch (by default),
...
...
@@ -25,6 +26,8 @@ This is how TensorFlow summaries eventually get logged/saved/printed:
saves scalars to a JSON file.
All the "what, when, where" can be customized in either the graph or with the callbacks/monitors setting.
You can call
`tf.summary.xxx(collections=[...])`
to add your custom summaries a different collection,
and use the
`MergeAllSummaries(key=...)`
callback to write them to monitors.
The design goal to disentangle "what, when, where" is to make components reusable.
Suppose you have
`M`
items to log
...
...
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