kellyxiaowei commited on
Commit
53ea8c4
·
verified ·
1 Parent(s): acdf236

Add model card

Browse files
Files changed (1) hide show
  1. README.md +96 -0
README.md ADDED
@@ -0,0 +1,96 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ license_name: apple-ml-research-model-license
4
+ license_link: https://github.com/apple/ml-sharp/blob/main/LICENSE_MODEL
5
+ library_name: coreml
6
+ tags:
7
+ - coreml
8
+ - ios
9
+ - view-synthesis
10
+ - 3d-gaussian-splatting
11
+ - monocular-view-synthesis
12
+ - openreshoot
13
+ - apple-sharp
14
+ ---
15
+
16
+ # OpenReshoot SHARP Core ML Package
17
+
18
+ This repository hosts the Core ML package used by OpenReshoot for on-device
19
+ single-image view synthesis experiments on iOS.
20
+
21
+ The model is a Core ML conversion of Apple's SHARP research checkpoint. SHARP
22
+ predicts a 3D Gaussian representation from one input image, enabling nearby
23
+ view rendering from a single photograph.
24
+
25
+ ## Files
26
+
27
+ ```text
28
+ SHARP.mlpackage/
29
+ Manifest.json
30
+ Data/com.apple.CoreML/model.mlmodel
31
+ Data/com.apple.CoreML/weights/weight.bin
32
+ ```
33
+
34
+ OpenReshoot downloads these files and reconstructs the `SHARP.mlpackage`
35
+ directory locally.
36
+
37
+ ## Intended Use
38
+
39
+ - Research and experimentation with monocular view synthesis.
40
+ - OpenReshoot iOS builds that download the model instead of bundling it inside
41
+ the app.
42
+ - Local Core ML testing of the converted SHARP model.
43
+
44
+ ## Not Intended For
45
+
46
+ - Commercial products or services.
47
+ - General-purpose photo editing, identity editing, surveillance, or biometric
48
+ use.
49
+ - Text-to-image generation or image restoration. This package is for SHARP's
50
+ single-image 3D representation prediction path.
51
+
52
+ ## Source And Conversion
53
+
54
+ Upstream project:
55
+
56
+ - Apple ML SHARP: https://github.com/apple/ml-sharp
57
+ - Project page: https://apple.github.io/ml-sharp/
58
+ - Paper: https://arxiv.org/abs/2512.10685
59
+
60
+ The upstream checkpoint is converted to Core ML for OpenReshoot using the
61
+ conversion tooling in the OpenReshoot repository.
62
+
63
+ ## License
64
+
65
+ The model weights are covered by the Apple Machine Learning Research Model
66
+ License Agreement. See `LICENSE_MODEL` in this repository.
67
+
68
+ Required attribution notice:
69
+
70
+ > Apple Machine Learning Research Model is licensed under the Apple Machine
71
+ > Learning Research Model License Agreement.
72
+
73
+ The license is for research purposes. Review the full license before using,
74
+ redistributing, or modifying the model.
75
+
76
+ ## Citation
77
+
78
+ ```bibtex
79
+ @inproceedings{Sharp2025:arxiv,
80
+ title = {Sharp Monocular View Synthesis in Less Than a Second},
81
+ author = {Mescheder, Lars and Dong, Wei and Li, Shiwei and Bai, Xuyang and Santos, Marcel and Hu, Peiyun and Lecouat, Bruno and Zhen, Mingmin and Delaunoy, Amaël and Fang, Tian and Tsin, Yanghai and Richter, Stephan and Koltun, Vladlen},
82
+ booktitle = {arXiv},
83
+ year = {2025}
84
+ }
85
+ ```
86
+
87
+ ## Notes For OpenReshoot
88
+
89
+ Use the Hugging Face raw file URLs for these three files when wiring the iOS
90
+ downloader:
91
+
92
+ ```text
93
+ https://huggingface.co/kellyxiaowei/openreshoot-sharp-coreml/resolve/main/SHARP.mlpackage/Manifest.json
94
+ https://huggingface.co/kellyxiaowei/openreshoot-sharp-coreml/resolve/main/SHARP.mlpackage/Data/com.apple.CoreML/model.mlmodel
95
+ https://huggingface.co/kellyxiaowei/openreshoot-sharp-coreml/resolve/main/SHARP.mlpackage/Data/com.apple.CoreML/weights/weight.bin
96
+ ```