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
a4867550
You need to sign in or sign up before continuing.
Commit
a4867550
authored
Sep 10, 2016
by
Yuxin Wu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update readme
parent
f74f8900
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
examples/DoReFa-Net/README.md
examples/DoReFa-Net/README.md
+1
-1
tensorpack/predict/concurrency.py
tensorpack/predict/concurrency.py
+1
-0
No files found.
examples/DoReFa-Net/README.md
View file @
a4867550
...
@@ -2,7 +2,7 @@ Code and model for the paper:
...
@@ -2,7 +2,7 @@ Code and model for the paper:
[
DoReFa-Net: Training Low Bitwidth Convolutional Neural Networks with Low Bitwidth Gradients
](
http://arxiv.org/abs/1606.06160
)
, by Zhou et al.
[
DoReFa-Net: Training Low Bitwidth Convolutional Neural Networks with Low Bitwidth Gradients
](
http://arxiv.org/abs/1606.06160
)
, by Zhou et al.
We hosted a demo at CVPR16 on behalf of Megvii, Inc, running
real-time 1/4 VGG size DoReFa-Net on both ARM and
FPGA.
We hosted a demo at CVPR16 on behalf of Megvii, Inc, running
a real-time 1/4-VGG size DoReFa-Net on ARM and half-VGG size DoReFa-Net on
FPGA.
We're not planning to release those runtime bit-op libraries for now. In these examples, bit operations are run in float32.
We're not planning to release those runtime bit-op libraries for now. In these examples, bit operations are run in float32.
Pretrained model for 1-2-6-AlexNet is available at
Pretrained model for 1-2-6-AlexNet is available at
...
...
tensorpack/predict/concurrency.py
View file @
a4867550
...
@@ -127,6 +127,7 @@ class MultiThreadAsyncPredictor(AsyncPredictorBase):
...
@@ -127,6 +127,7 @@ class MultiThreadAsyncPredictor(AsyncPredictorBase):
"""
"""
def
__init__
(
self
,
predictors
,
batch_size
=
5
):
def
__init__
(
self
,
predictors
,
batch_size
=
5
):
""" :param predictors: a list of OnlinePredictor"""
""" :param predictors: a list of OnlinePredictor"""
assert
len
(
predictors
)
for
k
in
predictors
:
for
k
in
predictors
:
#assert isinstance(k, OnlinePredictor), type(k)
#assert isinstance(k, OnlinePredictor), type(k)
# TODO use predictors.return_input here
# TODO use predictors.return_input here
...
...
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