-
Notifications
You must be signed in to change notification settings - Fork 449
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FEAT: Support CogVideoX video model (#2049)
Co-authored-by: qinxuye <[email protected]>
- Loading branch information
1 parent
cbdc811
commit 3ebe1f3
Showing
20 changed files
with
731 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
# Copyright 2022-2023 XProbe Inc. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
import codecs | ||
import json | ||
import os | ||
from itertools import chain | ||
|
||
from .core import ( | ||
BUILTIN_VIDEO_MODELS, | ||
MODEL_NAME_TO_REVISION, | ||
MODELSCOPE_VIDEO_MODELS, | ||
VIDEO_MODEL_DESCRIPTIONS, | ||
VideoModelFamilyV1, | ||
generate_video_description, | ||
get_cache_status, | ||
get_video_model_descriptions, | ||
) | ||
|
||
_model_spec_json = os.path.join(os.path.dirname(__file__), "model_spec.json") | ||
_model_spec_modelscope_json = os.path.join( | ||
os.path.dirname(__file__), "model_spec_modelscope.json" | ||
) | ||
BUILTIN_VIDEO_MODELS.update( | ||
dict( | ||
(spec["model_name"], VideoModelFamilyV1(**spec)) | ||
for spec in json.load(codecs.open(_model_spec_json, "r", encoding="utf-8")) | ||
) | ||
) | ||
for model_name, model_spec in BUILTIN_VIDEO_MODELS.items(): | ||
MODEL_NAME_TO_REVISION[model_name].append(model_spec.model_revision) | ||
|
||
MODELSCOPE_VIDEO_MODELS.update( | ||
dict( | ||
(spec["model_name"], VideoModelFamilyV1(**spec)) | ||
for spec in json.load( | ||
codecs.open(_model_spec_modelscope_json, "r", encoding="utf-8") | ||
) | ||
) | ||
) | ||
for model_name, model_spec in MODELSCOPE_VIDEO_MODELS.items(): | ||
MODEL_NAME_TO_REVISION[model_name].append(model_spec.model_revision) | ||
|
||
# register model description | ||
for model_name, model_spec in chain( | ||
MODELSCOPE_VIDEO_MODELS.items(), BUILTIN_VIDEO_MODELS.items() | ||
): | ||
VIDEO_MODEL_DESCRIPTIONS.update(generate_video_description(model_spec)) | ||
|
||
del _model_spec_json | ||
del _model_spec_modelscope_json |
Oops, something went wrong.