MaartenGr commited on
Commit
d687664
1 Parent(s): b646916

Update readme

Browse files
Files changed (1) hide show
  1. README.md +2 -1
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/BERTopioc_Wikipedia")
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
  ```