Shane Weisz commited on
Commit
040f7cc
1 Parent(s): 7ccb305

Update description with details about the project

Browse files
Files changed (1) hide show
  1. app.py +8 -1
app.py CHANGED
@@ -5,7 +5,14 @@ DEFAULT_MODEL = "shaneweisz/DialoGPT-finetuned-multiCONAN"
5
  DECODING_CONFIG = {"max_new_tokens": 100, "no_repeat_ngram_size": 3, "num_beams": 10}
6
 
7
  TITLE = "AutoCounterspeech"
8
- DESCRIPTION = "Enter some hate speech and see if the system generates an appropriate counterspeech response."
 
 
 
 
 
 
 
9
  ARTICLE = f"""
10
  **Model:** {DEFAULT_MODEL}<br>
11
  **Decoding parameters:** {DECODING_CONFIG}
 
5
  DECODING_CONFIG = {"max_new_tokens": 100, "no_repeat_ngram_size": 3, "num_beams": 10}
6
 
7
  TITLE = "AutoCounterspeech"
8
+ DESCRIPTION = """
9
+ Built by [Shane Weisz](https://shaneweisz.com) for my MPhil project on _Automating Counterspeech in Dialogue Systems_ at Cambridge University.
10
+ <br/><br/>
11
+ 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_.
12
+ <br/><br/>
13
+ 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/).
14
+ <br/><br/>
15
+ Try it out: **Enter some hate speech and see if the system generates an appropriate counterspeech response.**"""
16
  ARTICLE = f"""
17
  **Model:** {DEFAULT_MODEL}<br>
18
  **Decoding parameters:** {DECODING_CONFIG}