yitingliii
commited on
Update tfidf.py
Browse files
tfidf.py
CHANGED
@@ -1,4 +1,5 @@
|
|
1 |
import pandas as pd
|
|
|
2 |
df = pd.read_csv(file_path)
|
3 |
df
|
4 |
from sklearn.model_selection import train_test_split
|
|
|
1 |
import pandas as pd
|
2 |
+
file_path = '/content/drive/My Drive/CIS 519 Final Project/Dataset/cleaned_headlines.csv'
|
3 |
df = pd.read_csv(file_path)
|
4 |
df
|
5 |
from sklearn.model_selection import train_test_split
|