inLine-XJY commited on
Commit
21477f2
1 Parent(s): 50f5a7a

Upload 5 files

Browse files
Files changed (5) hide show
  1. .gitattributes +35 -35
  2. .gitignore +1 -0
  3. README.md +4 -4
  4. app.py +11 -0
  5. requirements.txt +396 -0
.gitattributes CHANGED
@@ -1,35 +1,35 @@
1
- *.7z filter=lfs diff=lfs merge=lfs -text
2
- *.arrow filter=lfs diff=lfs merge=lfs -text
3
- *.bin filter=lfs diff=lfs merge=lfs -text
4
- *.bz2 filter=lfs diff=lfs merge=lfs -text
5
- *.ckpt filter=lfs diff=lfs merge=lfs -text
6
- *.ftz filter=lfs diff=lfs merge=lfs -text
7
- *.gz filter=lfs diff=lfs merge=lfs -text
8
- *.h5 filter=lfs diff=lfs merge=lfs -text
9
- *.joblib filter=lfs diff=lfs merge=lfs -text
10
- *.lfs.* filter=lfs diff=lfs merge=lfs -text
11
- *.mlmodel filter=lfs diff=lfs merge=lfs -text
12
- *.model filter=lfs diff=lfs merge=lfs -text
13
- *.msgpack filter=lfs diff=lfs merge=lfs -text
14
- *.npy filter=lfs diff=lfs merge=lfs -text
15
- *.npz filter=lfs diff=lfs merge=lfs -text
16
- *.onnx filter=lfs diff=lfs merge=lfs -text
17
- *.ot filter=lfs diff=lfs merge=lfs -text
18
- *.parquet filter=lfs diff=lfs merge=lfs -text
19
- *.pb filter=lfs diff=lfs merge=lfs -text
20
- *.pickle filter=lfs diff=lfs merge=lfs -text
21
- *.pkl filter=lfs diff=lfs merge=lfs -text
22
- *.pt filter=lfs diff=lfs merge=lfs -text
23
- *.pth filter=lfs diff=lfs merge=lfs -text
24
- *.rar filter=lfs diff=lfs merge=lfs -text
25
- *.safetensors filter=lfs diff=lfs merge=lfs -text
26
- saved_model/**/* filter=lfs diff=lfs merge=lfs -text
27
- *.tar.* filter=lfs diff=lfs merge=lfs -text
28
- *.tar filter=lfs diff=lfs merge=lfs -text
29
- *.tflite filter=lfs diff=lfs merge=lfs -text
30
- *.tgz filter=lfs diff=lfs merge=lfs -text
31
- *.wasm filter=lfs diff=lfs merge=lfs -text
32
- *.xz filter=lfs diff=lfs merge=lfs -text
33
- *.zip filter=lfs diff=lfs merge=lfs -text
34
- *.zst filter=lfs diff=lfs merge=lfs -text
35
- *tfevents* filter=lfs diff=lfs merge=lfs -text
 
1
+ *.7z filter=lfs diff=lfs merge=lfs -text
2
+ *.arrow filter=lfs diff=lfs merge=lfs -text
3
+ *.bin filter=lfs diff=lfs merge=lfs -text
4
+ *.bz2 filter=lfs diff=lfs merge=lfs -text
5
+ *.ckpt filter=lfs diff=lfs merge=lfs -text
6
+ *.ftz filter=lfs diff=lfs merge=lfs -text
7
+ *.gz filter=lfs diff=lfs merge=lfs -text
8
+ *.h5 filter=lfs diff=lfs merge=lfs -text
9
+ *.joblib filter=lfs diff=lfs merge=lfs -text
10
+ *.lfs.* filter=lfs diff=lfs merge=lfs -text
11
+ *.mlmodel filter=lfs diff=lfs merge=lfs -text
12
+ *.model filter=lfs diff=lfs merge=lfs -text
13
+ *.msgpack filter=lfs diff=lfs merge=lfs -text
14
+ *.npy filter=lfs diff=lfs merge=lfs -text
15
+ *.npz filter=lfs diff=lfs merge=lfs -text
16
+ *.onnx filter=lfs diff=lfs merge=lfs -text
17
+ *.ot filter=lfs diff=lfs merge=lfs -text
18
+ *.parquet filter=lfs diff=lfs merge=lfs -text
19
+ *.pb filter=lfs diff=lfs merge=lfs -text
20
+ *.pickle filter=lfs diff=lfs merge=lfs -text
21
+ *.pkl filter=lfs diff=lfs merge=lfs -text
22
+ *.pt filter=lfs diff=lfs merge=lfs -text
23
+ *.pth filter=lfs diff=lfs merge=lfs -text
24
+ *.rar filter=lfs diff=lfs merge=lfs -text
25
+ *.safetensors filter=lfs diff=lfs merge=lfs -text
26
+ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
27
+ *.tar.* filter=lfs diff=lfs merge=lfs -text
28
+ *.tar filter=lfs diff=lfs merge=lfs -text
29
+ *.tflite filter=lfs diff=lfs merge=lfs -text
30
+ *.tgz filter=lfs diff=lfs merge=lfs -text
31
+ *.wasm filter=lfs diff=lfs merge=lfs -text
32
+ *.xz filter=lfs diff=lfs merge=lfs -text
33
+ *.zip filter=lfs diff=lfs merge=lfs -text
34
+ *.zst filter=lfs diff=lfs merge=lfs -text
35
+ *tfevents* filter=lfs diff=lfs merge=lfs -text
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ env/
README.md CHANGED
@@ -1,5 +1,5 @@
1
- ---
2
- license: mit
3
- pipeline_tag: text-generation
4
- library_name: transformers
5
  ---
 
1
+ ---
2
+ license: mit
3
+ pipeline_tag: text-generation
4
+ library_name: transformers
5
  ---
app.py ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio
2
+
3
+ def my_inference_function(name):
4
+ return "Hello " + name + "!"
5
+
6
+ gradio_interface = gradio.Interface(
7
+ fn = my_inference_function,
8
+ inputs = "text",
9
+ outputs = "text"
10
+ )
11
+ gradio_interface.launch()
requirements.txt ADDED
@@ -0,0 +1,396 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ aiobotocore @ file:///C:/b/abs_1c1a_vjay2/croot/aiobotocore_1682537737724/work
2
+ aiofiles @ file:///C:/b/abs_9ex6mi6b56/croot/aiofiles_1683773603390/work
3
+ aiohttp @ file:///C:/b/abs_b78zt6vo64/croot/aiohttp_1694181126607/work
4
+ aioitertools @ file:///tmp/build/80754af9/aioitertools_1607109665762/work
5
+ aiosignal @ file:///tmp/build/80754af9/aiosignal_1637843061372/work
6
+ aiosqlite @ file:///C:/b/abs_9djc_0pyi3/croot/aiosqlite_1683773915844/work
7
+ alabaster @ file:///home/ktietz/src/ci/alabaster_1611921544520/work
8
+ altair==5.3.0
9
+ anaconda-anon-usage @ file:///C:/b/abs_f4tsjyl9va/croot/anaconda-anon-usage_1695310457827/work
10
+ anaconda-catalogs @ file:///C:/b/abs_8btyy0o8s8/croot/anaconda-catalogs_1685727315626/work
11
+ anaconda-client @ file:///C:/b/abs_80wttmgui4/croot/anaconda-client_1694625288614/work
12
+ anaconda-cloud-auth @ file:///C:/b/abs_5cjpnu6wjb/croot/anaconda-cloud-auth_1694462130037/work
13
+ anaconda-navigator @ file:///C:/b/abs_ab00e0_u7e/croot/anaconda-navigator_1695238210954/work
14
+ anaconda-project @ file:///C:/ci_311/anaconda-project_1676458365912/work
15
+ annotated-types==0.7.0
16
+ anyio @ file:///C:/ci_311/anyio_1676425491996/work/dist
17
+ appdirs==1.4.4
18
+ argon2-cffi @ file:///opt/conda/conda-bld/argon2-cffi_1645000214183/work
19
+ argon2-cffi-bindings @ file:///C:/ci_311/argon2-cffi-bindings_1676424443321/work
20
+ arrow @ file:///C:/ci_311/arrow_1678249767083/work
21
+ astroid @ file:///C:/ci_311/astroid_1678740610167/work
22
+ astropy @ file:///C:/ci_311_rebuilds/astropy_1678996071858/work
23
+ asttokens @ file:///opt/conda/conda-bld/asttokens_1646925590279/work
24
+ async-timeout @ file:///C:/ci_311/async-timeout_1676431518331/work
25
+ atomicwrites==1.4.0
26
+ attrs @ file:///C:/ci_311/attrs_1676422272484/work
27
+ Automat @ file:///tmp/build/80754af9/automat_1600298431173/work
28
+ autopep8 @ file:///opt/conda/conda-bld/autopep8_1650463822033/work
29
+ Babel @ file:///C:/ci_311/babel_1676427169844/work
30
+ backcall @ file:///home/ktietz/src/ci/backcall_1611930011877/work
31
+ backports.functools-lru-cache @ file:///tmp/build/80754af9/backports.functools_lru_cache_1618170165463/work
32
+ backports.tempfile @ file:///home/linux1/recipes/ci/backports.tempfile_1610991236607/work
33
+ backports.weakref==1.0.post1
34
+ bcrypt @ file:///C:/ci_311/bcrypt_1676435170049/work
35
+ beautifulsoup4 @ file:///C:/b/abs_0agyz1wsr4/croot/beautifulsoup4-split_1681493048687/work
36
+ binaryornot @ file:///tmp/build/80754af9/binaryornot_1617751525010/work
37
+ black @ file:///C:/b/abs_620t6ndje8/croot/black_1680737261963/work
38
+ bleach @ file:///opt/conda/conda-bld/bleach_1641577558959/work
39
+ bokeh @ file:///C:/b/abs_e5qs_0dl2w/croot/bokeh_1690546119144/work
40
+ boltons @ file:///C:/ci_311/boltons_1677729932371/work
41
+ botocore @ file:///C:/b/abs_01gwdn34ju/croot/botocore_1682528022942/work
42
+ Bottleneck @ file:///C:/ci_311/bottleneck_1676500016583/work
43
+ brotlipy==0.7.0
44
+ certifi @ file:///C:/b/abs_36eb5mzhph/croot/certifi_1690232276943/work/certifi
45
+ cffi @ file:///C:/ci_311/cffi_1676423759166/work
46
+ chardet @ file:///C:/ci_311/chardet_1676436134885/work
47
+ charset-normalizer @ file:///tmp/build/80754af9/charset-normalizer_1630003229654/work
48
+ click @ file:///C:/ci_311/click_1676433091657/work
49
+ cloudpickle @ file:///C:/b/abs_3796yxesic/croot/cloudpickle_1683040098851/work
50
+ clyent==1.2.2
51
+ colorama @ file:///C:/ci_311/colorama_1676422310965/work
52
+ colorcet @ file:///C:/ci_311/colorcet_1676440389947/work
53
+ comm @ file:///C:/ci_311/comm_1678376562840/work
54
+ conda @ file:///C:/b/abs_3eb7ewgq2c/croot/conda_1694545461647/work
55
+ conda-build @ file:///C:/b/abs_8di4gx5nj5/croot/conda-build_1692366837286/work
56
+ conda-content-trust @ file:///C:/b/abs_e3bcpyv7sw/croot/conda-content-trust_1693490654398/work
57
+ conda-libmamba-solver @ file:///C:/b/abs_016p0csqp7/croot/conda-libmamba-solver_1691418958509/work/src
58
+ conda-pack @ file:///tmp/build/80754af9/conda-pack_1611163042455/work
59
+ conda-package-handling @ file:///C:/b/abs_b9wp3lr1gn/croot/conda-package-handling_1691008700066/work
60
+ conda-repo-cli==1.0.75
61
+ conda-token @ file:///Users/paulyim/miniconda3/envs/c3i/conda-bld/conda-token_1662660369760/work
62
+ conda-verify==3.4.2
63
+ conda_index @ file:///C:/b/abs_50towt3zan/croot/conda-index_1695311135992/work
64
+ conda_package_streaming @ file:///C:/b/abs_6c28n38aaj/croot/conda-package-streaming_1690988019210/work
65
+ constantly==15.1.0
66
+ contourpy @ file:///C:/ci_311/contourpy_1676431756017/work
67
+ cookiecutter @ file:///opt/conda/conda-bld/cookiecutter_1649151442564/work
68
+ cryptography @ file:///C:/b/abs_f4do8t8jfs/croot/cryptography_1694444424531/work
69
+ cssselect==1.1.0
70
+ cycler @ file:///tmp/build/80754af9/cycler_1637851556182/work
71
+ cytoolz @ file:///C:/ci_311/cytoolz_1676436342770/work
72
+ daal4py==2023.1.1
73
+ dask @ file:///C:/b/abs_23lvfodys3/croot/dask-core_1686782960052/work
74
+ datasets @ file:///C:/b/abs_a3jy4vrfuo/croot/datasets_1684484478038/work
75
+ datashader @ file:///C:/b/abs_8323862uxi/croot/datashader_1692372298149/work
76
+ datashape==0.5.4
77
+ debugpy @ file:///C:/b/abs_c0y1fjipt2/croot/debugpy_1690906864587/work
78
+ decorator @ file:///opt/conda/conda-bld/decorator_1643638310831/work
79
+ defusedxml @ file:///tmp/build/80754af9/defusedxml_1615228127516/work
80
+ diff-match-patch @ file:///Users/ktietz/demo/mc3/conda-bld/diff-match-patch_1630511840874/work
81
+ dill @ file:///C:/ci_311/dill_1676433323862/work
82
+ distributed @ file:///C:/b/abs_7509xfv227/croot/distributed_1686866088894/work
83
+ dnspython==2.6.1
84
+ docstring-to-markdown @ file:///C:/ci_311/docstring-to-markdown_1677742566583/work
85
+ docutils @ file:///C:/ci_311/docutils_1676428078664/work
86
+ email_validator==2.1.1
87
+ entrypoints @ file:///C:/ci_311/entrypoints_1676423328987/work
88
+ et-xmlfile==1.1.0
89
+ executing @ file:///opt/conda/conda-bld/executing_1646925071911/work
90
+ fastapi==0.111.0
91
+ fastapi-cli==0.0.4
92
+ fastjsonschema @ file:///C:/ci_311/python-fastjsonschema_1679500568724/work
93
+ ffmpy==0.3.2
94
+ filelock @ file:///C:/ci_311/filelock_1676427284139/work
95
+ flake8 @ file:///C:/ci_311/flake8_1678376624746/work
96
+ Flask @ file:///C:/ci_311/flask_1676436667658/work
97
+ fonttools==4.25.0
98
+ frozenlist @ file:///C:/ci_311/frozenlist_1676428131576/work
99
+ fsspec==2024.6.0
100
+ future @ file:///C:/ci_311_rebuilds/future_1678998246262/work
101
+ gensim @ file:///C:/ci_311/gensim_1677743037820/work
102
+ glob2 @ file:///home/linux1/recipes/ci/glob2_1610991677669/work
103
+ gradio==4.32.2
104
+ gradio_client==0.17.0
105
+ greenlet @ file:///C:/ci_311/greenlet_1676436788118/work
106
+ h11==0.14.0
107
+ h5py @ file:///C:/b/abs_17fav01gwy/croot/h5py_1691589733413/work
108
+ HeapDict @ file:///Users/ktietz/demo/mc3/conda-bld/heapdict_1630598515714/work
109
+ holoviews @ file:///C:/b/abs_fa7afixkhc/croot/holoviews_1693378101313/work
110
+ httpcore==1.0.5
111
+ httptools==0.6.1
112
+ httpx==0.27.0
113
+ huggingface-hub==0.23.2
114
+ hvplot @ file:///C:/b/abs_2b13wifauw/croot/hvplot_1685998632349/work
115
+ hyperlink @ file:///tmp/build/80754af9/hyperlink_1610130746837/work
116
+ idna @ file:///C:/ci_311/idna_1676424932545/work
117
+ imagecodecs @ file:///C:/b/abs_e2g5zbs1q0/croot/imagecodecs_1695065012000/work
118
+ imageio @ file:///C:/ci_311/imageio_1678373794394/work
119
+ imagesize @ file:///C:/ci_311/imagesize_1676431905616/work
120
+ imbalanced-learn @ file:///C:/b/abs_275a0acaq2/croot/imbalanced-learn_1685025644593/work
121
+ importlib-metadata @ file:///C:/b/abs_20ndzb2j6v/croot/importlib-metadata_1678997085534/work
122
+ importlib_resources==6.4.0
123
+ incremental @ file:///tmp/build/80754af9/incremental_1636629750599/work
124
+ inflection==0.5.1
125
+ iniconfig @ file:///home/linux1/recipes/ci/iniconfig_1610983019677/work
126
+ intake @ file:///C:/ci_311_rebuilds/intake_1678999914269/work
127
+ intervaltree @ file:///Users/ktietz/demo/mc3/conda-bld/intervaltree_1630511889664/work
128
+ ipykernel @ file:///C:/b/abs_07rkft_vaz/croot/ipykernel_1691121700587/work
129
+ ipython @ file:///C:/b/abs_e5729i179y/croot/ipython_1694181400005/work
130
+ ipython-genutils @ file:///tmp/build/80754af9/ipython_genutils_1606773439826/work
131
+ ipywidgets @ file:///C:/b/abs_5awapknmz_/croot/ipywidgets_1679394824767/work
132
+ isort @ file:///tmp/build/80754af9/isort_1628603791788/work
133
+ itemadapter @ file:///tmp/build/80754af9/itemadapter_1626442940632/work
134
+ itemloaders @ file:///opt/conda/conda-bld/itemloaders_1646805235997/work
135
+ itsdangerous @ file:///tmp/build/80754af9/itsdangerous_1621432558163/work
136
+ jaraco.classes @ file:///tmp/build/80754af9/jaraco.classes_1620983179379/work
137
+ jedi @ file:///C:/ci_311/jedi_1679427407646/work
138
+ jellyfish @ file:///C:/b/abs_50kgvtnrbj/croot/jellyfish_1695193564091/work
139
+ Jinja2 @ file:///C:/ci_311/jinja2_1676424968965/work
140
+ jinja2-time @ file:///opt/conda/conda-bld/jinja2-time_1649251842261/work
141
+ jmespath @ file:///Users/ktietz/demo/mc3/conda-bld/jmespath_1630583964805/work
142
+ joblib @ file:///C:/b/abs_1anqjntpan/croot/joblib_1685113317150/work
143
+ json5 @ file:///tmp/build/80754af9/json5_1624432770122/work
144
+ jsonpatch @ file:///tmp/build/80754af9/jsonpatch_1615747632069/work
145
+ jsonpointer==2.1
146
+ jsonschema @ file:///C:/b/abs_d40z05b6r1/croot/jsonschema_1678983446576/work
147
+ jupyter @ file:///C:/ci_311/jupyter_1678249952587/work
148
+ jupyter-console @ file:///C:/b/abs_82xaa6i2y4/croot/jupyter_console_1680000189372/work
149
+ jupyter-events @ file:///C:/b/abs_4cak_28ewz/croot/jupyter_events_1684268050893/work
150
+ jupyter-server @ file:///C:/ci_311/jupyter_server_1678228762759/work
151
+ jupyter-ydoc @ file:///C:/b/abs_e7m6nh5lao/croot/jupyter_ydoc_1683747253535/work
152
+ jupyter_client @ file:///C:/ci_311/jupyter_client_1676424009414/work
153
+ jupyter_core @ file:///C:/b/abs_9d0ttho3bs/croot/jupyter_core_1679906581955/work
154
+ jupyter_server_fileid @ file:///C:/b/abs_f1yjnmiq_6/croot/jupyter_server_fileid_1684273602142/work
155
+ jupyter_server_ydoc @ file:///C:/b/abs_8ai39bligw/croot/jupyter_server_ydoc_1686767445888/work
156
+ jupyterlab @ file:///C:/b/abs_c1msr8zz3y/croot/jupyterlab_1686179674844/work
157
+ jupyterlab-pygments @ file:///tmp/build/80754af9/jupyterlab_pygments_1601490720602/work
158
+ jupyterlab-widgets @ file:///C:/b/abs_38ad427jkz/croot/jupyterlab_widgets_1679055289211/work
159
+ jupyterlab_server @ file:///C:/b/abs_e0qqsihjvl/croot/jupyterlab_server_1680792526136/work
160
+ kaleido @ file:///C:/b/abs_60smvjz1os/croot/python-kaleido_1689927138239/work
161
+ keyring @ file:///C:/b/abs_dbjc7g0dh2/croot/keyring_1678999228878/work
162
+ kiwisolver @ file:///C:/ci_311/kiwisolver_1676431979301/work
163
+ lazy-object-proxy @ file:///C:/ci_311/lazy-object-proxy_1676432050939/work
164
+ lazy_loader @ file:///C:/b/abs_c9jlw06oq1/croot/lazy_loader_1687266162676/work
165
+ libarchive-c @ file:///tmp/build/80754af9/python-libarchive-c_1617780486945/work
166
+ libmambapy @ file:///C:/b/abs_71g8gec0dd/croot/mamba-split_1694187821755/work/libmambapy
167
+ linkify-it-py @ file:///C:/ci_311/linkify-it-py_1676474436187/work
168
+ llvmlite @ file:///C:/b/abs_a8i9keuf6p/croot/llvmlite_1683555140340/work
169
+ lmdb @ file:///C:/b/abs_556ronuvb2/croot/python-lmdb_1682522366268/work
170
+ locket @ file:///C:/ci_311/locket_1676428325082/work
171
+ lxml @ file:///C:/b/abs_9e7tpg2vv9/croot/lxml_1695058219431/work
172
+ lz4 @ file:///C:/b/abs_064u6aszy3/croot/lz4_1686057967376/work
173
+ Markdown @ file:///C:/ci_311/markdown_1676437912393/work
174
+ markdown-it-py @ file:///C:/b/abs_a5bfngz6fu/croot/markdown-it-py_1684279915556/work
175
+ MarkupSafe @ file:///C:/ci_311/markupsafe_1676424152318/work
176
+ matplotlib @ file:///C:/b/abs_085jhivdha/croot/matplotlib-suite_1693812524572/work
177
+ matplotlib-inline @ file:///C:/ci_311/matplotlib-inline_1676425798036/work
178
+ mccabe @ file:///opt/conda/conda-bld/mccabe_1644221741721/work
179
+ mdit-py-plugins @ file:///C:/ci_311/mdit-py-plugins_1676481827414/work
180
+ mdurl @ file:///C:/ci_311/mdurl_1676442676678/work
181
+ menuinst @ file:///C:/ci_311/menuinst_1678730372782/work
182
+ mistune @ file:///C:/ci_311/mistune_1676425149302/work
183
+ mkl-fft @ file:///C:/b/abs_19i1y8ykas/croot/mkl_fft_1695058226480/work
184
+ mkl-random @ file:///C:/b/abs_edwkj1_o69/croot/mkl_random_1695059866750/work
185
+ mkl-service==2.4.0
186
+ more-itertools @ file:///tmp/build/80754af9/more-itertools_1637733554872/work
187
+ mpmath @ file:///C:/b/abs_7833jrbiox/croot/mpmath_1690848321154/work
188
+ msgpack @ file:///C:/ci_311/msgpack-python_1676427482892/work
189
+ multidict @ file:///C:/ci_311/multidict_1676428396308/work
190
+ multipledispatch @ file:///C:/ci_311/multipledispatch_1676442767760/work
191
+ multiprocess @ file:///C:/ci_311/multiprocess_1676442808395/work
192
+ munkres==1.1.4
193
+ mypy-extensions @ file:///C:/b/abs_8f7xiidjya/croot/mypy_extensions_1695131051147/work
194
+ navigator-updater @ file:///C:/b/abs_895otdwmo9/croot/navigator-updater_1695210220239/work
195
+ nbclassic @ file:///C:/b/abs_c8_rs7b3zw/croot/nbclassic_1681756186106/work
196
+ nbclient @ file:///C:/ci_311/nbclient_1676425195918/work
197
+ nbconvert @ file:///C:/ci_311/nbconvert_1676425836196/work
198
+ nbformat @ file:///C:/b/abs_5a2nea1iu2/croot/nbformat_1694616866197/work
199
+ nest-asyncio @ file:///C:/ci_311/nest-asyncio_1676423519896/work
200
+ networkx @ file:///C:/b/abs_e6gi1go5op/croot/networkx_1690562046966/work
201
+ nltk @ file:///C:/b/abs_a638z6l1z0/croot/nltk_1688114186909/work
202
+ notebook @ file:///C:/b/abs_e2qn6c85jb/croot/notebook_1690985290943/work
203
+ notebook_shim @ file:///C:/ci_311/notebook-shim_1678144850856/work
204
+ npm==0.1.1
205
+ numba @ file:///C:/b/abs_00f2z7znbq/croot/numba_1690878309825/work
206
+ numexpr @ file:///C:/b/abs_afm0oewmmt/croot/numexpr_1683221839116/work
207
+ numpy @ file:///C:/Users/dev-admin/mkl/numpy_and_numpy_base_1682982345978/work
208
+ numpydoc @ file:///C:/ci_311/numpydoc_1676453412027/work
209
+ openpyxl==3.0.10
210
+ optional-django==0.1.0
211
+ orjson==3.10.3
212
+ packaging @ file:///C:/b/abs_28t5mcoltc/croot/packaging_1693575224052/work
213
+ pandas @ file:///C:/miniconda3/conda-bld/pandas_1692298018988/work
214
+ pandocfilters @ file:///opt/conda/conda-bld/pandocfilters_1643405455980/work
215
+ panel @ file:///C:/b/abs_a4rd7zrkc6/croot/panel_1695145945642/work
216
+ param @ file:///C:/b/abs_f5xzp6ism6/croot/param_1684915326009/work
217
+ paramiko @ file:///opt/conda/conda-bld/paramiko_1640109032755/work
218
+ parsel @ file:///C:/ci_311/parsel_1676443327188/work
219
+ parso @ file:///opt/conda/conda-bld/parso_1641458642106/work
220
+ partd @ file:///C:/b/abs_4e2m_ds81n/croot/partd_1693937921136/work
221
+ pathlib @ file:///Users/ktietz/demo/mc3/conda-bld/pathlib_1629713961906/work
222
+ pathspec @ file:///C:/ci_311/pathspec_1679427644142/work
223
+ patsy==0.5.3
224
+ pep8==1.7.1
225
+ pexpect @ file:///tmp/build/80754af9/pexpect_1605563209008/work
226
+ pickleshare @ file:///tmp/build/80754af9/pickleshare_1606932040724/work
227
+ Pillow @ file:///C:/b/abs_153xikw91n/croot/pillow_1695134603563/work
228
+ pkce @ file:///C:/b/abs_d0z4444tb0/croot/pkce_1690384879799/work
229
+ pkginfo @ file:///C:/b/abs_d18srtr68x/croot/pkginfo_1679431192239/work
230
+ platformdirs @ file:///C:/b/abs_b6z_yqw_ii/croot/platformdirs_1692205479426/work
231
+ plotly @ file:///C:/ci_311/plotly_1676443558683/work
232
+ pluggy @ file:///C:/ci_311/pluggy_1676422178143/work
233
+ ply==3.11
234
+ poyo @ file:///tmp/build/80754af9/poyo_1617751526755/work
235
+ prometheus-client @ file:///C:/ci_311/prometheus_client_1679591942558/work
236
+ prompt-toolkit @ file:///C:/ci_311/prompt-toolkit_1676425940920/work
237
+ Protego @ file:///tmp/build/80754af9/protego_1598657180827/work
238
+ psutil @ file:///C:/ci_311_rebuilds/psutil_1679005906571/work
239
+ ptyprocess @ file:///tmp/build/80754af9/ptyprocess_1609355006118/work/dist/ptyprocess-0.7.0-py2.py3-none-any.whl
240
+ pure-eval @ file:///opt/conda/conda-bld/pure_eval_1646925070566/work
241
+ py-cpuinfo @ file:///Users/ktietz/demo/mc3/conda-bld/py-cpuinfo_1629480366017/work
242
+ pyarrow==11.0.0
243
+ pyasn1 @ file:///Users/ktietz/demo/mc3/conda-bld/pyasn1_1629708007385/work
244
+ pyasn1-modules==0.2.8
245
+ pycodestyle @ file:///C:/ci_311/pycodestyle_1678376707834/work
246
+ pycosat @ file:///C:/ci_311/pycosat_1676438455539/work
247
+ pycparser @ file:///tmp/build/80754af9/pycparser_1636541352034/work
248
+ pyct @ file:///C:/ci_311/pyct_1676438538057/work
249
+ pycurl==7.45.2
250
+ pydantic==2.7.3
251
+ pydantic_core==2.18.4
252
+ PyDispatcher==2.0.5
253
+ pydocstyle @ file:///C:/ci_311/pydocstyle_1678402028085/work
254
+ pydub==0.25.1
255
+ pyerfa @ file:///C:/ci_311/pyerfa_1676503994641/work
256
+ pyflakes @ file:///C:/ci_311/pyflakes_1678402101687/work
257
+ Pygments @ file:///C:/b/abs_fay9dpq4n_/croot/pygments_1684279990574/work
258
+ PyJWT @ file:///C:/ci_311/pyjwt_1676438890509/work
259
+ pylint @ file:///C:/ci_311/pylint_1678740302984/work
260
+ pylint-venv @ file:///C:/ci_311/pylint-venv_1678402170638/work
261
+ pyls-spyder==0.4.0
262
+ PyNaCl @ file:///C:/ci_311/pynacl_1676445861112/work
263
+ pyodbc @ file:///C:/ci_311/pyodbc_1676489976744/work
264
+ pyOpenSSL @ file:///C:/b/abs_08f38zyck4/croot/pyopenssl_1690225407403/work
265
+ pyparsing @ file:///C:/ci_311/pyparsing_1678502182533/work
266
+ PyQt5==5.15.7
267
+ PyQt5-sip @ file:///C:/ci_311/pyqt-split_1676428895938/work/pyqt_sip
268
+ PyQtWebEngine==5.15.4
269
+ pyrsistent @ file:///C:/ci_311/pyrsistent_1676422695500/work
270
+ PySocks @ file:///C:/ci_311/pysocks_1676425991111/work
271
+ pytest @ file:///C:/b/abs_48heoo_k8y/croot/pytest_1690475385915/work
272
+ python-dateutil @ file:///tmp/build/80754af9/python-dateutil_1626374649649/work
273
+ python-dotenv @ file:///C:/ci_311/python-dotenv_1676455170580/work
274
+ python-json-logger @ file:///C:/b/abs_cblnsm6puj/croot/python-json-logger_1683824130469/work
275
+ python-lsp-black @ file:///C:/ci_311/python-lsp-black_1678721855627/work
276
+ python-lsp-jsonrpc==1.0.0
277
+ python-lsp-server @ file:///C:/b/abs_catecj7fv1/croot/python-lsp-server_1681930405912/work
278
+ python-multipart==0.0.9
279
+ python-slugify @ file:///tmp/build/80754af9/python-slugify_1620405669636/work
280
+ python-snappy @ file:///C:/ci_311/python-snappy_1676446060182/work
281
+ pytoolconfig @ file:///C:/ci_311/pytoolconfig_1678402262175/work
282
+ pytz @ file:///C:/b/abs_19q3ljkez4/croot/pytz_1695131651401/work
283
+ pyviz-comms @ file:///C:/b/abs_6cq38vhwa5/croot/pyviz_comms_1685030740344/work
284
+ PyWavelets @ file:///C:/ci_311/pywavelets_1676504105729/work
285
+ pywin32==305.1
286
+ pywin32-ctypes @ file:///C:/ci_311/pywin32-ctypes_1676427747089/work
287
+ pywinpty @ file:///C:/ci_311/pywinpty_1677707791185/work/target/wheels/pywinpty-2.0.10-cp311-none-win_amd64.whl
288
+ PyYAML @ file:///C:/ci_311/pyyaml_1676432488822/work
289
+ pyzmq @ file:///C:/ci_311/pyzmq_1676423601304/work
290
+ QDarkStyle @ file:///tmp/build/80754af9/qdarkstyle_1617386714626/work
291
+ qstylizer @ file:///C:/ci_311/qstylizer_1678502012152/work/dist/qstylizer-0.2.2-py2.py3-none-any.whl
292
+ QtAwesome @ file:///C:/ci_311/qtawesome_1678402331535/work
293
+ qtconsole @ file:///C:/b/abs_eb4u9jg07y/croot/qtconsole_1681402843494/work
294
+ QtPy @ file:///C:/ci_311/qtpy_1676432558504/work
295
+ queuelib==1.5.0
296
+ regex @ file:///C:/ci_311_rebuilds/regex_1679006156792/work
297
+ requests @ file:///C:/b/abs_316c2inijk/croot/requests_1690400295842/work
298
+ requests-file @ file:///Users/ktietz/demo/mc3/conda-bld/requests-file_1629455781986/work
299
+ requests-toolbelt @ file:///C:/b/abs_2fsmts66wp/croot/requests-toolbelt_1690874051210/work
300
+ responses @ file:///tmp/build/80754af9/responses_1619800270522/work
301
+ rfc3339-validator @ file:///C:/b/abs_ddfmseb_vm/croot/rfc3339-validator_1683077054906/work
302
+ rfc3986-validator @ file:///C:/b/abs_6e9azihr8o/croot/rfc3986-validator_1683059049737/work
303
+ rich==13.7.1
304
+ rope @ file:///C:/ci_311/rope_1678402524346/work
305
+ Rtree @ file:///C:/ci_311/rtree_1676455758391/work
306
+ ruamel-yaml-conda @ file:///C:/ci_311/ruamel_yaml_1676455799258/work
307
+ ruamel.yaml @ file:///C:/ci_311/ruamel.yaml_1676439214109/work
308
+ ruff==0.4.7
309
+ s3fs @ file:///C:/b/abs_adfhcfx438/croot/s3fs_1682551489845/work
310
+ safetensors @ file:///C:/b/abs_a8nnkwknpv/croot/safetensors_1692949064285/work
311
+ scikit-image @ file:///C:/b/abs_2075zg1pia/croot/scikit-image_1682528361447/work
312
+ scikit-learn @ file:///C:/b/abs_55olq_4gzc/croot/scikit-learn_1690978955123/work
313
+ scikit-learn-intelex==20230426.121932
314
+ scipy==1.11.1
315
+ Scrapy @ file:///C:/ci_311/scrapy_1678502587780/work
316
+ seaborn @ file:///C:/ci_311/seaborn_1676446547861/work
317
+ semantic-version==2.10.0
318
+ Send2Trash @ file:///tmp/build/80754af9/send2trash_1632406701022/work
319
+ service-identity @ file:///Users/ktietz/demo/mc3/conda-bld/service_identity_1629460757137/work
320
+ shellingham==1.5.4
321
+ sip @ file:///C:/ci_311/sip_1676427825172/work
322
+ six @ file:///tmp/build/80754af9/six_1644875935023/work
323
+ smart-open @ file:///C:/ci_311/smart_open_1676439339434/work
324
+ sniffio @ file:///C:/ci_311/sniffio_1676425339093/work
325
+ snowballstemmer @ file:///tmp/build/80754af9/snowballstemmer_1637937080595/work
326
+ sortedcontainers @ file:///tmp/build/80754af9/sortedcontainers_1623949099177/work
327
+ soupsieve @ file:///C:/b/abs_a989exj3q6/croot/soupsieve_1680518492466/work
328
+ Sphinx @ file:///C:/ci_311/sphinx_1676434546244/work
329
+ sphinxcontrib-applehelp @ file:///home/ktietz/src/ci/sphinxcontrib-applehelp_1611920841464/work
330
+ sphinxcontrib-devhelp @ file:///home/ktietz/src/ci/sphinxcontrib-devhelp_1611920923094/work
331
+ sphinxcontrib-htmlhelp @ file:///tmp/build/80754af9/sphinxcontrib-htmlhelp_1623945626792/work
332
+ sphinxcontrib-jsmath @ file:///home/ktietz/src/ci/sphinxcontrib-jsmath_1611920942228/work
333
+ sphinxcontrib-qthelp @ file:///home/ktietz/src/ci/sphinxcontrib-qthelp_1611921055322/work
334
+ sphinxcontrib-serializinghtml @ file:///tmp/build/80754af9/sphinxcontrib-serializinghtml_1624451540180/work
335
+ spyder @ file:///C:/b/abs_e99kl7d8t0/croot/spyder_1681934304813/work
336
+ spyder-kernels @ file:///C:/b/abs_e788a8_4y9/croot/spyder-kernels_1691599588437/work
337
+ SQLAlchemy @ file:///C:/ci_311/sqlalchemy_1676446707912/work
338
+ stack-data @ file:///opt/conda/conda-bld/stack_data_1646927590127/work
339
+ starlette==0.37.2
340
+ statsmodels @ file:///C:/b/abs_7bth810rna/croot/statsmodels_1689937298619/work
341
+ sympy @ file:///C:/ci_311_rebuilds/sympy_1679009400182/work
342
+ tables @ file:///C:/b/abs_0626auep9v/croot/pytables_1691623892917/work
343
+ tabulate @ file:///C:/ci_311/tabulate_1676494503192/work
344
+ TBB==0.2
345
+ tblib @ file:///Users/ktietz/demo/mc3/conda-bld/tblib_1629402031467/work
346
+ tenacity @ file:///C:/b/abs_ddkoa9nju6/croot/tenacity_1682972298929/work
347
+ terminado @ file:///C:/ci_311/terminado_1678228513830/work
348
+ text-unidecode @ file:///Users/ktietz/demo/mc3/conda-bld/text-unidecode_1629401354553/work
349
+ textdistance @ file:///tmp/build/80754af9/textdistance_1612461398012/work
350
+ threadpoolctl @ file:///Users/ktietz/demo/mc3/conda-bld/threadpoolctl_1629802263681/work
351
+ three-merge @ file:///tmp/build/80754af9/three-merge_1607553261110/work
352
+ tifffile @ file:///C:/b/abs_45o5chuqwt/croot/tifffile_1695107511025/work
353
+ tinycss2 @ file:///C:/ci_311/tinycss2_1676425376744/work
354
+ tldextract @ file:///opt/conda/conda-bld/tldextract_1646638314385/work
355
+ tokenizers @ file:///C:/b/abs_e34f9vyhry/croot/tokenizers_1687191954304/work
356
+ toml @ file:///tmp/build/80754af9/toml_1616166611790/work
357
+ tomlkit==0.12.0
358
+ toolz @ file:///C:/ci_311/toolz_1676431406517/work
359
+ tornado @ file:///C:/b/abs_61jhmrrua1/croot/tornado_1690848767317/work
360
+ tqdm @ file:///C:/b/abs_f76j9hg7pv/croot/tqdm_1679561871187/work
361
+ traitlets @ file:///C:/ci_311/traitlets_1676423290727/work
362
+ transformers @ file:///C:/b/abs_375hgbdwge/croot/transformers_1693308365188/work
363
+ Twisted @ file:///C:/b/abs_f1pc_rieoy/croot/twisted_1683796899561/work
364
+ twisted-iocpsupport @ file:///C:/ci_311/twisted-iocpsupport_1676447612160/work
365
+ typer==0.12.3
366
+ typing_extensions==4.12.1
367
+ tzdata @ file:///croot/python-tzdata_1690578112552/work
368
+ uc-micro-py @ file:///C:/ci_311/uc-micro-py_1676457695423/work
369
+ ujson @ file:///C:/ci_311/ujson_1676434714224/work
370
+ Unidecode @ file:///tmp/build/80754af9/unidecode_1614712377438/work
371
+ urllib3==2.2.1
372
+ uvicorn==0.30.1
373
+ w3lib @ file:///Users/ktietz/demo/mc3/conda-bld/w3lib_1629359764703/work
374
+ watchdog @ file:///C:/ci_311/watchdog_1676457923624/work
375
+ watchfiles==0.22.0
376
+ wcwidth @ file:///Users/ktietz/demo/mc3/conda-bld/wcwidth_1629357192024/work
377
+ webencodings==0.5.1
378
+ websocket-client @ file:///C:/ci_311/websocket-client_1676426063281/work
379
+ websockets==11.0.3
380
+ Werkzeug @ file:///C:/b/abs_8578rs2ra_/croot/werkzeug_1679489759009/work
381
+ whatthepatch @ file:///C:/ci_311/whatthepatch_1678402578113/work
382
+ widgetsnbextension @ file:///C:/b/abs_882k4_4kdf/croot/widgetsnbextension_1679313880295/work
383
+ win-inet-pton @ file:///C:/ci_311/win_inet_pton_1676425458225/work
384
+ wrapt @ file:///C:/ci_311/wrapt_1676432805090/work
385
+ xarray @ file:///C:/b/abs_5bkjiynp4e/croot/xarray_1689041498548/work
386
+ xlwings @ file:///C:/ci_311_rebuilds/xlwings_1679013429160/work
387
+ xxhash @ file:///C:/ci_311/python-xxhash_1676446168786/work
388
+ xyzservices @ file:///C:/ci_311/xyzservices_1676434829315/work
389
+ y-py @ file:///C:/b/abs_b7f5go6r0j/croot/y-py_1683662173571/work
390
+ yapf @ file:///tmp/build/80754af9/yapf_1615749224965/work
391
+ yarl @ file:///C:/ci_311/yarl_1676432870023/work
392
+ ypy-websocket @ file:///C:/b/abs_4e65ywlnv8/croot/ypy-websocket_1684172103529/work
393
+ zict @ file:///C:/b/abs_fc7elavmem/croot/zict_1682698759288/work
394
+ zipp @ file:///C:/ci_311/zipp_1676426100491/work
395
+ zope.interface @ file:///C:/ci_311/zope.interface_1676439868776/work
396
+ zstandard==0.19.0