Text Classification
Transformers
Safetensors
modernbert
Generated from Trainer
text-embeddings-inference
Instructions to use CocoRoF/KoModernBERT-rerank_test with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use CocoRoF/KoModernBERT-rerank_test with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="CocoRoF/KoModernBERT-rerank_test")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("CocoRoF/KoModernBERT-rerank_test") model = AutoModelForSequenceClassification.from_pretrained("CocoRoF/KoModernBERT-rerank_test") - Notebooks
- Google Colab
- Kaggle
Update model metadata to set pipeline tag to the new `text-ranking` and tags to `sentence-transformers`
#1
by tomaarsen HF Staff - opened
README.md
CHANGED
|
@@ -3,6 +3,8 @@ library_name: transformers
|
|
| 3 |
base_model: CocoRoF/ModernBERT-SimCSE-multitask_v03-distill
|
| 4 |
tags:
|
| 5 |
- generated_from_trainer
|
|
|
|
|
|
|
| 6 |
model-index:
|
| 7 |
- name: KoModernBERT-rerank_test
|
| 8 |
results: []
|
|
|
|
| 3 |
base_model: CocoRoF/ModernBERT-SimCSE-multitask_v03-distill
|
| 4 |
tags:
|
| 5 |
- generated_from_trainer
|
| 6 |
+
- sentence-transformers
|
| 7 |
+
pipeline_tag: text-ranking
|
| 8 |
model-index:
|
| 9 |
- name: KoModernBERT-rerank_test
|
| 10 |
results: []
|