Update ML Intern artifact metadata
Browse files
README.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# 🚀 CodeSync — Real-Time Collaborative Coding Platform
|
| 2 |
|
| 3 |
<div align="center">
|
|
@@ -272,3 +276,23 @@ MIT License — see [LICENSE](./LICENSE) for details.
|
|
| 272 |
<div align="center">
|
| 273 |
<b>Built with ❤️ demonstrating distributed systems, real-time sync, and collaborative architecture.</b>
|
| 274 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
tags:
|
| 3 |
+
- ml-intern
|
| 4 |
+
---
|
| 5 |
# 🚀 CodeSync — Real-Time Collaborative Coding Platform
|
| 6 |
|
| 7 |
<div align="center">
|
|
|
|
| 276 |
<div align="center">
|
| 277 |
<b>Built with ❤️ demonstrating distributed systems, real-time sync, and collaborative architecture.</b>
|
| 278 |
</div>
|
| 279 |
+
|
| 280 |
+
<!-- ml-intern-provenance -->
|
| 281 |
+
## Generated by ML Intern
|
| 282 |
+
|
| 283 |
+
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.
|
| 284 |
+
|
| 285 |
+
- Try ML Intern: https://smolagents-ml-intern.hf.space
|
| 286 |
+
- Source code: https://github.com/huggingface/ml-intern
|
| 287 |
+
|
| 288 |
+
## Usage
|
| 289 |
+
|
| 290 |
+
```python
|
| 291 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 292 |
+
|
| 293 |
+
model_id = 'myagent10101/codesync-collaborative-platform'
|
| 294 |
+
tokenizer = AutoTokenizer.from_pretrained(model_id)
|
| 295 |
+
model = AutoModelForCausalLM.from_pretrained(model_id)
|
| 296 |
+
```
|
| 297 |
+
|
| 298 |
+
For non-causal architectures, replace `AutoModelForCausalLM` with the appropriate `AutoModel` class.
|