anonymous commited on
Commit ·
1c94d90
1
Parent(s): 4d5f707
added env yml file, updated readme
Browse files- README.md +16 -4
- catalyst_env.yml +332 -0
README.md
CHANGED
|
@@ -21,13 +21,25 @@ All model implementations, training code, evaluation code, and checkpoints are l
|
|
| 21 |
- `runs/` — stores trained model checkpoints and experiment outputs.
|
| 22 |
- `scripts/` — contains training, evaluation, and benchmarking shell scripts.
|
| 23 |
|
| 24 |
-
|
| 25 |
|
| 26 |
```bash
|
| 27 |
-
./models/
|
| 28 |
```
|
|
|
|
| 29 |
|
|
|
|
| 30 |
|
| 31 |
-
|
| 32 |
|
| 33 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 21 |
- `runs/` — stores trained model checkpoints and experiment outputs.
|
| 22 |
- `scripts/` — contains training, evaluation, and benchmarking shell scripts.
|
| 23 |
|
| 24 |
+
All scripts are intended to be launched from the repository root directory. For example, run a model evaluation using:
|
| 25 |
|
| 26 |
```bash
|
| 27 |
+
./models/<model_name>/scripts/eval_<model_name>.sh
|
| 28 |
```
|
| 29 |
+
Additional seetings, like other models, can be changed inside these shell scripts
|
| 30 |
|
| 31 |
+
## Installation
|
| 32 |
|
| 33 |
+
We provide a conda/mamba environment file that should work for all four models.
|
| 34 |
|
| 35 |
+
Create the environment with:
|
| 36 |
+
|
| 37 |
+
```bash
|
| 38 |
+
mamba env create -f catalyst_env.yml
|
| 39 |
+
```
|
| 40 |
+
|
| 41 |
+
Activate the environment using:
|
| 42 |
+
```bash
|
| 43 |
+
mamba activate catalyst
|
| 44 |
+
```
|
| 45 |
+
If some packages fail to install due to dependency conflicts, install the missing packages manually using `pip` or `mamba`.
|
catalyst_env.yml
ADDED
|
@@ -0,0 +1,332 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
name: catalyst
|
| 2 |
+
channels:
|
| 3 |
+
- conda-forge
|
| 4 |
+
- nvidia
|
| 5 |
+
- pyg
|
| 6 |
+
- pytorch
|
| 7 |
+
dependencies:
|
| 8 |
+
- _openmp_mutex=4.5
|
| 9 |
+
- absl-py=2.3.1
|
| 10 |
+
- aiohappyeyeballs=2.6.1
|
| 11 |
+
- aiohttp=3.12.15
|
| 12 |
+
- aiosignal=1.4.0
|
| 13 |
+
- alsa-lib=1.2.14
|
| 14 |
+
- aom=3.9.1
|
| 15 |
+
- async-timeout=5.0.1
|
| 16 |
+
- attr=2.5.2
|
| 17 |
+
- attrs=25.3.0
|
| 18 |
+
- blas=2.116
|
| 19 |
+
- blas-devel=3.9.0
|
| 20 |
+
- brotli=1.1.0
|
| 21 |
+
- brotli-bin=1.1.0
|
| 22 |
+
- brotli-python=1.1.0
|
| 23 |
+
- bzip2=1.0.8
|
| 24 |
+
- c-ares=1.34.5
|
| 25 |
+
- ca-certificates=2025.8.3
|
| 26 |
+
- cached-property=1.5.2
|
| 27 |
+
- cached_property=1.5.2
|
| 28 |
+
- cairo=1.18.4
|
| 29 |
+
- certifi=2025.8.3
|
| 30 |
+
- cffi=2.0.0
|
| 31 |
+
- charset-normalizer=3.4.3
|
| 32 |
+
- colorama=0.4.6
|
| 33 |
+
- contourpy=1.3.2
|
| 34 |
+
- cpython=3.10.18
|
| 35 |
+
- cuda-cudart=12.1.105
|
| 36 |
+
- cuda-cupti=12.1.105
|
| 37 |
+
- cuda-libraries=12.1.0
|
| 38 |
+
- cuda-nvrtc=12.1.105
|
| 39 |
+
- cuda-nvtx=12.1.105
|
| 40 |
+
- cuda-opencl=12.9.19
|
| 41 |
+
- cuda-runtime=12.1.0
|
| 42 |
+
- cuda-version=12.9
|
| 43 |
+
- cycler=0.12.1
|
| 44 |
+
- cyrus-sasl=2.1.28
|
| 45 |
+
- dav1d=1.2.1
|
| 46 |
+
- dbus=1.16.2
|
| 47 |
+
- double-conversion=3.3.1
|
| 48 |
+
- ffmpeg=8.0.0
|
| 49 |
+
- filelock=3.19.1
|
| 50 |
+
- font-ttf-dejavu-sans-mono=2.37
|
| 51 |
+
- font-ttf-inconsolata=3.000
|
| 52 |
+
- font-ttf-source-code-pro=2.038
|
| 53 |
+
- font-ttf-ubuntu=0.83
|
| 54 |
+
- fontconfig=2.15.0
|
| 55 |
+
- fonts-conda-ecosystem=1
|
| 56 |
+
- fonts-conda-forge=1
|
| 57 |
+
- fonttools=4.60.0
|
| 58 |
+
- freetype=2.14.1
|
| 59 |
+
- fribidi=1.0.16
|
| 60 |
+
- frozenlist=1.7.0
|
| 61 |
+
- fsspec=2025.9.0
|
| 62 |
+
- gdk-pixbuf=2.44.2
|
| 63 |
+
- gettext=0.25.1
|
| 64 |
+
- gettext-tools=0.25.1
|
| 65 |
+
- glslang=16.0.0
|
| 66 |
+
- gmp=6.3.0
|
| 67 |
+
- gmpy2=2.2.1
|
| 68 |
+
- graphite2=1.3.14
|
| 69 |
+
- grpcio=1.74.1
|
| 70 |
+
- h2=4.3.0
|
| 71 |
+
- h5py=3.14.0
|
| 72 |
+
- harfbuzz=11.5.1
|
| 73 |
+
- hdf5=1.14.6
|
| 74 |
+
- hpack=4.1.0
|
| 75 |
+
- hyperframe=6.1.0
|
| 76 |
+
- icu=75.1
|
| 77 |
+
- idna=3.10
|
| 78 |
+
- importlib-metadata=8.7.0
|
| 79 |
+
- intel-gmmlib=22.8.2
|
| 80 |
+
- intel-media-driver=25.3.4
|
| 81 |
+
- jinja2=3.1.6
|
| 82 |
+
- joblib=1.5.2
|
| 83 |
+
- keyutils=1.6.3
|
| 84 |
+
- kiwisolver=1.4.9
|
| 85 |
+
- krb5=1.21.3
|
| 86 |
+
- lame=3.100
|
| 87 |
+
- lcms2=2.17
|
| 88 |
+
- ld_impl_linux-64=2.44
|
| 89 |
+
- lerc=4.0.0
|
| 90 |
+
- level-zero=1.24.3
|
| 91 |
+
- libabseil=20250512.1
|
| 92 |
+
- libaec=1.1.4
|
| 93 |
+
- libasprintf=0.25.1
|
| 94 |
+
- libasprintf-devel=0.25.1
|
| 95 |
+
- libass=0.17.4
|
| 96 |
+
- libblas=3.9.0
|
| 97 |
+
- libbrotlicommon=1.1.0
|
| 98 |
+
- libbrotlidec=1.1.0
|
| 99 |
+
- libbrotlienc=1.1.0
|
| 100 |
+
- libcap=2.76
|
| 101 |
+
- libcblas=3.9.0
|
| 102 |
+
- libclang-cpp21.1=21.1.2
|
| 103 |
+
- libclang13=21.1.2
|
| 104 |
+
- libcublas=12.1.0.26
|
| 105 |
+
- libcufft=11.0.2.4
|
| 106 |
+
- libcufile=1.14.1.1
|
| 107 |
+
- libcups=2.3.3
|
| 108 |
+
- libcurand=10.3.10.19
|
| 109 |
+
- libcurl=8.14.1
|
| 110 |
+
- libcusolver=11.4.4.55
|
| 111 |
+
- libcusparse=12.0.2.55
|
| 112 |
+
- libdeflate=1.24
|
| 113 |
+
- libdrm=2.4.125
|
| 114 |
+
- libedit=3.1.20250104
|
| 115 |
+
- libegl=1.7.0
|
| 116 |
+
- libev=4.33
|
| 117 |
+
- libexpat=2.7.1
|
| 118 |
+
- libffi=3.4.6
|
| 119 |
+
- libflac=1.4.3
|
| 120 |
+
- libfreetype=2.14.1
|
| 121 |
+
- libfreetype6=2.14.1
|
| 122 |
+
- libgcc=15.1.0
|
| 123 |
+
- libgcc-ng=15.1.0
|
| 124 |
+
- libgcrypt-lib=1.11.1
|
| 125 |
+
- libgettextpo=0.25.1
|
| 126 |
+
- libgettextpo-devel=0.25.1
|
| 127 |
+
- libgfortran=15.1.0
|
| 128 |
+
- libgfortran-ng=15.1.0
|
| 129 |
+
- libgfortran5=15.1.0
|
| 130 |
+
- libgl=1.7.0
|
| 131 |
+
- libglib=2.86.0
|
| 132 |
+
- libglvnd=1.7.0
|
| 133 |
+
- libglx=1.7.0
|
| 134 |
+
- libgpg-error=1.55
|
| 135 |
+
- libgrpc=1.74.1
|
| 136 |
+
- libhwloc=2.12.1
|
| 137 |
+
- libiconv=1.18
|
| 138 |
+
- libjpeg-turbo=3.1.0
|
| 139 |
+
- liblapack=3.9.0
|
| 140 |
+
- liblapacke=3.9.0
|
| 141 |
+
- libllvm21=21.1.2
|
| 142 |
+
- liblzma=5.8.1
|
| 143 |
+
- libnghttp2=1.67.0
|
| 144 |
+
- libnpp=12.0.2.50
|
| 145 |
+
- libnsl=2.0.1
|
| 146 |
+
- libntlm=1.8
|
| 147 |
+
- libnvjitlink=12.1.105
|
| 148 |
+
- libnvjpeg=12.1.1.14
|
| 149 |
+
- libogg=1.3.5
|
| 150 |
+
- libopengl=1.7.0
|
| 151 |
+
- libopenvino=2025.2.0
|
| 152 |
+
- libopenvino-auto-batch-plugin=2025.2.0
|
| 153 |
+
- libopenvino-auto-plugin=2025.2.0
|
| 154 |
+
- libopenvino-hetero-plugin=2025.2.0
|
| 155 |
+
- libopenvino-intel-cpu-plugin=2025.2.0
|
| 156 |
+
- libopenvino-intel-gpu-plugin=2025.2.0
|
| 157 |
+
- libopenvino-intel-npu-plugin=2025.2.0
|
| 158 |
+
- libopenvino-ir-frontend=2025.2.0
|
| 159 |
+
- libopenvino-onnx-frontend=2025.2.0
|
| 160 |
+
- libopenvino-paddle-frontend=2025.2.0
|
| 161 |
+
- libopenvino-pytorch-frontend=2025.2.0
|
| 162 |
+
- libopenvino-tensorflow-frontend=2025.2.0
|
| 163 |
+
- libopenvino-tensorflow-lite-frontend=2025.2.0
|
| 164 |
+
- libopus=1.5.2
|
| 165 |
+
- libpciaccess=0.18
|
| 166 |
+
- libpng=1.6.50
|
| 167 |
+
- libpq=18.0
|
| 168 |
+
- libprotobuf=6.31.1
|
| 169 |
+
- libre2-11=2025.08.12
|
| 170 |
+
- librsvg=2.58.4
|
| 171 |
+
- libsndfile=1.2.2
|
| 172 |
+
- libsqlite=3.50.4
|
| 173 |
+
- libssh2=1.11.1
|
| 174 |
+
- libstdcxx=15.1.0
|
| 175 |
+
- libstdcxx-ng=15.1.0
|
| 176 |
+
- libsystemd0=257.9
|
| 177 |
+
- libtiff=4.7.1
|
| 178 |
+
- libudev1=257.9
|
| 179 |
+
- libunwind=1.8.3
|
| 180 |
+
- liburing=2.12
|
| 181 |
+
- libusb=1.0.29
|
| 182 |
+
- libuuid=2.41.2
|
| 183 |
+
- libva=2.22.0
|
| 184 |
+
- libvorbis=1.3.7
|
| 185 |
+
- libvpl=2.15.0
|
| 186 |
+
- libvpx=1.14.1
|
| 187 |
+
- libvulkan-loader=1.4.313.0
|
| 188 |
+
- libwebp-base=1.6.0
|
| 189 |
+
- libxcb=1.17.0
|
| 190 |
+
- libxcrypt=4.4.36
|
| 191 |
+
- libxkbcommon=1.11.0
|
| 192 |
+
- libxml2=2.15.0
|
| 193 |
+
- libxml2-16=2.15.0
|
| 194 |
+
- libxslt=1.1.43
|
| 195 |
+
- libzlib=1.3.1
|
| 196 |
+
- lightning-utilities=0.15.2
|
| 197 |
+
- llvm-openmp=15.0.7
|
| 198 |
+
- lz4-c=1.10.0
|
| 199 |
+
- markdown=3.9
|
| 200 |
+
- markupsafe=3.0.2
|
| 201 |
+
- matplotlib=3.10.6
|
| 202 |
+
- matplotlib-base=3.10.6
|
| 203 |
+
- mkl=2022.1.0
|
| 204 |
+
- mkl-devel=2022.1.0
|
| 205 |
+
- mkl-include=2022.1.0
|
| 206 |
+
- mpc=1.3.1
|
| 207 |
+
- mpfr=4.2.1
|
| 208 |
+
- mpg123=1.32.9
|
| 209 |
+
- mpmath=1.3.0
|
| 210 |
+
- multidict=6.6.3
|
| 211 |
+
- munkres=1.1.4
|
| 212 |
+
- ncurses=6.5
|
| 213 |
+
- networkx=3.4.2
|
| 214 |
+
- numpy=2.2.6
|
| 215 |
+
- ocl-icd=2.3.3
|
| 216 |
+
- opencl-headers=2025.06.13
|
| 217 |
+
- openh264=2.6.0
|
| 218 |
+
- openjpeg=2.5.4
|
| 219 |
+
- openldap=2.6.10
|
| 220 |
+
- openssl=3.5.3
|
| 221 |
+
- packaging=25.0
|
| 222 |
+
- pandas=2.3.2
|
| 223 |
+
- pango=1.56.4
|
| 224 |
+
- pcre2=10.46
|
| 225 |
+
- pillow=11.3.0
|
| 226 |
+
- pip=25.2
|
| 227 |
+
- pixman=0.46.4
|
| 228 |
+
- propcache=0.3.1
|
| 229 |
+
- protobuf=6.31.1
|
| 230 |
+
- psutil=7.1.0
|
| 231 |
+
- pthread-stubs=0.4
|
| 232 |
+
- pugixml=1.15
|
| 233 |
+
- pulseaudio-client=17.0
|
| 234 |
+
- pycparser=2.22
|
| 235 |
+
- pyg=2.6.1
|
| 236 |
+
- pyparsing=3.2.5
|
| 237 |
+
- pyside6=6.9.2
|
| 238 |
+
- pysocks=1.7.1
|
| 239 |
+
- python=3.10.18
|
| 240 |
+
- python-dateutil=2.9.0.post0
|
| 241 |
+
- python-tzdata=2025.2
|
| 242 |
+
- python_abi=3.10
|
| 243 |
+
- pytorch=2.4.0
|
| 244 |
+
- pytorch-cluster=1.6.3
|
| 245 |
+
- pytorch-cuda=12.1
|
| 246 |
+
- pytorch-lightning=2.5.0.post0
|
| 247 |
+
- pytorch-mutex=1.0
|
| 248 |
+
- pytorch-scatter=2.1.2
|
| 249 |
+
- pytorch-sparse=0.6.18
|
| 250 |
+
- pytorch-spline-conv=1.2.2
|
| 251 |
+
- pytz=2025.2
|
| 252 |
+
- pyyaml=6.0.3
|
| 253 |
+
- qhull=2020.2
|
| 254 |
+
- qt6-main=6.9.2
|
| 255 |
+
- re2=2025.08.12
|
| 256 |
+
- readline=8.2
|
| 257 |
+
- requests=2.32.5
|
| 258 |
+
- scikit-learn=1.7.2
|
| 259 |
+
- scipy=1.15.2
|
| 260 |
+
- sdl2=2.32.56
|
| 261 |
+
- sdl3=3.2.22
|
| 262 |
+
- setuptools=80.9.0
|
| 263 |
+
- shaderc=2025.4
|
| 264 |
+
- six=1.17.0
|
| 265 |
+
- snappy=1.2.2
|
| 266 |
+
- spirv-tools=2025.1
|
| 267 |
+
- svt-av1=3.1.2
|
| 268 |
+
- sympy=1.14.0
|
| 269 |
+
- tbb=2021.13.0
|
| 270 |
+
- tensorboard=2.20.0
|
| 271 |
+
- tensorboard-data-server=0.7.0
|
| 272 |
+
- threadpoolctl=3.6.0
|
| 273 |
+
- tk=8.6.13
|
| 274 |
+
- torchaudio=2.4.0
|
| 275 |
+
- torchmetrics=1.8.2
|
| 276 |
+
- torchtriton=3.0.0
|
| 277 |
+
- torchvision=0.19.0
|
| 278 |
+
- tornado=6.5.2
|
| 279 |
+
- tqdm=4.67.1
|
| 280 |
+
- typing-extensions=4.15.0
|
| 281 |
+
- typing_extensions=4.15.0
|
| 282 |
+
- tzdata=2025b
|
| 283 |
+
- unicodedata2=16.0.0
|
| 284 |
+
- urllib3=2.5.0
|
| 285 |
+
- wayland=1.24.0
|
| 286 |
+
- wayland-protocols=1.45
|
| 287 |
+
- werkzeug=3.1.3
|
| 288 |
+
- wheel=0.45.1
|
| 289 |
+
- x264=1!164.3095
|
| 290 |
+
- x265=3.5
|
| 291 |
+
- xcb-util=0.4.1
|
| 292 |
+
- xcb-util-cursor=0.1.5
|
| 293 |
+
- xcb-util-image=0.4.0
|
| 294 |
+
- xcb-util-keysyms=0.4.1
|
| 295 |
+
- xcb-util-renderutil=0.3.10
|
| 296 |
+
- xcb-util-wm=0.4.2
|
| 297 |
+
- xkeyboard-config=2.45
|
| 298 |
+
- xorg-libice=1.1.2
|
| 299 |
+
- xorg-libsm=1.2.6
|
| 300 |
+
- xorg-libx11=1.8.12
|
| 301 |
+
- xorg-libxau=1.0.12
|
| 302 |
+
- xorg-libxcomposite=0.4.6
|
| 303 |
+
- xorg-libxcursor=1.2.3
|
| 304 |
+
- xorg-libxdamage=1.1.6
|
| 305 |
+
- xorg-libxdmcp=1.1.5
|
| 306 |
+
- xorg-libxext=1.3.6
|
| 307 |
+
- xorg-libxfixes=6.0.1
|
| 308 |
+
- xorg-libxi=1.8.2
|
| 309 |
+
- xorg-libxrandr=1.5.4
|
| 310 |
+
- xorg-libxrender=0.9.12
|
| 311 |
+
- xorg-libxscrnsaver=1.2.4
|
| 312 |
+
- xorg-libxtst=1.2.5
|
| 313 |
+
- xorg-libxxf86vm=1.1.6
|
| 314 |
+
- yaml=0.2.5
|
| 315 |
+
- yarl=1.20.1
|
| 316 |
+
- zipp=3.23.0
|
| 317 |
+
- zstandard=0.25.0
|
| 318 |
+
- zstd=1.5.7
|
| 319 |
+
- pip:
|
| 320 |
+
- e3nn==0.4.4
|
| 321 |
+
- lmbd==0.1.1
|
| 322 |
+
- lmdb==2.2.0
|
| 323 |
+
- matscipy==1.2.0
|
| 324 |
+
- metatomic==0.1.0
|
| 325 |
+
- orjson==3.11.9
|
| 326 |
+
- prettytable==3.17.0
|
| 327 |
+
- pymatgen==2025.10.7
|
| 328 |
+
- torch-ema==0.3
|
| 329 |
+
- upet==0.1.2
|
| 330 |
+
- wandb==0.27.0
|
| 331 |
+
|
| 332 |
+
prefix: "/home/anmka58/miniconda3/envs/catalyst"
|