Après avoir passé quelques années à comprendre comment cela fonctionne, voici le tutoriel mis à jour de
Comment créer un corpus NLTK avec un répertoire de fichiers textes ?
L'idée principale est d'utiliser le nltk.corpus.reader paquet. Dans le cas où vous avez un répertoire de fichiers textes dans le dossier Anglais il est préférable d'utiliser l'option PlaintextCorpusReader .
Si vous avez un répertoire qui ressemble à ceci :
newcorpus/
file1.txt
file2.txt
...
Il suffit d'utiliser ces lignes de code et vous pouvez obtenir un corpus :
import os
from nltk.corpus.reader.plaintext import PlaintextCorpusReader
corpusdir = 'newcorpus/' # Directory of corpus.
newcorpus = PlaintextCorpusReader(corpusdir, '.*')
NOTE : que le PlaintextCorpusReader
utilisera l'option par défaut nltk.tokenize.sent_tokenize()
et nltk.tokenize.word_tokenize()
pour diviser vos textes en phrases et en mots et ces fonctions sont construites pour l'anglais, il peut PAS fonctionnent pour toutes les langues.
Voici le code complet avec la création des fichiers textes de test et comment créer un corpus avec NLTK et comment accéder au corpus à différents niveaux :
import os
from nltk.corpus.reader.plaintext import PlaintextCorpusReader
# Let's create a corpus with 2 texts in different textfile.
txt1 = """This is a foo bar sentence.\nAnd this is the first txtfile in the corpus."""
txt2 = """Are you a foo bar? Yes I am. Possibly, everyone is.\n"""
corpus = [txt1,txt2]
# Make new dir for the corpus.
corpusdir = 'newcorpus/'
if not os.path.isdir(corpusdir):
os.mkdir(corpusdir)
# Output the files into the directory.
filename = 0
for text in corpus:
filename+=1
with open(corpusdir+str(filename)+'.txt','w') as fout:
print>>fout, text
# Check that our corpus do exist and the files are correct.
assert os.path.isdir(corpusdir)
for infile, text in zip(sorted(os.listdir(corpusdir)),corpus):
assert open(corpusdir+infile,'r').read().strip() == text.strip()
# Create a new corpus by specifying the parameters
# (1) directory of the new corpus
# (2) the fileids of the corpus
# NOTE: in this case the fileids are simply the filenames.
newcorpus = PlaintextCorpusReader('newcorpus/', '.*')
# Access each file in the corpus.
for infile in sorted(newcorpus.fileids()):
print infile # The fileids of each file.
with newcorpus.open(infile) as fin: # Opens the file.
print fin.read().strip() # Prints the content of the file
print
# Access the plaintext; outputs pure string/basestring.
print newcorpus.raw().strip()
print
# Access paragraphs in the corpus. (list of list of list of strings)
# NOTE: NLTK automatically calls nltk.tokenize.sent_tokenize and
# nltk.tokenize.word_tokenize.
#
# Each element in the outermost list is a paragraph, and
# Each paragraph contains sentence(s), and
# Each sentence contains token(s)
print newcorpus.paras()
print
# To access pargraphs of a specific fileid.
print newcorpus.paras(newcorpus.fileids()[0])
# Access sentences in the corpus. (list of list of strings)
# NOTE: That the texts are flattened into sentences that contains tokens.
print newcorpus.sents()
print
# To access sentences of a specific fileid.
print newcorpus.sents(newcorpus.fileids()[0])
# Access just tokens/words in the corpus. (list of strings)
print newcorpus.words()
# To access tokens of a specific fileid.
print newcorpus.words(newcorpus.fileids()[0])
Enfin, pour lire un répertoire de textes et créer un corpus NLTK dans d'autres langues, il faut d'abord s'assurer que vous disposez d'un outil python-callable la tokénisation des mots et la tokenisation des phrases qui prend une entrée string/basestring et produit une telle sortie :
>>> from nltk.tokenize import sent_tokenize, word_tokenize
>>> txt1 = """This is a foo bar sentence.\nAnd this is the first txtfile in the corpus."""
>>> sent_tokenize(txt1)
['This is a foo bar sentence.', 'And this is the first txtfile in the corpus.']
>>> word_tokenize(sent_tokenize(txt1)[0])
['This', 'is', 'a', 'foo', 'bar', 'sentence', '.']