cooper_robot commited on
Commit
e2f0390
·
1 Parent(s): e87aa4b

Update Readme file

Browse files
Files changed (4) hide show
  1. .gitattributes +0 -34
  2. LICENSE +29 -0
  3. README.md +18 -12
  4. resource/ResNet.png +3 -0
.gitattributes CHANGED
@@ -1,36 +1,2 @@
1
- *.7z filter=lfs diff=lfs merge=lfs -text
2
- *.arrow filter=lfs diff=lfs merge=lfs -text
3
  *.bin filter=lfs diff=lfs merge=lfs -text
4
- *.bz2 filter=lfs diff=lfs merge=lfs -text
5
- *.ckpt filter=lfs diff=lfs merge=lfs -text
6
- *.ftz filter=lfs diff=lfs merge=lfs -text
7
- *.gz filter=lfs diff=lfs merge=lfs -text
8
- *.h5 filter=lfs diff=lfs merge=lfs -text
9
- *.joblib filter=lfs diff=lfs merge=lfs -text
10
- *.lfs.* filter=lfs diff=lfs merge=lfs -text
11
- *.mlmodel filter=lfs diff=lfs merge=lfs -text
12
- *.model filter=lfs diff=lfs merge=lfs -text
13
- *.msgpack filter=lfs diff=lfs merge=lfs -text
14
- *.npy filter=lfs diff=lfs merge=lfs -text
15
- *.npz filter=lfs diff=lfs merge=lfs -text
16
- *.onnx filter=lfs diff=lfs merge=lfs -text
17
- *.ot filter=lfs diff=lfs merge=lfs -text
18
- *.parquet filter=lfs diff=lfs merge=lfs -text
19
- *.pb filter=lfs diff=lfs merge=lfs -text
20
- *.pickle filter=lfs diff=lfs merge=lfs -text
21
- *.pkl filter=lfs diff=lfs merge=lfs -text
22
- *.pt filter=lfs diff=lfs merge=lfs -text
23
- *.pth filter=lfs diff=lfs merge=lfs -text
24
- *.rar filter=lfs diff=lfs merge=lfs -text
25
- *.safetensors filter=lfs diff=lfs merge=lfs -text
26
- saved_model/**/* filter=lfs diff=lfs merge=lfs -text
27
- *.tar.* filter=lfs diff=lfs merge=lfs -text
28
- *.tar filter=lfs diff=lfs merge=lfs -text
29
- *.tflite filter=lfs diff=lfs merge=lfs -text
30
- *.tgz filter=lfs diff=lfs merge=lfs -text
31
- *.wasm filter=lfs diff=lfs merge=lfs -text
32
- *.xz filter=lfs diff=lfs merge=lfs -text
33
- *.zip filter=lfs diff=lfs merge=lfs -text
34
- *.zst filter=lfs diff=lfs merge=lfs -text
35
- *tfevents* filter=lfs diff=lfs merge=lfs -text
36
  *.png filter=lfs diff=lfs merge=lfs -text
 
 
 
1
  *.bin filter=lfs diff=lfs merge=lfs -text
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  *.png filter=lfs diff=lfs merge=lfs -text
LICENSE ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ BSD 3-Clause License
2
+
3
+ Copyright (c) Soumith Chintala 2016,
4
+ All rights reserved.
5
+
6
+ Redistribution and use in source and binary forms, with or without
7
+ modification, are permitted provided that the following conditions are met:
8
+
9
+ * Redistributions of source code must retain the above copyright notice, this
10
+ list of conditions and the following disclaimer.
11
+
12
+ * Redistributions in binary form must reproduce the above copyright notice,
13
+ this list of conditions and the following disclaimer in the documentation
14
+ and/or other materials provided with the distribution.
15
+
16
+ * Neither the name of the copyright holder nor the names of its
17
+ contributors may be used to endorse or promote products derived from
18
+ this software without specific prior written permission.
19
+
20
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
24
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
27
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
28
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
README.md CHANGED
@@ -2,20 +2,26 @@
2
  library_name: pytorch
3
  ---
4
 
5
- ![resnet_logo](resource/ResNet50.png)
6
-
7
- # ResNet
8
 
9
  ResNet is a family of deep convolutional neural networks that introduced residual (skip) connections to enable stable training of very deep architectures with strong representational capacity.
10
- - Original paper: Deep Residual Learning for Image Recognition, He et al., 2015
11
- - Paper: https://arxiv.org/abs/1512.03385
 
 
12
 
13
  ResNet-50 is a commonly used 50-layer variant that offers a strong balance between accuracy and computational cost and is widely adopted as a baseline and as a backbone feature extractor for tasks such as object detection, segmentation, and re-identification.
14
- - Reference implementation (ResNet-50): torchvision.models.resnet50
15
- - Torchvision source: https://pytorch.org/vision/stable/models/generated/torchvision.models.resnet50.html
16
 
17
- | Model | Resolution | Device | Model Link |
18
- | :-----: | :-----: | :-----: | :-----: |
19
- | Resnet50 | 3x224x224 | N1-655 | Model_Link |
20
- | Resnet50 | 3x224x224 | CV72 | Model_Link |
21
- | Resnet50 | 3x224x224 | CV75 | Model_Link |
 
 
 
 
 
 
 
 
 
2
  library_name: pytorch
3
  ---
4
 
5
+ ![resnet_logo](resource/ResNet.png)
 
 
6
 
7
  ResNet is a family of deep convolutional neural networks that introduced residual (skip) connections to enable stable training of very deep architectures with strong representational capacity.
8
+
9
+ Original paper: [Deep Residual Learning for Image Recognition, He et al., 2015](https://arxiv.org/abs/1512.03385)
10
+
11
+ # ResNet-50
12
 
13
  ResNet-50 is a commonly used 50-layer variant that offers a strong balance between accuracy and computational cost and is widely adopted as a baseline and as a backbone feature extractor for tasks such as object detection, segmentation, and re-identification.
 
 
14
 
15
+ Model Configuration:
16
+ - Reference implementation: [ResNet50_v1.5](https://pytorch.org/vision/stable/models/generated/torchvision.models.resnet50.html)
17
+ - Original Weight: [ResNet50_Weights.IMAGENET1K_V2](https://download.pytorch.org/models/resnet50-11ad3fa6.pth)
18
+ - Resolution: 3x224x224
19
+ - Support Cooper version:
20
+ - Cooper SDK: [2.5.2]
21
+ - Cooper Foundry: [2.2]
22
+
23
+ | Model | Device | Model Link |
24
+ | :-----: | :-----: | :-----: |
25
+ | Resnet50 | N1-655 | [Model_Link](https://huggingface.co/Ambarella/ResNet/blob/main/n1-655_resnet_v1.5_50.bin) |
26
+ | Resnet50 | CV72 | [Model_Link](https://huggingface.co/Ambarella/ResNet/blob/main/cv72_resnet_v1.5_50.bin) |
27
+ | Resnet50 | CV75 | [Model_Link](https://huggingface.co/Ambarella/ResNet/blob/main/cv75_resnet_v1.5_50.bin) |
resource/ResNet.png ADDED

Git LFS Details

  • SHA256: ffb146bd73e7e7f3aa94da75ec9e3ef40975ae5b24752195e9b746315dc9bce3
  • Pointer size: 132 Bytes
  • Size of remote file: 1.04 MB