Closed bvreede closed 10 months ago
Corpora and conversations are created differently from json:
corpus = sktalk.Corpus.from_json("path/to/json") convo = sktalk.JsonFile("path/to/json").parse()
It would be better to be more consistent:
corpus = sktalk.Corpus.from_json("path/to/json") convo = sktalk.Conversation.from_json("path/to/json")
Also with the .cha parser:
convo = sktalk.Conversation.from_cha("path/to/cha")
Corpora and conversations are created differently from json:
It would be better to be more consistent:
Also with the .cha parser: