Skip to content

Commit

Permalink
More
Browse files Browse the repository at this point in the history
  • Loading branch information
jcollopy-tulane committed Apr 27, 2024
1 parent 9d508d6 commit 6ff1ee1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nlp/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def process_text(document):
return processed_text

@main.command('train_bn')
def train_nb():
def train_nb(train_df, val_df):
"""
Naive Bayes Model (Do Third)
"""
Expand All @@ -102,7 +102,7 @@ def train_nb():
print("F1 Score:", round(f1,3))

@main.command('train_lr')
def train_lr():
def train_lr(train_df, val_df):
"""
Logistic Regression Model (Do Fourth)
"""
Expand Down

0 comments on commit 6ff1ee1

Please sign in to comment.