Instructions to use CCTD/LLM_Regression_Test with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use CCTD/LLM_Regression_Test with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="CCTD/LLM_Regression_Test")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("CCTD/LLM_Regression_Test") model = AutoModelForSequenceClassification.from_pretrained("CCTD/LLM_Regression_Test", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -3,7 +3,7 @@ library_name: transformers
|
|
| 3 |
tags: []
|
| 4 |
inference:
|
| 5 |
parameters:
|
| 6 |
-
function_to_apply: none
|
| 7 |
return_all_scores: True
|
| 8 |
---
|
| 9 |
|
|
|
|
| 3 |
tags: []
|
| 4 |
inference:
|
| 5 |
parameters:
|
| 6 |
+
function_to_apply: none,
|
| 7 |
return_all_scores: True
|
| 8 |
---
|
| 9 |
|