Spaces:
Running
Running
Shane Weisz
commited on
Commit
·
f2114ca
1
Parent(s):
e6c3756
Improve disclaimer
Browse files
app.py
CHANGED
@@ -16,10 +16,13 @@ The system is built by fine-tuning [DialoGPT](https://huggingface.co/microsoft/D
|
|
16 |
"""
|
17 |
|
18 |
ARTICLE = f"""
|
|
|
|
|
|
|
19 |
**Model:** {DEFAULT_MODEL}<br>
|
20 |
**Decoding parameters:** {DECODING_CONFIG}
|
21 |
<br/><br/>
|
22 |
-
|
23 |
"""
|
24 |
|
25 |
model = ResponseGenerator(DEFAULT_MODEL, DECODING_CONFIG)
|
|
|
16 |
"""
|
17 |
|
18 |
ARTICLE = f"""
|
19 |
+
_Please note: The system is simply a prototype and cannot be guaranteed to always generate appropriate responses. Any inappropriate views or responses expressed by the system should not be construed as reflective of the views or values of the developers._
|
20 |
+
|
21 |
+
|
22 |
**Model:** {DEFAULT_MODEL}<br>
|
23 |
**Decoding parameters:** {DECODING_CONFIG}
|
24 |
<br/><br/>
|
25 |
+
|
26 |
"""
|
27 |
|
28 |
model = ResponseGenerator(DEFAULT_MODEL, DECODING_CONFIG)
|