Image Segmentation
ONNX
qmller commited on
Commit
d569235
1 Parent(s): f9e0598

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +8 -3
README.md CHANGED
@@ -1,11 +1,11 @@
1
  ---
2
- license: mit
3
  pipeline_tag: image-segmentation
4
  ---
5
 
6
  # Introduction
7
 
8
- This repository stores the model for Fcn-resnet50, compatible with Kalray's neural network API. </br>
9
  Please see www.github.com/kalray/kann-models-zoo for details and proper usage. </br>
10
 
11
  # Contents
@@ -14,6 +14,11 @@ Please see www.github.com/kalray/kann-models-zoo for details and proper usage. <
14
 
15
  # Lecture note reference
16
 
 
 
17
  # Repository or links references
18
 
19
- Author: nbouberbachene@kalrayinc.com
 
 
 
 
1
  ---
2
+ license: bsd-3-clause
3
  pipeline_tag: image-segmentation
4
  ---
5
 
6
  # Introduction
7
 
8
+ This repository stores the model for FCN-resnet50, compatible with Kalray's neural network API. </br>
9
  Please see www.github.com/kalray/kann-models-zoo for details and proper usage. </br>
10
 
11
  # Contents
 
14
 
15
  # Lecture note reference
16
 
17
+ - Fully Convolutional Networks for Semantic Segmentation, https://arxiv.org/abs/1411.4038
18
+
19
  # Repository or links references
20
 
21
+ - code: https://github.com/pytorch/vision/blob/main/torchvision/models/segmentation/fcn.py
22
+ - weights: https://download.pytorch.org/models/fcn_resnet50_coco-1167a1af.pth
23
+
24
+ Author: [email protected]