Update ML Intern artifact metadata
Browse files
README.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
<p align="center">
|
| 2 |
<img src="https://img.shields.io/badge/Challenge-%235_AI_Load_Consolidation-f97316?style=for-the-badge" alt="Challenge #5" />
|
| 3 |
<img src="https://img.shields.io/badge/LogisticsNow-Hackathon_2026-3b82f6?style=for-the-badge" alt="LogisticsNow" />
|
|
@@ -639,3 +643,23 @@ Both backend services include `render.yaml` for one-click Render deployment. Fro
|
|
| 639 |
<br/>
|
| 640 |
Built for <a href="#">LogisticsNow Hackathon 2026</a> · Challenge #5: AI Load Consolidation
|
| 641 |
</p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
tags:
|
| 3 |
+
- ml-intern
|
| 4 |
+
---
|
| 5 |
<p align="center">
|
| 6 |
<img src="https://img.shields.io/badge/Challenge-%235_AI_Load_Consolidation-f97316?style=for-the-badge" alt="Challenge #5" />
|
| 7 |
<img src="https://img.shields.io/badge/LogisticsNow-Hackathon_2026-3b82f6?style=for-the-badge" alt="LogisticsNow" />
|
|
|
|
| 643 |
<br/>
|
| 644 |
Built for <a href="#">LogisticsNow Hackathon 2026</a> · Challenge #5: AI Load Consolidation
|
| 645 |
</p>
|
| 646 |
+
|
| 647 |
+
<!-- ml-intern-provenance -->
|
| 648 |
+
## Generated by ML Intern
|
| 649 |
+
|
| 650 |
+
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.
|
| 651 |
+
|
| 652 |
+
- Try ML Intern: https://smolagents-ml-intern.hf.space
|
| 653 |
+
- Source code: https://github.com/huggingface/ml-intern
|
| 654 |
+
|
| 655 |
+
## Usage
|
| 656 |
+
|
| 657 |
+
```python
|
| 658 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 659 |
+
|
| 660 |
+
model_id = 'MouleeswaranM/FairRelay'
|
| 661 |
+
tokenizer = AutoTokenizer.from_pretrained(model_id)
|
| 662 |
+
model = AutoModelForCausalLM.from_pretrained(model_id)
|
| 663 |
+
```
|
| 664 |
+
|
| 665 |
+
For non-causal architectures, replace `AutoModelForCausalLM` with the appropriate `AutoModel` class.
|