GateNLP / gateplugin-LearningFramework

A plugin for the GATE language technology framework for training and using machine learning models. Currently supports Mallet (MaxEnt, NaiveBayes, CRF and others), LibSVM, Scikit-Learn, Weka, and DNNs through Pytorch and Keras.
https://gatenlp.github.io/gateplugin-LearningFramework/
GNU Lesser General Public License v2.1
26 stars 6 forks source link

Clean up debug messages and make log messages black #94

Closed johann-petrak closed 5 years ago

johann-petrak commented 5 years ago

Check if we have annoying debug messages, check which messages go to standard output and which to standard error, try to use logging throughout. Especially important: messages coming from the interaction library code since standard output is reserved for communication from the process, all we get is standard error for even just normal log messages. The library should re-route them to standard output.

johann-petrak commented 5 years ago

This looks largely fixed now.