Created
September 18, 2022 17:53
-
-
Save Steboss89/7e3558d73eff3014212e82a809dd028b to your computer and use it in GitHub Desktop.
Run multiple models
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
echo "Submit NB with CountVectorizer" | |
venv/bin/python multiple_models.py --run_name "naivebayes" --exp_name "sentiment_comparison" --model "naivebayes" --vectorizer "countvectorizer" | |
echo "Submit NB with TFIDF" | |
venv/bin/python multiple_models.py --run_name "naivebayes_tfidf" --exp_name "sentiment_comparison" --model "naivebayes" --vectorizer "tfidf" | |
echo "Submit LogReg with CountVectorizer" | |
venv/bin/python multiple_models.py --run_name "logreg" --exp_name "sentiment_comparison" --model "logreg" --vectorizer "countvectorizer" | |
echo "Submit LogReg with TFIDF" | |
venv/bin/python multiple_models.py --run_name "logreg_tfidf" --exp_name "sentiment_comparison" --model "logreg" --vectorizer "tfidf" | |
echo "Submit RF with CountVectorizer" | |
venv/bin/python multiple_models.py --run_name "randomforest" --exp_name "sentiment_comparison" --model "randomforest" --vectorizer "countvectorizer" | |
echo "Submit RF with TFIDF" | |
venv/bin/python multiple_models.py --run_name "randomforest_tfidf" --exp_name "sentiment_comparison" --model "randomforest" --vectorizer "tfidf" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment