Instructions to use Aixos/webbot with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- BERTopic
How to use Aixos/webbot with BERTopic:
from bertopic import BERTopic model = BERTopic.load("Aixos/webbot") - Notebooks
- Google Colab
- Kaggle
Upload config.json
Browse files- config.json +7 -0
config.json
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"BertForQuestionAnswering"
|
| 4 |
+
],
|
| 5 |
+
"model_type": "bert",
|
| 6 |
+
"tokenizer_class": "BertTokenizer"
|
| 7 |
+
}
|