Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
jcollopy-tulane committed Apr 29, 2024
1 parent 68c028d commit e326aa9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions nlp/functions/functions_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ def process_text(document):


tokenizer = Tokenizer()
train_df = pd.read_csv("../data/train.csv")
val_df = pd.read_csv("../data/validation.csv")
test_df = pd.read_csv("../data/test.csv")
train_df = pd.read_csv("../../data/train.csv")
val_df = pd.read_csv("../../data/validation.csv")
test_df = pd.read_csv("../../data/test.csv")

def basic_process(document):
# Tokenize the document
Expand Down

0 comments on commit e326aa9

Please sign in to comment.