Instructions to use Clementio/PLRS with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Clementio/PLRS with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Clementio/PLRS", dtype="auto") - Notebooks
- Google Colab
- Kaggle
Upload config.json with huggingface_hub
Browse files- config.json +12 -0
config.json
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"max_seq_len": 200,
|
| 3 |
+
"num_skills": 5737,
|
| 4 |
+
"embed_dim": 128,
|
| 5 |
+
"num_heads": 8,
|
| 6 |
+
"dropout": 0.2,
|
| 7 |
+
"num_layers": 2,
|
| 8 |
+
"batch_size": 64,
|
| 9 |
+
"learning_rate": 0.001,
|
| 10 |
+
"epochs": 30,
|
| 11 |
+
"patience": 5
|
| 12 |
+
}
|