Update requirements.txt
Browse files- requirements.txt +15 -16
requirements.txt
CHANGED
|
@@ -49,27 +49,26 @@ google-generativeai
|
|
| 49 |
|
| 50 |
|
| 51 |
# Metrics
|
| 52 |
-
torchmetrics
|
| 53 |
-
pycocotools
|
| 54 |
-
torch-fidelity
|
| 55 |
|
| 56 |
# Experiment Tracking
|
| 57 |
-
moviepy
|
| 58 |
-
imageio
|
| 59 |
-
tabulate
|
| 60 |
-
deepdiff
|
| 61 |
|
| 62 |
# Testing
|
| 63 |
-
parameterized
|
| 64 |
|
| 65 |
# Notebook
|
| 66 |
-
mediapy
|
| 67 |
|
| 68 |
# DevOPs
|
| 69 |
-
black
|
| 70 |
-
flake8
|
| 71 |
-
isort
|
| 72 |
-
pre-commit
|
| 73 |
-
expecttest
|
| 74 |
-
hypothesis
|
| 75 |
-
av==12.0.0
|
|
|
|
| 49 |
|
| 50 |
|
| 51 |
# Metrics
|
| 52 |
+
torchmetrics # Core module for metric
|
| 53 |
+
pycocotools # COCO-related
|
| 54 |
+
torch-fidelity # FID-related
|
| 55 |
|
| 56 |
# Experiment Tracking
|
| 57 |
+
moviepy # WandB Logging Image & Video
|
| 58 |
+
imageio # WandB Logging Image & Video
|
| 59 |
+
tabulate # Logging Table
|
| 60 |
+
deepdiff # Find difference of config
|
| 61 |
|
| 62 |
# Testing
|
| 63 |
+
parameterized # Define multiple tests through decorators.
|
| 64 |
|
| 65 |
# Notebook
|
| 66 |
+
mediapy # Notebook Visualization
|
| 67 |
|
| 68 |
# DevOPs
|
| 69 |
+
black # Code formatting
|
| 70 |
+
flake8 # Code style
|
| 71 |
+
isort # Import sorting
|
| 72 |
+
pre-commit # Pre-commit hooks
|
| 73 |
+
expecttest # Pytorch dist tests
|
| 74 |
+
hypothesis # Fix randomness
|
|
|