kardosdrur
commited on
Upload folder using huggingface_hub
Browse files- README.md +61 -0
- model.joblib +3 -0
- package_versions.json +1 -0
README.md
ADDED
@@ -0,0 +1,61 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
--
|
3 |
+
pipeline_tag: text-classification
|
4 |
+
library_name: turftopic
|
5 |
+
tags:
|
6 |
+
- turftopic
|
7 |
+
- topic-modelling
|
8 |
+
---
|
9 |
+
|
10 |
+
# kardosdrur/testing_s3
|
11 |
+
|
12 |
+
This repository contains a topic model trained with the [Turftopic](https://github.com/x-tabdeveloping/turftopic) Python library.
|
13 |
+
|
14 |
+
To load and use the model run the following piece of code:
|
15 |
+
|
16 |
+
```python
|
17 |
+
from turftopic import load_model
|
18 |
+
|
19 |
+
model = load_model(kardosdrur/testing_s3)
|
20 |
+
model.print_topics()
|
21 |
+
```
|
22 |
+
|
23 |
+
## Model Structure
|
24 |
+
|
25 |
+
The model is structured as follows:
|
26 |
+
|
27 |
+
```
|
28 |
+
SemanticSignalSeparation(decomposition=FastICA(n_components=10),
|
29 |
+
vectorizer=CountVectorizer(min_df=10,
|
30 |
+
stop_words='english'))
|
31 |
+
```
|
32 |
+
|
33 |
+
## Topics
|
34 |
+
The topics discovered by the model are the following:
|
35 |
+
|
36 |
+
| Topic ID | Highest Ranking | Lowest Ranking |
|
37 |
+
| - | - | - |
|
38 |
+
| 0 | goaltenders, nhl, bullpen, sabres, goaltender, puckett, leafs, braves, pitchers, canucks | accelerator, malaysia, automobile, accelerators, mazda, automobiles, automotive, vehicle, silicon, britain |
|
39 |
+
| 1 | saturn, suzuki, symptoms, jupiter, bmw, exhaust, volvo, engine, mazda, propulsion | wiretapping, wiretaps, nsa, spying, eavesdropping, wiretap, security, encryption, enforcement, safeguarding |
|
40 |
+
| 2 | drawbacks, advantages, productivity, efficiency, innovation, economical, disadvantages, proponents, competitiveness, economically | address, instructions, serial, arrived, codes, configured, 9591, 16550, contacting, recieved |
|
41 |
+
| 3 | publishes, archives, publisher, scholars, manuscripts, npr, affiliated, revelations, discusses, archive | motorcycling, motorcycles, speeding, motorcycle, driving, motorcyclist, riding, harleys, braking, vehicles |
|
42 |
+
| 4 | motherboard, ram, motherboards, processor, cmos, hardware, chipset, chipsets, amd, mb | yale, sunroof, damphousse, library, npr, billboards, balloon, schools, kerosene, nicholas |
|
43 |
+
| 5 | palestinians, palestinian, gazans, gaza, genocide, israelis, atrocities, israeli, hamas, holocaust | motorola, mastercard, technician, smartdrive, telephony, transmissions, phones, electronically, voyager, cruising |
|
44 |
+
| 6 | spectrometer, makefile, biochemistry, dblspace, bibliography, booklet, bookstores, circumference, nutritional, statistically | uh, um, em, yeah, oh, er, ah, yer, yo, ye |
|
45 |
+
| 7 | theology, theological, scripture, theologians, christianity, biblical, agnosticism, devout, agnostic, christians | missiles, munitions, soviets, artillery, bunker, missile, explosives, tactical, grenades, soviet |
|
46 |
+
| 8 | causes, metabolism, obstruction, bugging, xsession, disabling, debugger, behaviour, syndrome, occurs | prices, pricing, price, affordable, cheap, forsale, inexpensive, cost, purchases, priced |
|
47 |
+
| 9 | xcreatewindow, programmable, bitmap, bitmaps, colormaps, freeware, gui, imagewriter, colormap, adobe | discrepancy, inaccuracies, defective, debacle, unrecognized, faulty, misconception, sceptical, refutation, warranted |
|
48 |
+
|
49 |
+
## Package versions
|
50 |
+
|
51 |
+
The model in this repo was trained using the following package versions:
|
52 |
+
|
53 |
+
| Package | Version |
|
54 |
+
| - | - |
|
55 |
+
| scikit-learn | 1.3.2 |
|
56 |
+
| sentence-transformers | 3.2.0 |
|
57 |
+
| turftopic | 0.6.0 |
|
58 |
+
| joblib | 1.2.0 |
|
59 |
+
|
60 |
+
We recommend that you install the same, or compatible versions of these packages locally, before trying to load a model.
|
61 |
+
|
model.joblib
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:414ec7e8a0e127ce291f85425722f0df7219e16eb236a972dd5314e6d2cdb2f8
|
3 |
+
size 145878291
|
package_versions.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"scikit-learn": "1.3.2", "sentence-transformers": "3.2.0", "turftopic": "0.6.0", "joblib": "1.2.0"}
|