pcuenq HF staff commited on
Commit
965418b
1 Parent(s): edac98f

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +26 -0
README.md ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ ---
4
+
5
+ # DETR-Resnet50 (semantic segmentation) Core ML Models
6
+
7
+ See [the Files tab](https://huggingface.co/coreml-projects/detr-resnet50-semantic-segmentation/tree/main) for converted models.
8
+
9
+ ## Download
10
+
11
+ Install `huggingface-hub`
12
+
13
+ ```bash
14
+ pip install huggingface-hub
15
+ ```
16
+
17
+ To download one of the `.mlpackage` folders to the `models` directory:
18
+
19
+ ```bash
20
+ huggingface-cli download \
21
+ --local-dir models --local-dir-use-symlinks False \
22
+ coreml-projects/detr-resnet50-semantic-segmentation \
23
+ --include "detr-resnet50-semantic-400-float16.mlpackage/*"
24
+ ```
25
+
26
+ To download everything, skip the `--include` argument.