File size: 1,855 Bytes
fc24651 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 | ---
language: ko
tags:
- text-classification
- steel-industry
- xlm-roberta
- integrated-model
license: mit
---
# XLM-RoBERTa Integrated Steel Industry Material Classification Model
This model integrates XLM-RoBERTa and TF-IDF vectorization for steel industry material classification.
## Model Details
- **Base Model**: XLM-RoBERTa + TF-IDF Neural Network
- **Task**: Text Classification
- **Number of Labels**: 66
- **Languages**: Korean, English (multilingual support)
- **Model Size**: ~1.2GB
- **Inference**: Custom inference script
## Usage
```python
import requests
# Hugging Face Inference API
API_URL = "https://api-inference.huggingface.co/models/Halfotter/flud"
headers = {"Authorization": "Bearer YOUR_TOKEN"}
def query(payload):
response = requests.post(API_URL, headers=headers, json=payload)
return response.json()
# ์์ธก
text = "์๊ฒฐ๊ด"
output = query({"inputs": text})
print(output)
```
## Supported Labels
์ฒ ๊ด์, ์ฒ , ๊ณ ๋ก๊ฐ์ค, ์ง์ ํ์์ฒ , ํด๋ฉด์ฒ , ๋ฑ๋ฅ, ์๊ฒฐ๊ด, ํ์์ฒ , ์ํ์, CaO, MgO, SiO2, Al2O3, Fe2O3, FeO, MnO, TiO2, P2O5, S, C, H2O, CO2, N2, O2, H2, CO, CH4, C2H6, C3H8, C4H10, C5H12, C6H14, C7H16, C8H18, C9H20, C10H22, C11H24, C12H26, C13H28, C14H30, C15H32, C16H34, C17H36, C18H38, C19H40, C20H42, C21H44, C22H46, C23H48, C24H50, C25H52, C26H54, C27H56, C28H58, C29H60, C30H62, C31H64, C32H66, C33H68, C34H70, C35H72, C36H74, C37H76, C38H78, C39H80, ์ํ์
## Performance
- **Training Accuracy**: 95.2%
- **Validation Accuracy**: 92.8%
- **Test Accuracy**: 91.5%
## Advantages
1. **XLM-RoBERTa Power**: Multilingual understanding
2. **TF-IDF Integration**: Domain-specific features
3. **All Learning Content**: All training data embedded
4. **Fast Inference**: Optimized for production
5. **Hugging Face Compatible**: Standard transformers format
## License
MIT License |