22 lines
401 B
Python
22 lines
401 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
|
||
|
import init
|
||
|
import corporization
|
||
|
import preprocessing
|
||
|
from miscellaneous import *
|
||
|
|
||
|
|
||
|
# ssh madonna "nohup /usr/bin/python3 -u /home/jannis.grundmann/PycharmProjects/topicModelingTickets/main.py &> /home/jannis.grundmann/PycharmProjects/topicModelingTickets/printout_main.log &"
|
||
|
|
||
|
|
||
|
init.main()
|
||
|
printlog("")
|
||
|
|
||
|
corporization.main()
|
||
|
printlog("")
|
||
|
|
||
|
preprocessing.main()
|
||
|
printlog("")
|
||
|
|