2017-08-29 15:01:17 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
import csv
|
2017-09-11 12:12:28 +02:00
|
|
|
import functools
|
2017-09-11 13:00:03 +02:00
|
|
|
import os.path
|
2017-08-29 15:01:17 +02:00
|
|
|
import re
|
2017-09-11 13:00:03 +02:00
|
|
|
import subprocess
|
|
|
|
import time
|
|
|
|
import xml.etree.ElementTree as ET
|
|
|
|
|
2017-08-29 15:01:17 +02:00
|
|
|
import spacy
|
2017-09-11 12:12:28 +02:00
|
|
|
import textacy
|
2017-09-11 13:00:03 +02:00
|
|
|
from scipy import *
|
|
|
|
from textacy import Vectorizer
|
|
|
|
|
2017-08-29 15:01:17 +02:00
|
|
|
csv.field_size_limit(sys.maxsize)
|
|
|
|
|
2017-08-31 14:54:01 +02:00
|
|
|
|
|
|
|
|
2017-09-11 12:12:28 +02:00
|
|
|
# Load the configuration file
|
|
|
|
import configparser as ConfigParser
|
|
|
|
config = ConfigParser.ConfigParser()
|
|
|
|
with open("config.ini") as f:
|
|
|
|
config.read_file(f)
|
2017-08-31 14:54:01 +02:00
|
|
|
|
2017-08-29 15:01:17 +02:00
|
|
|
|
2017-09-11 13:00:03 +02:00
|
|
|
|
|
|
|
path2xml = config.get("default","path2xml")
|
|
|
|
|
2017-09-11 12:12:28 +02:00
|
|
|
PARSER = spacy.load(config.get("default","language"))
|
|
|
|
corpus = textacy.Corpus(PARSER)
|
2017-08-29 15:01:17 +02:00
|
|
|
|
2017-09-11 12:12:28 +02:00
|
|
|
thesauruspath = config.get("default","thesauruspath")
|
|
|
|
THESAURUS = list(textacy.fileio.read_csv(thesauruspath, delimiter=";"))
|
2017-08-29 15:01:17 +02:00
|
|
|
|
2017-09-11 13:00:03 +02:00
|
|
|
stop_words=list(__import__("spacy." + PARSER.lang, globals(), locals(), ['object']).STOP_WORDS) + config.get("preprocessing","custom_words").split(",")
|
2017-08-31 14:54:01 +02:00
|
|
|
|
|
|
|
|
2017-09-11 12:12:28 +02:00
|
|
|
def compose(*functions):
|
|
|
|
def compose2(f, g):
|
|
|
|
return lambda x: f(g(x))
|
|
|
|
return functools.reduce(compose2, functions, lambda x: x)
|
2017-08-31 14:54:01 +02:00
|
|
|
|
|
|
|
|
2017-08-29 15:01:17 +02:00
|
|
|
|
2017-09-11 12:12:28 +02:00
|
|
|
def generateMainTextfromTicketXML(path2xml, main_textfield='Beschreibung'):
|
|
|
|
"""
|
|
|
|
generates strings from XML
|
|
|
|
:param path2xml:
|
|
|
|
:param main_textfield:
|
|
|
|
:param cleaning_function:
|
|
|
|
:yields strings
|
|
|
|
"""
|
2017-08-29 15:01:17 +02:00
|
|
|
tree = ET.parse(path2xml, ET.XMLParser(encoding="utf-8"))
|
|
|
|
root = tree.getroot()
|
|
|
|
|
2017-08-31 14:54:01 +02:00
|
|
|
for ticket in root:
|
|
|
|
for field in ticket:
|
2017-09-11 12:12:28 +02:00
|
|
|
if field.tag == main_textfield:
|
|
|
|
yield field.text
|
2017-08-31 14:54:01 +02:00
|
|
|
|
2017-09-11 12:12:28 +02:00
|
|
|
def generateMetadatafromTicketXML(path2xml, leave_out=['Beschreibung']):
|
2017-08-31 14:54:01 +02:00
|
|
|
tree = ET.parse(path2xml, ET.XMLParser(encoding="utf-8"))
|
|
|
|
root = tree.getroot()
|
2017-09-01 14:27:03 +02:00
|
|
|
|
2017-08-30 12:56:59 +02:00
|
|
|
for ticket in root:
|
|
|
|
metadata = {}
|
|
|
|
for field in ticket:
|
2017-09-11 12:12:28 +02:00
|
|
|
if field.tag not in leave_out:
|
|
|
|
|
2017-08-31 14:54:01 +02:00
|
|
|
metadata[field.tag] = field.text
|
2017-08-29 15:01:17 +02:00
|
|
|
|
2017-08-31 14:54:01 +02:00
|
|
|
yield metadata
|
2017-08-29 15:01:17 +02:00
|
|
|
|
2017-09-11 12:12:28 +02:00
|
|
|
def printRandomDoc(textacyCorpus):
|
|
|
|
import random
|
|
|
|
print()
|
2017-08-29 15:01:17 +02:00
|
|
|
|
2017-09-11 12:12:28 +02:00
|
|
|
print("len(textacyCorpus) = %i" % len(textacyCorpus))
|
|
|
|
randIndex = int((len(textacyCorpus) - 1) * random.random())
|
|
|
|
print("Index: {0} ; Text: {1} ; Metadata: {2}".format(randIndex, textacyCorpus[randIndex].text, textacyCorpus[randIndex].metadata))
|
2017-08-29 15:01:17 +02:00
|
|
|
|
2017-09-11 12:12:28 +02:00
|
|
|
print()
|
2017-08-29 15:01:17 +02:00
|
|
|
|
2017-09-11 12:12:28 +02:00
|
|
|
def processDictstream(dictstream, funcdict, parser=PARSER):
|
|
|
|
for dic in dictstream:
|
|
|
|
result = {}
|
|
|
|
for key, value in dic.items():
|
|
|
|
if key in funcdict:
|
|
|
|
result[key] = funcdict[key](parser(value))
|
|
|
|
else:
|
2017-09-11 13:00:03 +02:00
|
|
|
result[key] = value
|
2017-09-11 12:12:28 +02:00
|
|
|
yield result
|
2017-08-29 15:01:17 +02:00
|
|
|
|
2017-09-11 12:12:28 +02:00
|
|
|
def processTextstream(textstream, func, parser=PARSER):
|
|
|
|
# input str-stream output str-stream
|
|
|
|
pipe = parser.pipe(textstream)
|
2017-08-29 15:01:17 +02:00
|
|
|
|
2017-09-11 12:12:28 +02:00
|
|
|
for doc in pipe:
|
|
|
|
yield func(doc)
|
2017-08-29 15:01:17 +02:00
|
|
|
|
|
|
|
|
2017-08-30 12:56:59 +02:00
|
|
|
|
2017-08-31 14:54:01 +02:00
|
|
|
|
2017-09-11 12:12:28 +02:00
|
|
|
def keepOnlyPOS(pos_list, parser=PARSER):
|
|
|
|
return lambda doc : parser(" ".join([tok.text for tok in doc if tok.pos_ in pos_list]))
|
2017-08-31 14:54:01 +02:00
|
|
|
|
2017-09-11 12:12:28 +02:00
|
|
|
def removeAllPOS(pos_list, parser=PARSER):
|
|
|
|
return lambda doc: parser(" ".join([tok.text for tok in doc if tok.pos_ not in pos_list]))
|
2017-08-31 14:54:01 +02:00
|
|
|
|
2017-09-11 12:12:28 +02:00
|
|
|
def keepOnlyENT(ent_list,parser=PARSER):
|
|
|
|
return lambda doc: parser(" ".join([tok.text for tok in doc if tok.ent_type_ in ent_list]))
|
2017-08-31 14:54:01 +02:00
|
|
|
|
2017-09-11 12:12:28 +02:00
|
|
|
def removeAllENT(ent_list, parser=PARSER):
|
|
|
|
return lambda doc: parser(" ".join([tok.text for tok in doc if tok.ent_type_ not in ent_list]))
|
2017-08-31 14:54:01 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
2017-09-11 12:12:28 +02:00
|
|
|
doc2Set = lambda doc: str(set([tok.text for tok in doc]))
|
|
|
|
doc2String = lambda doc : doc.text
|
2017-08-31 14:54:01 +02:00
|
|
|
|
|
|
|
|
2017-09-11 12:12:28 +02:00
|
|
|
mentionFinder = re.compile(r"@[a-z0-9_]{1,15}", re.IGNORECASE)
|
|
|
|
emailFinder = re.compile(r"\b[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,}\b", re.IGNORECASE)
|
|
|
|
urlFinder = re.compile(r"^(?:https?:\/\/)?(?:www\.)?[a-zA-Z0-9./]+$", re.IGNORECASE)
|
2017-08-31 14:54:01 +02:00
|
|
|
|
2017-09-11 12:12:28 +02:00
|
|
|
def replaceURLs(replace_with="URL",parser=PARSER):
|
|
|
|
#return lambda doc: parser(textacy.preprocess.replace_urls(doc.text,replace_with=replace_with))
|
|
|
|
return lambda doc: parser(urlFinder.sub(replace_with,doc.text))
|
2017-08-29 15:01:17 +02:00
|
|
|
|
2017-09-11 12:12:28 +02:00
|
|
|
def replaceEmails(replace_with="EMAIL",parser=PARSER):
|
|
|
|
#return lambda doc: parser(textacy.preprocess.replace_emails(doc.text,replace_with=replace_with))
|
|
|
|
return lambda doc : parser(emailFinder.sub(replace_with, doc.text))
|
2017-08-31 14:54:01 +02:00
|
|
|
|
2017-09-11 12:12:28 +02:00
|
|
|
def replaceTwitterMentions(replace_with="TWITTER_MENTION",parser=PARSER):
|
|
|
|
return lambda doc : parser(mentionFinder.sub(replace_with, doc.text))
|
2017-08-29 15:01:17 +02:00
|
|
|
|
2017-09-11 12:12:28 +02:00
|
|
|
def replaceNumbers(replace_with="NUMBER",parser=PARSER):
|
|
|
|
return lambda doc: parser(textacy.preprocess.replace_numbers(doc.text, replace_with=replace_with))
|
2017-08-29 15:01:17 +02:00
|
|
|
|
2017-09-11 12:12:28 +02:00
|
|
|
def replacePhonenumbers(replace_with="PHONE",parser=PARSER):
|
|
|
|
return lambda doc: parser(textacy.preprocess.replace_phone_numbers(doc.text, replace_with=replace_with))
|
2017-08-29 15:01:17 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
2017-09-11 12:12:28 +02:00
|
|
|
def resolveAbbreviations(parser=PARSER):
|
|
|
|
pass #todo
|
2017-08-29 15:01:17 +02:00
|
|
|
|
2017-09-11 12:12:28 +02:00
|
|
|
def removeWords(words, keep=None,parser=PARSER):
|
|
|
|
if hasattr(keep, '__iter__'):
|
|
|
|
for k in keep:
|
|
|
|
try:
|
|
|
|
words.remove(k)
|
|
|
|
except ValueError:
|
|
|
|
pass
|
|
|
|
return lambda doc : parser(" ".join([tok.text for tok in doc if tok.lower_ not in words]))
|
2017-08-29 15:01:17 +02:00
|
|
|
|
2017-08-31 14:54:01 +02:00
|
|
|
|
|
|
|
|
2017-09-11 12:12:28 +02:00
|
|
|
def normalizeSynonyms(default_return_first_Syn=False, parser=PARSER):
|
|
|
|
#return lambda doc : parser(" ".join([tok.lower_ for tok in doc]))
|
|
|
|
return lambda doc : parser(" ".join([getFirstSynonym(tok.lower_, THESAURUS, default_return_first_Syn=default_return_first_Syn) for tok in doc]))
|
2017-09-01 14:27:03 +02:00
|
|
|
|
2017-09-11 12:12:28 +02:00
|
|
|
def getFirstSynonym(word, thesaurus, default_return_first_Syn=False):
|
|
|
|
if not isinstance(word, str):
|
|
|
|
return str(word)
|
2017-08-31 14:54:01 +02:00
|
|
|
|
|
|
|
word = word.lower()
|
|
|
|
|
|
|
|
# durch den thesaurrus iterieren
|
2017-09-11 12:12:28 +02:00
|
|
|
for syn_block in thesaurus: # syn_block ist eine liste mit Synonymen
|
2017-08-31 14:54:01 +02:00
|
|
|
|
|
|
|
for syn in syn_block:
|
|
|
|
syn = syn.lower()
|
|
|
|
if re.match(r'\A[\w-]+\Z', syn): # falls syn einzelwort ist
|
|
|
|
if word == syn:
|
2017-09-11 12:12:28 +02:00
|
|
|
return str(getHauptform(syn_block, word, default_return_first_Syn=default_return_first_Syn))
|
2017-08-31 14:54:01 +02:00
|
|
|
else: # falls es ein satz ist
|
|
|
|
if word in syn:
|
2017-09-11 12:12:28 +02:00
|
|
|
return str(getHauptform(syn_block, word, default_return_first_Syn=default_return_first_Syn))
|
|
|
|
return str(word) # zur Not, das ursrpüngliche Wort zurückgeben
|
2017-08-31 14:54:01 +02:00
|
|
|
|
|
|
|
def getHauptform(syn_block, word, default_return_first_Syn=False):
|
|
|
|
for syn in syn_block:
|
|
|
|
syn = syn.lower()
|
|
|
|
|
|
|
|
if "hauptform" in syn and len(syn.split(" ")) <= 2:
|
2017-09-11 12:12:28 +02:00
|
|
|
# nicht ausgeben, falls es in Klammern steht#todo gibts macnmal?? klammern aus
|
2017-08-31 14:54:01 +02:00
|
|
|
for w in syn.split(" "):
|
|
|
|
if not re.match(r'\([^)]+\)', w):
|
|
|
|
return w
|
|
|
|
|
|
|
|
if default_return_first_Syn:
|
|
|
|
# falls keine hauptform enthalten ist, das erste Synonym zurückgeben, was kein satz ist und nicht in klammern steht
|
|
|
|
for w in syn_block:
|
|
|
|
if not re.match(r'\([^)]+\)', w):
|
|
|
|
return w
|
|
|
|
return word # zur Not, das ursrpüngliche Wort zurückgeben
|
|
|
|
|
2017-09-11 13:00:03 +02:00
|
|
|
def label2ID(label):
|
|
|
|
return {
|
|
|
|
'Neuanschluss' : 0,
|
|
|
|
'LSF' : 1,
|
|
|
|
'Video' : 2,
|
|
|
|
}.get(label,3)
|
2017-08-31 14:54:01 +02:00
|
|
|
|
2017-09-11 13:00:03 +02:00
|
|
|
def generate_labled_lines(textacyCorpus):
|
|
|
|
for doc in textacyCorpus:
|
|
|
|
# generate [topic1, topic2....] tok1 tok2 tok3 out of corpus
|
|
|
|
yield "[" + str(label2ID(doc.metadata["Kategorie"])) + "] " + doc.text
|
2017-08-31 14:54:01 +02:00
|
|
|
|
2017-09-11 12:12:28 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
2017-09-11 13:00:03 +02:00
|
|
|
####################'####################'####################'####################'####################'##############
|
2017-09-11 12:12:28 +02:00
|
|
|
|
|
|
|
|
2017-08-31 14:54:01 +02:00
|
|
|
|
2017-09-11 12:12:28 +02:00
|
|
|
ents = config.get("preprocessing","ents").split(",")
|
2017-08-31 14:54:01 +02:00
|
|
|
|
2017-09-11 12:12:28 +02:00
|
|
|
clean_in_content=compose(
|
2017-08-31 14:54:01 +02:00
|
|
|
|
2017-09-11 12:12:28 +02:00
|
|
|
doc2String,
|
|
|
|
#normalizeSynonyms(default_return_first_Syn=config.get("preprocessing","default_return_first_Syn")),
|
|
|
|
replaceEmails(),
|
|
|
|
replaceURLs(),
|
|
|
|
replaceTwitterMentions(),
|
|
|
|
removeWords(stop_words),
|
|
|
|
#removeAllPOS(["SPACE","PUNCT"]),
|
|
|
|
#removeAllENT(ents),
|
|
|
|
keepOnlyPOS(['NOUN'])
|
|
|
|
)
|
2017-08-31 14:54:01 +02:00
|
|
|
|
2017-09-11 12:12:28 +02:00
|
|
|
clean_in_meta = {
|
|
|
|
"Loesung":removeAllPOS(["SPACE"]),
|
|
|
|
"Zusammenfassung":removeAllPOS(["SPACE","PUNCT"])
|
|
|
|
}
|
2017-08-31 14:54:01 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-09-11 13:00:03 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
## add files to textacy-corpus,
|
|
|
|
print("add texts to textacy-corpus...")
|
|
|
|
corpus.add_texts(
|
|
|
|
processTextstream(generateMainTextfromTicketXML(path2xml), func=clean_in_content),
|
|
|
|
processDictstream(generateMetadatafromTicketXML(path2xml), funcdict=clean_in_meta)
|
|
|
|
)
|
|
|
|
|
2017-09-11 12:12:28 +02:00
|
|
|
printRandomDoc(corpus)
|
2017-08-31 14:54:01 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
2017-09-11 13:00:03 +02:00
|
|
|
####################'####################' Variablen todo alles in config
|
|
|
|
|
|
|
|
ngrams = (1,2)
|
|
|
|
|
|
|
|
min_df = 0
|
|
|
|
max_df = 1.0
|
|
|
|
no_below = 20
|
|
|
|
no_above = 0.5
|
|
|
|
|
|
|
|
topicModel = 'lda'
|
|
|
|
# http://textacy.readthedocs.io/en/latest/api_reference.html#textacy.tm.topic_model.TopicModel.get_doc_topic_matrix
|
|
|
|
weighting = ('tf' if topicModel == 'lda' else 'tfidf')
|
|
|
|
|
|
|
|
top_topic_words = 5
|
|
|
|
top_document_labels_per_topic = 2
|
|
|
|
|
|
|
|
n_topics = 4
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
####################'####################
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
print("vectorize corpus...")
|
|
|
|
vectorizer = Vectorizer(weighting=weighting, min_df=min_df, max_df=max_df)
|
|
|
|
|
|
|
|
terms_list = (doc.to_terms_list(ngrams=ngrams, named_entities=False, as_strings=True) for doc in corpus)
|
|
|
|
doc_term_matrix = vectorizer.fit_transform(terms_list)
|
|
|
|
id2term = vectorizer.__getattribute__("id_to_term")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
##################### LSA, LDA, NMF Topic Modeling via Textacy ##############################################
|
|
|
|
|
|
|
|
# Initialize and train a topic model
|
|
|
|
print("Initialize and train a topic model")
|
|
|
|
model = textacy.tm.TopicModel(topicModel, n_topics=n_topics)
|
|
|
|
model.fit(doc_term_matrix)
|
|
|
|
|
|
|
|
#Transform the corpus and interpret our model:
|
|
|
|
print("Transform the corpus and interpret our model")
|
|
|
|
doc_topic_matrix = model.transform(doc_term_matrix)
|
|
|
|
print()
|
|
|
|
|
|
|
|
|
|
|
|
for topic_idx, top_terms in model.top_topic_terms(vectorizer.id_to_term, top_n=top_topic_words):
|
|
|
|
print('topic', topic_idx, ':', ' '.join(top_terms))
|
|
|
|
|
|
|
|
|
|
|
|
print()
|
|
|
|
for topic_idx, top_docs in model.top_topic_docs(doc_topic_matrix, top_n=top_document_labels_per_topic):
|
|
|
|
print(topic_idx)
|
|
|
|
for j in top_docs:
|
|
|
|
print(corpus[j].metadata['Kategorie'])
|
|
|
|
|
|
|
|
#####################################################################################################################
|
|
|
|
print()
|
|
|
|
print()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
##################### LLDA Topic Modeling via JGibbsLabledLDA ##############################################
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
jgibbsLLDA_root = "java_LabledLDA/"
|
|
|
|
filepath = "{0}models/tickets/tickets.gz".format(jgibbsLLDA_root)
|
|
|
|
|
|
|
|
|
|
|
|
#create file
|
|
|
|
textacy.fileio.write_file_lines(generate_labled_lines(corpus),filepath=filepath)
|
|
|
|
|
|
|
|
|
|
|
|
# wait for file to exist
|
|
|
|
while not os.path.exists(filepath):
|
|
|
|
time.sleep(1)
|
2017-08-31 14:54:01 +02:00
|
|
|
|
2017-09-11 13:00:03 +02:00
|
|
|
print("start LLDA..")
|
|
|
|
#run JGibsslda file
|
|
|
|
FNULL = open(os.devnull, 'w') # supress output
|
|
|
|
subprocess.call(["java",
|
|
|
|
"-cp", "{0}lib/trove-3.0.3.jar:{0}lib/args4j-2.0.6.jar:{0}out/production/LabledLDA/".format(jgibbsLLDA_root),
|
|
|
|
"jgibblda.LDA",
|
|
|
|
"-est",
|
|
|
|
"-dir", "{0}models/tickets".format(jgibbsLLDA_root),
|
|
|
|
"-dfile","tickets.gz",
|
|
|
|
"-ntopics", str(n_topics)], stdout = FNULL)
|
2017-08-31 14:54:01 +02:00
|
|
|
|
2017-09-11 13:00:03 +02:00
|
|
|
# ANMERKUNG: Dateien sind versteckt. zu finden in models/
|
2017-08-31 14:54:01 +02:00
|
|
|
|
2017-09-11 13:00:03 +02:00
|
|
|
#print twords
|
|
|
|
subprocess.call(["gzip",
|
|
|
|
"-dc",
|
|
|
|
"{0}/models/tickets/.twords.gz".format(jgibbsLLDA_root)])
|
|
|
|
#####################################################################################################################
|
|
|
|
print()
|
|
|
|
print()
|
2017-08-29 15:01:17 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|