Spaces:
Build error
Build error
vincentclaes
commited on
Commit
•
8b891df
1
Parent(s):
7ebd61e
first version
Browse files- Makefile +3 -0
- app.py +31 -0
- emojis/0.png +0 -0
- emojis/1.png +0 -0
- emojis/10.png +0 -0
- emojis/11.png +0 -0
- emojis/12.png +0 -0
- emojis/13.png +0 -0
- emojis/14.png +0 -0
- emojis/15.png +0 -0
- emojis/16.png +0 -0
- emojis/17.png +0 -0
- emojis/18.png +0 -0
- emojis/19.png +0 -0
- emojis/2.png +0 -0
- emojis/20.png +0 -0
- emojis/21.png +0 -0
- emojis/22.png +0 -0
- emojis/23.png +0 -0
- emojis/24.png +0 -0
- emojis/25.png +0 -0
- emojis/26.png +0 -0
- emojis/27.png +0 -0
- emojis/28.png +0 -0
- emojis/29.png +0 -0
- emojis/3.png +0 -0
- emojis/30.png +0 -0
- emojis/31.png +0 -0
- emojis/4.png +0 -0
- emojis/5.png +0 -0
- emojis/6.png +0 -0
- emojis/7.png +0 -0
- emojis/8.png +0 -0
- emojis/9.png +0 -0
- poetry.lock +1461 -0
- pyproject.toml +17 -0
- requirements.txt +74 -0
Makefile
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
install:
|
2 |
+
poetry install
|
3 |
+
poetry run pip list --format=freeze > requirements.txt
|
app.py
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
import torch
|
3 |
+
from PIL import Image
|
4 |
+
from transformers import CLIPProcessor, CLIPModel
|
5 |
+
|
6 |
+
checkpoint = "vincentclaes/emoji-predictor-few-shot"
|
7 |
+
no_of_emojis = range(20)
|
8 |
+
emojis_as_images = [Image.open(f"emojis/{i}.png") for i in no_of_emojis]
|
9 |
+
K = 4
|
10 |
+
|
11 |
+
processor = CLIPProcessor.from_pretrained(checkpoint)
|
12 |
+
model = CLIPModel.from_pretrained(checkpoint)
|
13 |
+
|
14 |
+
|
15 |
+
def get_emoji(text, model=model, processor=processor, emojis=emojis_as_images, K=4):
|
16 |
+
inputs = processor(text=text, images=emojis, return_tensors="pt", padding=True, truncation=True)
|
17 |
+
outputs = model(**inputs)
|
18 |
+
|
19 |
+
logits_per_text = outputs.logits_per_text
|
20 |
+
# we take the softmax to get the label probabilities
|
21 |
+
probs = logits_per_text.softmax(dim=1)
|
22 |
+
# top K number of options
|
23 |
+
predictions_suggestions_for_chunk = [torch.topk(prob, K).indices.tolist() for prob in probs][0]
|
24 |
+
predictions_suggestions_for_chunk
|
25 |
+
|
26 |
+
return [f"emojis/{i}.png" for i in predictions_suggestions_for_chunk]
|
27 |
+
|
28 |
+
text = gr.inputs.Textbox()
|
29 |
+
title = "Predicting an Emoji"
|
30 |
+
|
31 |
+
gr.Interface(fn=get_emoji, inputs=text, outputs=gr.Gallery(), title=title, enable_queue=True).launch(debug=True)
|
emojis/0.png
ADDED
emojis/1.png
ADDED
emojis/10.png
ADDED
emojis/11.png
ADDED
emojis/12.png
ADDED
emojis/13.png
ADDED
emojis/14.png
ADDED
emojis/15.png
ADDED
emojis/16.png
ADDED
emojis/17.png
ADDED
emojis/18.png
ADDED
emojis/19.png
ADDED
emojis/2.png
ADDED
emojis/20.png
ADDED
emojis/21.png
ADDED
emojis/22.png
ADDED
emojis/23.png
ADDED
emojis/24.png
ADDED
emojis/25.png
ADDED
emojis/26.png
ADDED
emojis/27.png
ADDED
emojis/28.png
ADDED
emojis/29.png
ADDED
emojis/3.png
ADDED
emojis/30.png
ADDED
emojis/31.png
ADDED
emojis/4.png
ADDED
emojis/5.png
ADDED
emojis/6.png
ADDED
emojis/7.png
ADDED
emojis/8.png
ADDED
emojis/9.png
ADDED
poetry.lock
ADDED
@@ -0,0 +1,1461 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[[package]]
|
2 |
+
name = "aiohttp"
|
3 |
+
version = "3.8.1"
|
4 |
+
description = "Async http client/server framework (asyncio)"
|
5 |
+
category = "main"
|
6 |
+
optional = false
|
7 |
+
python-versions = ">=3.6"
|
8 |
+
|
9 |
+
[package.dependencies]
|
10 |
+
aiosignal = ">=1.1.2"
|
11 |
+
async-timeout = ">=4.0.0a3,<5.0"
|
12 |
+
attrs = ">=17.3.0"
|
13 |
+
charset-normalizer = ">=2.0,<3.0"
|
14 |
+
frozenlist = ">=1.1.1"
|
15 |
+
multidict = ">=4.5,<7.0"
|
16 |
+
yarl = ">=1.0,<2.0"
|
17 |
+
|
18 |
+
[package.extras]
|
19 |
+
speedups = ["aiodns", "brotli", "cchardet"]
|
20 |
+
|
21 |
+
[[package]]
|
22 |
+
name = "aiosignal"
|
23 |
+
version = "1.2.0"
|
24 |
+
description = "aiosignal: a list of registered asynchronous callbacks"
|
25 |
+
category = "main"
|
26 |
+
optional = false
|
27 |
+
python-versions = ">=3.6"
|
28 |
+
|
29 |
+
[package.dependencies]
|
30 |
+
frozenlist = ">=1.1.0"
|
31 |
+
|
32 |
+
[[package]]
|
33 |
+
name = "analytics-python"
|
34 |
+
version = "1.4.0"
|
35 |
+
description = "The hassle-free way to integrate analytics into any python application."
|
36 |
+
category = "main"
|
37 |
+
optional = false
|
38 |
+
python-versions = "*"
|
39 |
+
|
40 |
+
[package.dependencies]
|
41 |
+
backoff = "1.10.0"
|
42 |
+
monotonic = ">=1.5"
|
43 |
+
python-dateutil = ">2.1"
|
44 |
+
requests = ">=2.7,<3.0"
|
45 |
+
six = ">=1.5"
|
46 |
+
|
47 |
+
[package.extras]
|
48 |
+
test = ["flake8 (==3.7.9)", "pylint (==1.9.3)", "mock (==2.0.0)"]
|
49 |
+
|
50 |
+
[[package]]
|
51 |
+
name = "anyio"
|
52 |
+
version = "3.6.1"
|
53 |
+
description = "High level compatibility layer for multiple asynchronous event loop implementations"
|
54 |
+
category = "main"
|
55 |
+
optional = false
|
56 |
+
python-versions = ">=3.6.2"
|
57 |
+
|
58 |
+
[package.dependencies]
|
59 |
+
idna = ">=2.8"
|
60 |
+
sniffio = ">=1.1"
|
61 |
+
|
62 |
+
[package.extras]
|
63 |
+
doc = ["packaging", "sphinx-rtd-theme", "sphinx-autodoc-typehints (>=1.2.0)"]
|
64 |
+
test = ["coverage[toml] (>=4.5)", "hypothesis (>=4.0)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "contextlib2", "uvloop (<0.15)", "mock (>=4)", "uvloop (>=0.15)"]
|
65 |
+
trio = ["trio (>=0.16)"]
|
66 |
+
|
67 |
+
[[package]]
|
68 |
+
name = "async-timeout"
|
69 |
+
version = "4.0.2"
|
70 |
+
description = "Timeout context manager for asyncio programs"
|
71 |
+
category = "main"
|
72 |
+
optional = false
|
73 |
+
python-versions = ">=3.6"
|
74 |
+
|
75 |
+
[[package]]
|
76 |
+
name = "attrs"
|
77 |
+
version = "22.1.0"
|
78 |
+
description = "Classes Without Boilerplate"
|
79 |
+
category = "main"
|
80 |
+
optional = false
|
81 |
+
python-versions = ">=3.5"
|
82 |
+
|
83 |
+
[package.extras]
|
84 |
+
dev = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "mypy (>=0.900,!=0.940)", "pytest-mypy-plugins", "zope.interface", "furo", "sphinx", "sphinx-notfound-page", "pre-commit", "cloudpickle"]
|
85 |
+
docs = ["furo", "sphinx", "zope.interface", "sphinx-notfound-page"]
|
86 |
+
tests = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "mypy (>=0.900,!=0.940)", "pytest-mypy-plugins", "zope.interface", "cloudpickle"]
|
87 |
+
tests_no_zope = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "mypy (>=0.900,!=0.940)", "pytest-mypy-plugins", "cloudpickle"]
|
88 |
+
|
89 |
+
[[package]]
|
90 |
+
name = "backoff"
|
91 |
+
version = "1.10.0"
|
92 |
+
description = "Function decoration for backoff and retry"
|
93 |
+
category = "main"
|
94 |
+
optional = false
|
95 |
+
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
|
96 |
+
|
97 |
+
[[package]]
|
98 |
+
name = "bcrypt"
|
99 |
+
version = "4.0.0"
|
100 |
+
description = "Modern password hashing for your software and your servers"
|
101 |
+
category = "main"
|
102 |
+
optional = false
|
103 |
+
python-versions = ">=3.6"
|
104 |
+
|
105 |
+
[package.extras]
|
106 |
+
tests = ["pytest (>=3.2.1,!=3.3.0)"]
|
107 |
+
typecheck = ["mypy"]
|
108 |
+
|
109 |
+
[[package]]
|
110 |
+
name = "certifi"
|
111 |
+
version = "2022.9.14"
|
112 |
+
description = "Python package for providing Mozilla's CA Bundle."
|
113 |
+
category = "main"
|
114 |
+
optional = false
|
115 |
+
python-versions = ">=3.6"
|
116 |
+
|
117 |
+
[[package]]
|
118 |
+
name = "cffi"
|
119 |
+
version = "1.15.1"
|
120 |
+
description = "Foreign Function Interface for Python calling C code."
|
121 |
+
category = "main"
|
122 |
+
optional = false
|
123 |
+
python-versions = "*"
|
124 |
+
|
125 |
+
[package.dependencies]
|
126 |
+
pycparser = "*"
|
127 |
+
|
128 |
+
[[package]]
|
129 |
+
name = "charset-normalizer"
|
130 |
+
version = "2.1.1"
|
131 |
+
description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet."
|
132 |
+
category = "main"
|
133 |
+
optional = false
|
134 |
+
python-versions = ">=3.6.0"
|
135 |
+
|
136 |
+
[package.extras]
|
137 |
+
unicode_backport = ["unicodedata2"]
|
138 |
+
|
139 |
+
[[package]]
|
140 |
+
name = "click"
|
141 |
+
version = "8.1.3"
|
142 |
+
description = "Composable command line interface toolkit"
|
143 |
+
category = "main"
|
144 |
+
optional = false
|
145 |
+
python-versions = ">=3.7"
|
146 |
+
|
147 |
+
[package.dependencies]
|
148 |
+
colorama = {version = "*", markers = "platform_system == \"Windows\""}
|
149 |
+
|
150 |
+
[[package]]
|
151 |
+
name = "colorama"
|
152 |
+
version = "0.4.5"
|
153 |
+
description = "Cross-platform colored terminal text."
|
154 |
+
category = "main"
|
155 |
+
optional = false
|
156 |
+
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
|
157 |
+
|
158 |
+
[[package]]
|
159 |
+
name = "commonmark"
|
160 |
+
version = "0.9.1"
|
161 |
+
description = "Python parser for the CommonMark Markdown spec"
|
162 |
+
category = "main"
|
163 |
+
optional = false
|
164 |
+
python-versions = "*"
|
165 |
+
|
166 |
+
[package.extras]
|
167 |
+
test = ["flake8 (==3.7.8)", "hypothesis (==3.55.3)"]
|
168 |
+
|
169 |
+
[[package]]
|
170 |
+
name = "contourpy"
|
171 |
+
version = "1.0.5"
|
172 |
+
description = "Python library for calculating contours of 2D quadrilateral grids"
|
173 |
+
category = "main"
|
174 |
+
optional = false
|
175 |
+
python-versions = ">=3.7"
|
176 |
+
|
177 |
+
[package.dependencies]
|
178 |
+
numpy = ">=1.16"
|
179 |
+
|
180 |
+
[package.extras]
|
181 |
+
test-no-codebase = ["pillow", "matplotlib", "pytest"]
|
182 |
+
test-minimal = ["pytest"]
|
183 |
+
test = ["isort", "flake8", "pillow", "matplotlib", "pytest"]
|
184 |
+
docs = ["sphinx-rtd-theme", "sphinx", "docutils (<0.18)"]
|
185 |
+
bokeh = ["selenium", "bokeh"]
|
186 |
+
|
187 |
+
[[package]]
|
188 |
+
name = "cryptography"
|
189 |
+
version = "38.0.1"
|
190 |
+
description = "cryptography is a package which provides cryptographic recipes and primitives to Python developers."
|
191 |
+
category = "main"
|
192 |
+
optional = false
|
193 |
+
python-versions = ">=3.6"
|
194 |
+
|
195 |
+
[package.dependencies]
|
196 |
+
cffi = ">=1.12"
|
197 |
+
|
198 |
+
[package.extras]
|
199 |
+
docs = ["sphinx (>=1.6.5,!=1.8.0,!=3.1.0,!=3.1.1)", "sphinx-rtd-theme"]
|
200 |
+
docstest = ["pyenchant (>=1.6.11)", "twine (>=1.12.0)", "sphinxcontrib-spelling (>=4.0.1)"]
|
201 |
+
pep8test = ["black", "flake8", "flake8-import-order", "pep8-naming"]
|
202 |
+
sdist = ["setuptools-rust (>=0.11.4)"]
|
203 |
+
ssh = ["bcrypt (>=3.1.5)"]
|
204 |
+
test = ["pytest (>=6.2.0)", "pytest-benchmark", "pytest-cov", "pytest-subtests", "pytest-xdist", "pretend", "iso8601", "pytz", "hypothesis (>=1.11.4,!=3.79.2)"]
|
205 |
+
|
206 |
+
[[package]]
|
207 |
+
name = "cycler"
|
208 |
+
version = "0.11.0"
|
209 |
+
description = "Composable style cycles"
|
210 |
+
category = "main"
|
211 |
+
optional = false
|
212 |
+
python-versions = ">=3.6"
|
213 |
+
|
214 |
+
[[package]]
|
215 |
+
name = "docarray"
|
216 |
+
version = "0.16.5"
|
217 |
+
description = "The data structure for unstructured data"
|
218 |
+
category = "main"
|
219 |
+
optional = false
|
220 |
+
python-versions = "*"
|
221 |
+
|
222 |
+
[package.dependencies]
|
223 |
+
numpy = "*"
|
224 |
+
rich = ">=12.0.0"
|
225 |
+
|
226 |
+
[package.extras]
|
227 |
+
annlite = ["annlite (>=0.3.10)"]
|
228 |
+
benchmark = ["pandas", "seaborn"]
|
229 |
+
common = ["protobuf (>=3.13.0)", "lz4", "requests", "matplotlib", "pillow", "fastapi", "uvicorn", "jina-hubble-sdk (>=0.11.0)"]
|
230 |
+
elasticsearch = ["elasticsearch (>=8.2.0)"]
|
231 |
+
full = ["protobuf (>=3.13.0)", "lz4", "requests", "matplotlib", "pillow", "trimesh", "scipy", "jina-hubble-sdk (>=0.10.0)", "av", "fastapi", "uvicorn", "strawberry-graphql"]
|
232 |
+
qdrant = ["qdrant-client (>=0.7.3,<0.8.0)"]
|
233 |
+
redis = ["redis (>=4.3.0)"]
|
234 |
+
test = ["pytest", "pytest-timeout", "pytest-mock", "pytest-cov", "pytest-repeat", "pytest-reraise", "mock", "pytest-custom-exit-code", "black (==22.3.0)", "tensorflow (==2.7.0)", "paddlepaddle (==2.2.0)", "torch (==1.9.0)", "torchvision (==0.10.0)", "datasets", "onnx", "onnxruntime", "jupyterlab", "transformers (>=4.16.2)", "weaviate-client (>=3.3.0,<3.4.0)", "annlite (>=0.3.10)", "elasticsearch (>=8.2.0)", "redis (>=4.3.0)", "jina"]
|
235 |
+
weaviate = ["weaviate-client (>=3.3.0,<3.4.0)"]
|
236 |
+
|
237 |
+
[[package]]
|
238 |
+
name = "fastapi"
|
239 |
+
version = "0.85.0"
|
240 |
+
description = "FastAPI framework, high performance, easy to learn, fast to code, ready for production"
|
241 |
+
category = "main"
|
242 |
+
optional = false
|
243 |
+
python-versions = ">=3.7"
|
244 |
+
|
245 |
+
[package.dependencies]
|
246 |
+
pydantic = ">=1.6.2,<1.7 || >1.7,<1.7.1 || >1.7.1,<1.7.2 || >1.7.2,<1.7.3 || >1.7.3,<1.8 || >1.8,<1.8.1 || >1.8.1,<2.0.0"
|
247 |
+
starlette = "0.20.4"
|
248 |
+
|
249 |
+
[package.extras]
|
250 |
+
all = ["email-validator (>=1.1.1,<2.0.0)", "itsdangerous (>=1.1.0,<3.0.0)", "jinja2 (>=2.11.2,<4.0.0)", "orjson (>=3.2.1,<4.0.0)", "python-multipart (>=0.0.5,<0.0.6)", "pyyaml (>=5.3.1,<7.0.0)", "requests (>=2.24.0,<3.0.0)", "ujson (>=4.0.1,!=4.0.2,!=4.1.0,!=4.2.0,!=4.3.0,!=5.0.0,!=5.1.0,<6.0.0)", "uvicorn[standard] (>=0.12.0,<0.19.0)"]
|
251 |
+
dev = ["autoflake (>=1.4.0,<2.0.0)", "flake8 (>=3.8.3,<6.0.0)", "pre-commit (>=2.17.0,<3.0.0)", "uvicorn[standard] (>=0.12.0,<0.19.0)"]
|
252 |
+
doc = ["mdx-include (>=1.4.1,<2.0.0)", "mkdocs-markdownextradata-plugin (>=0.1.7,<0.3.0)", "mkdocs-material (>=8.1.4,<9.0.0)", "mkdocs (>=1.1.2,<2.0.0)", "pyyaml (>=5.3.1,<7.0.0)", "typer (>=0.4.1,<0.7.0)"]
|
253 |
+
test = ["anyio[trio] (>=3.2.1,<4.0.0)", "black (==22.8.0)", "databases[sqlite] (>=0.3.2,<0.7.0)", "email-validator (>=1.1.1,<2.0.0)", "flake8 (>=3.8.3,<6.0.0)", "flask (>=1.1.2,<3.0.0)", "httpx (>=0.23.0,<0.24.0)", "isort (>=5.0.6,<6.0.0)", "mypy (==0.971)", "orjson (>=3.2.1,<4.0.0)", "passlib[bcrypt] (>=1.7.2,<2.0.0)", "peewee (>=3.13.3,<4.0.0)", "pytest-cov (>=2.12.0,<4.0.0)", "pytest (>=7.1.3,<8.0.0)", "python-jose[cryptography] (>=3.3.0,<4.0.0)", "python-multipart (>=0.0.5,<0.0.6)", "pyyaml (>=5.3.1,<7.0.0)", "requests (>=2.24.0,<3.0.0)", "sqlalchemy (>=1.3.18,<1.5.0)", "types-orjson (==3.6.2)", "types-ujson (==5.4.0)", "ujson (>=4.0.1,!=4.0.2,!=4.1.0,!=4.2.0,!=4.3.0,!=5.0.0,!=5.1.0,<6.0.0)"]
|
254 |
+
|
255 |
+
[[package]]
|
256 |
+
name = "ffmpy"
|
257 |
+
version = "0.3.0"
|
258 |
+
description = "A simple Python wrapper for ffmpeg"
|
259 |
+
category = "main"
|
260 |
+
optional = false
|
261 |
+
python-versions = "*"
|
262 |
+
|
263 |
+
[[package]]
|
264 |
+
name = "filelock"
|
265 |
+
version = "3.8.0"
|
266 |
+
description = "A platform independent file lock."
|
267 |
+
category = "main"
|
268 |
+
optional = false
|
269 |
+
python-versions = ">=3.7"
|
270 |
+
|
271 |
+
[package.extras]
|
272 |
+
docs = ["furo (>=2022.6.21)", "sphinx (>=5.1.1)", "sphinx-autodoc-typehints (>=1.19.1)"]
|
273 |
+
testing = ["covdefaults (>=2.2)", "coverage (>=6.4.2)", "pytest (>=7.1.2)", "pytest-cov (>=3)", "pytest-timeout (>=2.1)"]
|
274 |
+
|
275 |
+
[[package]]
|
276 |
+
name = "fonttools"
|
277 |
+
version = "4.37.2"
|
278 |
+
description = "Tools to manipulate font files"
|
279 |
+
category = "main"
|
280 |
+
optional = false
|
281 |
+
python-versions = ">=3.7"
|
282 |
+
|
283 |
+
[package.extras]
|
284 |
+
all = ["fs (>=2.2.0,<3)", "lxml (>=4.0,<5)", "zopfli (>=0.1.4)", "lz4 (>=1.7.4.2)", "matplotlib", "sympy", "skia-pathops (>=0.5.0)", "uharfbuzz (>=0.23.0)", "brotlicffi (>=0.8.0)", "scipy", "brotli (>=1.0.1)", "munkres", "unicodedata2 (>=14.0.0)", "xattr"]
|
285 |
+
graphite = ["lz4 (>=1.7.4.2)"]
|
286 |
+
interpolatable = ["scipy", "munkres"]
|
287 |
+
lxml = ["lxml (>=4.0,<5)"]
|
288 |
+
pathops = ["skia-pathops (>=0.5.0)"]
|
289 |
+
plot = ["matplotlib"]
|
290 |
+
repacker = ["uharfbuzz (>=0.23.0)"]
|
291 |
+
symfont = ["sympy"]
|
292 |
+
type1 = ["xattr"]
|
293 |
+
ufo = ["fs (>=2.2.0,<3)"]
|
294 |
+
unicode = ["unicodedata2 (>=14.0.0)"]
|
295 |
+
woff = ["zopfli (>=0.1.4)", "brotlicffi (>=0.8.0)", "brotli (>=1.0.1)"]
|
296 |
+
|
297 |
+
[[package]]
|
298 |
+
name = "frozenlist"
|
299 |
+
version = "1.3.1"
|
300 |
+
description = "A list-like structure which implements collections.abc.MutableSequence"
|
301 |
+
category = "main"
|
302 |
+
optional = false
|
303 |
+
python-versions = ">=3.7"
|
304 |
+
|
305 |
+
[[package]]
|
306 |
+
name = "fsspec"
|
307 |
+
version = "2022.8.2"
|
308 |
+
description = "File-system specification"
|
309 |
+
category = "main"
|
310 |
+
optional = false
|
311 |
+
python-versions = ">=3.7"
|
312 |
+
|
313 |
+
[package.extras]
|
314 |
+
abfs = ["adlfs"]
|
315 |
+
adl = ["adlfs"]
|
316 |
+
arrow = ["pyarrow (>=1)"]
|
317 |
+
dask = ["dask", "distributed"]
|
318 |
+
dropbox = ["dropboxdrivefs", "requests", "dropbox"]
|
319 |
+
entrypoints = ["importlib-metadata"]
|
320 |
+
fuse = ["fusepy"]
|
321 |
+
gcs = ["gcsfs"]
|
322 |
+
git = ["pygit2"]
|
323 |
+
github = ["requests"]
|
324 |
+
gs = ["gcsfs"]
|
325 |
+
gui = ["panel"]
|
326 |
+
hdfs = ["pyarrow (>=1)"]
|
327 |
+
http = ["requests", "aiohttp (!=4.0.0a0,!=4.0.0a1)"]
|
328 |
+
libarchive = ["libarchive-c"]
|
329 |
+
oci = ["ocifs"]
|
330 |
+
s3 = ["s3fs"]
|
331 |
+
sftp = ["paramiko"]
|
332 |
+
smb = ["smbprotocol"]
|
333 |
+
ssh = ["paramiko"]
|
334 |
+
tqdm = ["tqdm"]
|
335 |
+
|
336 |
+
[[package]]
|
337 |
+
name = "gradio"
|
338 |
+
version = "3.3.1"
|
339 |
+
description = "Python library for easily interacting with trained machine learning models"
|
340 |
+
category = "main"
|
341 |
+
optional = false
|
342 |
+
python-versions = ">=3.7"
|
343 |
+
|
344 |
+
[package.dependencies]
|
345 |
+
aiohttp = "*"
|
346 |
+
analytics-python = "*"
|
347 |
+
fastapi = "*"
|
348 |
+
ffmpy = "*"
|
349 |
+
fsspec = "*"
|
350 |
+
h11 = ">=0.11,<0.13"
|
351 |
+
httpx = "*"
|
352 |
+
jinja2 = "*"
|
353 |
+
markdown-it-py = {version = "*", extras = ["linkify", "plugins"]}
|
354 |
+
matplotlib = "*"
|
355 |
+
numpy = "*"
|
356 |
+
orjson = "*"
|
357 |
+
pandas = "*"
|
358 |
+
paramiko = "*"
|
359 |
+
pillow = "*"
|
360 |
+
pycryptodome = "*"
|
361 |
+
pydantic = "*"
|
362 |
+
pydub = "*"
|
363 |
+
python-multipart = "*"
|
364 |
+
pyyaml = "*"
|
365 |
+
requests = "*"
|
366 |
+
uvicorn = "*"
|
367 |
+
websockets = "*"
|
368 |
+
|
369 |
+
[[package]]
|
370 |
+
name = "h11"
|
371 |
+
version = "0.12.0"
|
372 |
+
description = "A pure-Python, bring-your-own-I/O implementation of HTTP/1.1"
|
373 |
+
category = "main"
|
374 |
+
optional = false
|
375 |
+
python-versions = ">=3.6"
|
376 |
+
|
377 |
+
[[package]]
|
378 |
+
name = "httpcore"
|
379 |
+
version = "0.15.0"
|
380 |
+
description = "A minimal low-level HTTP client."
|
381 |
+
category = "main"
|
382 |
+
optional = false
|
383 |
+
python-versions = ">=3.7"
|
384 |
+
|
385 |
+
[package.dependencies]
|
386 |
+
anyio = ">=3.0.0,<4.0.0"
|
387 |
+
certifi = "*"
|
388 |
+
h11 = ">=0.11,<0.13"
|
389 |
+
sniffio = ">=1.0.0,<2.0.0"
|
390 |
+
|
391 |
+
[package.extras]
|
392 |
+
http2 = ["h2 (>=3,<5)"]
|
393 |
+
socks = ["socksio (>=1.0.0,<2.0.0)"]
|
394 |
+
|
395 |
+
[[package]]
|
396 |
+
name = "httpx"
|
397 |
+
version = "0.23.0"
|
398 |
+
description = "The next generation HTTP client."
|
399 |
+
category = "main"
|
400 |
+
optional = false
|
401 |
+
python-versions = ">=3.7"
|
402 |
+
|
403 |
+
[package.dependencies]
|
404 |
+
certifi = "*"
|
405 |
+
httpcore = ">=0.15.0,<0.16.0"
|
406 |
+
rfc3986 = {version = ">=1.3,<2", extras = ["idna2008"]}
|
407 |
+
sniffio = "*"
|
408 |
+
|
409 |
+
[package.extras]
|
410 |
+
brotli = ["brotlicffi", "brotli"]
|
411 |
+
cli = ["click (>=8.0.0,<9.0.0)", "rich (>=10,<13)", "pygments (>=2.0.0,<3.0.0)"]
|
412 |
+
http2 = ["h2 (>=3,<5)"]
|
413 |
+
socks = ["socksio (>=1.0.0,<2.0.0)"]
|
414 |
+
|
415 |
+
[[package]]
|
416 |
+
name = "huggingface-hub"
|
417 |
+
version = "0.9.1"
|
418 |
+
description = "Client library to download and publish models, datasets and other repos on the huggingface.co hub"
|
419 |
+
category = "main"
|
420 |
+
optional = false
|
421 |
+
python-versions = ">=3.7.0"
|
422 |
+
|
423 |
+
[package.dependencies]
|
424 |
+
filelock = "*"
|
425 |
+
packaging = ">=20.9"
|
426 |
+
pyyaml = ">=5.1"
|
427 |
+
requests = "*"
|
428 |
+
tqdm = "*"
|
429 |
+
typing-extensions = ">=3.7.4.3"
|
430 |
+
|
431 |
+
[package.extras]
|
432 |
+
torch = ["torch"]
|
433 |
+
testing = ["soundfile", "datasets", "pytest-cov", "pytest"]
|
434 |
+
tensorflow = ["graphviz", "pydot", "tensorflow"]
|
435 |
+
quality = ["flake8-bugbear", "flake8 (>=3.8.3)", "isort (>=5.5.4)", "black (==22.3)"]
|
436 |
+
fastai = ["fastcore (>=1.3.27)", "fastai (>=2.4)", "toml"]
|
437 |
+
dev = ["flake8-bugbear", "flake8 (>=3.8.3)", "isort (>=5.5.4)", "black (==22.3)", "soundfile", "datasets", "pytest-cov", "pytest"]
|
438 |
+
all = ["flake8-bugbear", "flake8 (>=3.8.3)", "isort (>=5.5.4)", "black (==22.3)", "soundfile", "datasets", "pytest-cov", "pytest"]
|
439 |
+
|
440 |
+
[[package]]
|
441 |
+
name = "idna"
|
442 |
+
version = "3.4"
|
443 |
+
description = "Internationalized Domain Names in Applications (IDNA)"
|
444 |
+
category = "main"
|
445 |
+
optional = false
|
446 |
+
python-versions = ">=3.5"
|
447 |
+
|
448 |
+
[[package]]
|
449 |
+
name = "jinja2"
|
450 |
+
version = "3.1.2"
|
451 |
+
description = "A very fast and expressive template engine."
|
452 |
+
category = "main"
|
453 |
+
optional = false
|
454 |
+
python-versions = ">=3.7"
|
455 |
+
|
456 |
+
[package.dependencies]
|
457 |
+
MarkupSafe = ">=2.0"
|
458 |
+
|
459 |
+
[package.extras]
|
460 |
+
i18n = ["Babel (>=2.7)"]
|
461 |
+
|
462 |
+
[[package]]
|
463 |
+
name = "kiwisolver"
|
464 |
+
version = "1.4.4"
|
465 |
+
description = "A fast implementation of the Cassowary constraint solver"
|
466 |
+
category = "main"
|
467 |
+
optional = false
|
468 |
+
python-versions = ">=3.7"
|
469 |
+
|
470 |
+
[[package]]
|
471 |
+
name = "linkify-it-py"
|
472 |
+
version = "1.0.3"
|
473 |
+
description = "Links recognition library with FULL unicode support."
|
474 |
+
category = "main"
|
475 |
+
optional = false
|
476 |
+
python-versions = ">=3.6"
|
477 |
+
|
478 |
+
[package.dependencies]
|
479 |
+
uc-micro-py = "*"
|
480 |
+
|
481 |
+
[package.extras]
|
482 |
+
test = ["pytest-cov", "pytest", "coverage"]
|
483 |
+
doc = ["myst-parser", "sphinx-book-theme", "sphinx"]
|
484 |
+
dev = ["black", "flake8", "isort", "pre-commit"]
|
485 |
+
benchmark = ["pytest-benchmark", "pytest"]
|
486 |
+
|
487 |
+
[[package]]
|
488 |
+
name = "markdown-it-py"
|
489 |
+
version = "2.1.0"
|
490 |
+
description = "Python port of markdown-it. Markdown parsing, done right!"
|
491 |
+
category = "main"
|
492 |
+
optional = false
|
493 |
+
python-versions = ">=3.7"
|
494 |
+
|
495 |
+
[package.dependencies]
|
496 |
+
linkify-it-py = {version = ">=1.0,<2.0", optional = true, markers = "extra == \"linkify\""}
|
497 |
+
mdit-py-plugins = {version = "*", optional = true, markers = "extra == \"plugins\""}
|
498 |
+
mdurl = ">=0.1,<1.0"
|
499 |
+
|
500 |
+
[package.extras]
|
501 |
+
testing = ["pytest-regressions", "pytest-cov", "pytest", "coverage"]
|
502 |
+
rtd = ["sphinx-book-theme", "sphinx-design", "sphinx-copybutton", "sphinx", "pyyaml", "myst-parser", "attrs"]
|
503 |
+
profiling = ["gprof2dot"]
|
504 |
+
plugins = ["mdit-py-plugins"]
|
505 |
+
linkify = ["linkify-it-py (>=1.0,<2.0)"]
|
506 |
+
compare = ["panflute (>=2.1.3,<2.2.0)", "mistune (>=2.0.2,<2.1.0)", "mistletoe (>=0.8.1,<0.9.0)", "markdown (>=3.3.6,<3.4.0)", "commonmark (>=0.9.1,<0.10.0)"]
|
507 |
+
code_style = ["pre-commit (==2.6)"]
|
508 |
+
benchmarking = ["pytest-benchmark (>=3.2,<4.0)", "pytest", "psutil"]
|
509 |
+
|
510 |
+
[[package]]
|
511 |
+
name = "markupsafe"
|
512 |
+
version = "2.1.1"
|
513 |
+
description = "Safely add untrusted strings to HTML/XML markup."
|
514 |
+
category = "main"
|
515 |
+
optional = false
|
516 |
+
python-versions = ">=3.7"
|
517 |
+
|
518 |
+
[[package]]
|
519 |
+
name = "matplotlib"
|
520 |
+
version = "3.6.0"
|
521 |
+
description = "Python plotting package"
|
522 |
+
category = "main"
|
523 |
+
optional = false
|
524 |
+
python-versions = ">=3.8"
|
525 |
+
|
526 |
+
[package.dependencies]
|
527 |
+
contourpy = ">=1.0.1"
|
528 |
+
cycler = ">=0.10"
|
529 |
+
fonttools = ">=4.22.0"
|
530 |
+
kiwisolver = ">=1.0.1"
|
531 |
+
numpy = ">=1.19"
|
532 |
+
packaging = ">=20.0"
|
533 |
+
pillow = ">=6.2.0"
|
534 |
+
pyparsing = ">=2.2.1"
|
535 |
+
python-dateutil = ">=2.7"
|
536 |
+
setuptools_scm = ">=7"
|
537 |
+
|
538 |
+
[[package]]
|
539 |
+
name = "mdit-py-plugins"
|
540 |
+
version = "0.3.0"
|
541 |
+
description = "Collection of plugins for markdown-it-py"
|
542 |
+
category = "main"
|
543 |
+
optional = false
|
544 |
+
python-versions = "~=3.6"
|
545 |
+
|
546 |
+
[package.dependencies]
|
547 |
+
markdown-it-py = ">=1.0.0,<3.0.0"
|
548 |
+
|
549 |
+
[package.extras]
|
550 |
+
testing = ["pytest-regressions", "pytest-cov", "pytest (>=3.6,<4)", "coverage"]
|
551 |
+
rtd = ["sphinx-book-theme (>=0.1.0,<0.2.0)", "myst-parser (>=0.14.0,<0.15.0)"]
|
552 |
+
code_style = ["pre-commit (==2.6)"]
|
553 |
+
|
554 |
+
[[package]]
|
555 |
+
name = "mdurl"
|
556 |
+
version = "0.1.2"
|
557 |
+
description = "Markdown URL utilities"
|
558 |
+
category = "main"
|
559 |
+
optional = false
|
560 |
+
python-versions = ">=3.7"
|
561 |
+
|
562 |
+
[[package]]
|
563 |
+
name = "monotonic"
|
564 |
+
version = "1.6"
|
565 |
+
description = "An implementation of time.monotonic() for Python 2 & < 3.3"
|
566 |
+
category = "main"
|
567 |
+
optional = false
|
568 |
+
python-versions = "*"
|
569 |
+
|
570 |
+
[[package]]
|
571 |
+
name = "multidict"
|
572 |
+
version = "6.0.2"
|
573 |
+
description = "multidict implementation"
|
574 |
+
category = "main"
|
575 |
+
optional = false
|
576 |
+
python-versions = ">=3.7"
|
577 |
+
|
578 |
+
[[package]]
|
579 |
+
name = "numpy"
|
580 |
+
version = "1.23.3"
|
581 |
+
description = "NumPy is the fundamental package for array computing with Python."
|
582 |
+
category = "main"
|
583 |
+
optional = false
|
584 |
+
python-versions = ">=3.8"
|
585 |
+
|
586 |
+
[[package]]
|
587 |
+
name = "orjson"
|
588 |
+
version = "3.8.0"
|
589 |
+
description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy"
|
590 |
+
category = "main"
|
591 |
+
optional = false
|
592 |
+
python-versions = ">=3.7"
|
593 |
+
|
594 |
+
[[package]]
|
595 |
+
name = "packaging"
|
596 |
+
version = "21.3"
|
597 |
+
description = "Core utilities for Python packages"
|
598 |
+
category = "main"
|
599 |
+
optional = false
|
600 |
+
python-versions = ">=3.6"
|
601 |
+
|
602 |
+
[package.dependencies]
|
603 |
+
pyparsing = ">=2.0.2,<3.0.5 || >3.0.5"
|
604 |
+
|
605 |
+
[[package]]
|
606 |
+
name = "pandas"
|
607 |
+
version = "1.4.4"
|
608 |
+
description = "Powerful data structures for data analysis, time series, and statistics"
|
609 |
+
category = "main"
|
610 |
+
optional = false
|
611 |
+
python-versions = ">=3.8"
|
612 |
+
|
613 |
+
[package.dependencies]
|
614 |
+
numpy = [
|
615 |
+
{version = ">=1.18.5", markers = "platform_machine != \"aarch64\" and platform_machine != \"arm64\" and python_version < \"3.10\""},
|
616 |
+
{version = ">=1.19.2", markers = "platform_machine == \"aarch64\" and python_version < \"3.10\""},
|
617 |
+
{version = ">=1.20.0", markers = "platform_machine == \"arm64\" and python_version < \"3.10\""},
|
618 |
+
{version = ">=1.21.0", markers = "python_version >= \"3.10\""},
|
619 |
+
]
|
620 |
+
python-dateutil = ">=2.8.1"
|
621 |
+
pytz = ">=2020.1"
|
622 |
+
|
623 |
+
[package.extras]
|
624 |
+
test = ["hypothesis (>=5.5.3)", "pytest (>=6.0)", "pytest-xdist (>=1.31)"]
|
625 |
+
|
626 |
+
[[package]]
|
627 |
+
name = "paramiko"
|
628 |
+
version = "2.11.0"
|
629 |
+
description = "SSH2 protocol library"
|
630 |
+
category = "main"
|
631 |
+
optional = false
|
632 |
+
python-versions = "*"
|
633 |
+
|
634 |
+
[package.dependencies]
|
635 |
+
bcrypt = ">=3.1.3"
|
636 |
+
cryptography = ">=2.5"
|
637 |
+
pynacl = ">=1.0.1"
|
638 |
+
six = "*"
|
639 |
+
|
640 |
+
[package.extras]
|
641 |
+
all = ["pyasn1 (>=0.1.7)", "pynacl (>=1.0.1)", "bcrypt (>=3.1.3)", "invoke (>=1.3)", "gssapi (>=1.4.1)", "pywin32 (>=2.1.8)"]
|
642 |
+
ed25519 = ["pynacl (>=1.0.1)", "bcrypt (>=3.1.3)"]
|
643 |
+
gssapi = ["pyasn1 (>=0.1.7)", "gssapi (>=1.4.1)", "pywin32 (>=2.1.8)"]
|
644 |
+
invoke = ["invoke (>=1.3)"]
|
645 |
+
|
646 |
+
[[package]]
|
647 |
+
name = "pillow"
|
648 |
+
version = "9.2.0"
|
649 |
+
description = "Python Imaging Library (Fork)"
|
650 |
+
category = "main"
|
651 |
+
optional = false
|
652 |
+
python-versions = ">=3.7"
|
653 |
+
|
654 |
+
[package.extras]
|
655 |
+
docs = ["furo", "olefile", "sphinx (>=2.4)", "sphinx-copybutton", "sphinx-issues (>=3.0.1)", "sphinx-removed-in", "sphinxext-opengraph"]
|
656 |
+
tests = ["check-manifest", "coverage", "defusedxml", "markdown2", "olefile", "packaging", "pyroma", "pytest", "pytest-cov", "pytest-timeout"]
|
657 |
+
|
658 |
+
[[package]]
|
659 |
+
name = "pycparser"
|
660 |
+
version = "2.21"
|
661 |
+
description = "C parser in Python"
|
662 |
+
category = "main"
|
663 |
+
optional = false
|
664 |
+
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
|
665 |
+
|
666 |
+
[[package]]
|
667 |
+
name = "pycryptodome"
|
668 |
+
version = "3.15.0"
|
669 |
+
description = "Cryptographic library for Python"
|
670 |
+
category = "main"
|
671 |
+
optional = false
|
672 |
+
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
|
673 |
+
|
674 |
+
[[package]]
|
675 |
+
name = "pydantic"
|
676 |
+
version = "1.10.2"
|
677 |
+
description = "Data validation and settings management using python type hints"
|
678 |
+
category = "main"
|
679 |
+
optional = false
|
680 |
+
python-versions = ">=3.7"
|
681 |
+
|
682 |
+
[package.dependencies]
|
683 |
+
typing-extensions = ">=4.1.0"
|
684 |
+
|
685 |
+
[package.extras]
|
686 |
+
dotenv = ["python-dotenv (>=0.10.4)"]
|
687 |
+
email = ["email-validator (>=1.0.3)"]
|
688 |
+
|
689 |
+
[[package]]
|
690 |
+
name = "pydub"
|
691 |
+
version = "0.25.1"
|
692 |
+
description = "Manipulate audio with an simple and easy high level interface"
|
693 |
+
category = "main"
|
694 |
+
optional = false
|
695 |
+
python-versions = "*"
|
696 |
+
|
697 |
+
[[package]]
|
698 |
+
name = "pygments"
|
699 |
+
version = "2.13.0"
|
700 |
+
description = "Pygments is a syntax highlighting package written in Python."
|
701 |
+
category = "main"
|
702 |
+
optional = false
|
703 |
+
python-versions = ">=3.6"
|
704 |
+
|
705 |
+
[package.extras]
|
706 |
+
plugins = ["importlib-metadata"]
|
707 |
+
|
708 |
+
[[package]]
|
709 |
+
name = "pynacl"
|
710 |
+
version = "1.5.0"
|
711 |
+
description = "Python binding to the Networking and Cryptography (NaCl) library"
|
712 |
+
category = "main"
|
713 |
+
optional = false
|
714 |
+
python-versions = ">=3.6"
|
715 |
+
|
716 |
+
[package.dependencies]
|
717 |
+
cffi = ">=1.4.1"
|
718 |
+
|
719 |
+
[package.extras]
|
720 |
+
docs = ["sphinx (>=1.6.5)", "sphinx-rtd-theme"]
|
721 |
+
tests = ["pytest (>=3.2.1,!=3.3.0)", "hypothesis (>=3.27.0)"]
|
722 |
+
|
723 |
+
[[package]]
|
724 |
+
name = "pyparsing"
|
725 |
+
version = "3.0.9"
|
726 |
+
description = "pyparsing module - Classes and methods to define and execute parsing grammars"
|
727 |
+
category = "main"
|
728 |
+
optional = false
|
729 |
+
python-versions = ">=3.6.8"
|
730 |
+
|
731 |
+
[package.extras]
|
732 |
+
diagrams = ["railroad-diagrams", "jinja2"]
|
733 |
+
|
734 |
+
[[package]]
|
735 |
+
name = "python-dateutil"
|
736 |
+
version = "2.8.2"
|
737 |
+
description = "Extensions to the standard Python datetime module"
|
738 |
+
category = "main"
|
739 |
+
optional = false
|
740 |
+
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7"
|
741 |
+
|
742 |
+
[package.dependencies]
|
743 |
+
six = ">=1.5"
|
744 |
+
|
745 |
+
[[package]]
|
746 |
+
name = "python-multipart"
|
747 |
+
version = "0.0.5"
|
748 |
+
description = "A streaming multipart parser for Python"
|
749 |
+
category = "main"
|
750 |
+
optional = false
|
751 |
+
python-versions = "*"
|
752 |
+
|
753 |
+
[package.dependencies]
|
754 |
+
six = ">=1.4.0"
|
755 |
+
|
756 |
+
[[package]]
|
757 |
+
name = "pytz"
|
758 |
+
version = "2022.2.1"
|
759 |
+
description = "World timezone definitions, modern and historical"
|
760 |
+
category = "main"
|
761 |
+
optional = false
|
762 |
+
python-versions = "*"
|
763 |
+
|
764 |
+
[[package]]
|
765 |
+
name = "pyyaml"
|
766 |
+
version = "6.0"
|
767 |
+
description = "YAML parser and emitter for Python"
|
768 |
+
category = "main"
|
769 |
+
optional = false
|
770 |
+
python-versions = ">=3.6"
|
771 |
+
|
772 |
+
[[package]]
|
773 |
+
name = "regex"
|
774 |
+
version = "2022.9.13"
|
775 |
+
description = "Alternative regular expression module, to replace re."
|
776 |
+
category = "main"
|
777 |
+
optional = false
|
778 |
+
python-versions = ">=3.6"
|
779 |
+
|
780 |
+
[[package]]
|
781 |
+
name = "requests"
|
782 |
+
version = "2.28.1"
|
783 |
+
description = "Python HTTP for Humans."
|
784 |
+
category = "main"
|
785 |
+
optional = false
|
786 |
+
python-versions = ">=3.7, <4"
|
787 |
+
|
788 |
+
[package.dependencies]
|
789 |
+
certifi = ">=2017.4.17"
|
790 |
+
charset-normalizer = ">=2,<3"
|
791 |
+
idna = ">=2.5,<4"
|
792 |
+
urllib3 = ">=1.21.1,<1.27"
|
793 |
+
|
794 |
+
[package.extras]
|
795 |
+
socks = ["PySocks (>=1.5.6,!=1.5.7)"]
|
796 |
+
use_chardet_on_py3 = ["chardet (>=3.0.2,<6)"]
|
797 |
+
|
798 |
+
[[package]]
|
799 |
+
name = "rfc3986"
|
800 |
+
version = "1.5.0"
|
801 |
+
description = "Validating URI References per RFC 3986"
|
802 |
+
category = "main"
|
803 |
+
optional = false
|
804 |
+
python-versions = "*"
|
805 |
+
|
806 |
+
[package.dependencies]
|
807 |
+
idna = {version = "*", optional = true, markers = "extra == \"idna2008\""}
|
808 |
+
|
809 |
+
[package.extras]
|
810 |
+
idna2008 = ["idna"]
|
811 |
+
|
812 |
+
[[package]]
|
813 |
+
name = "rich"
|
814 |
+
version = "12.5.1"
|
815 |
+
description = "Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal"
|
816 |
+
category = "main"
|
817 |
+
optional = false
|
818 |
+
python-versions = ">=3.6.3,<4.0.0"
|
819 |
+
|
820 |
+
[package.dependencies]
|
821 |
+
commonmark = ">=0.9.0,<0.10.0"
|
822 |
+
pygments = ">=2.6.0,<3.0.0"
|
823 |
+
|
824 |
+
[package.extras]
|
825 |
+
jupyter = ["ipywidgets (>=7.5.1,<8.0.0)"]
|
826 |
+
|
827 |
+
[[package]]
|
828 |
+
name = "setuptools-scm"
|
829 |
+
version = "7.0.5"
|
830 |
+
description = "the blessed package to manage your versions by scm tags"
|
831 |
+
category = "main"
|
832 |
+
optional = false
|
833 |
+
python-versions = ">=3.7"
|
834 |
+
|
835 |
+
[package.dependencies]
|
836 |
+
packaging = ">=20.0"
|
837 |
+
tomli = ">=1.0.0"
|
838 |
+
typing-extensions = "*"
|
839 |
+
|
840 |
+
[package.extras]
|
841 |
+
test = ["pytest (>=6.2)", "virtualenv (>20)"]
|
842 |
+
toml = ["setuptools (>=42)"]
|
843 |
+
|
844 |
+
[[package]]
|
845 |
+
name = "six"
|
846 |
+
version = "1.16.0"
|
847 |
+
description = "Python 2 and 3 compatibility utilities"
|
848 |
+
category = "main"
|
849 |
+
optional = false
|
850 |
+
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*"
|
851 |
+
|
852 |
+
[[package]]
|
853 |
+
name = "sniffio"
|
854 |
+
version = "1.3.0"
|
855 |
+
description = "Sniff out which async library your code is running under"
|
856 |
+
category = "main"
|
857 |
+
optional = false
|
858 |
+
python-versions = ">=3.7"
|
859 |
+
|
860 |
+
[[package]]
|
861 |
+
name = "starlette"
|
862 |
+
version = "0.20.4"
|
863 |
+
description = "The little ASGI library that shines."
|
864 |
+
category = "main"
|
865 |
+
optional = false
|
866 |
+
python-versions = ">=3.7"
|
867 |
+
|
868 |
+
[package.dependencies]
|
869 |
+
anyio = ">=3.4.0,<5"
|
870 |
+
typing-extensions = {version = ">=3.10.0", markers = "python_version < \"3.10\""}
|
871 |
+
|
872 |
+
[package.extras]
|
873 |
+
full = ["itsdangerous", "jinja2", "python-multipart", "pyyaml", "requests"]
|
874 |
+
|
875 |
+
[[package]]
|
876 |
+
name = "tokenizers"
|
877 |
+
version = "0.12.1"
|
878 |
+
description = "Fast and Customizable Tokenizers"
|
879 |
+
category = "main"
|
880 |
+
optional = false
|
881 |
+
python-versions = "*"
|
882 |
+
|
883 |
+
[package.extras]
|
884 |
+
docs = ["sphinx", "sphinx-rtd-theme", "setuptools-rust"]
|
885 |
+
testing = ["pytest", "requests", "numpy", "datasets"]
|
886 |
+
|
887 |
+
[[package]]
|
888 |
+
name = "tomli"
|
889 |
+
version = "2.0.1"
|
890 |
+
description = "A lil' TOML parser"
|
891 |
+
category = "main"
|
892 |
+
optional = false
|
893 |
+
python-versions = ">=3.7"
|
894 |
+
|
895 |
+
[[package]]
|
896 |
+
name = "torch"
|
897 |
+
version = "1.12.1"
|
898 |
+
description = "Tensors and Dynamic neural networks in Python with strong GPU acceleration"
|
899 |
+
category = "main"
|
900 |
+
optional = false
|
901 |
+
python-versions = ">=3.7.0"
|
902 |
+
|
903 |
+
[package.dependencies]
|
904 |
+
typing-extensions = "*"
|
905 |
+
|
906 |
+
[[package]]
|
907 |
+
name = "tqdm"
|
908 |
+
version = "4.64.1"
|
909 |
+
description = "Fast, Extensible Progress Meter"
|
910 |
+
category = "main"
|
911 |
+
optional = false
|
912 |
+
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,>=2.7"
|
913 |
+
|
914 |
+
[package.dependencies]
|
915 |
+
colorama = {version = "*", markers = "platform_system == \"Windows\""}
|
916 |
+
|
917 |
+
[package.extras]
|
918 |
+
dev = ["py-make (>=0.1.0)", "twine", "wheel"]
|
919 |
+
notebook = ["ipywidgets (>=6)"]
|
920 |
+
slack = ["slack-sdk"]
|
921 |
+
telegram = ["requests"]
|
922 |
+
|
923 |
+
[[package]]
|
924 |
+
name = "transformers"
|
925 |
+
version = "4.22.1"
|
926 |
+
description = "State-of-the-art Machine Learning for JAX, PyTorch and TensorFlow"
|
927 |
+
category = "main"
|
928 |
+
optional = false
|
929 |
+
python-versions = ">=3.7.0"
|
930 |
+
|
931 |
+
[package.dependencies]
|
932 |
+
filelock = "*"
|
933 |
+
huggingface-hub = ">=0.9.0,<1.0"
|
934 |
+
numpy = ">=1.17"
|
935 |
+
packaging = ">=20.0"
|
936 |
+
pyyaml = ">=5.1"
|
937 |
+
regex = "!=2019.12.17"
|
938 |
+
requests = "*"
|
939 |
+
tokenizers = ">=0.11.1,<0.11.3 || >0.11.3,<0.13"
|
940 |
+
tqdm = ">=4.27"
|
941 |
+
|
942 |
+
[package.extras]
|
943 |
+
accelerate = ["accelerate (>=0.10.0)"]
|
944 |
+
all = ["tensorflow (>=2.3)", "onnxconverter-common", "tf2onnx", "tensorflow-text", "torch (>=1.0)", "jax (>=0.2.8,!=0.3.2,<=0.3.6)", "jaxlib (>=0.1.65,<=0.3.6)", "flax (>=0.4.1)", "optax (>=0.0.8)", "sentencepiece (>=0.1.91,!=0.1.92)", "protobuf (<=3.20.1)", "tokenizers (>=0.11.1,!=0.11.3,<0.13)", "torchaudio", "librosa", "pyctcdecode (>=0.3.0)", "phonemizer", "pillow", "optuna", "ray", "sigopt", "timm", "codecarbon (==1.2.0)", "accelerate (>=0.10.0)"]
|
945 |
+
audio = ["librosa", "pyctcdecode (>=0.3.0)", "phonemizer"]
|
946 |
+
codecarbon = ["codecarbon (==1.2.0)"]
|
947 |
+
deepspeed = ["deepspeed (>=0.6.5)", "accelerate (>=0.10.0)"]
|
948 |
+
deepspeed-testing = ["deepspeed (>=0.6.5)", "accelerate (>=0.10.0)", "pytest", "pytest-xdist", "timeout-decorator", "parameterized", "psutil", "datasets", "dill (<0.3.5)", "evaluate (>=0.2.0)", "pytest-timeout", "black (==22.3)", "sacrebleu (>=1.4.12,<2.0.0)", "rouge-score (!=0.0.7,!=0.0.8,!=0.1,!=0.1.1)", "nltk", "GitPython (<3.1.19)", "hf-doc-builder (>=0.3.0)", "protobuf (<=3.20.1)", "sacremoses", "rjieba", "faiss-cpu", "cookiecutter (==1.7.3)", "optuna"]
|
949 |
+
dev = ["tensorflow (>=2.3)", "onnxconverter-common", "tf2onnx", "tensorflow-text", "torch (>=1.0)", "jax (>=0.2.8,!=0.3.2,<=0.3.6)", "jaxlib (>=0.1.65,<=0.3.6)", "flax (>=0.4.1)", "optax (>=0.0.8)", "sentencepiece (>=0.1.91,!=0.1.92)", "protobuf (<=3.20.1)", "tokenizers (>=0.11.1,!=0.11.3,<0.13)", "torchaudio", "librosa", "pyctcdecode (>=0.3.0)", "phonemizer", "pillow", "optuna", "ray", "sigopt", "timm", "codecarbon (==1.2.0)", "accelerate (>=0.10.0)", "pytest", "pytest-xdist", "timeout-decorator", "parameterized", "psutil", "datasets", "dill (<0.3.5)", "evaluate (>=0.2.0)", "pytest-timeout", "black (==22.3)", "sacrebleu (>=1.4.12,<2.0.0)", "rouge-score (!=0.0.7,!=0.0.8,!=0.1,!=0.1.1)", "nltk", "GitPython (<3.1.19)", "hf-doc-builder (>=0.3.0)", "sacremoses", "rjieba", "faiss-cpu", "cookiecutter (==1.7.3)", "isort (>=5.5.4)", "flake8 (>=3.8.3)", "fugashi (>=1.0)", "ipadic (>=1.0.0,<2.0)", "unidic-lite (>=1.0.7)", "unidic (>=1.0.2)", "hf-doc-builder", "scikit-learn"]
|
950 |
+
dev-tensorflow = ["pytest", "pytest-xdist", "timeout-decorator", "parameterized", "psutil", "datasets", "dill (<0.3.5)", "evaluate (>=0.2.0)", "pytest-timeout", "black (==22.3)", "sacrebleu (>=1.4.12,<2.0.0)", "rouge-score (!=0.0.7,!=0.0.8,!=0.1,!=0.1.1)", "nltk", "GitPython (<3.1.19)", "hf-doc-builder (>=0.3.0)", "protobuf (<=3.20.1)", "sacremoses", "rjieba", "faiss-cpu", "cookiecutter (==1.7.3)", "tensorflow (>=2.3)", "onnxconverter-common", "tf2onnx", "tensorflow-text", "sentencepiece (>=0.1.91,!=0.1.92)", "tokenizers (>=0.11.1,!=0.11.3,<0.13)", "pillow", "isort (>=5.5.4)", "flake8 (>=3.8.3)", "hf-doc-builder", "scikit-learn", "onnxruntime (>=1.4.0)", "onnxruntime-tools (>=1.4.2)", "librosa", "pyctcdecode (>=0.3.0)", "phonemizer"]
|
951 |
+
dev-torch = ["pytest", "pytest-xdist", "timeout-decorator", "parameterized", "psutil", "datasets", "dill (<0.3.5)", "evaluate (>=0.2.0)", "pytest-timeout", "black (==22.3)", "sacrebleu (>=1.4.12,<2.0.0)", "rouge-score (!=0.0.7,!=0.0.8,!=0.1,!=0.1.1)", "nltk", "GitPython (<3.1.19)", "hf-doc-builder (>=0.3.0)", "protobuf (<=3.20.1)", "sacremoses", "rjieba", "faiss-cpu", "cookiecutter (==1.7.3)", "torch (>=1.0)", "sentencepiece (>=0.1.91,!=0.1.92)", "tokenizers (>=0.11.1,!=0.11.3,<0.13)", "torchaudio", "librosa", "pyctcdecode (>=0.3.0)", "phonemizer", "pillow", "optuna", "ray", "sigopt", "timm", "codecarbon (==1.2.0)", "isort (>=5.5.4)", "flake8 (>=3.8.3)", "fugashi (>=1.0)", "ipadic (>=1.0.0,<2.0)", "unidic-lite (>=1.0.7)", "unidic (>=1.0.2)", "hf-doc-builder", "scikit-learn", "onnxruntime (>=1.4.0)", "onnxruntime-tools (>=1.4.2)"]
|
952 |
+
docs = ["tensorflow (>=2.3)", "onnxconverter-common", "tf2onnx", "tensorflow-text", "torch (>=1.0)", "jax (>=0.2.8,!=0.3.2,<=0.3.6)", "jaxlib (>=0.1.65,<=0.3.6)", "flax (>=0.4.1)", "optax (>=0.0.8)", "sentencepiece (>=0.1.91,!=0.1.92)", "protobuf (<=3.20.1)", "tokenizers (>=0.11.1,!=0.11.3,<0.13)", "torchaudio", "librosa", "pyctcdecode (>=0.3.0)", "phonemizer", "pillow", "optuna", "ray", "sigopt", "timm", "codecarbon (==1.2.0)", "accelerate (>=0.10.0)", "hf-doc-builder"]
|
953 |
+
docs_specific = ["hf-doc-builder"]
|
954 |
+
fairscale = ["fairscale (>0.3)"]
|
955 |
+
flax = ["jax (>=0.2.8,!=0.3.2,<=0.3.6)", "jaxlib (>=0.1.65,<=0.3.6)", "flax (>=0.4.1)", "optax (>=0.0.8)"]
|
956 |
+
flax-speech = ["librosa", "pyctcdecode (>=0.3.0)", "phonemizer"]
|
957 |
+
ftfy = ["ftfy"]
|
958 |
+
integrations = ["optuna", "ray", "sigopt"]
|
959 |
+
ja = ["fugashi (>=1.0)", "ipadic (>=1.0.0,<2.0)", "unidic-lite (>=1.0.7)", "unidic (>=1.0.2)"]
|
960 |
+
modelcreation = ["cookiecutter (==1.7.3)"]
|
961 |
+
onnx = ["onnxconverter-common", "tf2onnx", "onnxruntime (>=1.4.0)", "onnxruntime-tools (>=1.4.2)"]
|
962 |
+
onnxruntime = ["onnxruntime (>=1.4.0)", "onnxruntime-tools (>=1.4.2)"]
|
963 |
+
optuna = ["optuna"]
|
964 |
+
quality = ["black (==22.3)", "isort (>=5.5.4)", "flake8 (>=3.8.3)", "GitPython (<3.1.19)", "hf-doc-builder (>=0.3.0)"]
|
965 |
+
ray = ["ray"]
|
966 |
+
retrieval = ["faiss-cpu", "datasets"]
|
967 |
+
sagemaker = ["sagemaker (>=2.31.0)"]
|
968 |
+
sentencepiece = ["sentencepiece (>=0.1.91,!=0.1.92)", "protobuf (<=3.20.1)"]
|
969 |
+
serving = ["pydantic", "uvicorn", "fastapi", "starlette"]
|
970 |
+
sigopt = ["sigopt"]
|
971 |
+
sklearn = ["scikit-learn"]
|
972 |
+
speech = ["torchaudio", "librosa", "pyctcdecode (>=0.3.0)", "phonemizer"]
|
973 |
+
testing = ["pytest", "pytest-xdist", "timeout-decorator", "parameterized", "psutil", "datasets", "dill (<0.3.5)", "evaluate (>=0.2.0)", "pytest-timeout", "black (==22.3)", "sacrebleu (>=1.4.12,<2.0.0)", "rouge-score (!=0.0.7,!=0.0.8,!=0.1,!=0.1.1)", "nltk", "GitPython (<3.1.19)", "hf-doc-builder (>=0.3.0)", "protobuf (<=3.20.1)", "sacremoses", "rjieba", "faiss-cpu", "cookiecutter (==1.7.3)"]
|
974 |
+
tf = ["tensorflow (>=2.3)", "onnxconverter-common", "tf2onnx", "tensorflow-text"]
|
975 |
+
tf-cpu = ["tensorflow-cpu (>=2.3)", "onnxconverter-common", "tf2onnx", "tensorflow-text"]
|
976 |
+
tf-speech = ["librosa", "pyctcdecode (>=0.3.0)", "phonemizer"]
|
977 |
+
timm = ["timm"]
|
978 |
+
tokenizers = ["tokenizers (>=0.11.1,!=0.11.3,<0.13)"]
|
979 |
+
torch = ["torch (>=1.0)"]
|
980 |
+
torch-speech = ["torchaudio", "librosa", "pyctcdecode (>=0.3.0)", "phonemizer"]
|
981 |
+
torchhub = ["filelock", "huggingface-hub (>=0.9.0,<1.0)", "importlib-metadata", "numpy (>=1.17)", "packaging (>=20.0)", "protobuf (<=3.20.1)", "regex (!=2019.12.17)", "requests", "sentencepiece (>=0.1.91,!=0.1.92)", "torch (>=1.0)", "tokenizers (>=0.11.1,!=0.11.3,<0.13)", "tqdm (>=4.27)"]
|
982 |
+
vision = ["pillow"]
|
983 |
+
|
984 |
+
[[package]]
|
985 |
+
name = "typing-extensions"
|
986 |
+
version = "4.3.0"
|
987 |
+
description = "Backported and Experimental Type Hints for Python 3.7+"
|
988 |
+
category = "main"
|
989 |
+
optional = false
|
990 |
+
python-versions = ">=3.7"
|
991 |
+
|
992 |
+
[[package]]
|
993 |
+
name = "uc-micro-py"
|
994 |
+
version = "1.0.1"
|
995 |
+
description = "Micro subset of unicode data files for linkify-it-py projects."
|
996 |
+
category = "main"
|
997 |
+
optional = false
|
998 |
+
python-versions = ">=3.6"
|
999 |
+
|
1000 |
+
[package.extras]
|
1001 |
+
test = ["pytest-cov", "pytest", "coverage"]
|
1002 |
+
|
1003 |
+
[[package]]
|
1004 |
+
name = "urllib3"
|
1005 |
+
version = "1.26.12"
|
1006 |
+
description = "HTTP library with thread-safe connection pooling, file post, and more."
|
1007 |
+
category = "main"
|
1008 |
+
optional = false
|
1009 |
+
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4"
|
1010 |
+
|
1011 |
+
[package.extras]
|
1012 |
+
brotli = ["brotlicffi (>=0.8.0)", "brotli (>=1.0.9)", "brotlipy (>=0.6.0)"]
|
1013 |
+
secure = ["pyOpenSSL (>=0.14)", "cryptography (>=1.3.4)", "idna (>=2.0.0)", "certifi", "urllib3-secure-extra", "ipaddress"]
|
1014 |
+
socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"]
|
1015 |
+
|
1016 |
+
[[package]]
|
1017 |
+
name = "uvicorn"
|
1018 |
+
version = "0.18.3"
|
1019 |
+
description = "The lightning-fast ASGI server."
|
1020 |
+
category = "main"
|
1021 |
+
optional = false
|
1022 |
+
python-versions = ">=3.7"
|
1023 |
+
|
1024 |
+
[package.dependencies]
|
1025 |
+
click = ">=7.0"
|
1026 |
+
h11 = ">=0.8"
|
1027 |
+
|
1028 |
+
[package.extras]
|
1029 |
+
standard = ["colorama (>=0.4)", "httptools (>=0.4.0)", "python-dotenv (>=0.13)", "pyyaml (>=5.1)", "uvloop (>=0.14.0,!=0.15.0,!=0.15.1)", "watchfiles (>=0.13)", "websockets (>=10.0)"]
|
1030 |
+
|
1031 |
+
[[package]]
|
1032 |
+
name = "websockets"
|
1033 |
+
version = "10.3"
|
1034 |
+
description = "An implementation of the WebSocket Protocol (RFC 6455 & 7692)"
|
1035 |
+
category = "main"
|
1036 |
+
optional = false
|
1037 |
+
python-versions = ">=3.7"
|
1038 |
+
|
1039 |
+
[[package]]
|
1040 |
+
name = "yarl"
|
1041 |
+
version = "1.8.1"
|
1042 |
+
description = "Yet another URL library"
|
1043 |
+
category = "main"
|
1044 |
+
optional = false
|
1045 |
+
python-versions = ">=3.7"
|
1046 |
+
|
1047 |
+
[package.dependencies]
|
1048 |
+
idna = ">=2.0"
|
1049 |
+
multidict = ">=4.0"
|
1050 |
+
|
1051 |
+
[metadata]
|
1052 |
+
lock-version = "1.1"
|
1053 |
+
python-versions = "^3.9"
|
1054 |
+
content-hash = "d1503a7bf493757c63052449403b2d5ed7275e673eaf4ebfcd1c0930e2fada42"
|
1055 |
+
|
1056 |
+
[metadata.files]
|
1057 |
+
aiohttp = [
|
1058 |
+
{file = "aiohttp-3.8.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:1ed0b6477896559f17b9eaeb6d38e07f7f9ffe40b9f0f9627ae8b9926ae260a8"},
|
1059 |
+
{file = "aiohttp-3.8.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7dadf3c307b31e0e61689cbf9e06be7a867c563d5a63ce9dca578f956609abf8"},
|
1060 |
+
{file = "aiohttp-3.8.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a79004bb58748f31ae1cbe9fa891054baaa46fb106c2dc7af9f8e3304dc30316"},
|
1061 |
+
{file = "aiohttp-3.8.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:12de6add4038df8f72fac606dff775791a60f113a725c960f2bab01d8b8e6b15"},
|
1062 |
+
{file = "aiohttp-3.8.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6f0d5f33feb5f69ddd57a4a4bd3d56c719a141080b445cbf18f238973c5c9923"},
|
1063 |
+
{file = "aiohttp-3.8.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:eaba923151d9deea315be1f3e2b31cc39a6d1d2f682f942905951f4e40200922"},
|
1064 |
+
{file = "aiohttp-3.8.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:099ebd2c37ac74cce10a3527d2b49af80243e2a4fa39e7bce41617fbc35fa3c1"},
|
1065 |
+
{file = "aiohttp-3.8.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:2e5d962cf7e1d426aa0e528a7e198658cdc8aa4fe87f781d039ad75dcd52c516"},
|
1066 |
+
{file = "aiohttp-3.8.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:fa0ffcace9b3aa34d205d8130f7873fcfefcb6a4dd3dd705b0dab69af6712642"},
|
1067 |
+
{file = "aiohttp-3.8.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:61bfc23df345d8c9716d03717c2ed5e27374e0fe6f659ea64edcd27b4b044cf7"},
|
1068 |
+
{file = "aiohttp-3.8.1-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:31560d268ff62143e92423ef183680b9829b1b482c011713ae941997921eebc8"},
|
1069 |
+
{file = "aiohttp-3.8.1-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:01d7bdb774a9acc838e6b8f1d114f45303841b89b95984cbb7d80ea41172a9e3"},
|
1070 |
+
{file = "aiohttp-3.8.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:97ef77eb6b044134c0b3a96e16abcb05ecce892965a2124c566af0fd60f717e2"},
|
1071 |
+
{file = "aiohttp-3.8.1-cp310-cp310-win32.whl", hash = "sha256:c2aef4703f1f2ddc6df17519885dbfa3514929149d3ff900b73f45998f2532fa"},
|
1072 |
+
{file = "aiohttp-3.8.1-cp310-cp310-win_amd64.whl", hash = "sha256:713ac174a629d39b7c6a3aa757b337599798da4c1157114a314e4e391cd28e32"},
|
1073 |
+
{file = "aiohttp-3.8.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:473d93d4450880fe278696549f2e7aed8cd23708c3c1997981464475f32137db"},
|
1074 |
+
{file = "aiohttp-3.8.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:99b5eeae8e019e7aad8af8bb314fb908dd2e028b3cdaad87ec05095394cce632"},
|
1075 |
+
{file = "aiohttp-3.8.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3af642b43ce56c24d063325dd2cf20ee012d2b9ba4c3c008755a301aaea720ad"},
|
1076 |
+
{file = "aiohttp-3.8.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c3630c3ef435c0a7c549ba170a0633a56e92629aeed0e707fec832dee313fb7a"},
|
1077 |
+
{file = "aiohttp-3.8.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:4a4a4e30bf1edcad13fb0804300557aedd07a92cabc74382fdd0ba6ca2661091"},
|
1078 |
+
{file = "aiohttp-3.8.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:6f8b01295e26c68b3a1b90efb7a89029110d3a4139270b24fda961893216c440"},
|
1079 |
+
{file = "aiohttp-3.8.1-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:a25fa703a527158aaf10dafd956f7d42ac6d30ec80e9a70846253dd13e2f067b"},
|
1080 |
+
{file = "aiohttp-3.8.1-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:5bfde62d1d2641a1f5173b8c8c2d96ceb4854f54a44c23102e2ccc7e02f003ec"},
|
1081 |
+
{file = "aiohttp-3.8.1-cp36-cp36m-musllinux_1_1_ppc64le.whl", hash = "sha256:51467000f3647d519272392f484126aa716f747859794ac9924a7aafa86cd411"},
|
1082 |
+
{file = "aiohttp-3.8.1-cp36-cp36m-musllinux_1_1_s390x.whl", hash = "sha256:03a6d5349c9ee8f79ab3ff3694d6ce1cfc3ced1c9d36200cb8f08ba06bd3b782"},
|
1083 |
+
{file = "aiohttp-3.8.1-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:102e487eeb82afac440581e5d7f8f44560b36cf0bdd11abc51a46c1cd88914d4"},
|
1084 |
+
{file = "aiohttp-3.8.1-cp36-cp36m-win32.whl", hash = "sha256:4aed991a28ea3ce320dc8ce655875e1e00a11bdd29fe9444dd4f88c30d558602"},
|
1085 |
+
{file = "aiohttp-3.8.1-cp36-cp36m-win_amd64.whl", hash = "sha256:b0e20cddbd676ab8a64c774fefa0ad787cc506afd844de95da56060348021e96"},
|
1086 |
+
{file = "aiohttp-3.8.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:37951ad2f4a6df6506750a23f7cbabad24c73c65f23f72e95897bb2cecbae676"},
|
1087 |
+
{file = "aiohttp-3.8.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5c23b1ad869653bc818e972b7a3a79852d0e494e9ab7e1a701a3decc49c20d51"},
|
1088 |
+
{file = "aiohttp-3.8.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:15b09b06dae900777833fe7fc4b4aa426556ce95847a3e8d7548e2d19e34edb8"},
|
1089 |
+
{file = "aiohttp-3.8.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:477c3ea0ba410b2b56b7efb072c36fa91b1e6fc331761798fa3f28bb224830dd"},
|
1090 |
+
{file = "aiohttp-3.8.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:2f2f69dca064926e79997f45b2f34e202b320fd3782f17a91941f7eb85502ee2"},
|
1091 |
+
{file = "aiohttp-3.8.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:ef9612483cb35171d51d9173647eed5d0069eaa2ee812793a75373447d487aa4"},
|
1092 |
+
{file = "aiohttp-3.8.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:6d69f36d445c45cda7b3b26afef2fc34ef5ac0cdc75584a87ef307ee3c8c6d00"},
|
1093 |
+
{file = "aiohttp-3.8.1-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:55c3d1072704d27401c92339144d199d9de7b52627f724a949fc7d5fc56d8b93"},
|
1094 |
+
{file = "aiohttp-3.8.1-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:b9d00268fcb9f66fbcc7cd9fe423741d90c75ee029a1d15c09b22d23253c0a44"},
|
1095 |
+
{file = "aiohttp-3.8.1-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:07b05cd3305e8a73112103c834e91cd27ce5b4bd07850c4b4dbd1877d3f45be7"},
|
1096 |
+
{file = "aiohttp-3.8.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:c34dc4958b232ef6188c4318cb7b2c2d80521c9a56c52449f8f93ab7bc2a8a1c"},
|
1097 |
+
{file = "aiohttp-3.8.1-cp37-cp37m-win32.whl", hash = "sha256:d2f9b69293c33aaa53d923032fe227feac867f81682f002ce33ffae978f0a9a9"},
|
1098 |
+
{file = "aiohttp-3.8.1-cp37-cp37m-win_amd64.whl", hash = "sha256:6ae828d3a003f03ae31915c31fa684b9890ea44c9c989056fea96e3d12a9fa17"},
|
1099 |
+
{file = "aiohttp-3.8.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:0c7ebbbde809ff4e970824b2b6cb7e4222be6b95a296e46c03cf050878fc1785"},
|
1100 |
+
{file = "aiohttp-3.8.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:8b7ef7cbd4fec9a1e811a5de813311ed4f7ac7d93e0fda233c9b3e1428f7dd7b"},
|
1101 |
+
{file = "aiohttp-3.8.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:c3d6a4d0619e09dcd61021debf7059955c2004fa29f48788a3dfaf9c9901a7cd"},
|
1102 |
+
{file = "aiohttp-3.8.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:718626a174e7e467f0558954f94af117b7d4695d48eb980146016afa4b580b2e"},
|
1103 |
+
{file = "aiohttp-3.8.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:589c72667a5febd36f1315aa6e5f56dd4aa4862df295cb51c769d16142ddd7cd"},
|
1104 |
+
{file = "aiohttp-3.8.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2ed076098b171573161eb146afcb9129b5ff63308960aeca4b676d9d3c35e700"},
|
1105 |
+
{file = "aiohttp-3.8.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:086f92daf51a032d062ec5f58af5ca6a44d082c35299c96376a41cbb33034675"},
|
1106 |
+
{file = "aiohttp-3.8.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:11691cf4dc5b94236ccc609b70fec991234e7ef8d4c02dd0c9668d1e486f5abf"},
|
1107 |
+
{file = "aiohttp-3.8.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:31d1e1c0dbf19ebccbfd62eff461518dcb1e307b195e93bba60c965a4dcf1ba0"},
|
1108 |
+
{file = "aiohttp-3.8.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:11a67c0d562e07067c4e86bffc1553f2cf5b664d6111c894671b2b8712f3aba5"},
|
1109 |
+
{file = "aiohttp-3.8.1-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:bb01ba6b0d3f6c68b89fce7305080145d4877ad3acaed424bae4d4ee75faa950"},
|
1110 |
+
{file = "aiohttp-3.8.1-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:44db35a9e15d6fe5c40d74952e803b1d96e964f683b5a78c3cc64eb177878155"},
|
1111 |
+
{file = "aiohttp-3.8.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:844a9b460871ee0a0b0b68a64890dae9c415e513db0f4a7e3cab41a0f2fedf33"},
|
1112 |
+
{file = "aiohttp-3.8.1-cp38-cp38-win32.whl", hash = "sha256:7d08744e9bae2ca9c382581f7dce1273fe3c9bae94ff572c3626e8da5b193c6a"},
|
1113 |
+
{file = "aiohttp-3.8.1-cp38-cp38-win_amd64.whl", hash = "sha256:04d48b8ce6ab3cf2097b1855e1505181bdd05586ca275f2505514a6e274e8e75"},
|
1114 |
+
{file = "aiohttp-3.8.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:f5315a2eb0239185af1bddb1abf472d877fede3cc8d143c6cddad37678293237"},
|
1115 |
+
{file = "aiohttp-3.8.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a996d01ca39b8dfe77440f3cd600825d05841088fd6bc0144cc6c2ec14cc5f74"},
|
1116 |
+
{file = "aiohttp-3.8.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:13487abd2f761d4be7c8ff9080de2671e53fff69711d46de703c310c4c9317ca"},
|
1117 |
+
{file = "aiohttp-3.8.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ea302f34477fda3f85560a06d9ebdc7fa41e82420e892fc50b577e35fc6a50b2"},
|
1118 |
+
{file = "aiohttp-3.8.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a2f635ce61a89c5732537a7896b6319a8fcfa23ba09bec36e1b1ac0ab31270d2"},
|
1119 |
+
{file = "aiohttp-3.8.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e999f2d0e12eea01caeecb17b653f3713d758f6dcc770417cf29ef08d3931421"},
|
1120 |
+
{file = "aiohttp-3.8.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:0770e2806a30e744b4e21c9d73b7bee18a1cfa3c47991ee2e5a65b887c49d5cf"},
|
1121 |
+
{file = "aiohttp-3.8.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:d15367ce87c8e9e09b0f989bfd72dc641bcd04ba091c68cd305312d00962addd"},
|
1122 |
+
{file = "aiohttp-3.8.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:6c7cefb4b0640703eb1069835c02486669312bf2f12b48a748e0a7756d0de33d"},
|
1123 |
+
{file = "aiohttp-3.8.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:71927042ed6365a09a98a6377501af5c9f0a4d38083652bcd2281a06a5976724"},
|
1124 |
+
{file = "aiohttp-3.8.1-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:28d490af82bc6b7ce53ff31337a18a10498303fe66f701ab65ef27e143c3b0ef"},
|
1125 |
+
{file = "aiohttp-3.8.1-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:b6613280ccedf24354406caf785db748bebbddcf31408b20c0b48cb86af76866"},
|
1126 |
+
{file = "aiohttp-3.8.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:81e3d8c34c623ca4e36c46524a3530e99c0bc95ed068fd6e9b55cb721d408fb2"},
|
1127 |
+
{file = "aiohttp-3.8.1-cp39-cp39-win32.whl", hash = "sha256:7187a76598bdb895af0adbd2fb7474d7f6025d170bc0a1130242da817ce9e7d1"},
|
1128 |
+
{file = "aiohttp-3.8.1-cp39-cp39-win_amd64.whl", hash = "sha256:1c182cb873bc91b411e184dab7a2b664d4fea2743df0e4d57402f7f3fa644bac"},
|
1129 |
+
{file = "aiohttp-3.8.1.tar.gz", hash = "sha256:fc5471e1a54de15ef71c1bc6ebe80d4dc681ea600e68bfd1cbce40427f0b7578"},
|
1130 |
+
]
|
1131 |
+
aiosignal = [
|
1132 |
+
{file = "aiosignal-1.2.0-py3-none-any.whl", hash = "sha256:26e62109036cd181df6e6ad646f91f0dcfd05fe16d0cb924138ff2ab75d64e3a"},
|
1133 |
+
{file = "aiosignal-1.2.0.tar.gz", hash = "sha256:78ed67db6c7b7ced4f98e495e572106d5c432a93e1ddd1bf475e1dc05f5b7df2"},
|
1134 |
+
]
|
1135 |
+
analytics-python = []
|
1136 |
+
anyio = [
|
1137 |
+
{file = "anyio-3.6.1-py3-none-any.whl", hash = "sha256:cb29b9c70620506a9a8f87a309591713446953302d7d995344d0d7c6c0c9a7be"},
|
1138 |
+
{file = "anyio-3.6.1.tar.gz", hash = "sha256:413adf95f93886e442aea925f3ee43baa5a765a64a0f52c6081894f9992fdd0b"},
|
1139 |
+
]
|
1140 |
+
async-timeout = [
|
1141 |
+
{file = "async-timeout-4.0.2.tar.gz", hash = "sha256:2163e1640ddb52b7a8c80d0a67a08587e5d245cc9c553a74a847056bc2976b15"},
|
1142 |
+
{file = "async_timeout-4.0.2-py3-none-any.whl", hash = "sha256:8ca1e4fcf50d07413d66d1a5e416e42cfdf5851c981d679a09851a6853383b3c"},
|
1143 |
+
]
|
1144 |
+
attrs = []
|
1145 |
+
backoff = []
|
1146 |
+
bcrypt = []
|
1147 |
+
certifi = []
|
1148 |
+
cffi = []
|
1149 |
+
charset-normalizer = []
|
1150 |
+
click = [
|
1151 |
+
{file = "click-8.1.3-py3-none-any.whl", hash = "sha256:bb4d8133cb15a609f44e8213d9b391b0809795062913b383c62be0ee95b1db48"},
|
1152 |
+
{file = "click-8.1.3.tar.gz", hash = "sha256:7682dc8afb30297001674575ea00d1814d808d6a36af415a82bd481d37ba7b8e"},
|
1153 |
+
]
|
1154 |
+
colorama = []
|
1155 |
+
commonmark = [
|
1156 |
+
{file = "commonmark-0.9.1-py2.py3-none-any.whl", hash = "sha256:da2f38c92590f83de410ba1a3cbceafbc74fee9def35f9251ba9a971d6d66fd9"},
|
1157 |
+
{file = "commonmark-0.9.1.tar.gz", hash = "sha256:452f9dc859be7f06631ddcb328b6919c67984aca654e5fefb3914d54691aed60"},
|
1158 |
+
]
|
1159 |
+
contourpy = []
|
1160 |
+
cryptography = []
|
1161 |
+
cycler = [
|
1162 |
+
{file = "cycler-0.11.0-py3-none-any.whl", hash = "sha256:3a27e95f763a428a739d2add979fa7494c912a32c17c4c38c4d5f082cad165a3"},
|
1163 |
+
{file = "cycler-0.11.0.tar.gz", hash = "sha256:9c87405839a19696e837b3b818fed3f5f69f16f1eec1a1ad77e043dcea9c772f"},
|
1164 |
+
]
|
1165 |
+
docarray = []
|
1166 |
+
fastapi = []
|
1167 |
+
ffmpy = []
|
1168 |
+
filelock = []
|
1169 |
+
fonttools = []
|
1170 |
+
frozenlist = []
|
1171 |
+
fsspec = []
|
1172 |
+
gradio = []
|
1173 |
+
h11 = []
|
1174 |
+
httpcore = []
|
1175 |
+
httpx = []
|
1176 |
+
huggingface-hub = []
|
1177 |
+
idna = []
|
1178 |
+
jinja2 = []
|
1179 |
+
kiwisolver = []
|
1180 |
+
linkify-it-py = []
|
1181 |
+
markdown-it-py = []
|
1182 |
+
markupsafe = [
|
1183 |
+
{file = "MarkupSafe-2.1.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:86b1f75c4e7c2ac2ccdaec2b9022845dbb81880ca318bb7a0a01fbf7813e3812"},
|
1184 |
+
{file = "MarkupSafe-2.1.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f121a1420d4e173a5d96e47e9a0c0dcff965afdf1626d28de1460815f7c4ee7a"},
|
1185 |
+
{file = "MarkupSafe-2.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a49907dd8420c5685cfa064a1335b6754b74541bbb3706c259c02ed65b644b3e"},
|
1186 |
+
{file = "MarkupSafe-2.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:10c1bfff05d95783da83491be968e8fe789263689c02724e0c691933c52994f5"},
|
1187 |
+
{file = "MarkupSafe-2.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b7bd98b796e2b6553da7225aeb61f447f80a1ca64f41d83612e6139ca5213aa4"},
|
1188 |
+
{file = "MarkupSafe-2.1.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:b09bf97215625a311f669476f44b8b318b075847b49316d3e28c08e41a7a573f"},
|
1189 |
+
{file = "MarkupSafe-2.1.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:694deca8d702d5db21ec83983ce0bb4b26a578e71fbdbd4fdcd387daa90e4d5e"},
|
1190 |
+
{file = "MarkupSafe-2.1.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:efc1913fd2ca4f334418481c7e595c00aad186563bbc1ec76067848c7ca0a933"},
|
1191 |
+
{file = "MarkupSafe-2.1.1-cp310-cp310-win32.whl", hash = "sha256:4a33dea2b688b3190ee12bd7cfa29d39c9ed176bda40bfa11099a3ce5d3a7ac6"},
|
1192 |
+
{file = "MarkupSafe-2.1.1-cp310-cp310-win_amd64.whl", hash = "sha256:dda30ba7e87fbbb7eab1ec9f58678558fd9a6b8b853530e176eabd064da81417"},
|
1193 |
+
{file = "MarkupSafe-2.1.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:671cd1187ed5e62818414afe79ed29da836dde67166a9fac6d435873c44fdd02"},
|
1194 |
+
{file = "MarkupSafe-2.1.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3799351e2336dc91ea70b034983ee71cf2f9533cdff7c14c90ea126bfd95d65a"},
|
1195 |
+
{file = "MarkupSafe-2.1.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591e9ecd94d7feb70c1cbd7be7b3ebea3f548870aa91e2732960fa4d57a37"},
|
1196 |
+
{file = "MarkupSafe-2.1.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6fbf47b5d3728c6aea2abb0589b5d30459e369baa772e0f37a0320185e87c980"},
|
1197 |
+
{file = "MarkupSafe-2.1.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:d5ee4f386140395a2c818d149221149c54849dfcfcb9f1debfe07a8b8bd63f9a"},
|
1198 |
+
{file = "MarkupSafe-2.1.1-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:bcb3ed405ed3222f9904899563d6fc492ff75cce56cba05e32eff40e6acbeaa3"},
|
1199 |
+
{file = "MarkupSafe-2.1.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:e1c0b87e09fa55a220f058d1d49d3fb8df88fbfab58558f1198e08c1e1de842a"},
|
1200 |
+
{file = "MarkupSafe-2.1.1-cp37-cp37m-win32.whl", hash = "sha256:8dc1c72a69aa7e082593c4a203dcf94ddb74bb5c8a731e4e1eb68d031e8498ff"},
|
1201 |
+
{file = "MarkupSafe-2.1.1-cp37-cp37m-win_amd64.whl", hash = "sha256:97a68e6ada378df82bc9f16b800ab77cbf4b2fada0081794318520138c088e4a"},
|
1202 |
+
{file = "MarkupSafe-2.1.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:e8c843bbcda3a2f1e3c2ab25913c80a3c5376cd00c6e8c4a86a89a28c8dc5452"},
|
1203 |
+
{file = "MarkupSafe-2.1.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0212a68688482dc52b2d45013df70d169f542b7394fc744c02a57374a4207003"},
|
1204 |
+
{file = "MarkupSafe-2.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e576a51ad59e4bfaac456023a78f6b5e6e7651dcd383bcc3e18d06f9b55d6d1"},
|
1205 |
+
{file = "MarkupSafe-2.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4b9fe39a2ccc108a4accc2676e77da025ce383c108593d65cc909add5c3bd601"},
|
1206 |
+
{file = "MarkupSafe-2.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:96e37a3dc86e80bf81758c152fe66dbf60ed5eca3d26305edf01892257049925"},
|
1207 |
+
{file = "MarkupSafe-2.1.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:6d0072fea50feec76a4c418096652f2c3238eaa014b2f94aeb1d56a66b41403f"},
|
1208 |
+
{file = "MarkupSafe-2.1.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:089cf3dbf0cd6c100f02945abeb18484bd1ee57a079aefd52cffd17fba910b88"},
|
1209 |
+
{file = "MarkupSafe-2.1.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:6a074d34ee7a5ce3effbc526b7083ec9731bb3cbf921bbe1d3005d4d2bdb3a63"},
|
1210 |
+
{file = "MarkupSafe-2.1.1-cp38-cp38-win32.whl", hash = "sha256:421be9fbf0ffe9ffd7a378aafebbf6f4602d564d34be190fc19a193232fd12b1"},
|
1211 |
+
{file = "MarkupSafe-2.1.1-cp38-cp38-win_amd64.whl", hash = "sha256:fc7b548b17d238737688817ab67deebb30e8073c95749d55538ed473130ec0c7"},
|
1212 |
+
{file = "MarkupSafe-2.1.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:e04e26803c9c3851c931eac40c695602c6295b8d432cbe78609649ad9bd2da8a"},
|
1213 |
+
{file = "MarkupSafe-2.1.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b87db4360013327109564f0e591bd2a3b318547bcef31b468a92ee504d07ae4f"},
|
1214 |
+
{file = "MarkupSafe-2.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:99a2a507ed3ac881b975a2976d59f38c19386d128e7a9a18b7df6fff1fd4c1d6"},
|
1215 |
+
{file = "MarkupSafe-2.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:56442863ed2b06d19c37f94d999035e15ee982988920e12a5b4ba29b62ad1f77"},
|
1216 |
+
{file = "MarkupSafe-2.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3ce11ee3f23f79dbd06fb3d63e2f6af7b12db1d46932fe7bd8afa259a5996603"},
|
1217 |
+
{file = "MarkupSafe-2.1.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:33b74d289bd2f5e527beadcaa3f401e0df0a89927c1559c8566c066fa4248ab7"},
|
1218 |
+
{file = "MarkupSafe-2.1.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:43093fb83d8343aac0b1baa75516da6092f58f41200907ef92448ecab8825135"},
|
1219 |
+
{file = "MarkupSafe-2.1.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8e3dcf21f367459434c18e71b2a9532d96547aef8a871872a5bd69a715c15f96"},
|
1220 |
+
{file = "MarkupSafe-2.1.1-cp39-cp39-win32.whl", hash = "sha256:d4306c36ca495956b6d568d276ac11fdd9c30a36f1b6eb928070dc5360b22e1c"},
|
1221 |
+
{file = "MarkupSafe-2.1.1-cp39-cp39-win_amd64.whl", hash = "sha256:46d00d6cfecdde84d40e572d63735ef81423ad31184100411e6e3388d405e247"},
|
1222 |
+
{file = "MarkupSafe-2.1.1.tar.gz", hash = "sha256:7f91197cc9e48f989d12e4e6fbc46495c446636dfc81b9ccf50bb0ec74b91d4b"},
|
1223 |
+
]
|
1224 |
+
matplotlib = []
|
1225 |
+
mdit-py-plugins = []
|
1226 |
+
mdurl = []
|
1227 |
+
monotonic = []
|
1228 |
+
multidict = [
|
1229 |
+
{file = "multidict-6.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b9e95a740109c6047602f4db4da9949e6c5945cefbad34a1299775ddc9a62e2"},
|
1230 |
+
{file = "multidict-6.0.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ac0e27844758d7177989ce406acc6a83c16ed4524ebc363c1f748cba184d89d3"},
|
1231 |
+
{file = "multidict-6.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:041b81a5f6b38244b34dc18c7b6aba91f9cdaf854d9a39e5ff0b58e2b5773b9c"},
|
1232 |
+
{file = "multidict-6.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5fdda29a3c7e76a064f2477c9aab1ba96fd94e02e386f1e665bca1807fc5386f"},
|
1233 |
+
{file = "multidict-6.0.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3368bf2398b0e0fcbf46d85795adc4c259299fec50c1416d0f77c0a843a3eed9"},
|
1234 |
+
{file = "multidict-6.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f4f052ee022928d34fe1f4d2bc743f32609fb79ed9c49a1710a5ad6b2198db20"},
|
1235 |
+
{file = "multidict-6.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:225383a6603c086e6cef0f2f05564acb4f4d5f019a4e3e983f572b8530f70c88"},
|
1236 |
+
{file = "multidict-6.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:50bd442726e288e884f7be9071016c15a8742eb689a593a0cac49ea093eef0a7"},
|
1237 |
+
{file = "multidict-6.0.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:47e6a7e923e9cada7c139531feac59448f1f47727a79076c0b1ee80274cd8eee"},
|
1238 |
+
{file = "multidict-6.0.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:0556a1d4ea2d949efe5fd76a09b4a82e3a4a30700553a6725535098d8d9fb672"},
|
1239 |
+
{file = "multidict-6.0.2-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:626fe10ac87851f4cffecee161fc6f8f9853f0f6f1035b59337a51d29ff3b4f9"},
|
1240 |
+
{file = "multidict-6.0.2-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:8064b7c6f0af936a741ea1efd18690bacfbae4078c0c385d7c3f611d11f0cf87"},
|
1241 |
+
{file = "multidict-6.0.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:2d36e929d7f6a16d4eb11b250719c39560dd70545356365b494249e2186bc389"},
|
1242 |
+
{file = "multidict-6.0.2-cp310-cp310-win32.whl", hash = "sha256:fcb91630817aa8b9bc4a74023e4198480587269c272c58b3279875ed7235c293"},
|
1243 |
+
{file = "multidict-6.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:8cbf0132f3de7cc6c6ce00147cc78e6439ea736cee6bca4f068bcf892b0fd658"},
|
1244 |
+
{file = "multidict-6.0.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:05f6949d6169878a03e607a21e3b862eaf8e356590e8bdae4227eedadacf6e51"},
|
1245 |
+
{file = "multidict-6.0.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e2c2e459f7050aeb7c1b1276763364884595d47000c1cddb51764c0d8976e608"},
|
1246 |
+
{file = "multidict-6.0.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d0509e469d48940147e1235d994cd849a8f8195e0bca65f8f5439c56e17872a3"},
|
1247 |
+
{file = "multidict-6.0.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:514fe2b8d750d6cdb4712346a2c5084a80220821a3e91f3f71eec11cf8d28fd4"},
|
1248 |
+
{file = "multidict-6.0.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:19adcfc2a7197cdc3987044e3f415168fc5dc1f720c932eb1ef4f71a2067e08b"},
|
1249 |
+
{file = "multidict-6.0.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b9d153e7f1f9ba0b23ad1568b3b9e17301e23b042c23870f9ee0522dc5cc79e8"},
|
1250 |
+
{file = "multidict-6.0.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:aef9cc3d9c7d63d924adac329c33835e0243b5052a6dfcbf7732a921c6e918ba"},
|
1251 |
+
{file = "multidict-6.0.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:4571f1beddff25f3e925eea34268422622963cd8dc395bb8778eb28418248e43"},
|
1252 |
+
{file = "multidict-6.0.2-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:d48b8ee1d4068561ce8033d2c344cf5232cb29ee1a0206a7b828c79cbc5982b8"},
|
1253 |
+
{file = "multidict-6.0.2-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:45183c96ddf61bf96d2684d9fbaf6f3564d86b34cb125761f9a0ef9e36c1d55b"},
|
1254 |
+
{file = "multidict-6.0.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:75bdf08716edde767b09e76829db8c1e5ca9d8bb0a8d4bd94ae1eafe3dac5e15"},
|
1255 |
+
{file = "multidict-6.0.2-cp37-cp37m-win32.whl", hash = "sha256:a45e1135cb07086833ce969555df39149680e5471c04dfd6a915abd2fc3f6dbc"},
|
1256 |
+
{file = "multidict-6.0.2-cp37-cp37m-win_amd64.whl", hash = "sha256:6f3cdef8a247d1eafa649085812f8a310e728bdf3900ff6c434eafb2d443b23a"},
|
1257 |
+
{file = "multidict-6.0.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:0327292e745a880459ef71be14e709aaea2f783f3537588fb4ed09b6c01bca60"},
|
1258 |
+
{file = "multidict-6.0.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:e875b6086e325bab7e680e4316d667fc0e5e174bb5611eb16b3ea121c8951b86"},
|
1259 |
+
{file = "multidict-6.0.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:feea820722e69451743a3d56ad74948b68bf456984d63c1a92e8347b7b88452d"},
|
1260 |
+
{file = "multidict-6.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9cc57c68cb9139c7cd6fc39f211b02198e69fb90ce4bc4a094cf5fe0d20fd8b0"},
|
1261 |
+
{file = "multidict-6.0.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:497988d6b6ec6ed6f87030ec03280b696ca47dbf0648045e4e1d28b80346560d"},
|
1262 |
+
{file = "multidict-6.0.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:89171b2c769e03a953d5969b2f272efa931426355b6c0cb508022976a17fd376"},
|
1263 |
+
{file = "multidict-6.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:684133b1e1fe91eda8fa7447f137c9490a064c6b7f392aa857bba83a28cfb693"},
|
1264 |
+
{file = "multidict-6.0.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fd9fc9c4849a07f3635ccffa895d57abce554b467d611a5009ba4f39b78a8849"},
|
1265 |
+
{file = "multidict-6.0.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:e07c8e79d6e6fd37b42f3250dba122053fddb319e84b55dd3a8d6446e1a7ee49"},
|
1266 |
+
{file = "multidict-6.0.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:4070613ea2227da2bfb2c35a6041e4371b0af6b0be57f424fe2318b42a748516"},
|
1267 |
+
{file = "multidict-6.0.2-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:47fbeedbf94bed6547d3aa632075d804867a352d86688c04e606971595460227"},
|
1268 |
+
{file = "multidict-6.0.2-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:5774d9218d77befa7b70d836004a768fb9aa4fdb53c97498f4d8d3f67bb9cfa9"},
|
1269 |
+
{file = "multidict-6.0.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:2957489cba47c2539a8eb7ab32ff49101439ccf78eab724c828c1a54ff3ff98d"},
|
1270 |
+
{file = "multidict-6.0.2-cp38-cp38-win32.whl", hash = "sha256:e5b20e9599ba74391ca0cfbd7b328fcc20976823ba19bc573983a25b32e92b57"},
|
1271 |
+
{file = "multidict-6.0.2-cp38-cp38-win_amd64.whl", hash = "sha256:8004dca28e15b86d1b1372515f32eb6f814bdf6f00952699bdeb541691091f96"},
|
1272 |
+
{file = "multidict-6.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:2e4a0785b84fb59e43c18a015ffc575ba93f7d1dbd272b4cdad9f5134b8a006c"},
|
1273 |
+
{file = "multidict-6.0.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6701bf8a5d03a43375909ac91b6980aea74b0f5402fbe9428fc3f6edf5d9677e"},
|
1274 |
+
{file = "multidict-6.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a007b1638e148c3cfb6bf0bdc4f82776cef0ac487191d093cdc316905e504071"},
|
1275 |
+
{file = "multidict-6.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:07a017cfa00c9890011628eab2503bee5872f27144936a52eaab449be5eaf032"},
|
1276 |
+
{file = "multidict-6.0.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c207fff63adcdf5a485969131dc70e4b194327666b7e8a87a97fbc4fd80a53b2"},
|
1277 |
+
{file = "multidict-6.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:373ba9d1d061c76462d74e7de1c0c8e267e9791ee8cfefcf6b0b2495762c370c"},
|
1278 |
+
{file = "multidict-6.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfba7c6d5d7c9099ba21f84662b037a0ffd4a5e6b26ac07d19e423e6fdf965a9"},
|
1279 |
+
{file = "multidict-6.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:19d9bad105dfb34eb539c97b132057a4e709919ec4dd883ece5838bcbf262b80"},
|
1280 |
+
{file = "multidict-6.0.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:de989b195c3d636ba000ee4281cd03bb1234635b124bf4cd89eeee9ca8fcb09d"},
|
1281 |
+
{file = "multidict-6.0.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7c40b7bbece294ae3a87c1bc2abff0ff9beef41d14188cda94ada7bcea99b0fb"},
|
1282 |
+
{file = "multidict-6.0.2-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:d16cce709ebfadc91278a1c005e3c17dd5f71f5098bfae1035149785ea6e9c68"},
|
1283 |
+
{file = "multidict-6.0.2-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:a2c34a93e1d2aa35fbf1485e5010337c72c6791407d03aa5f4eed920343dd360"},
|
1284 |
+
{file = "multidict-6.0.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:feba80698173761cddd814fa22e88b0661e98cb810f9f986c54aa34d281e4937"},
|
1285 |
+
{file = "multidict-6.0.2-cp39-cp39-win32.whl", hash = "sha256:23b616fdc3c74c9fe01d76ce0d1ce872d2d396d8fa8e4899398ad64fb5aa214a"},
|
1286 |
+
{file = "multidict-6.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:4bae31803d708f6f15fd98be6a6ac0b6958fcf68fda3c77a048a4f9073704aae"},
|
1287 |
+
{file = "multidict-6.0.2.tar.gz", hash = "sha256:5ff3bd75f38e4c43f1f470f2df7a4d430b821c4ce22be384e1459cb57d6bb013"},
|
1288 |
+
]
|
1289 |
+
numpy = []
|
1290 |
+
orjson = []
|
1291 |
+
packaging = [
|
1292 |
+
{file = "packaging-21.3-py3-none-any.whl", hash = "sha256:ef103e05f519cdc783ae24ea4e2e0f508a9c99b2d4969652eed6a2e1ea5bd522"},
|
1293 |
+
{file = "packaging-21.3.tar.gz", hash = "sha256:dd47c42927d89ab911e606518907cc2d3a1f38bbd026385970643f9c5b8ecfeb"},
|
1294 |
+
]
|
1295 |
+
pandas = []
|
1296 |
+
paramiko = []
|
1297 |
+
pillow = []
|
1298 |
+
pycparser = [
|
1299 |
+
{file = "pycparser-2.21-py2.py3-none-any.whl", hash = "sha256:8ee45429555515e1f6b185e78100aea234072576aa43ab53aefcae078162fca9"},
|
1300 |
+
{file = "pycparser-2.21.tar.gz", hash = "sha256:e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206"},
|
1301 |
+
]
|
1302 |
+
pycryptodome = []
|
1303 |
+
pydantic = []
|
1304 |
+
pydub = []
|
1305 |
+
pygments = []
|
1306 |
+
pynacl = []
|
1307 |
+
pyparsing = [
|
1308 |
+
{file = "pyparsing-3.0.9-py3-none-any.whl", hash = "sha256:5026bae9a10eeaefb61dab2f09052b9f4307d44aee4eda64b309723d8d206bbc"},
|
1309 |
+
{file = "pyparsing-3.0.9.tar.gz", hash = "sha256:2b020ecf7d21b687f219b71ecad3631f644a47f01403fa1d1036b0c6416d70fb"},
|
1310 |
+
]
|
1311 |
+
python-dateutil = [
|
1312 |
+
{file = "python-dateutil-2.8.2.tar.gz", hash = "sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86"},
|
1313 |
+
{file = "python_dateutil-2.8.2-py2.py3-none-any.whl", hash = "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9"},
|
1314 |
+
]
|
1315 |
+
python-multipart = [
|
1316 |
+
{file = "python-multipart-0.0.5.tar.gz", hash = "sha256:f7bb5f611fc600d15fa47b3974c8aa16e93724513b49b5f95c81e6624c83fa43"},
|
1317 |
+
]
|
1318 |
+
pytz = []
|
1319 |
+
pyyaml = [
|
1320 |
+
{file = "PyYAML-6.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d4db7c7aef085872ef65a8fd7d6d09a14ae91f691dec3e87ee5ee0539d516f53"},
|
1321 |
+
{file = "PyYAML-6.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9df7ed3b3d2e0ecfe09e14741b857df43adb5a3ddadc919a2d94fbdf78fea53c"},
|
1322 |
+
{file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:77f396e6ef4c73fdc33a9157446466f1cff553d979bd00ecb64385760c6babdc"},
|
1323 |
+
{file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a80a78046a72361de73f8f395f1f1e49f956c6be882eed58505a15f3e430962b"},
|
1324 |
+
{file = "PyYAML-6.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:f84fbc98b019fef2ee9a1cb3ce93e3187a6df0b2538a651bfb890254ba9f90b5"},
|
1325 |
+
{file = "PyYAML-6.0-cp310-cp310-win32.whl", hash = "sha256:2cd5df3de48857ed0544b34e2d40e9fac445930039f3cfe4bcc592a1f836d513"},
|
1326 |
+
{file = "PyYAML-6.0-cp310-cp310-win_amd64.whl", hash = "sha256:daf496c58a8c52083df09b80c860005194014c3698698d1a57cbcfa182142a3a"},
|
1327 |
+
{file = "PyYAML-6.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:897b80890765f037df3403d22bab41627ca8811ae55e9a722fd0392850ec4d86"},
|
1328 |
+
{file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:50602afada6d6cbfad699b0c7bb50d5ccffa7e46a3d738092afddc1f9758427f"},
|
1329 |
+
{file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:48c346915c114f5fdb3ead70312bd042a953a8ce5c7106d5bfb1a5254e47da92"},
|
1330 |
+
{file = "PyYAML-6.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:98c4d36e99714e55cfbaaee6dd5badbc9a1ec339ebfc3b1f52e293aee6bb71a4"},
|
1331 |
+
{file = "PyYAML-6.0-cp36-cp36m-win32.whl", hash = "sha256:0283c35a6a9fbf047493e3a0ce8d79ef5030852c51e9d911a27badfde0605293"},
|
1332 |
+
{file = "PyYAML-6.0-cp36-cp36m-win_amd64.whl", hash = "sha256:07751360502caac1c067a8132d150cf3d61339af5691fe9e87803040dbc5db57"},
|
1333 |
+
{file = "PyYAML-6.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:819b3830a1543db06c4d4b865e70ded25be52a2e0631ccd2f6a47a2822f2fd7c"},
|
1334 |
+
{file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:473f9edb243cb1935ab5a084eb238d842fb8f404ed2193a915d1784b5a6b5fc0"},
|
1335 |
+
{file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0ce82d761c532fe4ec3f87fc45688bdd3a4c1dc5e0b4a19814b9009a29baefd4"},
|
1336 |
+
{file = "PyYAML-6.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:231710d57adfd809ef5d34183b8ed1eeae3f76459c18fb4a0b373ad56bedcdd9"},
|
1337 |
+
{file = "PyYAML-6.0-cp37-cp37m-win32.whl", hash = "sha256:c5687b8d43cf58545ade1fe3e055f70eac7a5a1a0bf42824308d868289a95737"},
|
1338 |
+
{file = "PyYAML-6.0-cp37-cp37m-win_amd64.whl", hash = "sha256:d15a181d1ecd0d4270dc32edb46f7cb7733c7c508857278d3d378d14d606db2d"},
|
1339 |
+
{file = "PyYAML-6.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0b4624f379dab24d3725ffde76559cff63d9ec94e1736b556dacdfebe5ab6d4b"},
|
1340 |
+
{file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:213c60cd50106436cc818accf5baa1aba61c0189ff610f64f4a3e8c6726218ba"},
|
1341 |
+
{file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9fa600030013c4de8165339db93d182b9431076eb98eb40ee068700c9c813e34"},
|
1342 |
+
{file = "PyYAML-6.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:277a0ef2981ca40581a47093e9e2d13b3f1fbbeffae064c1d21bfceba2030287"},
|
1343 |
+
{file = "PyYAML-6.0-cp38-cp38-win32.whl", hash = "sha256:d4eccecf9adf6fbcc6861a38015c2a64f38b9d94838ac1810a9023a0609e1b78"},
|
1344 |
+
{file = "PyYAML-6.0-cp38-cp38-win_amd64.whl", hash = "sha256:1e4747bc279b4f613a09eb64bba2ba602d8a6664c6ce6396a4d0cd413a50ce07"},
|
1345 |
+
{file = "PyYAML-6.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:055d937d65826939cb044fc8c9b08889e8c743fdc6a32b33e2390f66013e449b"},
|
1346 |
+
{file = "PyYAML-6.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e61ceaab6f49fb8bdfaa0f92c4b57bcfbea54c09277b1b4f7ac376bfb7a7c174"},
|
1347 |
+
{file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d67d839ede4ed1b28a4e8909735fc992a923cdb84e618544973d7dfc71540803"},
|
1348 |
+
{file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cba8c411ef271aa037d7357a2bc8f9ee8b58b9965831d9e51baf703280dc73d3"},
|
1349 |
+
{file = "PyYAML-6.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:40527857252b61eacd1d9af500c3337ba8deb8fc298940291486c465c8b46ec0"},
|
1350 |
+
{file = "PyYAML-6.0-cp39-cp39-win32.whl", hash = "sha256:b5b9eccad747aabaaffbc6064800670f0c297e52c12754eb1d976c57e4f74dcb"},
|
1351 |
+
{file = "PyYAML-6.0-cp39-cp39-win_amd64.whl", hash = "sha256:b3d267842bf12586ba6c734f89d1f5b871df0273157918b0ccefa29deb05c21c"},
|
1352 |
+
{file = "PyYAML-6.0.tar.gz", hash = "sha256:68fb519c14306fec9720a2a5b45bc9f0c8d1b9c72adf45c37baedfcd949c35a2"},
|
1353 |
+
]
|
1354 |
+
regex = []
|
1355 |
+
requests = []
|
1356 |
+
rfc3986 = []
|
1357 |
+
rich = []
|
1358 |
+
setuptools-scm = []
|
1359 |
+
six = [
|
1360 |
+
{file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"},
|
1361 |
+
{file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"},
|
1362 |
+
]
|
1363 |
+
sniffio = []
|
1364 |
+
starlette = []
|
1365 |
+
tokenizers = [
|
1366 |
+
{file = "tokenizers-0.12.1-cp310-cp310-macosx_10_11_x86_64.whl", hash = "sha256:d737df0f8f26e093a82bfb106b6cfb510a0e9302d35834568e5b20b73ddc5a9c"},
|
1367 |
+
{file = "tokenizers-0.12.1-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:f1271224acafb27639c432e1ce4e7d38eab40305ba1c546e871d5c8a32f4f195"},
|
1368 |
+
{file = "tokenizers-0.12.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cdeba37c2fb44e1aec8a72af4cb369655b59ba313181b1b4b8183f08e759c49c"},
|
1369 |
+
{file = "tokenizers-0.12.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:53b5f4012ce3ffddd5b00827441b80dc7a0f6b41f4fc5248ae6d36e7d3920c6d"},
|
1370 |
+
{file = "tokenizers-0.12.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5188e13fc09edfe05712ca3ae5a44e7f2b0137927b1ca210d0fad90d3e58315a"},
|
1371 |
+
{file = "tokenizers-0.12.1-cp310-cp310-win32.whl", hash = "sha256:eff5ff411f18a201eec137b7b32fcb55e0c48b372d370bd24f965f5bad471fa4"},
|
1372 |
+
{file = "tokenizers-0.12.1-cp310-cp310-win_amd64.whl", hash = "sha256:bdbca79726fe883c696088ea163715b2f902aec638a8e24bcf9790ff8fa45019"},
|
1373 |
+
{file = "tokenizers-0.12.1-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:28825dade9e52ad464164020758f9d49eb7251c32b6ae146601c506a23c67c0e"},
|
1374 |
+
{file = "tokenizers-0.12.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:91906d725cb84d8ee71ce05fbb155d39d494849622b4f9349e5176a8eb01c49b"},
|
1375 |
+
{file = "tokenizers-0.12.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:230f51a0a82ca7b90077eaca2415f12ff9bd144607888b9c50c2ee543452322e"},
|
1376 |
+
{file = "tokenizers-0.12.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8d4339c376b695de2ad8ccaebffa75e4dc1d7857be1103d80e7925b34af8cf78"},
|
1377 |
+
{file = "tokenizers-0.12.1-cp37-cp37m-macosx_10_11_x86_64.whl", hash = "sha256:27d93b712aa2d4346aa506ecd4ec9e94edeebeaf2d484357b482cdeffc02b5f5"},
|
1378 |
+
{file = "tokenizers-0.12.1-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:7f4cb68dc538b52240d1986d2034eb0a6373be2ab5f0787d1be3ad1444ce71b7"},
|
1379 |
+
{file = "tokenizers-0.12.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ae6c04b629ac2cd2f695739988cb70b9bd8d5e7f849f5b14c4510e942bee5770"},
|
1380 |
+
{file = "tokenizers-0.12.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6a38b2019d4807d42afeff603a119094ee00f63bea2921136524c8814e9003f8"},
|
1381 |
+
{file = "tokenizers-0.12.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fde8dccb9033fa344ffce3ee1837939a50e7a210a768f1cf2059beeafa755481"},
|
1382 |
+
{file = "tokenizers-0.12.1-cp37-cp37m-win32.whl", hash = "sha256:38625595b2fd37bfcce64ff9bfb6868c07e9a7b7f205c909d94a615ce9472287"},
|
1383 |
+
{file = "tokenizers-0.12.1-cp37-cp37m-win_amd64.whl", hash = "sha256:01abe6fbfe55e4131ca0c4c3d1a9d7ef5df424a8d536e998d2a4fc0bc57935f4"},
|
1384 |
+
{file = "tokenizers-0.12.1-cp38-cp38-macosx_10_11_x86_64.whl", hash = "sha256:7c5c54080a7d5c89c990e0d478e0882dbac88926d43323a3aa236492a3c9455f"},
|
1385 |
+
{file = "tokenizers-0.12.1-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:419d113e3bcc4fe20a313afc47af81e62906306b08fe1601e1443d747d46af1f"},
|
1386 |
+
{file = "tokenizers-0.12.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b9779944559cb7ace6a8516e402895f239b0d9d3c833c67dbaec496310e7e206"},
|
1387 |
+
{file = "tokenizers-0.12.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7d43de14b4469b57490dbaf136a31c266cb676fa22320f01f230af9219ae9034"},
|
1388 |
+
{file = "tokenizers-0.12.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:258873634406bd1d438c799993a5e44bbc0132ff055985c03c4fe30f702e9a33"},
|
1389 |
+
{file = "tokenizers-0.12.1-cp38-cp38-win32.whl", hash = "sha256:3f2647cc256d6a53d18b9dcd71d377828e9f8991fbcbd6fcd8ca2ceb174552b0"},
|
1390 |
+
{file = "tokenizers-0.12.1-cp38-cp38-win_amd64.whl", hash = "sha256:62a723bd4b18bc55121f5c34cd8efd6c651f2d3b81f81dd50e5351fb65b8a617"},
|
1391 |
+
{file = "tokenizers-0.12.1-cp39-cp39-macosx_10_11_x86_64.whl", hash = "sha256:411ebc89228f30218ffa9d9c49d414864b0df5026a47c24820431821c4360460"},
|
1392 |
+
{file = "tokenizers-0.12.1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:619728df2551bdfe6f96ff177f9ded958e7ed9e2af94c8d5ac2834d1eb06d112"},
|
1393 |
+
{file = "tokenizers-0.12.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8cea98f3f9577d1541b7bb0f7a3308a911751067e1d83e01485c9d3411bbf087"},
|
1394 |
+
{file = "tokenizers-0.12.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:664f36f0a0d409c24f2201d495161fec4d8bc93e091fbb78814eb426f29905a3"},
|
1395 |
+
{file = "tokenizers-0.12.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0bf2380ad59c50222959a9b6f231339200a826fc5cb2be09ff96d8a59f65fc5e"},
|
1396 |
+
{file = "tokenizers-0.12.1-cp39-cp39-win32.whl", hash = "sha256:6a7a106d04154c2159db6cd7d042af2e2e0e53aee432f872fe6c8be45100436a"},
|
1397 |
+
{file = "tokenizers-0.12.1-cp39-cp39-win_amd64.whl", hash = "sha256:2158baf80cbc09259bfd6e0e0fc4597b611e7a72ad5443dad63918a90f1dd304"},
|
1398 |
+
{file = "tokenizers-0.12.1.tar.gz", hash = "sha256:070746f86efa6c873db341e55cf17bb5e7bdd5450330ca8eca542f5c3dab2c66"},
|
1399 |
+
]
|
1400 |
+
tomli = [
|
1401 |
+
{file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"},
|
1402 |
+
{file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"},
|
1403 |
+
]
|
1404 |
+
torch = []
|
1405 |
+
tqdm = []
|
1406 |
+
transformers = []
|
1407 |
+
typing-extensions = []
|
1408 |
+
uc-micro-py = []
|
1409 |
+
urllib3 = []
|
1410 |
+
uvicorn = []
|
1411 |
+
websockets = [
|
1412 |
+
{file = "websockets-10.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:661f641b44ed315556a2fa630239adfd77bd1b11cb0b9d96ed8ad90b0b1e4978"},
|
1413 |
+
{file = "websockets-10.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b529fdfa881b69fe563dbd98acce84f3e5a67df13de415e143ef053ff006d500"},
|
1414 |
+
{file = "websockets-10.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:f351c7d7d92f67c0609329ab2735eee0426a03022771b00102816a72715bb00b"},
|
1415 |
+
{file = "websockets-10.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:379e03422178436af4f3abe0aa8f401aa77ae2487843738542a75faf44a31f0c"},
|
1416 |
+
{file = "websockets-10.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:e904c0381c014b914136c492c8fa711ca4cced4e9b3d110e5e7d436d0fc289e8"},
|
1417 |
+
{file = "websockets-10.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:e7e6f2d6fd48422071cc8a6f8542016f350b79cc782752de531577d35e9bd677"},
|
1418 |
+
{file = "websockets-10.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:b9c77f0d1436ea4b4dc089ed8335fa141e6a251a92f75f675056dac4ab47a71e"},
|
1419 |
+
{file = "websockets-10.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:e6fa05a680e35d0fcc1470cb070b10e6fe247af54768f488ed93542e71339d6f"},
|
1420 |
+
{file = "websockets-10.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:2f94fa3ae454a63ea3a19f73b95deeebc9f02ba2d5617ca16f0bbdae375cda47"},
|
1421 |
+
{file = "websockets-10.3-cp310-cp310-win32.whl", hash = "sha256:6ed1d6f791eabfd9808afea1e068f5e59418e55721db8b7f3bfc39dc831c42ae"},
|
1422 |
+
{file = "websockets-10.3-cp310-cp310-win_amd64.whl", hash = "sha256:347974105bbd4ea068106ec65e8e8ebd86f28c19e529d115d89bd8cc5cda3079"},
|
1423 |
+
{file = "websockets-10.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:fab7c640815812ed5f10fbee7abbf58788d602046b7bb3af9b1ac753a6d5e916"},
|
1424 |
+
{file = "websockets-10.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:994cdb1942a7a4c2e10098d9162948c9e7b235df755de91ca33f6e0481366fdb"},
|
1425 |
+
{file = "websockets-10.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:aad5e300ab32036eb3fdc350ad30877210e2f51bceaca83fb7fef4d2b6c72b79"},
|
1426 |
+
{file = "websockets-10.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:e49ea4c1a9543d2bd8a747ff24411509c29e4bdcde05b5b0895e2120cb1a761d"},
|
1427 |
+
{file = "websockets-10.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:6ea6b300a6bdd782e49922d690e11c3669828fe36fc2471408c58b93b5535a98"},
|
1428 |
+
{file = "websockets-10.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:ef5ce841e102278c1c2e98f043db99d6755b1c58bde475516aef3a008ed7f28e"},
|
1429 |
+
{file = "websockets-10.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:d1655a6fc7aecd333b079d00fb3c8132d18988e47f19740c69303bf02e9883c6"},
|
1430 |
+
{file = "websockets-10.3-cp37-cp37m-win32.whl", hash = "sha256:83e5ca0d5b743cde3d29fda74ccab37bdd0911f25bd4cdf09ff8b51b7b4f2fa1"},
|
1431 |
+
{file = "websockets-10.3-cp37-cp37m-win_amd64.whl", hash = "sha256:da4377904a3379f0c1b75a965fff23b28315bcd516d27f99a803720dfebd94d4"},
|
1432 |
+
{file = "websockets-10.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:a1e15b230c3613e8ea82c9fc6941b2093e8eb939dd794c02754d33980ba81e36"},
|
1433 |
+
{file = "websockets-10.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:31564a67c3e4005f27815634343df688b25705cccb22bc1db621c781ddc64c69"},
|
1434 |
+
{file = "websockets-10.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:c8d1d14aa0f600b5be363077b621b1b4d1eb3fbf90af83f9281cda668e6ff7fd"},
|
1435 |
+
{file = "websockets-10.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8fbd7d77f8aba46d43245e86dd91a8970eac4fb74c473f8e30e9c07581f852b2"},
|
1436 |
+
{file = "websockets-10.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:210aad7fdd381c52e58777560860c7e6110b6174488ef1d4b681c08b68bf7f8c"},
|
1437 |
+
{file = "websockets-10.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:6075fd24df23133c1b078e08a9b04a3bc40b31a8def4ee0b9f2c8865acce913e"},
|
1438 |
+
{file = "websockets-10.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:7f6d96fdb0975044fdd7953b35d003b03f9e2bcf85f2d2cf86285ece53e9f991"},
|
1439 |
+
{file = "websockets-10.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:c7250848ce69559756ad0086a37b82c986cd33c2d344ab87fea596c5ac6d9442"},
|
1440 |
+
{file = "websockets-10.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:28dd20b938a57c3124028680dc1600c197294da5db4292c76a0b48efb3ed7f76"},
|
1441 |
+
{file = "websockets-10.3-cp38-cp38-win32.whl", hash = "sha256:54c000abeaff6d8771a4e2cef40900919908ea7b6b6a30eae72752607c6db559"},
|
1442 |
+
{file = "websockets-10.3-cp38-cp38-win_amd64.whl", hash = "sha256:7ab36e17af592eec5747c68ef2722a74c1a4a70f3772bc661079baf4ae30e40d"},
|
1443 |
+
{file = "websockets-10.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:a141de3d5a92188234afa61653ed0bbd2dde46ad47b15c3042ffb89548e77094"},
|
1444 |
+
{file = "websockets-10.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:97bc9d41e69a7521a358f9b8e44871f6cdeb42af31815c17aed36372d4eec667"},
|
1445 |
+
{file = "websockets-10.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:d6353ba89cfc657a3f5beabb3b69be226adbb5c6c7a66398e17809b0ce3c4731"},
|
1446 |
+
{file = "websockets-10.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ec2b0ab7edc8cd4b0eb428b38ed89079bdc20c6bdb5f889d353011038caac2f9"},
|
1447 |
+
{file = "websockets-10.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:85506b3328a9e083cc0a0fb3ba27e33c8db78341b3eb12eb72e8afd166c36680"},
|
1448 |
+
{file = "websockets-10.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:8af75085b4bc0b5c40c4a3c0e113fa95e84c60f4ed6786cbb675aeb1ee128247"},
|
1449 |
+
{file = "websockets-10.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:07cdc0a5b2549bcfbadb585ad8471ebdc7bdf91e32e34ae3889001c1c106a6af"},
|
1450 |
+
{file = "websockets-10.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:5b936bf552e4f6357f5727579072ff1e1324717902127ffe60c92d29b67b7be3"},
|
1451 |
+
{file = "websockets-10.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:e4e08305bfd76ba8edab08dcc6496f40674f44eb9d5e23153efa0a35750337e8"},
|
1452 |
+
{file = "websockets-10.3-cp39-cp39-win32.whl", hash = "sha256:bb621ec2dbbbe8df78a27dbd9dd7919f9b7d32a73fafcb4d9252fc4637343582"},
|
1453 |
+
{file = "websockets-10.3-cp39-cp39-win_amd64.whl", hash = "sha256:51695d3b199cd03098ae5b42833006a0f43dc5418d3102972addc593a783bc02"},
|
1454 |
+
{file = "websockets-10.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:907e8247480f287aa9bbc9391bd6de23c906d48af54c8c421df84655eef66af7"},
|
1455 |
+
{file = "websockets-10.3-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b1359aba0ff810d5830d5ab8e2c4a02bebf98a60aa0124fb29aa78cfdb8031f"},
|
1456 |
+
{file = "websockets-10.3-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:93d5ea0b5da8d66d868b32c614d2b52d14304444e39e13a59566d4acb8d6e2e4"},
|
1457 |
+
{file = "websockets-10.3-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:7934e055fd5cd9dee60f11d16c8d79c4567315824bacb1246d0208a47eca9755"},
|
1458 |
+
{file = "websockets-10.3-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:3eda1cb7e9da1b22588cefff09f0951771d6ee9fa8dbe66f5ae04cc5f26b2b55"},
|
1459 |
+
{file = "websockets-10.3.tar.gz", hash = "sha256:fc06cc8073c8e87072138ba1e431300e2d408f054b27047d047b549455066ff4"},
|
1460 |
+
]
|
1461 |
+
yarl = []
|
pyproject.toml
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[tool.poetry]
|
2 |
+
name = "emoji-predictor"
|
3 |
+
version = "0.1.0"
|
4 |
+
description = ""
|
5 |
+
authors = ["vincent <[email protected]>"]
|
6 |
+
|
7 |
+
[tool.poetry.dependencies]
|
8 |
+
python = "^3.9"
|
9 |
+
torch = "^1.12.1"
|
10 |
+
gradio = "^3.3.1"
|
11 |
+
transformers = "^4.22.1"
|
12 |
+
|
13 |
+
[tool.poetry.dev-dependencies]
|
14 |
+
|
15 |
+
[build-system]
|
16 |
+
requires = ["poetry-core>=1.0.0"]
|
17 |
+
build-backend = "poetry.core.masonry.api"
|
requirements.txt
ADDED
@@ -0,0 +1,74 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
aiohttp==3.8.1
|
2 |
+
aiosignal==1.2.0
|
3 |
+
analytics-python==1.4.0
|
4 |
+
anyio==3.6.1
|
5 |
+
async-timeout==4.0.2
|
6 |
+
attrs==22.1.0
|
7 |
+
backoff==1.10.0
|
8 |
+
bcrypt==4.0.0
|
9 |
+
certifi==2022.9.14
|
10 |
+
cffi==1.15.1
|
11 |
+
charset-normalizer==2.1.1
|
12 |
+
click==8.1.3
|
13 |
+
contourpy==1.0.5
|
14 |
+
cryptography==38.0.1
|
15 |
+
cycler==0.11.0
|
16 |
+
fastapi==0.85.0
|
17 |
+
ffmpy==0.3.0
|
18 |
+
filelock==3.8.0
|
19 |
+
fonttools==4.37.2
|
20 |
+
frozenlist==1.3.1
|
21 |
+
fsspec==2022.8.2
|
22 |
+
gradio==3.3.1
|
23 |
+
h11==0.12.0
|
24 |
+
httpcore==0.15.0
|
25 |
+
httpx==0.23.0
|
26 |
+
huggingface-hub==0.9.1
|
27 |
+
idna==3.4
|
28 |
+
Jinja2==3.1.2
|
29 |
+
kiwisolver==1.4.4
|
30 |
+
linkify-it-py==1.0.3
|
31 |
+
markdown-it-py==2.1.0
|
32 |
+
MarkupSafe==2.1.1
|
33 |
+
matplotlib==3.6.0
|
34 |
+
mdit-py-plugins==0.3.0
|
35 |
+
mdurl==0.1.2
|
36 |
+
monotonic==1.6
|
37 |
+
multidict==6.0.2
|
38 |
+
numpy==1.23.3
|
39 |
+
orjson==3.8.0
|
40 |
+
packaging==21.3
|
41 |
+
pandas==1.4.4
|
42 |
+
paramiko==2.11.0
|
43 |
+
Pillow==9.2.0
|
44 |
+
pip==22.0.4
|
45 |
+
pycparser==2.21
|
46 |
+
pycryptodome==3.15.0
|
47 |
+
pydantic==1.10.2
|
48 |
+
pydub==0.25.1
|
49 |
+
PyNaCl==1.5.0
|
50 |
+
pyparsing==3.0.9
|
51 |
+
python-dateutil==2.8.2
|
52 |
+
python-multipart==0.0.5
|
53 |
+
pytz==2022.2.1
|
54 |
+
PyYAML==6.0
|
55 |
+
regex==2022.9.13
|
56 |
+
requests==2.28.1
|
57 |
+
rfc3986==1.5.0
|
58 |
+
setuptools==62.0.0
|
59 |
+
setuptools-scm==7.0.5
|
60 |
+
six==1.16.0
|
61 |
+
sniffio==1.3.0
|
62 |
+
starlette==0.20.4
|
63 |
+
tokenizers==0.12.1
|
64 |
+
tomli==2.0.1
|
65 |
+
torch==1.12.1
|
66 |
+
tqdm==4.64.1
|
67 |
+
transformers==4.22.1
|
68 |
+
typing_extensions==4.3.0
|
69 |
+
uc-micro-py==1.0.1
|
70 |
+
urllib3==1.26.12
|
71 |
+
uvicorn==0.18.3
|
72 |
+
websockets==10.3
|
73 |
+
wheel==0.37.1
|
74 |
+
yarl==1.8.1
|