Is there any way to make BB3 to ask specific questions/ say specific things ?
Hi. I'm trying to use BB3 to create a chatbot that can be used after class by students to help collect their suggestions or comments about teaching methods or contents in class. Is there any way to make BB3 to ask specific questions like :"How do you feel about the discussion part in class?" or "Do you feel overwhelmed because of the current workload of class reading and assignments?"
I was thinking about adding these as contexts but bb3 does not always use the topics in contexts, but I want to gather the answers of these kind of questions as quick as possible in a short conversation. What part of the code should I look at to add this function into bb3?
There are a few things you can try:
- If you set up your own custom interactive world, you can simply output those statements directly as openers to the conversation; not sure about your general familiarity with ParlAI, but you can subclass the
InteractiveWorldand modify it's parley function and add it to your own task, then call--task my_teacher_taskto use it - You can seed BB3 with a persona that would make it amenable to asking these questions, e.g.,
Person 2's Persona: I am a teacher. I am seeking feedback about teaching methods. This would require setting the memories directly, via callingagent.memories = agent.get_opening_memories(memories), where memories is a list of persona items
There are a few things you can try:
If you set up your own custom interactive world, you can simply output those statements directly as openers to the conversation; not sure about your general familiarity with ParlAI, but you can subclass the
InteractiveWorldand modify it's parley function and add it to your own task, then call--task my_teacher_taskto use itYou can seed BB3 with a persona that would make it amenable to asking these questions, e.g.,
Person 2's Persona: I am a teacher. I am seeking feedback about teaching methods. This would require setting the memories directly, via callingagent.memories = agent.get_opening_memories(memories), where memories is a list of persona items
Thanks so much for the reply. I would try these and see if they help to finish the task.
Maybe I didn't understand your question right, but I think you have better way of doing this that using BlenderBot. BlenderBot is trained to generate responses. It is not a chatbot that asks questions for running surveys. If I understood your intentions correctly, there are better tools for collecting feedback through a chatbot interface than BlenderBot. Even if you try to steer the conversation toward those questions, there is not guarantee that BlenderBot doesn't go completely off-rail and start talking about basketball.
This issue has not had activity in 30 days. Please feel free to reopen if you have more issues. You may apply the "never-stale" tag to prevent this from happening.