-
Notifications
You must be signed in to change notification settings - Fork 330
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* clip refactor * code cleanup and reformat * update encoder name * update clip encoder name * update clip encoder name in image encoder * add weights conversion script * update setup to install keras-nlp * new black formatting * add preset file * update array * update clip prests kaggle handle * update text model * update text encoder * update position embeddings * update positonal embeddings * add attention masks * update expanded mask * revert previous commit * change causal masks * undo previous commit * update attention masks * update clip encoder * add print statements * update the pooler output * remove print statements * add tests and preset * cleanup and reformat * update build * add copywrite to presets file * fix build state errors * update github actions and add preprocessor test * incorporate review comments * add modifications from review * change import checks * update keras_nlp import check * update kokoro tests * update kaggle preset version * update install instructions for keras-nlp --------- Co-authored-by: Divyashree Sreepathihalli <divyashreepathihalli>
- Loading branch information
1 parent
0f9e34d
commit 15db57c
Showing
15 changed files
with
2,408 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Copyright 2023 The KerasCV Authors | ||
# | ||
# 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 | ||
# | ||
# https://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. |
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,23 @@ | ||
# Copyright 2023 The KerasCV Authors | ||
# | ||
# 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 | ||
# | ||
# https://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. | ||
|
||
from keras_cv.models.feature_extractor.clip.clip_image_model import ( | ||
CLIPImageEncoder, | ||
) | ||
from keras_cv.models.feature_extractor.clip.clip_model import CLIP | ||
from keras_cv.models.feature_extractor.clip.clip_processor import CLIPProcessor | ||
from keras_cv.models.feature_extractor.clip.clip_text_model import ( | ||
CLIPTextEncoder, | ||
) | ||
from keras_cv.models.feature_extractor.clip.clip_tokenizer import CLIPTokenizer |
Oops, something went wrong.