Instructions to use cmarkea/bloomz-3b-reranking with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use cmarkea/bloomz-3b-reranking with Transformers:
# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("cmarkea/bloomz-3b-reranking") model = AutoModelForSequenceClassification.from_pretrained("cmarkea/bloomz-3b-reranking") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -95,7 +95,7 @@ from transformers import pipeline
|
|
| 95 |
|
| 96 |
reranker = pipeline(
|
| 97 |
task='feature-extraction',
|
| 98 |
-
model='cmarkea/bloomz-3b-
|
| 99 |
top_k=None
|
| 100 |
)
|
| 101 |
|
|
|
|
| 95 |
|
| 96 |
reranker = pipeline(
|
| 97 |
task='feature-extraction',
|
| 98 |
+
model='cmarkea/bloomz-3b-reranking',
|
| 99 |
top_k=None
|
| 100 |
)
|
| 101 |
|