-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenvironment.yml
63 lines (62 loc) · 1.2 KB
/
environment.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# Conda Environment Setup Instructions
# - Using an environment.yml file with conda
# - Key Terminal Commands:
#
# conda env create -f environment.yml -y
# conda env update --file environment.yml --prune
# conda env export --name helloDogBreed > environment.yml
# conda env remove --name helloDogBreed
# conda env list
name: helloDogBreed
channels:
- conda-forge
- defaults
- anaconda
dependencies:
- black
# - fiftyone
- flask
- grpcio
- gunicorn
- isort
- jupyterlab
# - labelImg
- matplotlib
- mlflow
- numpy<2.0
- pandas
- pillow
- pip
- pipenv
- plotly
- pycocotools
- pylint
- python=3.11
- requests
- ruff
- scikit-learn=1.5.2
- seaborn
- setuptools
- streamlit
# - supervision needs manual install with --no-deps flag
- tqdm
# - ultralytics
- xgboost
# - lxml
- pip:
- albumentations
- roboflow
# - fiftyone
- keras-cv
- keras-hub
- keras-image-helper
# - label-studio
- opencv-python-headless
- pylabel
- scipy
- tensorflow==2.17.1
- tensorflow-metal==1.1.0
- tensorflow-serving-api==2.7.0
- torch
- torchaudio
- torchvision