Spaces:
Runtime error
Runtime error
Commit
·
e6df2a5
1
Parent(s):
2242573
Update app.py
Browse files
app.py
CHANGED
@@ -19,7 +19,7 @@ def test_input(words):
|
|
19 |
if w in all_set:
|
20 |
word_dict += "{} : in-distribution\n".format(w)
|
21 |
else:
|
22 |
-
word_dict
|
23 |
return word_dict
|
24 |
|
25 |
|
|
|
19 |
if w in all_set:
|
20 |
word_dict += "{} : in-distribution\n".format(w)
|
21 |
else:
|
22 |
+
word_dict += "{} : out-of-distribution\n".format(w)
|
23 |
return word_dict
|
24 |
|
25 |
|