Update ML Intern artifact metadata
Browse files
README.md
CHANGED
|
@@ -12,6 +12,7 @@ tags:
|
|
| 12 |
- income-prediction
|
| 13 |
- openml
|
| 14 |
- sota
|
|
|
|
| 15 |
datasets:
|
| 16 |
- adult
|
| 17 |
metrics:
|
|
@@ -209,3 +210,23 @@ The two engineered interaction terms (`edu_x_age`, `edu_x_hours`) are the **most
|
|
| 209 |
|
| 210 |
*Built with LightGBM, XGBoost, CatBoost, Optuna, scikit-learn.*
|
| 211 |
*OpenML Task 7592 leaderboard: https://www.openml.org/t/7592*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
- income-prediction
|
| 13 |
- openml
|
| 14 |
- sota
|
| 15 |
+
- ml-intern
|
| 16 |
datasets:
|
| 17 |
- adult
|
| 18 |
metrics:
|
|
|
|
| 210 |
|
| 211 |
*Built with LightGBM, XGBoost, CatBoost, Optuna, scikit-learn.*
|
| 212 |
*OpenML Task 7592 leaderboard: https://www.openml.org/t/7592*
|
| 213 |
+
|
| 214 |
+
<!-- ml-intern-provenance -->
|
| 215 |
+
## Generated by ML Intern
|
| 216 |
+
|
| 217 |
+
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.
|
| 218 |
+
|
| 219 |
+
- Try ML Intern: https://smolagents-ml-intern.hf.space
|
| 220 |
+
- Source code: https://github.com/huggingface/ml-intern
|
| 221 |
+
|
| 222 |
+
## Usage
|
| 223 |
+
|
| 224 |
+
```python
|
| 225 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 226 |
+
|
| 227 |
+
model_id = 'AurelPx/IncomeSlayer-9000'
|
| 228 |
+
tokenizer = AutoTokenizer.from_pretrained(model_id)
|
| 229 |
+
model = AutoModelForCausalLM.from_pretrained(model_id)
|
| 230 |
+
```
|
| 231 |
+
|
| 232 |
+
For non-causal architectures, replace `AutoModelForCausalLM` with the appropriate `AutoModel` class.
|