Update readme
Browse files
README.md
CHANGED
@@ -21,13 +21,14 @@ To use this model, please install BERTopic:
|
|
21 |
|
22 |
```
|
23 |
pip install -U bertopic
|
|
|
24 |
```
|
25 |
|
26 |
You can use the model as follows:
|
27 |
|
28 |
```python
|
29 |
from bertopic import BERTopic
|
30 |
-
topic_model = BERTopic.load("MaartenGr/
|
31 |
|
32 |
topic_model.get_topic_info()
|
33 |
```
|
|
|
21 |
|
22 |
```
|
23 |
pip install -U bertopic
|
24 |
+
pip install -U safetensors
|
25 |
```
|
26 |
|
27 |
You can use the model as follows:
|
28 |
|
29 |
```python
|
30 |
from bertopic import BERTopic
|
31 |
+
topic_model = BERTopic.load("MaartenGr/BERTopic_Wikipedia")
|
32 |
|
33 |
topic_model.get_topic_info()
|
34 |
```
|