mohsinmubaraksk commited on
Commit
55e06bb
1 Parent(s): 2219296

Upload 8 files

Browse files
Files changed (8) hide show
  1. LICENSE +201 -0
  2. README.md +6 -6
  3. app.py +4 -0
  4. cog.yaml +37 -0
  5. image.jpg +0 -0
  6. predict.py +157 -0
  7. pyproject.toml +37 -0
  8. requirements.txt +32 -0
LICENSE ADDED
@@ -0,0 +1,201 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright [yyyy] [name of copyright owner]
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
README.md CHANGED
@@ -1,13 +1,13 @@
1
  ---
2
- title: Llava MoE
3
- emoji: 🔥
4
  colorFrom: indigo
5
- colorTo: yellow
6
  sdk: gradio
7
- sdk_version: 4.16.0
8
  app_file: app.py
9
  pinned: false
10
  license: apache-2.0
 
11
  ---
12
-
13
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: MoE LLaVA
3
+ emoji: 🚀
4
  colorFrom: indigo
5
+ colorTo: blue
6
  sdk: gradio
7
+ sdk_version: 3.37.0
8
  app_file: app.py
9
  pinned: false
10
  license: apache-2.0
11
+ python_version: 3.11
12
  ---
13
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
app.py ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+
2
+ import deepspeed
3
+ import os
4
+ os.system('deepspeed --num_gpus=1 moellava/serve/gradio_web_server.py')
cog.yaml ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Configuration for Cog ⚙️
2
+ # Reference: https://github.com/replicate/cog/blob/main/docs/yaml.md
3
+
4
+ build:
5
+ gpu: true
6
+
7
+ python_version: "3.11"
8
+
9
+ python_packages:
10
+ - "torch==2.0.1"
11
+ - "accelerate==0.21.0"
12
+ - "bitsandbytes==0.41.0"
13
+ - "deepspeed==0.9.5"
14
+ - "einops-exts==0.0.4"
15
+ - "einops==0.6.1"
16
+ - "gradio==3.35.2"
17
+ - "gradio_client==0.2.9"
18
+ - "httpx==0.24.0"
19
+ - "markdown2==2.4.10"
20
+ - "numpy==1.26.0"
21
+ - "peft==0.4.0"
22
+ - "scikit-learn==1.2.2"
23
+ - "sentencepiece==0.1.99"
24
+ - "shortuuid==1.0.11"
25
+ - "timm==0.6.13"
26
+ - "tokenizers==0.13.3"
27
+ - "torch==2.0.1"
28
+ - "torchvision==0.15.2"
29
+ - "transformers==4.31.0"
30
+ - "wandb==0.15.12"
31
+ - "wavedrom==2.0.3.post3"
32
+ - "Pygments==2.16.1"
33
+ run:
34
+ - curl -o /usr/local/bin/pget -L "https://github.com/replicate/pget/releases/download/v0.0.3/pget" && chmod +x /usr/local/bin/pget
35
+
36
+ # predict.py defines how predictions are run on your model
37
+ predict: "predict.py:Predictor"
image.jpg ADDED
predict.py ADDED
@@ -0,0 +1,157 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import torch
2
+
3
+ from moellava.constants import IMAGE_TOKEN_INDEX, DEFAULT_IMAGE_TOKEN
4
+ from moellava.conversation import conv_templates, SeparatorStyle
5
+ from moellava.model.builder import load_pretrained_model
6
+ from moellava.utils import disable_torch_init
7
+ from moellava.mm_utils import tokenizer_image_token, KeywordsStoppingCriteria
8
+ from transformers.generation.streamers import TextIteratorStreamer
9
+
10
+ from PIL import Image
11
+
12
+ import requests
13
+ from io import BytesIO
14
+
15
+ from cog import BasePredictor, Input, Path, ConcatenateIterator
16
+ import time
17
+ import subprocess
18
+ from threading import Thread
19
+
20
+ import os
21
+ os.environ["HUGGINGFACE_HUB_CACHE"] = os.getcwd() + "/weights"
22
+
23
+ # url for the weights mirror
24
+ REPLICATE_WEIGHTS_URL = "https://weights.replicate.delivery/default"
25
+ # files to download from the weights mirrors
26
+ weights = [
27
+ {
28
+ "dest": "liuhaotian/llava-v1.5-13b",
29
+ # git commit hash from huggingface
30
+ "src": "llava-v1.5-13b/006818fc465ebda4c003c0998674d9141d8d95f8",
31
+ "files": [
32
+ "config.json",
33
+ "generation_config.json",
34
+ "pytorch_model-00001-of-00003.bin",
35
+ "pytorch_model-00002-of-00003.bin",
36
+ "pytorch_model-00003-of-00003.bin",
37
+ "pytorch_model.bin.index.json",
38
+ "special_tokens_map.json",
39
+ "tokenizer.model",
40
+ "tokenizer_config.json",
41
+ ]
42
+ },
43
+ {
44
+ "dest": "openai/clip-vit-large-patch14-336",
45
+ "src": "clip-vit-large-patch14-336/ce19dc912ca5cd21c8a653c79e251e808ccabcd1",
46
+ "files": [
47
+ "config.json",
48
+ "preprocessor_config.json",
49
+ "pytorch_model.bin"
50
+ ],
51
+ }
52
+ ]
53
+
54
+ def download_json(url: str, dest: Path):
55
+ res = requests.get(url, allow_redirects=True)
56
+ if res.status_code == 200 and res.content:
57
+ with dest.open("wb") as f:
58
+ f.write(res.content)
59
+ else:
60
+ print(f"Failed to download {url}. Status code: {res.status_code}")
61
+
62
+ def download_weights(baseurl: str, basedest: str, files: list[str]):
63
+ basedest = Path(basedest)
64
+ start = time.time()
65
+ print("downloading to: ", basedest)
66
+ basedest.mkdir(parents=True, exist_ok=True)
67
+ for f in files:
68
+ dest = basedest / f
69
+ url = os.path.join(REPLICATE_WEIGHTS_URL, baseurl, f)
70
+ if not dest.exists():
71
+ print("downloading url: ", url)
72
+ if dest.suffix == ".json":
73
+ download_json(url, dest)
74
+ else:
75
+ subprocess.check_call(["pget", url, str(dest)], close_fds=False)
76
+ print("downloading took: ", time.time() - start)
77
+
78
+ class Predictor(BasePredictor):
79
+ def setup(self) -> None:
80
+ """Load the model into memory to make running multiple predictions efficient"""
81
+ for weight in weights:
82
+ download_weights(weight["src"], weight["dest"], weight["files"])
83
+ disable_torch_init()
84
+
85
+ self.tokenizer, self.model, self.image_processor, self.context_len = load_pretrained_model("liuhaotian/llava-v1.5-13b", model_name="llava-v1.5-13b", model_base=None, load_8bit=False, load_4bit=False)
86
+
87
+ def predict(
88
+ self,
89
+ image: Path = Input(description="Input image"),
90
+ prompt: str = Input(description="Prompt to use for text generation"),
91
+ top_p: float = Input(description="When decoding text, samples from the top p percentage of most likely tokens; lower to ignore less likely tokens", ge=0.0, le=1.0, default=1.0),
92
+ temperature: float = Input(description="Adjusts randomness of outputs, greater than 1 is random and 0 is deterministic", default=0.2, ge=0.0),
93
+ max_tokens: int = Input(description="Maximum number of tokens to generate. A word is generally 2-3 tokens", default=1024, ge=0),
94
+ ) -> ConcatenateIterator[str]:
95
+ """Run a single prediction on the model"""
96
+
97
+ conv_mode = "llava_v1"
98
+ conv = conv_templates[conv_mode].copy()
99
+
100
+ image_data = load_image(str(image))
101
+ image_tensor = self.image_processor.preprocess(image_data, return_tensors='pt')['pixel_values'].half().cuda()
102
+
103
+ # loop start
104
+
105
+ # just one turn, always prepend image token
106
+ inp = DEFAULT_IMAGE_TOKEN + '\n' + prompt
107
+ conv.append_message(conv.roles[0], inp)
108
+
109
+ conv.append_message(conv.roles[1], None)
110
+ prompt = conv.get_prompt()
111
+
112
+ input_ids = tokenizer_image_token(prompt, self.tokenizer, IMAGE_TOKEN_INDEX, return_tensors='pt').unsqueeze(0).cuda()
113
+ stop_str = conv.sep if conv.sep_style != SeparatorStyle.TWO else conv.sep2
114
+ keywords = [stop_str]
115
+ stopping_criteria = KeywordsStoppingCriteria(keywords, self.tokenizer, input_ids)
116
+ streamer = TextIteratorStreamer(self.tokenizer, skip_prompt=True, timeout=20.0)
117
+
118
+ with torch.inference_mode():
119
+ thread = Thread(target=self.model.generate, kwargs=dict(
120
+ inputs=input_ids,
121
+ images=image_tensor,
122
+ do_sample=True,
123
+ temperature=temperature,
124
+ top_p=top_p,
125
+ max_new_tokens=max_tokens,
126
+ streamer=streamer,
127
+ use_cache=True,
128
+ stopping_criteria=[stopping_criteria]))
129
+ thread.start()
130
+ # workaround: second-to-last token is always " "
131
+ # but we want to keep it if it's not the second-to-last token
132
+ prepend_space = False
133
+ for new_text in streamer:
134
+ if new_text == " ":
135
+ prepend_space = True
136
+ continue
137
+ if new_text.endswith(stop_str):
138
+ new_text = new_text[:-len(stop_str)].strip()
139
+ prepend_space = False
140
+ elif prepend_space:
141
+ new_text = " " + new_text
142
+ prepend_space = False
143
+ if len(new_text):
144
+ yield new_text
145
+ if prepend_space:
146
+ yield " "
147
+ thread.join()
148
+
149
+
150
+ def load_image(image_file):
151
+ if image_file.startswith('http') or image_file.startswith('https'):
152
+ response = requests.get(image_file)
153
+ image = Image.open(BytesIO(response.content)).convert('RGB')
154
+ else:
155
+ image = Image.open(image_file).convert('RGB')
156
+ return image
157
+
pyproject.toml ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [build-system]
2
+ requires = ["setuptools>=61.0"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "moellava"
7
+ version = "1.0.0"
8
+ description = "Towards GPT-4 like large language and visual assistant."
9
+ readme = "README.md"
10
+ requires-python = ">=3.8"
11
+ classifiers = [
12
+ "Programming Language :: Python :: 3",
13
+ "License :: OSI Approved :: Apache Software License",
14
+ ]
15
+ dependencies = [
16
+ "torch==2.0.1", "torchvision==0.15.2",
17
+ "transformers==4.31.0", "tokenizers>=0.12.1,<0.14", "sentencepiece==0.1.99", "shortuuid",
18
+ "accelerate==0.21.0", "peft==0.4.0", "bitsandbytes==0.41.0",
19
+ "pydantic<2,>=1", "markdown2[all]", "numpy", "scikit-learn==1.2.2",
20
+ "gradio==3.35.2", "gradio_client==0.2.9",
21
+ "requests", "httpx==0.24.0", "uvicorn", "fastapi",
22
+ "einops==0.6.1", "einops-exts==0.0.4", "timm==0.6.13",
23
+ "protobuf==4.24.4", "tiktoken==0.5.2",
24
+ ]
25
+
26
+ [project.optional-dependencies]
27
+ train = ["deepspeed==0.12.6", "ninja", "wandb"]
28
+
29
+ [project.urls]
30
+ "Homepage" = "https://github.com/PKU-YuanGroup/MoE-LLaVA"
31
+ "Bug Tracker" = "https://github.com/PKU-YuanGroup/MoE-LLaVA/issues"
32
+
33
+ [tool.setuptools.packages.find]
34
+ exclude = ["assets*", "benchmark*", "docs", "dist*", "playground*", "scripts*", "tests*"]
35
+
36
+ [tool.wheel]
37
+ exclude = ["assets*", "benchmark*", "docs", "dist*", "playground*", "scripts*", "tests*"]
requirements.txt ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ --extra-index-url https://download.pytorch.org/whl/cu118
2
+ pip==23.3
3
+ einops
4
+ fastapi
5
+ markdown2[all]
6
+ numpy
7
+ requests
8
+ sentencepiece
9
+ tokenizers==0.15.1
10
+ torch==2.0.1
11
+ torchvision==0.15.2
12
+ uvicorn
13
+ wandb
14
+ shortuuid
15
+ httpx==0.24.0
16
+ peft==0.4.0
17
+ transformers==4.37.0
18
+ accelerate==0.21.0
19
+ bitsandbytes==0.41.0
20
+ scikit-learn==1.2.2
21
+ sentencepiece==0.1.99
22
+ einops==0.6.1
23
+ einops-exts==0.0.4
24
+ timm==0.6.13
25
+ decord==0.6.0
26
+ opencv-python==4.7.0.72
27
+ pytorchvideo @ git+https://github.com/facebookresearch/pytorchvideo.git@28fe037d212663c6a24f373b94cc5d478c8c1a1d
28
+ gradio==3.37.0
29
+ gradio_client==0.7.0
30
+ deepspeed==0.12.6
31
+ protobuf==4.24.4
32
+ tiktoken==0.5.2