strauss-oak
commited on
Commit
•
2e39f8b
1
Parent(s):
1b9c2b2
Add BERTopic model
Browse files- README.md +89 -0
- config.json +16 -0
- topic_embeddings.safetensors +3 -0
- topics.json +0 -0
README.md
ADDED
@@ -0,0 +1,89 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
---
|
3 |
+
tags:
|
4 |
+
- bertopic
|
5 |
+
library_name: bertopic
|
6 |
+
pipeline_tag: text-classification
|
7 |
+
---
|
8 |
+
|
9 |
+
# mdl_bertopic_globo
|
10 |
+
|
11 |
+
This is a [BERTopic](https://github.com/MaartenGr/BERTopic) model.
|
12 |
+
BERTopic is a flexible and modular topic modeling framework that allows for the generation of easily interpretable topics from large datasets.
|
13 |
+
|
14 |
+
## Usage
|
15 |
+
|
16 |
+
To use this model, please install BERTopic:
|
17 |
+
|
18 |
+
```
|
19 |
+
pip install -U bertopic
|
20 |
+
```
|
21 |
+
|
22 |
+
You can use the model as follows:
|
23 |
+
|
24 |
+
```python
|
25 |
+
from bertopic import BERTopic
|
26 |
+
topic_model = BERTopic.load("strauss-oak/mdl_bertopic_globo")
|
27 |
+
|
28 |
+
topic_model.get_topic_info()
|
29 |
+
```
|
30 |
+
|
31 |
+
## Topic overview
|
32 |
+
|
33 |
+
* Number of topics: 20
|
34 |
+
* Number of training documents: 24433
|
35 |
+
|
36 |
+
<details>
|
37 |
+
<summary>Click here for an overview of all topics.</summary>
|
38 |
+
|
39 |
+
| Topic ID | Topic Keywords | Topic Frequency | Label |
|
40 |
+
|----------|----------------|-----------------|-------|
|
41 |
+
| -1 | disse - anos - presidente - ainda - pessoas | 13 | -1_disse_anos_presidente_ainda |
|
42 |
+
| 0 | dose - saude - covid - vacina - casos | 7995 | 0_dose_saude_covid_vacina |
|
43 |
+
| 1 | presidente - bolsonaro - governo - disse - lula | 3785 | 1_presidente_bolsonaro_governo_disse |
|
44 |
+
| 2 | policia - disse - local - policiais - anos | 3626 | 2_policia_disse_local_policiais |
|
45 |
+
| 3 | anos - musica - brasil - gente - vai | 2170 | 3_anos_musica_brasil_gente |
|
46 |
+
| 4 | ucrania - russia - guerra - putin - disse | 1616 | 4_ucrania_russia_guerra_putin |
|
47 |
+
| 5 | chuva - sul - feira - chuvas - energia | 690 | 5_chuva_sul_feira_chuvas |
|
48 |
+
| 6 | preco - precos - produto - petrobras - combustiveis | 619 | 6_preco_precos_produto_petrobras |
|
49 |
+
| 7 | hospital - anos - familia - paulo - disse | 617 | 7_hospital_anos_familia_paulo |
|
50 |
+
| 8 | inflacao - juros - alta - taxa - economia | 501 | 8_inflacao_juros_alta_taxa |
|
51 |
+
| 9 | dezenas - aposta - premio - probabilidade - caixa | 378 | 9_dezenas_aposta_premio_probabilidade |
|
52 |
+
| 10 | voo - aeronave - aviao - voos - aeroporto | 370 | 10_voo_aeronave_aviao_voos |
|
53 |
+
| 11 | internet - iphone - rede - facebook - usuarios | 360 | 11_internet_iphone_rede_facebook |
|
54 |
+
| 12 | valor - pagamento - declaracao - valores - imposto | 342 | 12_valor_pagamento_declaracao_valores |
|
55 |
+
| 13 | fase - manifestantes - servicos - funcionar - paulo | 336 | 13_fase_manifestantes_servicos_funcionar |
|
56 |
+
| 14 | desmatamento - amazonia - indigenas - emissoes - brasil | 333 | 14_desmatamento_amazonia_indigenas_emissoes |
|
57 |
+
| 15 | taliba - israel - afeganistao - hamas - gaza | 327 | 15_taliba_israel_afeganistao_hamas |
|
58 |
+
| 16 | trabalho - trimestre - milhoes - trabalhadores - pessoas | 167 | 16_trabalho_trimestre_milhoes_trabalhadores |
|
59 |
+
| 17 | pessoas - genero - trans - racismo - lgbtqia | 97 | 17_pessoas_genero_trans_racismo |
|
60 |
+
| 18 | licenca - paternidade - licenca paternidade - piangers - ovulos | 91 | 18_licenca_paternidade_licenca paternidade_piangers |
|
61 |
+
|
62 |
+
</details>
|
63 |
+
|
64 |
+
## Training hyperparameters
|
65 |
+
|
66 |
+
* calculate_probabilities: False
|
67 |
+
* language: None
|
68 |
+
* low_memory: False
|
69 |
+
* min_topic_size: 10
|
70 |
+
* n_gram_range: (1, 1)
|
71 |
+
* nr_topics: 20
|
72 |
+
* seed_topic_list: None
|
73 |
+
* top_n_words: 10
|
74 |
+
* verbose: False
|
75 |
+
* zeroshot_min_similarity: 0.7
|
76 |
+
* zeroshot_topic_list: None
|
77 |
+
|
78 |
+
## Framework versions
|
79 |
+
|
80 |
+
* Numpy: 1.23.5
|
81 |
+
* HDBSCAN: 0.8.33
|
82 |
+
* UMAP: 0.5.5
|
83 |
+
* Pandas: 1.5.3
|
84 |
+
* Scikit-Learn: 1.2.2
|
85 |
+
* Sentence-transformers: 2.2.2
|
86 |
+
* Transformers: 4.35.2
|
87 |
+
* Numba: 0.58.1
|
88 |
+
* Plotly: 5.15.0
|
89 |
+
* Python: 3.10.12
|
config.json
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"calculate_probabilities": false,
|
3 |
+
"language": null,
|
4 |
+
"low_memory": false,
|
5 |
+
"min_topic_size": 10,
|
6 |
+
"n_gram_range": [
|
7 |
+
1,
|
8 |
+
1
|
9 |
+
],
|
10 |
+
"nr_topics": 20,
|
11 |
+
"seed_topic_list": null,
|
12 |
+
"top_n_words": 10,
|
13 |
+
"verbose": false,
|
14 |
+
"zeroshot_min_similarity": 0.7,
|
15 |
+
"zeroshot_topic_list": null
|
16 |
+
}
|
topic_embeddings.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0540d2ba27ccf55f614850e7611907d991bfd25fc9499dec7f92d3a8c3abb2d7
|
3 |
+
size 61528
|
topics.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|