Alprocco commited on
Commit
a2cbf5c
1 Parent(s): c4357fa

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +7 -3
README.md CHANGED
@@ -10,9 +10,13 @@ pip install bertopic
10
 
11
  You can use the model as follows:
12
 
13
- from bertopic import BERTopic topic_model = BERTopic.load("Alprocco/semi_supervised_bertopic") topic_model.get_topic_info()
14
 
15
- Topic overview
 
 
 
 
16
 
17
  Number of topics: 30
18
 
@@ -39,7 +43,7 @@ Loading and saving the model should be done using the same dependencies and Pyth
39
 
40
  Moreover, models saved in one version of BERTopic are not guaranteed to load in other versions.
41
 
42
- Framework versions
43
 
44
  bertopic 0.15.0
45
 
 
10
 
11
  You can use the model as follows:
12
 
13
+ from bertopic import BERTopic
14
 
15
+ topic_model = BERTopic.load("Alprocco/semi_supervised_bertopic")
16
+
17
+ topic_model.get_topic_info()
18
+
19
+ ## Topic overview
20
 
21
  Number of topics: 30
22
 
 
43
 
44
  Moreover, models saved in one version of BERTopic are not guaranteed to load in other versions.
45
 
46
+ ## Framework versions
47
 
48
  bertopic 0.15.0
49