added nltk to requirements
Browse files
app.py
CHANGED
@@ -4,6 +4,10 @@ import matplotlib.pyplot as plt
|
|
4 |
from inference import RelationsInference
|
5 |
from utils import KGType,Model_Type
|
6 |
|
|
|
|
|
|
|
|
|
7 |
#############################
|
8 |
# Constants
|
9 |
#############################
|
|
|
4 |
from inference import RelationsInference
|
5 |
from utils import KGType,Model_Type
|
6 |
|
7 |
+
#prep
|
8 |
+
import nltk
|
9 |
+
nltk.download('popular')
|
10 |
+
|
11 |
#############################
|
12 |
# Constants
|
13 |
#############################
|