Die Suche ergab 4 Treffer

von Kathi94
Dienstag 13. September 2022, 10:54
Forum: Allgemeine Fragen
Thema: How can I apply already trained classifier on the new dataset?
Antworten: 1
Zugriffe: 330

How can I apply already trained classifier on the new dataset?

Hey, I am new to machine learning and it is my first project, so I would be grateful if someone can give me some advice.
I have already trained the classifier on the labelled dataset using a SVC model and got the accuracy with the train-test-split method. So it looks something like this:
X_train, X ...
von Kathi94
Sonntag 12. April 2020, 15:52
Forum: Allgemeine Fragen
Thema: Can someone explain me the meaning of the functions?
Antworten: 0
Zugriffe: 856

Can someone explain me the meaning of the functions?

Can someone pls explain me, what the functions add und look up do?
Especially I don't understand the meaning of seed and string, what are they doing?


from bitarray import bitarray
import mmh3

class BloomFilter:

def __init__(self, size, hash_count):
self.size = size
self.hash_count = hash ...
von Kathi94
Samstag 4. April 2020, 18:52
Forum: Allgemeine Fragen
Thema: How can I use the Bloom Filter?
Antworten: 0
Zugriffe: 807

How can I use the Bloom Filter?

Hi i must write one program using the Blomm Filter. Unfortunately i don't understand the formulas. Here there are (Python):
m = -(n*math.log(p))/(math.log(2)**2)
k = (m/n)*math.log(2)
p = (1 - ( 1-1/m)**kn)**k, where k is the number of hash functions, m is the size the bit array, n the expected ...
von Kathi94
Donnerstag 27. Februar 2020, 23:38
Forum: Ideen
Thema: Rechtschreibautokorrekturprogramm schreiben
Antworten: 2
Zugriffe: 2224

Rechtschreibautokorrekturprogramm schreiben

Hallo zusammen!
Für mein Abschlussprojekt für Python muss ich ein Rechtschreibautokorrekturprogramm programmieren.
Leider wurden während des Seminars nur Grundlagen unterrichtet, deswegen ist es bei mir der erste Kontakt mit dem Programmieren.
Vielleicht könnte mir jemand einen Tipp geben, mit was ...