Spaces:
Sleeping
Sleeping
Commit ·
d00dc6d
1
Parent(s): 1527511
fuck this
Browse files- convert.py +14 -0
- environment.yml +267 -0
- requirements.txt +260 -263
convert.py
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import yaml
|
| 2 |
+
|
| 3 |
+
def conda_to_pip(input_file, output_file):
|
| 4 |
+
with open(input_file, 'r') as file:
|
| 5 |
+
env = yaml.safe_load(file)
|
| 6 |
+
|
| 7 |
+
with open(output_file, 'w') as file:
|
| 8 |
+
for dep in env['dependencies']:
|
| 9 |
+
if isinstance(dep, str):
|
| 10 |
+
package_info = dep.split('=')
|
| 11 |
+
if len(package_info) >= 2:
|
| 12 |
+
file.write(f"{package_info[0]}=={package_info[1]}\n")
|
| 13 |
+
|
| 14 |
+
conda_to_pip('environment.yml', 'requirements.txt')
|
environment.yml
ADDED
|
@@ -0,0 +1,267 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
name: base
|
| 2 |
+
channels:
|
| 3 |
+
- fastai
|
| 4 |
+
- fastchan
|
| 5 |
+
- conda-forge
|
| 6 |
+
dependencies:
|
| 7 |
+
- aiofiles=23.2.1=pyhd8ed1ab_0
|
| 8 |
+
- altair=5.1.2=pyhd8ed1ab_0
|
| 9 |
+
- annotated-types=0.6.0=pyhd8ed1ab_0
|
| 10 |
+
- anyio=3.7.1=pyhd8ed1ab_0
|
| 11 |
+
- aom=3.7.0=h463b476_0
|
| 12 |
+
- appnope=0.1.3=pyhd8ed1ab_0
|
| 13 |
+
- asttokens=2.4.0=pyhd8ed1ab_0
|
| 14 |
+
- astunparse=1.6.3=pyhd8ed1ab_0
|
| 15 |
+
- attrs=23.1.0=pyh71513ae_1
|
| 16 |
+
- backcall=0.2.0=pyh9f0ad1d_0
|
| 17 |
+
- backports=1.0=py_2
|
| 18 |
+
- backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0
|
| 19 |
+
- boltons=23.0.0=pyhd8ed1ab_0
|
| 20 |
+
- brotli=1.1.0=hb547adb_0
|
| 21 |
+
- brotli-bin=1.1.0=hb547adb_0
|
| 22 |
+
- brotli-python=1.1.0=py310h1253130_0
|
| 23 |
+
- bzip2=1.0.8=h3422bc3_4
|
| 24 |
+
- c-ares=1.19.1=hb547adb_0
|
| 25 |
+
- ca-certificates=2023.7.22=hf0a4a13_0
|
| 26 |
+
- cairo=1.18.0=hd1e100b_0
|
| 27 |
+
- catalogue=2.0.10=py310hbe9552e_0
|
| 28 |
+
- certifi=2023.7.22=pyhd8ed1ab_0
|
| 29 |
+
- cffi=1.15.1=py310h2399d43_3
|
| 30 |
+
- charset-normalizer=3.2.0=pyhd8ed1ab_0
|
| 31 |
+
- click=8.1.7=unix_pyh707e725_0
|
| 32 |
+
- cloudpathlib=0.16.0=pyhd8ed1ab_0
|
| 33 |
+
- colorama=0.4.6=pyhd8ed1ab_0
|
| 34 |
+
- conda=23.3.1=py310hbe9552e_0
|
| 35 |
+
- conda-libmamba-solver=23.3.0=pyhd8ed1ab_0
|
| 36 |
+
- conda-package-handling=2.2.0=pyh38be061_0
|
| 37 |
+
- conda-package-streaming=0.9.0=pyhd8ed1ab_0
|
| 38 |
+
- confection=0.1.3=py310ha73103e_1
|
| 39 |
+
- contourpy=1.2.0=py310hd137fd4_0
|
| 40 |
+
- cryptography=41.0.3=py310hdd3b5e7_0
|
| 41 |
+
- cycler=0.12.1=pyhd8ed1ab_0
|
| 42 |
+
- cymem=2.0.8=py310h1253130_1
|
| 43 |
+
- cython-blis=0.7.10=py310h280b8fa_2
|
| 44 |
+
- dataclasses=0.8=pyhc8e2a94_3
|
| 45 |
+
- dav1d=1.2.1=hb547adb_0
|
| 46 |
+
- decorator=5.1.1=pyhd8ed1ab_0
|
| 47 |
+
- exceptiongroup=1.1.3=pyhd8ed1ab_0
|
| 48 |
+
- execnb=0.1.5=py_0
|
| 49 |
+
- executing=1.2.0=pyhd8ed1ab_0
|
| 50 |
+
- expat=2.5.0=hb7217d7_1
|
| 51 |
+
- fastai=2.7.13=py_0
|
| 52 |
+
- fastapi=0.104.1=pyhd8ed1ab_0
|
| 53 |
+
- fastcore=1.5.29=py_0
|
| 54 |
+
- fastdownload=0.0.7=py_0
|
| 55 |
+
- fastprogress=1.0.3=py_0
|
| 56 |
+
- ffmpeg=6.1.0=gpl_hb975139_101
|
| 57 |
+
- ffmpy=0.3.0=pyhb6f538c_0
|
| 58 |
+
- filelock=3.13.1=pyhd8ed1ab_0
|
| 59 |
+
- fmt=9.1.0=hffc8910_0
|
| 60 |
+
- font-ttf-dejavu-sans-mono=2.37=hab24e00_0
|
| 61 |
+
- font-ttf-inconsolata=3.000=h77eed37_0
|
| 62 |
+
- font-ttf-source-code-pro=2.038=h77eed37_0
|
| 63 |
+
- font-ttf-ubuntu=0.83=hab24e00_0
|
| 64 |
+
- fontconfig=2.14.2=h82840c6_0
|
| 65 |
+
- fonts-conda-ecosystem=1=0
|
| 66 |
+
- fonts-conda-forge=1=0
|
| 67 |
+
- fonttools=4.44.1=py310hd125d64_0
|
| 68 |
+
- freetype=2.12.1=hadb7bae_2
|
| 69 |
+
- fribidi=1.0.10=h27ca646_0
|
| 70 |
+
- fsspec=2023.10.0=pyhca7485f_0
|
| 71 |
+
- gettext=0.21.1=h0186832_0
|
| 72 |
+
- ghapi=1.0.3=py_0
|
| 73 |
+
- gmp=6.3.0=h965bd2d_0
|
| 74 |
+
- gmpy2=2.1.2=py310h2e6cad2_1
|
| 75 |
+
- gnutls=3.7.8=h9f1a10d_0
|
| 76 |
+
- gradio=4.3.0=pyhd8ed1ab_1
|
| 77 |
+
- gradio-client=0.7.0=pyhd8ed1ab_0
|
| 78 |
+
- graphite2=1.3.13=h9f76cd9_1001
|
| 79 |
+
- h11=0.14.0=pyhd8ed1ab_0
|
| 80 |
+
- h2=4.1.0=pyhd8ed1ab_0
|
| 81 |
+
- harfbuzz=8.3.0=h8f0ba13_0
|
| 82 |
+
- hpack=4.0.0=pyh9f0ad1d_0
|
| 83 |
+
- httpcore=1.0.2=pyhd8ed1ab_0
|
| 84 |
+
- httpx=0.25.1=pyhd8ed1ab_0
|
| 85 |
+
- huggingface_hub=0.16.4=pyhd8ed1ab_0
|
| 86 |
+
- hyperframe=6.0.1=pyhd8ed1ab_0
|
| 87 |
+
- icu=73.2=hc8870d7_0
|
| 88 |
+
- idna=3.4=pyhd8ed1ab_0
|
| 89 |
+
- importlib-metadata=6.8.0=pyha770c72_0
|
| 90 |
+
- importlib_resources=6.1.1=pyhd8ed1ab_0
|
| 91 |
+
- ipython=8.15.0=pyh31c8845_0
|
| 92 |
+
- jedi=0.19.0=pyhd8ed1ab_0
|
| 93 |
+
- jinja2=3.1.2=pyhd8ed1ab_1
|
| 94 |
+
- joblib=1.3.2=pyhd8ed1ab_0
|
| 95 |
+
- jsonpatch=1.32=pyhd8ed1ab_0
|
| 96 |
+
- jsonpointer=2.0=py_0
|
| 97 |
+
- jsonschema=4.19.2=pyhd8ed1ab_0
|
| 98 |
+
- jsonschema-specifications=2023.11.1=pyhd8ed1ab_0
|
| 99 |
+
- kiwisolver=1.4.5=py310h38f39d4_1
|
| 100 |
+
- krb5=1.21.2=h92f50d5_0
|
| 101 |
+
- lame=3.100=h1a8c8d9_1003
|
| 102 |
+
- langcodes=3.3.0=pyhd8ed1ab_0
|
| 103 |
+
- lcms2=2.15=h40e5a24_2
|
| 104 |
+
- lerc=4.0.0=h9a09cb3_0
|
| 105 |
+
- libabseil=20230802.1=cxx17_h13dd4ca_0
|
| 106 |
+
- libarchive=3.6.2=h82b9b87_1
|
| 107 |
+
- libass=0.17.1=hf7da4fe_1
|
| 108 |
+
- libblas=3.9.0=19_osxarm64_openblas
|
| 109 |
+
- libbrotlicommon=1.1.0=hb547adb_0
|
| 110 |
+
- libbrotlidec=1.1.0=hb547adb_0
|
| 111 |
+
- libbrotlienc=1.1.0=hb547adb_0
|
| 112 |
+
- libcblas=3.9.0=19_osxarm64_openblas
|
| 113 |
+
- libcurl=8.2.1=hc52a3a8_0
|
| 114 |
+
- libcxx=16.0.6=h4653b0c_0
|
| 115 |
+
- libdeflate=1.19=hb547adb_0
|
| 116 |
+
- libedit=3.1.20191231=hc8eb9b7_2
|
| 117 |
+
- libev=4.33=h642e427_1
|
| 118 |
+
- libexpat=2.5.0=hb7217d7_1
|
| 119 |
+
- libffi=3.4.2=h3422bc3_5
|
| 120 |
+
- libgfortran=5.0.0=13_2_0_hd922786_1
|
| 121 |
+
- libgfortran5=13.2.0=hf226fd6_1
|
| 122 |
+
- libglib=2.78.1=hb438215_1
|
| 123 |
+
- libiconv=1.17=he4db4b2_0
|
| 124 |
+
- libidn2=2.3.4=h1a8c8d9_0
|
| 125 |
+
- libjpeg-turbo=2.1.5.1=hb547adb_1
|
| 126 |
+
- liblapack=3.9.0=19_osxarm64_openblas
|
| 127 |
+
- libmamba=1.4.2=h7d1d596_0
|
| 128 |
+
- libmambapy=1.4.2=py310h34b6e76_0
|
| 129 |
+
- libnghttp2=1.52.0=hae82a92_0
|
| 130 |
+
- libopenblas=0.3.24=openmp_hd76b1f2_0
|
| 131 |
+
- libopus=1.3.1=h27ca646_1
|
| 132 |
+
- libpng=1.6.39=h76d750c_0
|
| 133 |
+
- libprotobuf=4.24.4=hc9861d8_0
|
| 134 |
+
- libsolv=0.7.24=ha614eb4_3
|
| 135 |
+
- libsqlite=3.43.0=hb31c410_0
|
| 136 |
+
- libssh2=1.11.0=h7a5bd25_0
|
| 137 |
+
- libtasn1=4.19.0=h1a8c8d9_0
|
| 138 |
+
- libtiff=4.6.0=h77c4dce_1
|
| 139 |
+
- libunistring=0.9.10=h3422bc3_0
|
| 140 |
+
- libuv=1.46.0=hb547adb_0
|
| 141 |
+
- libvpx=1.13.1=hb765f3a_0
|
| 142 |
+
- libwebp-base=1.3.2=hb547adb_0
|
| 143 |
+
- libxcb=1.15=hf346824_0
|
| 144 |
+
- libxml2=2.11.5=h25269f3_1
|
| 145 |
+
- libzlib=1.2.13=h53f4e23_5
|
| 146 |
+
- llvm-openmp=17.0.5=hcd81f8e_0
|
| 147 |
+
- lz4-c=1.9.4=hb7217d7_0
|
| 148 |
+
- lzo=2.10=h642e427_1000
|
| 149 |
+
- mamba=1.4.2=py310ha5d4528_0
|
| 150 |
+
- markdown-it-py=3.0.0=pyhd8ed1ab_0
|
| 151 |
+
- markupsafe=2.1.3=py310h2aa6e3c_1
|
| 152 |
+
- matplotlib=3.8.1=py310hb6292c7_0
|
| 153 |
+
- matplotlib-base=3.8.1=py310h9d2df84_0
|
| 154 |
+
- matplotlib-inline=0.1.6=pyhd8ed1ab_0
|
| 155 |
+
- mdurl=0.1.0=pyhd8ed1ab_0
|
| 156 |
+
- mpc=1.3.1=h91ba8db_0
|
| 157 |
+
- mpfr=4.2.1=h9546428_0
|
| 158 |
+
- mpmath=1.3.0=pyhd8ed1ab_0
|
| 159 |
+
- munkres=1.1.4=pyh9f0ad1d_0
|
| 160 |
+
- murmurhash=1.0.10=py310h1253130_1
|
| 161 |
+
- nbdev=2.3.12=py_0
|
| 162 |
+
- ncurses=6.4=h7ea286d_0
|
| 163 |
+
- nettle=3.8.1=h63371fa_1
|
| 164 |
+
- networkx=3.2.1=pyhd8ed1ab_0
|
| 165 |
+
- nomkl=1.0=h5ca1d4c_0
|
| 166 |
+
- numpy=1.26.0=py310he2cad68_0
|
| 167 |
+
- openh264=2.3.1=hb7217d7_2
|
| 168 |
+
- openjpeg=2.5.0=h4c1507b_3
|
| 169 |
+
- openssl=3.1.4=h0d3ecfb_0
|
| 170 |
+
- orjson=3.9.10=py310h76820b8_0
|
| 171 |
+
- p11-kit=0.24.1=h29577a5_0
|
| 172 |
+
- packaging=23.1=pyhd8ed1ab_0
|
| 173 |
+
- pandas=2.1.3=py310h6e3cc31_0
|
| 174 |
+
- parso=0.8.3=pyhd8ed1ab_0
|
| 175 |
+
- pathy=0.10.2=pyhd8ed1ab_0
|
| 176 |
+
- pcre2=10.42=h26f9a81_0
|
| 177 |
+
- pexpect=4.8.0=pyh9f0ad1d_2
|
| 178 |
+
- pickleshare=0.7.5=py_1003
|
| 179 |
+
- pillow=10.0.1=py310hadb9e77_1
|
| 180 |
+
- pip=23.2.1=pyhd8ed1ab_0
|
| 181 |
+
- pixman=0.42.2=h13dd4ca_0
|
| 182 |
+
- pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1
|
| 183 |
+
- pluggy=1.3.0=pyhd8ed1ab_0
|
| 184 |
+
- preshed=3.0.9=py310h1253130_1
|
| 185 |
+
- prompt-toolkit=3.0.39=pyha770c72_0
|
| 186 |
+
- prompt_toolkit=3.0.39=hd8ed1ab_0
|
| 187 |
+
- pthread-stubs=0.4=h27ca646_1001
|
| 188 |
+
- ptyprocess=0.7.0=pyhd3deb0d_0
|
| 189 |
+
- pure_eval=0.2.2=pyhd8ed1ab_0
|
| 190 |
+
- pybind11-abi=4=hd8ed1ab_3
|
| 191 |
+
- pycosat=0.6.4=py310h8e9501a_1
|
| 192 |
+
- pycparser=2.21=pyhd8ed1ab_0
|
| 193 |
+
- pydantic=2.5.0=pyhd8ed1ab_0
|
| 194 |
+
- pydantic-core=2.14.1=py310hd442715_0
|
| 195 |
+
- pydub=0.25.1=pyhd8ed1ab_0
|
| 196 |
+
- pygments=2.16.1=pyhd8ed1ab_0
|
| 197 |
+
- pyopenssl=23.2.0=pyhd8ed1ab_1
|
| 198 |
+
- pyparsing=3.1.1=pyhd8ed1ab_0
|
| 199 |
+
- pysocks=1.7.1=pyha2e5f31_6
|
| 200 |
+
- python=3.10.12=h01493a6_0_cpython
|
| 201 |
+
- python-dateutil=2.8.2=pyhd8ed1ab_0
|
| 202 |
+
- python-multipart=0.0.6=pyhd8ed1ab_0
|
| 203 |
+
- python-tzdata=2023.3=pyhd8ed1ab_0
|
| 204 |
+
- python_abi=3.10=3_cp310
|
| 205 |
+
- pytorch=2.0.0=cpu_generic_py310h7a13b03_4
|
| 206 |
+
- pytz=2023.3.post1=pyhd8ed1ab_0
|
| 207 |
+
- pyyaml=6.0.1=py310h2aa6e3c_1
|
| 208 |
+
- readline=8.2=h92ec313_1
|
| 209 |
+
- referencing=0.31.0=pyhd8ed1ab_0
|
| 210 |
+
- reproc=14.2.4=h1a8c8d9_0
|
| 211 |
+
- reproc-cpp=14.2.4=hb7217d7_0
|
| 212 |
+
- requests=2.31.0=pyhd8ed1ab_0
|
| 213 |
+
- rich=13.6.0=pyhd8ed1ab_0
|
| 214 |
+
- rpds-py=0.12.0=py310hd442715_0
|
| 215 |
+
- ruamel.yaml=0.17.32=py310h2aa6e3c_0
|
| 216 |
+
- ruamel.yaml.clib=0.2.7=py310h8e9501a_1
|
| 217 |
+
- scikit-learn=1.3.2=py310h417b086_1
|
| 218 |
+
- scipy=1.11.3=py310hd1cfc7d_1
|
| 219 |
+
- semantic_version=2.10.0=pyhd8ed1ab_0
|
| 220 |
+
- setuptools=68.1.2=pyhd8ed1ab_0
|
| 221 |
+
- shellingham=1.5.4=pyhd8ed1ab_0
|
| 222 |
+
- six=1.16.0=pyh6c4a22f_0
|
| 223 |
+
- sleef=3.5.1=h156473d_2
|
| 224 |
+
- smart_open=5.2.1=pyhd8ed1ab_0
|
| 225 |
+
- sniffio=1.3.0=pyhd8ed1ab_0
|
| 226 |
+
- spacy=3.7.2=py310h2a8a171_0
|
| 227 |
+
- spacy-legacy=3.0.12=pyhd8ed1ab_0
|
| 228 |
+
- spacy-loggers=1.0.5=pyhd8ed1ab_0
|
| 229 |
+
- srsly=2.4.8=py310h1253130_1
|
| 230 |
+
- stack_data=0.6.2=pyhd8ed1ab_0
|
| 231 |
+
- starlette=0.27.0=pyhd8ed1ab_0
|
| 232 |
+
- svt-av1=1.7.0=hb765f3a_0
|
| 233 |
+
- sympy=1.12=pypyh9d50eac_103
|
| 234 |
+
- thinc=8.2.1=py310he53c7d2_0
|
| 235 |
+
- threadpoolctl=3.2.0=pyha21a80b_0
|
| 236 |
+
- tk=8.6.12=he1e0b03_0
|
| 237 |
+
- tomlkit=0.12.0=pyha770c72_0
|
| 238 |
+
- toolz=0.12.0=pyhd8ed1ab_0
|
| 239 |
+
- torchvision=0.15.2=cpu_py310he4f43cf_1
|
| 240 |
+
- tornado=6.3.3=py310h2aa6e3c_1
|
| 241 |
+
- tqdm=4.66.1=pyhd8ed1ab_0
|
| 242 |
+
- traitlets=5.10.1=pyhd8ed1ab_0
|
| 243 |
+
- typer=0.9.0=pyhd8ed1ab_0
|
| 244 |
+
- typing-extensions=4.8.0=hd8ed1ab_0
|
| 245 |
+
- typing_extensions=4.8.0=pyha770c72_0
|
| 246 |
+
- tzdata=2023c=h71feb2d_0
|
| 247 |
+
- unicodedata2=15.1.0=py310h2aa6e3c_0
|
| 248 |
+
- urllib3=2.0.4=pyhd8ed1ab_0
|
| 249 |
+
- uvicorn=0.24.0=py310hbe9552e_0
|
| 250 |
+
- wasabi=1.1.2=py310hbe9552e_0
|
| 251 |
+
- watchdog=3.0.0=py310h8e9501a_0
|
| 252 |
+
- wcwidth=0.2.6=pyhd8ed1ab_0
|
| 253 |
+
- weasel=0.3.4=pyhd8ed1ab_0
|
| 254 |
+
- websockets=11.0.3=py310h2aa6e3c_1
|
| 255 |
+
- wheel=0.41.2=pyhd8ed1ab_0
|
| 256 |
+
- x264=1!164.3095=h57fd34a_2
|
| 257 |
+
- x265=3.5=hbc6ce65_3
|
| 258 |
+
- xorg-libxau=1.0.11=hb547adb_0
|
| 259 |
+
- xorg-libxdmcp=1.1.3=h27ca646_0
|
| 260 |
+
- xz=5.2.6=h57fd34a_0
|
| 261 |
+
- yaml=0.2.5=h3422bc3_2
|
| 262 |
+
- yaml-cpp=0.7.0=hb7217d7_2
|
| 263 |
+
- zipp=3.17.0=pyhd8ed1ab_0
|
| 264 |
+
- zlib=1.2.13=h53f4e23_5
|
| 265 |
+
- zstandard=0.19.0=py310h8e9501a_0
|
| 266 |
+
- zstd=1.5.5=h4f39d0f_0
|
| 267 |
+
prefix: /Users/tylerobriant/mambaforge
|
requirements.txt
CHANGED
|
@@ -1,263 +1,260 @@
|
|
| 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 |
-
conda=
|
| 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 |
-
font-ttf-
|
| 58 |
-
|
| 59 |
-
|
| 60 |
-
|
| 61 |
-
|
| 62 |
-
|
| 63 |
-
|
| 64 |
-
|
| 65 |
-
|
| 66 |
-
|
| 67 |
-
|
| 68 |
-
|
| 69 |
-
|
| 70 |
-
|
| 71 |
-
|
| 72 |
-
|
| 73 |
-
|
| 74 |
-
|
| 75 |
-
|
| 76 |
-
|
| 77 |
-
|
| 78 |
-
|
| 79 |
-
|
| 80 |
-
|
| 81 |
-
|
| 82 |
-
|
| 83 |
-
|
| 84 |
-
|
| 85 |
-
|
| 86 |
-
|
| 87 |
-
|
| 88 |
-
|
| 89 |
-
|
| 90 |
-
|
| 91 |
-
|
| 92 |
-
|
| 93 |
-
|
| 94 |
-
|
| 95 |
-
|
| 96 |
-
|
| 97 |
-
|
| 98 |
-
|
| 99 |
-
|
| 100 |
-
|
| 101 |
-
|
| 102 |
-
|
| 103 |
-
|
| 104 |
-
|
| 105 |
-
|
| 106 |
-
|
| 107 |
-
|
| 108 |
-
|
| 109 |
-
|
| 110 |
-
|
| 111 |
-
|
| 112 |
-
|
| 113 |
-
|
| 114 |
-
|
| 115 |
-
|
| 116 |
-
|
| 117 |
-
|
| 118 |
-
|
| 119 |
-
|
| 120 |
-
|
| 121 |
-
|
| 122 |
-
|
| 123 |
-
|
| 124 |
-
|
| 125 |
-
|
| 126 |
-
|
| 127 |
-
|
| 128 |
-
|
| 129 |
-
|
| 130 |
-
|
| 131 |
-
|
| 132 |
-
|
| 133 |
-
|
| 134 |
-
|
| 135 |
-
|
| 136 |
-
|
| 137 |
-
|
| 138 |
-
|
| 139 |
-
|
| 140 |
-
|
| 141 |
-
|
| 142 |
-
|
| 143 |
-
|
| 144 |
-
|
| 145 |
-
|
| 146 |
-
|
| 147 |
-
|
| 148 |
-
|
| 149 |
-
|
| 150 |
-
|
| 151 |
-
|
| 152 |
-
|
| 153 |
-
|
| 154 |
-
|
| 155 |
-
|
| 156 |
-
|
| 157 |
-
|
| 158 |
-
|
| 159 |
-
|
| 160 |
-
|
| 161 |
-
|
| 162 |
-
|
| 163 |
-
|
| 164 |
-
|
| 165 |
-
|
| 166 |
-
|
| 167 |
-
|
| 168 |
-
|
| 169 |
-
|
| 170 |
-
|
| 171 |
-
|
| 172 |
-
|
| 173 |
-
|
| 174 |
-
|
| 175 |
-
|
| 176 |
-
|
| 177 |
-
|
| 178 |
-
|
| 179 |
-
|
| 180 |
-
|
| 181 |
-
|
| 182 |
-
|
| 183 |
-
|
| 184 |
-
|
| 185 |
-
|
| 186 |
-
|
| 187 |
-
|
| 188 |
-
|
| 189 |
-
|
| 190 |
-
|
| 191 |
-
|
| 192 |
-
|
| 193 |
-
|
| 194 |
-
|
| 195 |
-
|
| 196 |
-
|
| 197 |
-
python=
|
| 198 |
-
|
| 199 |
-
|
| 200 |
-
|
| 201 |
-
|
| 202 |
-
|
| 203 |
-
|
| 204 |
-
|
| 205 |
-
|
| 206 |
-
|
| 207 |
-
|
| 208 |
-
|
| 209 |
-
|
| 210 |
-
|
| 211 |
-
|
| 212 |
-
|
| 213 |
-
|
| 214 |
-
|
| 215 |
-
|
| 216 |
-
|
| 217 |
-
|
| 218 |
-
|
| 219 |
-
|
| 220 |
-
|
| 221 |
-
|
| 222 |
-
|
| 223 |
-
|
| 224 |
-
|
| 225 |
-
|
| 226 |
-
|
| 227 |
-
|
| 228 |
-
|
| 229 |
-
|
| 230 |
-
|
| 231 |
-
|
| 232 |
-
|
| 233 |
-
|
| 234 |
-
|
| 235 |
-
|
| 236 |
-
|
| 237 |
-
|
| 238 |
-
|
| 239 |
-
|
| 240 |
-
|
| 241 |
-
|
| 242 |
-
|
| 243 |
-
|
| 244 |
-
|
| 245 |
-
|
| 246 |
-
|
| 247 |
-
|
| 248 |
-
|
| 249 |
-
|
| 250 |
-
|
| 251 |
-
|
| 252 |
-
|
| 253 |
-
|
| 254 |
-
|
| 255 |
-
|
| 256 |
-
|
| 257 |
-
|
| 258 |
-
|
| 259 |
-
|
| 260 |
-
|
| 261 |
-
zlib=1.2.13=h53f4e23_5
|
| 262 |
-
zstandard=0.19.0=py310h8e9501a_0
|
| 263 |
-
zstd=1.5.5=h4f39d0f_0
|
|
|
|
| 1 |
+
aiofiles==23.2.1
|
| 2 |
+
altair==5.1.2
|
| 3 |
+
annotated-types==0.6.0
|
| 4 |
+
anyio==3.7.1
|
| 5 |
+
aom==3.7.0
|
| 6 |
+
appnope==0.1.3
|
| 7 |
+
asttokens==2.4.0
|
| 8 |
+
astunparse==1.6.3
|
| 9 |
+
attrs==23.1.0
|
| 10 |
+
backcall==0.2.0
|
| 11 |
+
backports==1.0
|
| 12 |
+
backports.functools_lru_cache==1.6.5
|
| 13 |
+
boltons==23.0.0
|
| 14 |
+
brotli==1.1.0
|
| 15 |
+
brotli-bin==1.1.0
|
| 16 |
+
brotli-python==1.1.0
|
| 17 |
+
bzip2==1.0.8
|
| 18 |
+
c-ares==1.19.1
|
| 19 |
+
ca-certificates==2023.7.22
|
| 20 |
+
cairo==1.18.0
|
| 21 |
+
catalogue==2.0.10
|
| 22 |
+
certifi==2023.7.22
|
| 23 |
+
cffi==1.15.1
|
| 24 |
+
charset-normalizer==3.2.0
|
| 25 |
+
click==8.1.7
|
| 26 |
+
cloudpathlib==0.16.0
|
| 27 |
+
colorama==0.4.6
|
| 28 |
+
conda==23.3.1
|
| 29 |
+
conda-libmamba-solver==23.3.0
|
| 30 |
+
conda-package-handling==2.2.0
|
| 31 |
+
conda-package-streaming==0.9.0
|
| 32 |
+
confection==0.1.3
|
| 33 |
+
contourpy==1.2.0
|
| 34 |
+
cryptography==41.0.3
|
| 35 |
+
cycler==0.12.1
|
| 36 |
+
cymem==2.0.8
|
| 37 |
+
cython-blis==0.7.10
|
| 38 |
+
dataclasses==0.8
|
| 39 |
+
dav1d==1.2.1
|
| 40 |
+
decorator==5.1.1
|
| 41 |
+
exceptiongroup==1.1.3
|
| 42 |
+
execnb==0.1.5
|
| 43 |
+
executing==1.2.0
|
| 44 |
+
expat==2.5.0
|
| 45 |
+
fastai==2.7.13
|
| 46 |
+
fastapi==0.104.1
|
| 47 |
+
fastcore==1.5.29
|
| 48 |
+
fastdownload==0.0.7
|
| 49 |
+
fastprogress==1.0.3
|
| 50 |
+
ffmpeg==6.1.0
|
| 51 |
+
ffmpy==0.3.0
|
| 52 |
+
filelock==3.13.1
|
| 53 |
+
fmt==9.1.0
|
| 54 |
+
font-ttf-dejavu-sans-mono==2.37
|
| 55 |
+
font-ttf-inconsolata==3.000
|
| 56 |
+
font-ttf-source-code-pro==2.038
|
| 57 |
+
font-ttf-ubuntu==0.83
|
| 58 |
+
fontconfig==2.14.2
|
| 59 |
+
fonts-conda-ecosystem==1
|
| 60 |
+
fonts-conda-forge==1
|
| 61 |
+
fonttools==4.44.1
|
| 62 |
+
freetype==2.12.1
|
| 63 |
+
fribidi==1.0.10
|
| 64 |
+
fsspec==2023.10.0
|
| 65 |
+
gettext==0.21.1
|
| 66 |
+
ghapi==1.0.3
|
| 67 |
+
gmp==6.3.0
|
| 68 |
+
gmpy2==2.1.2
|
| 69 |
+
gnutls==3.7.8
|
| 70 |
+
gradio==4.3.0
|
| 71 |
+
gradio-client==0.7.0
|
| 72 |
+
graphite2==1.3.13
|
| 73 |
+
h11==0.14.0
|
| 74 |
+
h2==4.1.0
|
| 75 |
+
harfbuzz==8.3.0
|
| 76 |
+
hpack==4.0.0
|
| 77 |
+
httpcore==1.0.2
|
| 78 |
+
httpx==0.25.1
|
| 79 |
+
huggingface_hub==0.16.4
|
| 80 |
+
hyperframe==6.0.1
|
| 81 |
+
icu==73.2
|
| 82 |
+
idna==3.4
|
| 83 |
+
importlib-metadata==6.8.0
|
| 84 |
+
importlib_resources==6.1.1
|
| 85 |
+
ipython==8.15.0
|
| 86 |
+
jedi==0.19.0
|
| 87 |
+
jinja2==3.1.2
|
| 88 |
+
joblib==1.3.2
|
| 89 |
+
jsonpatch==1.32
|
| 90 |
+
jsonpointer==2.0
|
| 91 |
+
jsonschema==4.19.2
|
| 92 |
+
jsonschema-specifications==2023.11.1
|
| 93 |
+
kiwisolver==1.4.5
|
| 94 |
+
krb5==1.21.2
|
| 95 |
+
lame==3.100
|
| 96 |
+
langcodes==3.3.0
|
| 97 |
+
lcms2==2.15
|
| 98 |
+
lerc==4.0.0
|
| 99 |
+
libabseil==20230802.1
|
| 100 |
+
libarchive==3.6.2
|
| 101 |
+
libass==0.17.1
|
| 102 |
+
libblas==3.9.0
|
| 103 |
+
libbrotlicommon==1.1.0
|
| 104 |
+
libbrotlidec==1.1.0
|
| 105 |
+
libbrotlienc==1.1.0
|
| 106 |
+
libcblas==3.9.0
|
| 107 |
+
libcurl==8.2.1
|
| 108 |
+
libcxx==16.0.6
|
| 109 |
+
libdeflate==1.19
|
| 110 |
+
libedit==3.1.20191231
|
| 111 |
+
libev==4.33
|
| 112 |
+
libexpat==2.5.0
|
| 113 |
+
libffi==3.4.2
|
| 114 |
+
libgfortran==5.0.0
|
| 115 |
+
libgfortran5==13.2.0
|
| 116 |
+
libglib==2.78.1
|
| 117 |
+
libiconv==1.17
|
| 118 |
+
libidn2==2.3.4
|
| 119 |
+
libjpeg-turbo==2.1.5.1
|
| 120 |
+
liblapack==3.9.0
|
| 121 |
+
libmamba==1.4.2
|
| 122 |
+
libmambapy==1.4.2
|
| 123 |
+
libnghttp2==1.52.0
|
| 124 |
+
libopenblas==0.3.24
|
| 125 |
+
libopus==1.3.1
|
| 126 |
+
libpng==1.6.39
|
| 127 |
+
libprotobuf==4.24.4
|
| 128 |
+
libsolv==0.7.24
|
| 129 |
+
libsqlite==3.43.0
|
| 130 |
+
libssh2==1.11.0
|
| 131 |
+
libtasn1==4.19.0
|
| 132 |
+
libtiff==4.6.0
|
| 133 |
+
libunistring==0.9.10
|
| 134 |
+
libuv==1.46.0
|
| 135 |
+
libvpx==1.13.1
|
| 136 |
+
libwebp-base==1.3.2
|
| 137 |
+
libxcb==1.15
|
| 138 |
+
libxml2==2.11.5
|
| 139 |
+
libzlib==1.2.13
|
| 140 |
+
llvm-openmp==17.0.5
|
| 141 |
+
lz4-c==1.9.4
|
| 142 |
+
lzo==2.10
|
| 143 |
+
mamba==1.4.2
|
| 144 |
+
markdown-it-py==3.0.0
|
| 145 |
+
markupsafe==2.1.3
|
| 146 |
+
matplotlib==3.8.1
|
| 147 |
+
matplotlib-base==3.8.1
|
| 148 |
+
matplotlib-inline==0.1.6
|
| 149 |
+
mdurl==0.1.0
|
| 150 |
+
mpc==1.3.1
|
| 151 |
+
mpfr==4.2.1
|
| 152 |
+
mpmath==1.3.0
|
| 153 |
+
munkres==1.1.4
|
| 154 |
+
murmurhash==1.0.10
|
| 155 |
+
nbdev==2.3.12
|
| 156 |
+
ncurses==6.4
|
| 157 |
+
nettle==3.8.1
|
| 158 |
+
networkx==3.2.1
|
| 159 |
+
nomkl==1.0
|
| 160 |
+
numpy==1.26.0
|
| 161 |
+
openh264==2.3.1
|
| 162 |
+
openjpeg==2.5.0
|
| 163 |
+
openssl==3.1.4
|
| 164 |
+
orjson==3.9.10
|
| 165 |
+
p11-kit==0.24.1
|
| 166 |
+
packaging==23.1
|
| 167 |
+
pandas==2.1.3
|
| 168 |
+
parso==0.8.3
|
| 169 |
+
pathy==0.10.2
|
| 170 |
+
pcre2==10.42
|
| 171 |
+
pexpect==4.8.0
|
| 172 |
+
pickleshare==0.7.5
|
| 173 |
+
pillow==10.0.1
|
| 174 |
+
pip==23.2.1
|
| 175 |
+
pixman==0.42.2
|
| 176 |
+
pkgutil-resolve-name==1.3.10
|
| 177 |
+
pluggy==1.3.0
|
| 178 |
+
preshed==3.0.9
|
| 179 |
+
prompt-toolkit==3.0.39
|
| 180 |
+
prompt_toolkit==3.0.39
|
| 181 |
+
pthread-stubs==0.4
|
| 182 |
+
ptyprocess==0.7.0
|
| 183 |
+
pure_eval==0.2.2
|
| 184 |
+
pybind11-abi==4
|
| 185 |
+
pycosat==0.6.4
|
| 186 |
+
pycparser==2.21
|
| 187 |
+
pydantic==2.5.0
|
| 188 |
+
pydantic-core==2.14.1
|
| 189 |
+
pydub==0.25.1
|
| 190 |
+
pygments==2.16.1
|
| 191 |
+
pyopenssl==23.2.0
|
| 192 |
+
pyparsing==3.1.1
|
| 193 |
+
pysocks==1.7.1
|
| 194 |
+
python==3.10.12
|
| 195 |
+
python-dateutil==2.8.2
|
| 196 |
+
python-multipart==0.0.6
|
| 197 |
+
python-tzdata==2023.3
|
| 198 |
+
python_abi==3.10
|
| 199 |
+
pytorch==2.0.0
|
| 200 |
+
pytz==2023.3.post1
|
| 201 |
+
pyyaml==6.0.1
|
| 202 |
+
readline==8.2
|
| 203 |
+
referencing==0.31.0
|
| 204 |
+
reproc==14.2.4
|
| 205 |
+
reproc-cpp==14.2.4
|
| 206 |
+
requests==2.31.0
|
| 207 |
+
rich==13.6.0
|
| 208 |
+
rpds-py==0.12.0
|
| 209 |
+
ruamel.yaml==0.17.32
|
| 210 |
+
ruamel.yaml.clib==0.2.7
|
| 211 |
+
scikit-learn==1.3.2
|
| 212 |
+
scipy==1.11.3
|
| 213 |
+
semantic_version==2.10.0
|
| 214 |
+
setuptools==68.1.2
|
| 215 |
+
shellingham==1.5.4
|
| 216 |
+
six==1.16.0
|
| 217 |
+
sleef==3.5.1
|
| 218 |
+
smart_open==5.2.1
|
| 219 |
+
sniffio==1.3.0
|
| 220 |
+
spacy==3.7.2
|
| 221 |
+
spacy-legacy==3.0.12
|
| 222 |
+
spacy-loggers==1.0.5
|
| 223 |
+
srsly==2.4.8
|
| 224 |
+
stack_data==0.6.2
|
| 225 |
+
starlette==0.27.0
|
| 226 |
+
svt-av1==1.7.0
|
| 227 |
+
sympy==1.12
|
| 228 |
+
thinc==8.2.1
|
| 229 |
+
threadpoolctl==3.2.0
|
| 230 |
+
tk==8.6.12
|
| 231 |
+
tomlkit==0.12.0
|
| 232 |
+
toolz==0.12.0
|
| 233 |
+
torchvision==0.15.2
|
| 234 |
+
tornado==6.3.3
|
| 235 |
+
tqdm==4.66.1
|
| 236 |
+
traitlets==5.10.1
|
| 237 |
+
typer==0.9.0
|
| 238 |
+
typing-extensions==4.8.0
|
| 239 |
+
typing_extensions==4.8.0
|
| 240 |
+
tzdata==2023c
|
| 241 |
+
unicodedata2==15.1.0
|
| 242 |
+
urllib3==2.0.4
|
| 243 |
+
uvicorn==0.24.0
|
| 244 |
+
wasabi==1.1.2
|
| 245 |
+
watchdog==3.0.0
|
| 246 |
+
wcwidth==0.2.6
|
| 247 |
+
weasel==0.3.4
|
| 248 |
+
websockets==11.0.3
|
| 249 |
+
wheel==0.41.2
|
| 250 |
+
x264==1!164.3095
|
| 251 |
+
x265==3.5
|
| 252 |
+
xorg-libxau==1.0.11
|
| 253 |
+
xorg-libxdmcp==1.1.3
|
| 254 |
+
xz==5.2.6
|
| 255 |
+
yaml==0.2.5
|
| 256 |
+
yaml-cpp==0.7.0
|
| 257 |
+
zipp==3.17.0
|
| 258 |
+
zlib==1.2.13
|
| 259 |
+
zstandard==0.19.0
|
| 260 |
+
zstd==1.5.5
|
|
|
|
|
|
|
|
|