Shane Weisz
Add disclaimer note about inappropriate responses
a9b8087
raw
history blame
2.24 kB
from response_generation import ResponseGenerator
import gradio as gr
DEFAULT_MODEL = "shaneweisz/DialoGPT-finetuned-multiCONAN"
DECODING_CONFIG = {"max_new_tokens": 100, "no_repeat_ngram_size": 3, "num_beams": 10}
TITLE = "Automating Counterspeech in Dialogue Systems"
DESCRIPTION = """
Built by [Shane Weisz](https://shaneweisz.com) for my research project on _Automating Counterspeech in Dialogue Systems_ as part of the [MPhil in Machine Learning and Machine Intelligence](https://www.mlmi.eng.cam.ac.uk/) at Cambridge University.
<br/>
The project is supervised by [Dr Marcus Tomalin](https://www.crassh.cam.ac.uk/about/people/marcus-tomalin/) and forms part of the [Giving Voice to Digital Democracies](https://www.crassh.cam.ac.uk/research/projects-centres/giving-voice-to-digital-democracies/) project on the _The Social Impact of Artificially Intelligent Communications Technology_.
<br/>
The system is built by fine-tuning [DialoGPT](https://huggingface.co/microsoft/DialoGPT-medium#:~:text=DialoGPT%20is%20a%20SOTA%20large,single%2Dturn%20conversation%20Turing%20test) on the [MultiCONAN](https://github.com/marcoguerini/CONAN#Multitarget-CONAN) dataset, a dataset comprising a set of hate speech inputs and appropriate counterspeech responses produced under the supervision of trained NGO operators from [Stop Hate UK](https://www.stophateuk.org/).
<br/><br/>
**Try it out**: Enter some hate speech (or select one of the provided examples) and see if the system generates an appropriate counterspeech response.
"""
ARTICLE = f"""
**Model:** {DEFAULT_MODEL}<br>
**Decoding parameters:** {DECODING_CONFIG}
<br/><br/>
_Please note: The system is still in development and can sometimes be prone to generating inappropriate responses. Any views or responses expressed by the system should not be construed as reflective of the views or values of the developer._
"""
model = ResponseGenerator(DEFAULT_MODEL, DECODING_CONFIG)
def respond(input):
return model.respond(input)
demo = gr.Interface(fn=respond, inputs="text", outputs="text", examples=["Muslims are all terrorists", "Jews are selfish and greedy", "Why waste time listening to black women?"], title = TITLE, description = DESCRIPTION, article = ARTICLE)
demo.launch()