forked from NAVER-INTEL-Co-Lab/gaudi-cresset
-
Notifications
You must be signed in to change notification settings - Fork 0
/
environment.yaml
22 lines (22 loc) · 928 Bytes
/
environment.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Installing `conda` packages in a separate `/opt/conda` directory to not clash
# with pre-installed Python packages, which are installed via the system Python.
# If additional `pip` packages are needed, install them in `/opt/conda` as well.
# The same version of Python is used in the `conda` installation as in the
# system Python found in the image, so there should be no compatibility issues.
name: extras
channels:
- nodefaults # Do not use the default channel.
- conda-forge # Always use conda-forge instead.
dependencies: # Use conda packages if possible.
- beartype
- fire
- hydra-core
- loguru
# Habana DeepSpeed is installed in the Docker image.
- pip # For `pip` dependencies that are not available in conda.
- pip:
- datasets
- transformers
- pyre-check
# Modify the version tag, e.g. `main`, as necessary.
- git+https://github.com/huggingface/optimum-habana@v1.13.2