Update ML Intern artifact metadata
Browse files
README.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# Golf Ball Tracker for Mobile Phone Camera
|
| 2 |
|
| 3 |
A lightweight, real-time golf ball detection and tracking model optimized for mobile deployment.
|
|
@@ -144,3 +148,23 @@ model.train(
|
|
| 144 |
## License
|
| 145 |
|
| 146 |
Apache-2.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
tags:
|
| 3 |
+
- ml-intern
|
| 4 |
+
---
|
| 5 |
# Golf Ball Tracker for Mobile Phone Camera
|
| 6 |
|
| 7 |
A lightweight, real-time golf ball detection and tracking model optimized for mobile deployment.
|
|
|
|
| 148 |
## License
|
| 149 |
|
| 150 |
Apache-2.0
|
| 151 |
+
|
| 152 |
+
<!-- ml-intern-provenance -->
|
| 153 |
+
## Generated by ML Intern
|
| 154 |
+
|
| 155 |
+
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.
|
| 156 |
+
|
| 157 |
+
- Try ML Intern: https://smolagents-ml-intern.hf.space
|
| 158 |
+
- Source code: https://github.com/huggingface/ml-intern
|
| 159 |
+
|
| 160 |
+
## Usage
|
| 161 |
+
|
| 162 |
+
```python
|
| 163 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 164 |
+
|
| 165 |
+
model_id = 'notjulietxd/golf-ball-tracker'
|
| 166 |
+
tokenizer = AutoTokenizer.from_pretrained(model_id)
|
| 167 |
+
model = AutoModelForCausalLM.from_pretrained(model_id)
|
| 168 |
+
```
|
| 169 |
+
|
| 170 |
+
For non-causal architectures, replace `AutoModelForCausalLM` with the appropriate `AutoModel` class.
|