Spaces:
Sleeping
Sleeping
nei10u
commited on
Commit
•
bc164e4
1
Parent(s):
bc179e2
Add application file
Browse files- .gitignore +147 -0
- app.py +65 -0
- requirements.txt +423 -0
.gitignore
ADDED
@@ -0,0 +1,147 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Swift Package
|
2 |
+
.DS_Store
|
3 |
+
/.build
|
4 |
+
/Packages
|
5 |
+
/*.xcodeproj
|
6 |
+
.swiftpm
|
7 |
+
.vscode
|
8 |
+
.*.sw?
|
9 |
+
*.docc-build
|
10 |
+
*.vs
|
11 |
+
Package.resolved
|
12 |
+
|
13 |
+
# Byte-compiled / optimized / DLL files
|
14 |
+
__pycache__/
|
15 |
+
*.py[cod]
|
16 |
+
*$py.class
|
17 |
+
|
18 |
+
# C extensions
|
19 |
+
*.so
|
20 |
+
|
21 |
+
# Distribution / packaging
|
22 |
+
.Python
|
23 |
+
build/
|
24 |
+
develop-eggs/
|
25 |
+
dist/
|
26 |
+
downloads/
|
27 |
+
eggs/
|
28 |
+
.eggs/
|
29 |
+
lib/
|
30 |
+
lib64/
|
31 |
+
parts/
|
32 |
+
sdist/
|
33 |
+
var/
|
34 |
+
wheels/
|
35 |
+
pip-wheel-metadata/
|
36 |
+
share/python-wheels/
|
37 |
+
*.egg-info/
|
38 |
+
.installed.cfg
|
39 |
+
*.egg
|
40 |
+
MANIFEST
|
41 |
+
|
42 |
+
# PyInstaller
|
43 |
+
# Usually these files are written by a python script from a template
|
44 |
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
45 |
+
*.manifest
|
46 |
+
*.spec
|
47 |
+
|
48 |
+
# Installer logs
|
49 |
+
pip-log.txt
|
50 |
+
pip-delete-this-directory.txt
|
51 |
+
|
52 |
+
# Unit test / coverage reports
|
53 |
+
htmlcov/
|
54 |
+
.tox/
|
55 |
+
.nox/
|
56 |
+
.coverage
|
57 |
+
.coverage.*
|
58 |
+
.cache
|
59 |
+
nosetests.xml
|
60 |
+
coverage.xml
|
61 |
+
*.cover
|
62 |
+
*.py,cover
|
63 |
+
.hypothesis/
|
64 |
+
.pytest_cache/
|
65 |
+
|
66 |
+
# Translations
|
67 |
+
*.mo
|
68 |
+
*.pot
|
69 |
+
|
70 |
+
# Django stuff:
|
71 |
+
*.log
|
72 |
+
local_settings.py
|
73 |
+
db.sqlite3
|
74 |
+
db.sqlite3-journal
|
75 |
+
|
76 |
+
# Flask stuff:
|
77 |
+
instance/
|
78 |
+
.webassets-cache
|
79 |
+
|
80 |
+
# Scrapy stuff:
|
81 |
+
.scrapy
|
82 |
+
|
83 |
+
# Sphinx documentation
|
84 |
+
docs/_build/
|
85 |
+
|
86 |
+
# PyBuilder
|
87 |
+
target/
|
88 |
+
|
89 |
+
# Jupyter Notebook
|
90 |
+
.ipynb_checkpoints
|
91 |
+
|
92 |
+
# IPython
|
93 |
+
profile_default/
|
94 |
+
ipython_config.py
|
95 |
+
|
96 |
+
# pyenv
|
97 |
+
.python-version
|
98 |
+
|
99 |
+
# pipenv
|
100 |
+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
101 |
+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
102 |
+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
103 |
+
# install all needed dependencies.
|
104 |
+
#Pipfile.lock
|
105 |
+
|
106 |
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
|
107 |
+
__pypackages__/
|
108 |
+
|
109 |
+
# Celery stuff
|
110 |
+
celerybeat-schedule
|
111 |
+
celerybeat.pid
|
112 |
+
|
113 |
+
# SageMath parsed files
|
114 |
+
*.sage.py
|
115 |
+
|
116 |
+
# Environments
|
117 |
+
.env
|
118 |
+
.venv
|
119 |
+
env/
|
120 |
+
venv/
|
121 |
+
ENV/
|
122 |
+
env.bak/
|
123 |
+
venv.bak/
|
124 |
+
|
125 |
+
# Spyder project settings
|
126 |
+
.spyderproject
|
127 |
+
.spyproject
|
128 |
+
|
129 |
+
# Rope project settings
|
130 |
+
.ropeproject
|
131 |
+
|
132 |
+
# mkdocs documentation
|
133 |
+
/site
|
134 |
+
|
135 |
+
# mypy
|
136 |
+
.mypy_cache/
|
137 |
+
.dmypy.json
|
138 |
+
dmypy.json
|
139 |
+
|
140 |
+
# Pyre type checker
|
141 |
+
.pyre/
|
142 |
+
|
143 |
+
# macOS filesystem
|
144 |
+
*.DS_Store
|
145 |
+
|
146 |
+
# ideaj
|
147 |
+
.idea
|
app.py
ADDED
@@ -0,0 +1,65 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
import translators as ts
|
3 |
+
from PIL import Image
|
4 |
+
from gradio import Blocks, Markdown, Button, Textbox, Row, Column, Dropdown, Video
|
5 |
+
from langchain import Cohere, LLMChain, PromptTemplate
|
6 |
+
from transformers import BlipProcessor, BlipForConditionalGeneration
|
7 |
+
|
8 |
+
processor = BlipProcessor.from_pretrained("Salesforce/blip-image-captioning-base")
|
9 |
+
model = BlipForConditionalGeneration.from_pretrained("Salesforce/blip-image-captioning-base")
|
10 |
+
|
11 |
+
|
12 |
+
def translate_into_cn(source):
|
13 |
+
print(ts.translators_pool)
|
14 |
+
result = ts.translate_text(query_text=source, translator='bing', from_language='en', to_language='zh')
|
15 |
+
return result
|
16 |
+
|
17 |
+
|
18 |
+
def predict_step(cohere_key, img, style):
|
19 |
+
i_image = Image.fromarray(img.astype('int8'), 'RGB')
|
20 |
+
|
21 |
+
pixel_values = processor(images=i_image, return_tensors="pt", max_length=1024, verbose=True).pixel_values
|
22 |
+
|
23 |
+
output = model.generate(pixel_values)
|
24 |
+
|
25 |
+
preds = processor.batch_decode(output, skip_special_tokens=True)
|
26 |
+
preds = [pred.strip() for pred in preds]
|
27 |
+
# 条件:严格按照要求完成任务,输出内容直接为主体内容,输出内容前后不要有其他符号,注意语句保持通顺,输出内容全部是中文," \ " 不要重复输出内容, 不需要换行,不需要有标题,不需要排版格式。" \ "\n "\n2. Give the
|
28 |
+
# final output content an evaluation score as required. The score range is 0-100, 0 is the worst, 100 is the best,
|
29 |
+
# and the score should be objective. The format is [score:xxx]. Add at the end." \
|
30 |
+
question = "Requirements: \nYou are a writing master. According to the content: {}, write a 50 words essay in any " \
|
31 |
+
"form, by the style of \"{}\" as the final output content. " \
|
32 |
+
"\nfinal output content:" \
|
33 |
+
.format(preds[0], style)
|
34 |
+
print("question:{}".format(question))
|
35 |
+
template = """{question}"""
|
36 |
+
prompt = PromptTemplate(template=template, input_variables=["question"])
|
37 |
+
llm = Cohere(cohere_api_key=cohere_key, model="command", temperature=0.3, verbose=True)
|
38 |
+
llm_chain = LLMChain(prompt=prompt, llm=llm)
|
39 |
+
result = llm_chain.run(question)
|
40 |
+
print("result:{}".format(result))
|
41 |
+
# result = llm.generate([prompt])
|
42 |
+
return preds[0], translate_into_cn(result)
|
43 |
+
|
44 |
+
|
45 |
+
with Blocks() as demo:
|
46 |
+
Markdown("图生文/文生视频")
|
47 |
+
with Row():
|
48 |
+
with Column():
|
49 |
+
cohere_key = gr.Text(label="cohere key:")
|
50 |
+
image = gr.Image()
|
51 |
+
dropdown = Dropdown(
|
52 |
+
["Shakespeare", "luxun", "xuzhimo", "moyan", "laoshe"],
|
53 |
+
label="Style",
|
54 |
+
info="选择你需要的文章的风格"
|
55 |
+
)
|
56 |
+
essay_btn = Button("Generate Essay")
|
57 |
+
with Column():
|
58 |
+
prediction_output = Textbox(label="Prediction")
|
59 |
+
essay_output = Textbox(label="Essay")
|
60 |
+
video_output = Video(label="Video")
|
61 |
+
# Step 1
|
62 |
+
essay_btn.click(fn=predict_step, inputs=[cohere_key, image, dropdown], outputs=[prediction_output, essay_output],
|
63 |
+
api_name="essay_generate")
|
64 |
+
|
65 |
+
demo.launch(debug=True)
|
requirements.txt
ADDED
@@ -0,0 +1,423 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
absl-py==1.4.0
|
2 |
+
accelerate==0.18.0
|
3 |
+
addict==2.4.0
|
4 |
+
aiofiles==23.1.0
|
5 |
+
aiohttp==3.8.4
|
6 |
+
aiosignal==1.3.1
|
7 |
+
aliyun-python-sdk-core==2.13.36
|
8 |
+
aliyun-python-sdk-kms==2.16.1
|
9 |
+
altair==5.0.1
|
10 |
+
anyio==3.6.2
|
11 |
+
aom==3.5.0
|
12 |
+
appnope==0.1.3
|
13 |
+
argilla==1.3.2
|
14 |
+
arrow-cpp==11.0.0
|
15 |
+
asttokens==2.2.1
|
16 |
+
astunparse==1.6.3
|
17 |
+
async-timeout==4.0.2
|
18 |
+
attrs==23.1.0
|
19 |
+
aws-c-auth==0.6.24
|
20 |
+
aws-c-cal==0.5.20
|
21 |
+
aws-c-common==0.8.11
|
22 |
+
aws-c-compression==0.2.16
|
23 |
+
aws-c-event-stream==0.2.18
|
24 |
+
aws-c-http==0.7.4
|
25 |
+
aws-c-io==0.13.17
|
26 |
+
aws-c-mqtt==0.8.6
|
27 |
+
aws-c-s3==0.2.4
|
28 |
+
aws-c-sdkutils==0.1.7
|
29 |
+
aws-checksums==0.1.14
|
30 |
+
aws-crt-cpp==0.19.7
|
31 |
+
aws-sdk-cpp==1.10.57
|
32 |
+
backcall==0.2.0
|
33 |
+
backoff==2.2.1
|
34 |
+
backports.functools_lru_cache==1.6.4
|
35 |
+
backports==1.0
|
36 |
+
beautifulsoup4==4.12.2
|
37 |
+
blinker==1.6.2
|
38 |
+
brotli-bin==1.0.9
|
39 |
+
brotli==1.0.9
|
40 |
+
bzip2==1.0.8
|
41 |
+
c-ares==1.19.1
|
42 |
+
ca-certificates==2023.5.7
|
43 |
+
cached-property==1.5.2
|
44 |
+
cached_property==1.5.2
|
45 |
+
cachetools==5.3.0
|
46 |
+
cairo==1.16.0
|
47 |
+
cchardet==2.1.7
|
48 |
+
certifi==2023.5.7
|
49 |
+
cffi==1.15.1
|
50 |
+
chardet==5.1.0
|
51 |
+
charset-normalizer==2.0.4
|
52 |
+
chromadb==0.3.22
|
53 |
+
click==8.1.3
|
54 |
+
clickhouse-connect==0.5.24
|
55 |
+
cohere==4.8.0
|
56 |
+
colorama==0.4.6
|
57 |
+
comm==0.1.3
|
58 |
+
contourpy==1.1.0
|
59 |
+
cpython==0.0.6
|
60 |
+
crcmod==1.7
|
61 |
+
cryptography==41.0.1
|
62 |
+
cycler==0.11.0
|
63 |
+
dataclasses-json==0.5.7
|
64 |
+
datasets==2.11.0
|
65 |
+
dav1d==1.2.1
|
66 |
+
debugpy==1.6.7
|
67 |
+
decorator==5.1.1
|
68 |
+
deprecated==1.2.13
|
69 |
+
diffusers==0.17.1
|
70 |
+
dill==0.3.6
|
71 |
+
dnspython==2.3.0
|
72 |
+
docstring-parser==0.15
|
73 |
+
duckdb==0.7.1
|
74 |
+
einops==0.6.1
|
75 |
+
et-xmlfile==1.1.0
|
76 |
+
exceptiongroup==1.1.1
|
77 |
+
executing==1.2.0
|
78 |
+
expat==2.5.0
|
79 |
+
fake-useragent==1.1.3
|
80 |
+
fastapi==0.92.0
|
81 |
+
ffmpeg==6.0.0
|
82 |
+
ffmpy==0.3.0
|
83 |
+
filelock==3.12.0
|
84 |
+
flatbuffers==23.3.3
|
85 |
+
font-ttf-dejavu-sans-mono==2.37
|
86 |
+
font-ttf-inconsolata==3.000
|
87 |
+
font-ttf-source-code-pro==2.038
|
88 |
+
font-ttf-ubuntu==0.83
|
89 |
+
fontconfig==2.14.2
|
90 |
+
fonts-conda-ecosystem==1
|
91 |
+
fonts-conda-forge==1
|
92 |
+
fonttools==4.40.0
|
93 |
+
freetype==2.12.1
|
94 |
+
fribidi==1.0.10
|
95 |
+
frozenlist==1.3.3
|
96 |
+
fsspec==2023.5.0
|
97 |
+
ftfy==6.1.1
|
98 |
+
futures==3.0.5
|
99 |
+
gast==0.4.0
|
100 |
+
gettext==0.21.1
|
101 |
+
gflags==2.2.2
|
102 |
+
giflib==5.2.1
|
103 |
+
gitdb==4.0.10
|
104 |
+
gitpython==3.1.31
|
105 |
+
glog==0.6.0
|
106 |
+
gmp==6.2.1
|
107 |
+
gmpy2==2.1.2
|
108 |
+
gnutls==3.7.8
|
109 |
+
google-api-core==2.11.0
|
110 |
+
google-api-python-client==2.86.0
|
111 |
+
google-auth-httplib2==0.1.0
|
112 |
+
google-auth-oauthlib==1.0.0
|
113 |
+
google-auth==2.18.0
|
114 |
+
google-cloud-core==2.3.2
|
115 |
+
google-cloud-translate==3.11.1
|
116 |
+
google-pasta==0.2.0
|
117 |
+
google-search-results==2.4.2
|
118 |
+
googleapis-common-protos==1.59.0
|
119 |
+
gradio==3.23.0
|
120 |
+
graphite2==1.3.13
|
121 |
+
greenlet==2.0.2
|
122 |
+
grpcio==1.51.1
|
123 |
+
gunicorn==20.1.0
|
124 |
+
h11==0.14.0
|
125 |
+
h2==4.1.0
|
126 |
+
h5py==3.8.0
|
127 |
+
harfbuzz==7.3.0
|
128 |
+
hdf5==1.14.0
|
129 |
+
hnswlib==0.7.0
|
130 |
+
hpack==4.0.0
|
131 |
+
httpcore==0.16.3
|
132 |
+
httplib2==0.22.0
|
133 |
+
httptools==0.5.0
|
134 |
+
httpx==0.23.3
|
135 |
+
huggingface-hub==0.13.4
|
136 |
+
huggingface_hub==0.15.1
|
137 |
+
hyperframe==6.0.1
|
138 |
+
icu==72.1
|
139 |
+
idna==3.4
|
140 |
+
importlib-metadata==6.6.0
|
141 |
+
importlib_metadata==6.6.0
|
142 |
+
importlib_resources==5.12.0
|
143 |
+
ipykernel==6.23.1
|
144 |
+
ipython==8.14.0
|
145 |
+
ipywidgets==8.0.6
|
146 |
+
jax==0.4.11
|
147 |
+
jedi==0.18.2
|
148 |
+
jinja2==3.1.2
|
149 |
+
jmespath==0.10.0
|
150 |
+
joblib==1.3.1
|
151 |
+
jsonschema==4.17.3
|
152 |
+
jupyter_client==8.2.0
|
153 |
+
jupyter_core==5.3.0
|
154 |
+
jupyterlab_widgets==3.0.7
|
155 |
+
keras-preprocessing==1.1.2
|
156 |
+
keras==2.12.0
|
157 |
+
kiwisolver==1.4.4
|
158 |
+
krb5==1.20.1
|
159 |
+
lame==3.100
|
160 |
+
langchain==0.0.190
|
161 |
+
lcms2==2.15
|
162 |
+
lerc==4.0.0
|
163 |
+
libabseil==20220623.0
|
164 |
+
libaec==1.0.6
|
165 |
+
libarrow==11.0.0
|
166 |
+
libass==0.17.1
|
167 |
+
libblas==3.9.0
|
168 |
+
libbrotlicommon==1.0.9
|
169 |
+
libbrotlidec==1.0.9
|
170 |
+
libbrotlienc==1.0.9
|
171 |
+
libcblas==3.9.0
|
172 |
+
libclang==16.0.0
|
173 |
+
libcrc32c==1.1.2
|
174 |
+
libcurl==8.1.2
|
175 |
+
libcxx==16.0.5
|
176 |
+
libdeflate==1.18
|
177 |
+
libedit==3.1.20191231
|
178 |
+
libev==4.33
|
179 |
+
libevent==2.1.10
|
180 |
+
libexpat==2.5.0
|
181 |
+
libffi==3.4.2
|
182 |
+
libgfortran5==12.2.0
|
183 |
+
libgfortran==5.0.0
|
184 |
+
libglib==2.76.3
|
185 |
+
libgoogle-cloud==2.7.0
|
186 |
+
libgrpc==1.51.1
|
187 |
+
libiconv==1.17
|
188 |
+
libidn2==2.3.4
|
189 |
+
libjpeg-turbo==2.1.5.1
|
190 |
+
liblapack==3.9.0
|
191 |
+
libnghttp2==1.52.0
|
192 |
+
libopenblas==0.3.23
|
193 |
+
libopus==1.3.1
|
194 |
+
libpng==1.6.39
|
195 |
+
libprotobuf==3.21.12
|
196 |
+
libsodium==1.0.18
|
197 |
+
libsqlite==3.42.0
|
198 |
+
libssh2==1.11.0
|
199 |
+
libtasn1==4.19.0
|
200 |
+
libthrift==0.18.0
|
201 |
+
libtiff==4.5.0
|
202 |
+
libunistring==0.9.10
|
203 |
+
libutf8proc==2.8.0
|
204 |
+
libvpx==1.13.0
|
205 |
+
libwebp-base==1.3.0
|
206 |
+
libxcb==1.15
|
207 |
+
libxml2==2.11.4
|
208 |
+
libxslt==1.1.37
|
209 |
+
libzlib==1.2.13
|
210 |
+
linkify-it-py==2.0.0
|
211 |
+
llama-cpp-python==0.1.23
|
212 |
+
llvm-openmp==16.0.5
|
213 |
+
lxml==4.9.2
|
214 |
+
lz4-c==1.9.4
|
215 |
+
lz4==4.3.2
|
216 |
+
markdown-it-py==2.2.0
|
217 |
+
markdown==3.4.3
|
218 |
+
markupsafe==2.1.2
|
219 |
+
marshmallow-enum==1.5.1
|
220 |
+
marshmallow==3.19.0
|
221 |
+
matplotlib-base==3.7.1
|
222 |
+
matplotlib-inline==0.1.6
|
223 |
+
mdit-py-plugins==0.3.3
|
224 |
+
mdurl==0.1.2
|
225 |
+
ml-dtypes==0.1.0
|
226 |
+
modelscope==1.7.0
|
227 |
+
monotonic==1.6
|
228 |
+
mpc==1.3.1
|
229 |
+
mpfr==4.2.0
|
230 |
+
mpmath==1.3.0
|
231 |
+
msg-parser==1.2.0
|
232 |
+
multidict==6.0.4
|
233 |
+
multiprocess==0.70.14
|
234 |
+
munkres==1.1.4
|
235 |
+
mypy-extensions==1.0.0
|
236 |
+
mysql-common==8.0.32
|
237 |
+
mysql-connector-python==8.0.33
|
238 |
+
mysql-libs==8.0.32
|
239 |
+
mysqlclient==2.1.1
|
240 |
+
ncurses==6.3
|
241 |
+
nest-asyncio==1.5.6
|
242 |
+
nettle==3.8.1
|
243 |
+
networkx==3.1
|
244 |
+
ninja==1.11.1
|
245 |
+
nltk==3.8.1
|
246 |
+
numexpr==2.8.4
|
247 |
+
numpy==1.22.0
|
248 |
+
oauthlib==3.2.2
|
249 |
+
olefile==0.46
|
250 |
+
open-clip-torch==2.20.0
|
251 |
+
openai==0.27.4
|
252 |
+
openapi-schema-pydantic==1.2.4
|
253 |
+
opencv-python==4.8.0.74
|
254 |
+
openh264==2.3.1
|
255 |
+
openjpeg==2.5.0
|
256 |
+
openpyxl==3.1.2
|
257 |
+
openssl==3.1.1
|
258 |
+
opt_einsum==3.3.0
|
259 |
+
orc==1.8.2
|
260 |
+
orjson==3.9.1
|
261 |
+
oss2==2.18.0
|
262 |
+
p11-kit==0.24.1
|
263 |
+
packaging==23.1
|
264 |
+
pandas==1.3.5
|
265 |
+
parquet-cpp==1.5.1
|
266 |
+
parso==0.8.3
|
267 |
+
pathos==0.3.0
|
268 |
+
pcre2==10.40
|
269 |
+
pexpect==4.8.0
|
270 |
+
pickleshare==0.7.5
|
271 |
+
pillow==9.5.0
|
272 |
+
pip==23.1.2
|
273 |
+
pixman==0.40.0
|
274 |
+
pkgutil-resolve-name==1.3.10
|
275 |
+
platformdirs==3.5.1
|
276 |
+
plotly==5.15.0
|
277 |
+
pooch==1.7.0
|
278 |
+
posthog==3.0.1
|
279 |
+
pox==0.3.2
|
280 |
+
ppft==1.7.6.6
|
281 |
+
prompt-toolkit==3.0.38
|
282 |
+
prompt_toolkit==3.0.38
|
283 |
+
proto-plus==1.22.2
|
284 |
+
protobuf==3.20.3
|
285 |
+
psutil==5.9.5
|
286 |
+
psycopg2-binary==2.9.6
|
287 |
+
pthread-stubs==0.4
|
288 |
+
ptyprocess==0.7.0
|
289 |
+
pure_eval==0.2.2
|
290 |
+
pyarrow==11.0.0
|
291 |
+
pyasn1-modules==0.3.0
|
292 |
+
pyasn1==0.5.0
|
293 |
+
pycparser==2.21
|
294 |
+
pycryptodome==3.18.0
|
295 |
+
pydantic==1.10.8
|
296 |
+
pydeck==0.8.0
|
297 |
+
pydub==0.25.1
|
298 |
+
pyexecjs==1.5.1
|
299 |
+
pygments==2.15.1
|
300 |
+
pyjwt==2.7.0
|
301 |
+
pymongo==4.4.1
|
302 |
+
pympler==1.0.1
|
303 |
+
pymupdf==1.22.5
|
304 |
+
pymysql==1.0.3
|
305 |
+
pyopenssl==23.2.0
|
306 |
+
pypandoc==1.11
|
307 |
+
pyparsing==3.1.0
|
308 |
+
pypdf==3.8.1
|
309 |
+
pyrsistent==0.19.3
|
310 |
+
pysocks==1.7.1
|
311 |
+
pysrt==1.1.2
|
312 |
+
python-dateutil==2.8.2
|
313 |
+
python-docx==0.8.11
|
314 |
+
python-dotenv==1.0.0
|
315 |
+
python-flatbuffers==23.5.26
|
316 |
+
python-magic==0.4.27
|
317 |
+
python-multipart==0.0.6
|
318 |
+
python-pptx==0.6.21
|
319 |
+
python-tzdata==2023.3
|
320 |
+
python==3.10.11
|
321 |
+
python_abi==3.10
|
322 |
+
pytz-deprecation-shim==0.1.0.post0
|
323 |
+
pytz==2023.3
|
324 |
+
pyu2f==0.1.5
|
325 |
+
pyyaml==6.0
|
326 |
+
pyzmq==25.1.0
|
327 |
+
re2==2023.02.01
|
328 |
+
readline==8.2
|
329 |
+
redis==4.6.0
|
330 |
+
regex==2023.6.3
|
331 |
+
requests-oauthlib==1.3.1
|
332 |
+
requests==2.31.0
|
333 |
+
responses==0.18.0
|
334 |
+
rfc3986==1.5.0
|
335 |
+
rich==13.3.5
|
336 |
+
rsa==4.9
|
337 |
+
safetensors==0.3.1
|
338 |
+
scikit-learn==1.3.0
|
339 |
+
scipy==1.10.1
|
340 |
+
semantic_version==2.10.0
|
341 |
+
sentence-transformers==2.2.2
|
342 |
+
sentencepiece==0.1.99
|
343 |
+
setuptools==67.7.2
|
344 |
+
simplejson==3.19.1
|
345 |
+
six==1.16.0
|
346 |
+
sklearn==0.0.post5
|
347 |
+
sleef==3.5.1
|
348 |
+
smmap==3.0.5
|
349 |
+
snappy==1.1.10
|
350 |
+
sniffio==1.3.0
|
351 |
+
sortedcontainers==2.4.0
|
352 |
+
soupsieve==2.4.1
|
353 |
+
sqlalchemy==1.4.46
|
354 |
+
sqlparse==0.4.4
|
355 |
+
squarify==0.4.3
|
356 |
+
stack_data==0.6.2
|
357 |
+
starlette==0.25.0
|
358 |
+
streamlit==1.23.1
|
359 |
+
svt-av1==1.6.0
|
360 |
+
sympy==1.12
|
361 |
+
tenacity==8.2.2
|
362 |
+
tensorboard-data-server==0.7.0
|
363 |
+
tensorboard-plugin-wit==1.8.1
|
364 |
+
tensorboard==2.12.3
|
365 |
+
tensorboardx==2.2
|
366 |
+
tensorflow-base==2.11.1
|
367 |
+
tensorflow-estimator==2.12.0
|
368 |
+
tensorflow-io-gcs-filesystem==0.32.0
|
369 |
+
tensorflow==2.11.1
|
370 |
+
termcolor==2.3.0
|
371 |
+
threadpoolctl==3.2.0
|
372 |
+
tiktoken==0.3.3
|
373 |
+
timm==0.9.2
|
374 |
+
tk==8.6.12
|
375 |
+
tokenizers==0.13.3
|
376 |
+
toml==0.10.2
|
377 |
+
tomli==2.0.1
|
378 |
+
toolz==0.12.0
|
379 |
+
torch==2.0.1
|
380 |
+
torchvision==0.15.2
|
381 |
+
tornado==6.3.2
|
382 |
+
tqdm==4.65.0
|
383 |
+
traitlets==5.9.0
|
384 |
+
transformers==4.28.1
|
385 |
+
translators==5.7.8
|
386 |
+
typer==0.7.0
|
387 |
+
types-pyyaml==6.0.12.9
|
388 |
+
typing-extensions==4.6.3
|
389 |
+
typing-inspect==0.8.0
|
390 |
+
typing_extensions==4.6.3
|
391 |
+
tzdata==2023c
|
392 |
+
tzlocal==4.3
|
393 |
+
uc-micro-py==1.0.1
|
394 |
+
unicodedata2==15.0.0
|
395 |
+
unstructured==0.5.13
|
396 |
+
uritemplate==4.1.1
|
397 |
+
urllib3==2.0.2
|
398 |
+
uvicorn==0.20.0
|
399 |
+
uvloop==0.17.0
|
400 |
+
validators==0.20.0
|
401 |
+
watchdog==3.0.0
|
402 |
+
watchfiles==0.19.0
|
403 |
+
wcwidth==0.2.6
|
404 |
+
websockets==11.0.3
|
405 |
+
werkzeug==2.3.4
|
406 |
+
wheel==0.40.0
|
407 |
+
widgetsnbextension==4.0.7
|
408 |
+
wrapt==1.14.1
|
409 |
+
x264==1!164.3095
|
410 |
+
x265==3.5
|
411 |
+
xlsxwriter==3.1.0
|
412 |
+
xorg-libxau==1.0.11
|
413 |
+
xorg-libxdmcp==1.1.3
|
414 |
+
xxhash==3.2.0
|
415 |
+
xz==5.2.6
|
416 |
+
yaml==0.2.5
|
417 |
+
yapf==0.40.1
|
418 |
+
yarl==1.9.2
|
419 |
+
zeromq==4.3.4
|
420 |
+
zipp==3.15.0
|
421 |
+
zlib==1.2.13
|
422 |
+
zstandard==0.21.0
|
423 |
+
zstd==1.5.2
|