4

How do I identify monologues and dialogues in a conversation (or transcript) using natural language processing? How do I distinguish between the two?

nbro
  • 39,006
  • 12
  • 98
  • 176
  • 3
    Welcome to ai.se...I would suggest you add more details like methods you are looking into, or what you have concluded from your studying of the problem, otherwise it becomes a very broad question for this forum leading to sub optimal answers. –  Jun 03 '19 at 09:34

1 Answers1

1

There are a few different ways you could frame the problem...

For example, the simplest, yet probably not the most effective, would be to treat it as a supervised classification task.

In this case, you would gather data, split it into 2 classes(binary). With one dataset consisting of dialogues and the other monologues. Obviously, this framing comes with it's own set of problems. Namely, how do you prepare the dataset, or how do you deal with live examples?

Of course, there are other ways you could tackle the problem, perhaps the detection context. It all depends on what you feel is the easiest tenable solution given the variables involved in your specific instance.

hisairnessag3
  • 1,235
  • 5
  • 15