-
Notifications
You must be signed in to change notification settings - Fork 629
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added edges to graph. Also added script to download mock models (#39)
* Add edges to graph. Add squeezenet to mock data. * rm json * rm pb files and add links to them * Add edges to graph. Add squeezenet to mock data. rm json rm pb files and add links to them * added download script * typo
- Loading branch information
Showing
4 changed files
with
56 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
## Note | ||
Test data squeezenet and inception_v1 are from onnx/models. | ||
|
||
https://github.com/onnx/models | ||
|
||
squeezenet has 53 inputs, 66 nodes and 1 output. | ||
|
||
inception_v1 has 117 inputs, 143 nodes and 1 output. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
|
||
# Download inception_v1 model | ||
curl -LOk https://s3.amazonaws.com/download.onnx/models/inception_v1.tar.gz | ||
|
||
tar -xvzf inception_v1.tar.gz | ||
cp inception_v1/model.pb inception_v1_model.pb | ||
|
||
rm -rf inception_v1 | ||
rm inception_v1.tar.gz | ||
|
||
|
||
# Download squeezenet model | ||
curl -LOk https://s3.amazonaws.com/download.onnx/models/squeezenet.tar.gz | ||
|
||
tar -xvzf squeezenet.tar.gz | ||
cp squeezenet/model.pb squeezenet_model.pb | ||
|
||
rm -rf squeezenet | ||
rm squeezenet.tar.gz | ||
|
Binary file not shown.