Alprocco commited on
Commit
f20e45f
·
1 Parent(s): 1273914

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +68 -0
README.md ADDED
@@ -0,0 +1,68 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pipeline_tag: text-classification
3
+ ---
4
+
5
+ ## Usage
6
+
7
+ To use this model, please install BERTopic:
8
+
9
+ pip install bertopic
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
+
23
+ Training hyperparameters
24
+
25
+ calculate_probabilities: False
26
+
27
+ language: multilingual
28
+
29
+ low_memory: False
30
+
31
+ min_topic_size: 10
32
+
33
+ n_gram_range: (1, 1)
34
+
35
+ nr_topics: 30
36
+
37
+ top_n_words: 10
38
+
39
+ verbose: True
40
+
41
+ Note: When saving the model, make sure to also keep track of the versions of dependencies and Python used.
42
+ Loading and saving the model should be done using the same dependencies and Python.
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
+
50
+ Numpy: 1.24.4
51
+
52
+ HDBSCAN: 0.8.33
53
+
54
+ UMAP: 0.5.4
55
+
56
+ Pandas: 2.0.3
57
+
58
+ Scikit-Learn: 1.0.2
59
+
60
+ Sentence-transformers: 2.2.2
61
+
62
+ Transformers: 4.33.2
63
+
64
+ Numba: 0.58.0
65
+
66
+ Plotly: 5.17.0
67
+
68
+ Python: 3.8.10