Update ML Intern artifact metadata
Browse files
README.md
CHANGED
|
@@ -10,6 +10,7 @@ tags:
|
|
| 10 |
- intent-based-networking
|
| 11 |
- network-slicing
|
| 12 |
- rtx-6000-ada
|
|
|
|
| 13 |
base_model:
|
| 14 |
- Qwen/Qwen3-8B
|
| 15 |
datasets:
|
|
@@ -287,3 +288,23 @@ requirements.txt
|
|
| 287 |
- TRL SFTTrainer docs: https://huggingface.co/docs/trl/sft_trainer
|
| 288 |
- TRL PEFT integration: https://huggingface.co/docs/trl/peft_integration
|
| 289 |
- Source dataset: https://huggingface.co/datasets/nraptisss/TMF921-intent-to-config-research-sota
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10 |
- intent-based-networking
|
| 11 |
- network-slicing
|
| 12 |
- rtx-6000-ada
|
| 13 |
+
- ml-intern
|
| 14 |
base_model:
|
| 15 |
- Qwen/Qwen3-8B
|
| 16 |
datasets:
|
|
|
|
| 288 |
- TRL SFTTrainer docs: https://huggingface.co/docs/trl/sft_trainer
|
| 289 |
- TRL PEFT integration: https://huggingface.co/docs/trl/peft_integration
|
| 290 |
- Source dataset: https://huggingface.co/datasets/nraptisss/TMF921-intent-to-config-research-sota
|
| 291 |
+
|
| 292 |
+
<!-- ml-intern-provenance -->
|
| 293 |
+
## Generated by ML Intern
|
| 294 |
+
|
| 295 |
+
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.
|
| 296 |
+
|
| 297 |
+
- Try ML Intern: https://smolagents-ml-intern.hf.space
|
| 298 |
+
- Source code: https://github.com/huggingface/ml-intern
|
| 299 |
+
|
| 300 |
+
## Usage
|
| 301 |
+
|
| 302 |
+
```python
|
| 303 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 304 |
+
|
| 305 |
+
model_id = 'nraptisss/tmf921-intent-training'
|
| 306 |
+
tokenizer = AutoTokenizer.from_pretrained(model_id)
|
| 307 |
+
model = AutoModelForCausalLM.from_pretrained(model_id)
|
| 308 |
+
```
|
| 309 |
+
|
| 310 |
+
For non-causal architectures, replace `AutoModelForCausalLM` with the appropriate `AutoModel` class.
|