Files
Machine-Learning-Collection/requirements.txt

43 lines
487 B
Plaintext
Raw Normal View History

2023-12-08 15:59:55 +01:00
# requirements.txt file with basic libraries to install for a machine learning workflow
# HELLO
2023-12-08 14:12:21 +01:00
numpy
pandas
scikit-learn
matplotlib
seaborn
scipy
2023-12-08 15:59:55 +01:00
# deep learning
2023-12-08 14:12:21 +01:00
torchvision
torchaudio
transformers
2023-12-08 15:59:55 +01:00
lightning
torchmetrics
2023-12-08 14:12:21 +01:00
2023-12-08 15:59:55 +01:00
# all you need is xgboost
2023-12-08 14:12:21 +01:00
xgboost
lightgbm
2023-12-08 15:59:55 +01:00
# nlp libraries
2023-12-08 14:12:21 +01:00
nltk
spacy
2023-12-08 15:59:55 +01:00
# image processing
2023-12-08 14:12:21 +01:00
opencv-python-headless
Pillow
2023-12-08 15:59:55 +01:00
# data loading
pyarrow
# model optimization/experiment tracking
tensorboard
wandb
mlflow
# utilities
tqdm
# notebooks
2023-12-08 14:12:21 +01:00
jupyter
2023-12-08 15:59:55 +01:00
ipywidgets