Update ML Intern artifact metadata
Browse files
README.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# LightweightMR — Pure-Python Mesh Reconstruction
|
| 2 |
|
| 3 |
Pure-Python reimplementation of **["High-Fidelity Lightweight Mesh Reconstruction from Point Clouds"](https://openaccess.thecvf.com/content/CVPR2025/papers/Zhang_High-Fidelity_Lightweight_Mesh_Reconstruction_from_Point_Clouds_CVPR_2025_paper.pdf)** (CVPR 2025 Highlight, Zhang et al.)
|
|
@@ -123,3 +127,23 @@ lightweightmr/
|
|
| 123 |
---
|
| 124 |
|
| 125 |
License: MIT (reimplementation). Original paper and code © authors.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
tags:
|
| 3 |
+
- ml-intern
|
| 4 |
+
---
|
| 5 |
# LightweightMR — Pure-Python Mesh Reconstruction
|
| 6 |
|
| 7 |
Pure-Python reimplementation of **["High-Fidelity Lightweight Mesh Reconstruction from Point Clouds"](https://openaccess.thecvf.com/content/CVPR2025/papers/Zhang_High-Fidelity_Lightweight_Mesh_Reconstruction_from_Point_Clouds_CVPR_2025_paper.pdf)** (CVPR 2025 Highlight, Zhang et al.)
|
|
|
|
| 127 |
---
|
| 128 |
|
| 129 |
License: MIT (reimplementation). Original paper and code © authors.
|
| 130 |
+
|
| 131 |
+
<!-- ml-intern-provenance -->
|
| 132 |
+
## Generated by ML Intern
|
| 133 |
+
|
| 134 |
+
This model repository was generated by [ML Intern](https://github.com/huggingface/ml-intern), an agent for machine learning research and development on the Hugging Face Hub.
|
| 135 |
+
|
| 136 |
+
- Try ML Intern: https://smolagents-ml-intern.hf.space
|
| 137 |
+
- Source code: https://github.com/huggingface/ml-intern
|
| 138 |
+
|
| 139 |
+
## Usage
|
| 140 |
+
|
| 141 |
+
```python
|
| 142 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 143 |
+
|
| 144 |
+
model_id = "bdck/lightweightmr"
|
| 145 |
+
tokenizer = AutoTokenizer.from_pretrained(model_id)
|
| 146 |
+
model = AutoModelForCausalLM.from_pretrained(model_id)
|
| 147 |
+
```
|
| 148 |
+
|
| 149 |
+
For non-causal architectures, replace `AutoModelForCausalLM` with the appropriate `AutoModel` class.
|