ConvoKit is a toolkit for extracting conversational features and analyzing social phenomena in conversations. It includes several large conversational datasets along with scripts exemplifying the use of the toolkit on these datasets.
Minor issue that never got changed since issue #140 was closed: politenessStrategies.py and textProcessor.py accesses private variable corpus.utterances in line 79 and line 55 respectively, and i remember mentioning that code should not access corpus private variables outside of the corpus file and should use the getters instead like corpus.iter_utterances().
Description
Minor issue that never got changed since issue #140 was closed:
politenessStrategies.py
andtextProcessor.py
accesses private variablecorpus.utterances
in line 79 and line 55 respectively, and i remember mentioning that code should not access corpus private variables outside of the corpus file and should use the getters instead likecorpus.iter_utterances()
.