Instructions to use YituTech/conv-bert-base with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use YituTech/conv-bert-base with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("feature-extraction", model="YituTech/conv-bert-base")# Load model directly from transformers import AutoTokenizer, AutoModel tokenizer = AutoTokenizer.from_pretrained("YituTech/conv-bert-base") model = AutoModel.from_pretrained("YituTech/conv-bert-base") - Inference
- Notebooks
- Google Colab
- Kaggle
Abhishek Thakur commited on
Commit ·
64c19bc
1
Parent(s): ea84191
fix path
Browse files- config.json +1 -1
config.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
{
|
| 2 |
-
"_name_or_path": "/
|
| 3 |
"architectures": [
|
| 4 |
"ConvBertModel"
|
| 5 |
],
|
|
|
|
| 1 |
{
|
| 2 |
+
"_name_or_path": "YituTech/conv-bert-base",
|
| 3 |
"architectures": [
|
| 4 |
"ConvBertModel"
|
| 5 |
],
|