productizationlabs
commited on
Commit
•
f3228bd
1
Parent(s):
7cefc3e
Upload app.py
Browse files
app.py
CHANGED
@@ -5,6 +5,8 @@ from nltk.tokenize import word_tokenize
|
|
5 |
from nltk.stem.wordnet import WordNetLemmatizer
|
6 |
import nltk
|
7 |
nltk.download('punkt')
|
|
|
|
|
8 |
df=pd.read_csv('Hotel_Reviews.csv')
|
9 |
df[_A]=df.Hotel_Address.apply(lambda x:x.split(' ')[-1])
|
10 |
def Input_your_destination_and_description(location,description):
|
|
|
5 |
from nltk.stem.wordnet import WordNetLemmatizer
|
6 |
import nltk
|
7 |
nltk.download('punkt')
|
8 |
+
nltk.download('stopwords')
|
9 |
+
nltk.download('wordnet')
|
10 |
df=pd.read_csv('Hotel_Reviews.csv')
|
11 |
df[_A]=df.Hotel_Address.apply(lambda x:x.split(' ')[-1])
|
12 |
def Input_your_destination_and_description(location,description):
|