Update app.py
Browse files
app.py
CHANGED
@@ -44,9 +44,26 @@ sp = en_core_sci_lg.load()
|
|
44 |
all_stopwords = sp.Defaults.stop_words
|
45 |
|
46 |
indicator_phrases = [
|
47 |
-
# ... (keep your full list from above)
|
48 |
"found that", "findings suggest", "shows that", "showed that", "demonstrated", "demonstrates",
|
49 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
50 |
"according to", "a recent study", "researchers from"
|
51 |
]
|
52 |
|
|
|
44 |
all_stopwords = sp.Defaults.stop_words
|
45 |
|
46 |
indicator_phrases = [
|
|
|
47 |
"found that", "findings suggest", "shows that", "showed that", "demonstrated", "demonstrates",
|
48 |
+
"revealed", "reveals", "suggests", "suggested", "indicated", "indicates", "reported", "reports",
|
49 |
+
"was reported", "concluded", "concludes", "conclusion", "authors state", "stated", "data suggest",
|
50 |
+
"observed", "observes", "study suggests", "study shows", "study found", "researchers found",
|
51 |
+
"results indicate", "results show", "confirmed", "confirm", "confirming", "point to",
|
52 |
+
"documented", "document", "evidence of", "evidence suggests",
|
53 |
+
"associated with", "correlated with", "link between", "linked to", "relationship between",
|
54 |
+
"was linked", "connected to", "relationship with", "tied to", "association with",
|
55 |
+
"increase", "increases", "increased", "decrease", "decreases", "decreased",
|
56 |
+
"greater risk", "lower risk", "higher risk", "reduced risk", "raises the risk", "reduces the risk",
|
57 |
+
"risk of", "risk for", "likelihood of", "probability of", "chance of", "rate of", "incidence of",
|
58 |
+
"prevalence of", "mortality", "survival rate", "death rate", "odds of", "number of", "percentage of", "percent of",
|
59 |
+
"caused by", "causes", "cause", "resulted in", "results in", "leads to", "led to", "contributed to", "responsible for",
|
60 |
+
"due to", "as a result", "because of",
|
61 |
+
"randomized controlled trial", "RCT", "clinical trial", "participants", "enrolled", "sample size", "statistically significant",
|
62 |
+
"compared to", "compared with", "versus", "compared against",
|
63 |
+
"more than", "less than", "greater than", "lower than", "higher than", "significantly higher", "significantly lower",
|
64 |
+
"significantly increased", "significantly decreased", "significant difference",
|
65 |
+
"effect of", "impact of", "influence of", "predictor of", "predicts", "predictive of", "factor for", "determinant of",
|
66 |
+
"plays a role in", "contributes to", "related to", "affects", "influences", "difference between",
|
67 |
"according to", "a recent study", "researchers from"
|
68 |
]
|
69 |
|