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
93d707bc
Commit
93d707bc
authored
Dec 12, 2018
by
Yuxin Wu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update issue template; remove unused "set_shape" in MaskRCNN
parent
168f7292
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
22 additions
and
15 deletions
+22
-15
.github/ISSUE_TEMPLATE.md
.github/ISSUE_TEMPLATE.md
+5
-5
.github/ISSUE_TEMPLATE/using-understanding-tensorpack.md
.github/ISSUE_TEMPLATE/using-understanding-tensorpack.md
+15
-8
examples/FasterRCNN/model_frcnn.py
examples/FasterRCNN/model_frcnn.py
+0
-1
examples/README.md
examples/README.md
+2
-1
No files found.
.github/ISSUE_TEMPLATE.md
View file @
93d707bc
...
...
@@ -20,13 +20,13 @@ Some typical questions that we DO NOT answer:
We have no plans to do so. We don't consider feature
requests for examples or implement a paper for you.
If you don't know how to do something yourself, you may ask a usage question.
+
"The examples do not perform
well
after I change the models/dataset/parameters/etc."
Tensorpack maintainers make sure the examples perform well without modification.
+
"The examples do not perform
as expected
after I change the models/dataset/parameters/etc."
Tensorpack maintainers make sure the examples perform well without modification
s
.
But it's your job to pick the model and parameters that are suitable for your own situation.
We cannot help with such questions unless they appear to be a bug in tensorpack.
+
"Why my
model doesn't work
?", "I don't understand this paper you implement.",
"How should I change the
example
s for my own dataset?"
+
"Why my
own model doesn't perform well
?", "I don't understand this paper you implement.",
"How should I change the
parameter
s for my own dataset?"
We do not answer machine learning questions.
You can also use gitter (https://gitter.im/tensorpack/users) for more casual discussions.
.github/ISSUE_TEMPLATE/using-understanding-tensorpack.md
View file @
93d707bc
...
...
@@ -9,21 +9,28 @@ about: More general questions about Tensorpack.
+
Your question is probably answered in
[
tutorials
](
http://tensorpack.readthedocs.io/en/latest/tutorial/index.html#user-tutorials
)
. Read it first.
+
We answer "HOW to do X with Tensorpack" for a well-defined X.
We also answer "HOW/WHY Tensorpack does X" for some X that Tensorpack or its examples are doing.
+
We answer "HOW to do X with Tensorpack" for a well-defined specific X.
X must be something that you conceptually know how to do, but are unable to do due to lack of knowledge about Tensorpack.
We don't answer vague questions like "How to do semantic segmentation in Tensorpack".
+
We also answer "HOW/WHY Tensorpack does X" for some X that Tensorpack or its examples are doing.
Some typical questions that we DO NOT answer:
+
"Could you improve/implement an example/paper ?" --
+
"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.
If you don't know how to do something yourself, you may ask a usage question.
+
"The examples do not perform well after I change the models/dataset/parameters/etc."
Tensorpack maintainers make sure the examples perform well without modification.
+
"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.
But it's your job to pick the model and parameters that are suitable for your own situation.
We cannot help with such questions unless they appear to be a bug in tensorpack.
+
"Why my model doesn't work?", "I don't understand this paper you implement.",
"How should I change the examples for my own dataset?"
We do not answer machine learning questions.
+
"Why my own model doesn't perform well?", "I don't understand this paper you implement.",
"How should I change the parameters for my own dataset?":
We do not answer machine learning questions.
You can also use gitter (https://gitter.im/tensorpack/users) for more casual discussions.
examples/FasterRCNN/model_frcnn.py
View file @
93d707bc
...
...
@@ -190,7 +190,6 @@ def fastrcnn_predictions(boxes, scores):
assert
boxes
.
shape
[
1
]
==
cfg
.
DATA
.
NUM_CLASS
assert
scores
.
shape
[
1
]
==
cfg
.
DATA
.
NUM_CLASS
boxes
=
tf
.
transpose
(
boxes
,
[
1
,
0
,
2
])[
1
:,
:,
:]
# #catxnx4
boxes
.
set_shape
([
None
,
cfg
.
DATA
.
NUM_CATEGORY
,
None
])
scores
=
tf
.
transpose
(
scores
[:,
1
:],
[
1
,
0
])
# #catxn
def
f
(
X
):
...
...
examples/README.md
View file @
93d707bc
...
...
@@ -5,7 +5,8 @@ Training examples with __reproducible performance__.
__The word "reproduce" should always mean reproduce performance__
.
With the magic of SGD, wrong deep learning code often appears to work, especially if you try it on toy datasets.
Github is full of such deep learning code that "implements" but does not "reproduce" methods.
Github is full of deep learning code that "implements" but does not "reproduce"
methods, and you'll not know whether the implementation is actually correct.
See
[
Unawareness of Deep Learning Mistakes
](
https://medium.com/@ppwwyyxx/unawareness-of-deep-learning-mistakes-d5b5774da0ba
)
.
We refuse toy examples.
...
...
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