Update app.py
Browse files
app.py
CHANGED
|
@@ -78,9 +78,9 @@ def get_matches(inputs):
|
|
| 78 |
return paragraph_matches
|
| 79 |
|
| 80 |
|
| 81 |
-
def return_rf_scores(
|
| 82 |
|
| 83 |
-
sentences = list(segment("en",
|
| 84 |
matches = get_matches(sentences)
|
| 85 |
|
| 86 |
output = HTML_Output
|
|
|
|
| 78 |
return paragraph_matches
|
| 79 |
|
| 80 |
|
| 81 |
+
def return_rf_scores(abstract):
|
| 82 |
|
| 83 |
+
sentences = list(segment("en", abstract))
|
| 84 |
matches = get_matches(sentences)
|
| 85 |
|
| 86 |
output = HTML_Output
|