N-Gramm in Python

Ich habe [python-ngram] verwendet (https://github.com/gpoulter/python-ngram)

#!/usr/bin/env python
# -*- coding: utf-8 -*-
import ngram

text = u'AIUEO'
index = ngram.NGram(N=2)
for term in index.ngrams(index.pad(text)):
    print term

Ergebnis

$ python sample.py 
$Ah
Ai
Sagen
über
Eo
Oh$

Es gibt viele andere Funktionen, daher sollten Sie die oben verlinkten Tutorials lesen. Es scheint, dass Sie auch suchen können

#!/usr/bin/env python
# -*- coding: utf-8 -*-
import ngram

G = ngram.NGram(['joe','joseph','jon','john','sally'])
print G.search("joseph")
$ python sample.py
[('joseph', 1.0), ('joe', 0.18181818181818182), ('jon', 0.18181818181818182), ('john', 0.16666666666666666)]

Recommended Posts

N-Gramm in Python
Quadtree in Python --2
Python in der Optimierung
CURL in Python
Metaprogrammierung mit Python
Python 3.3 mit Anaconda
Geokodierung in Python
SendKeys in Python
Metaanalyse in Python
Unittest in Python
Epoche in Python
Zwietracht in Python
Deutsch in Python
DCI in Python
Quicksort in Python
nCr in Python
Programmieren mit Python
Plink in Python
Konstante in Python
FizzBuzz in Python
SQLite in Python
Schritt AIC in Python
LINE-Bot [0] in Python
CSV in Python
Reverse Assembler mit Python
Reflexion in Python
Konstante in Python
nCr in Python.
Format in Python
Scons in Python 3
Puyopuyo in Python
Python in Virtualenv
PPAP in Python
Quad-Tree in Python
Reflexion in Python
Chemie mit Python
Hashbar in Python
DirectLiNGAM in Python
LiNGAM in Python
In Python reduzieren
In Python flach drücken
Modul zum Generieren des Wortes N-Gramm in Python
Sortierte Liste in Python
Clustertext in Python
AtCoder # 2 jeden Tag mit Python
Täglicher AtCoder # 6 in Python
Täglicher AtCoder # 18 in Python
Bearbeiten Sie Schriftarten in Python
Singleton-Muster in Python
Dateioperationen in Python
Lesen Sie DXF mit Python
Täglicher AtCoder # 53 in Python
Tastenanschlag in Python
Verwenden Sie config.ini mit Python
Täglicher AtCoder # 33 in Python
Löse ABC168D in Python
Logistische Verteilung in Python
LU-Zerlegung in Python