Skip to content

Commit 9c098f1

Browse files
Revert "Add CLIP to KerasCV (#2331)"
This reverts commit 15db57c.
1 parent 15db57c commit 9c098f1

File tree

15 files changed

+1
-2408
lines changed

15 files changed

+1
-2408
lines changed

.github/workflows/actions.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,6 @@ jobs:
3838
pip install torch>=2.0.1+cpu
3939
pip install "jax[cpu]"
4040
pip install keras-core
41-
pip install keras-nlp-nightly --no-deps
42-
pip install tensorflow-text==2.15
4341
pip install -e ".[tests]" --progress-bar off --upgrade
4442
- name: Test with pytest
4543
env:
@@ -77,7 +75,6 @@ jobs:
7775
run: |
7876
pip install -r requirements.txt
7977
pip install -e ".[tests]" --progress-bar off --upgrade
80-
pip install keras-nlp-nightly
8178
- name: Test with pytest
8279
env:
8380
TEST_CUSTOM_OPS: false # TODO(ianstenbit): test custom ops, or figure out what our story is here

.kokoro/github/ubuntu/gpu/build.sh

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,26 +29,21 @@ then
2929
pip install --extra-index-url https://download.pytorch.org/whl/cpu torch==2.1.0+cpu
3030
pip install torchvision~=0.16.0
3131
pip install "jax[cpu]"
32-
pip install keras-nlp-nightly --no-deps
33-
pip install tensorflow-text==2.15
3432

3533
elif [ "$KERAS_BACKEND" == "tensorflow" ]
3634
then
3735
echo "TensorFlow backend detected."
3836
pip install -r requirements-tensorflow-cuda.txt --progress-bar off
39-
pip install keras-nlp-nightly
4037

4138
elif [ "$KERAS_BACKEND" == "jax" ]
4239
then
4340
echo "JAX backend detected."
4441
pip install -r requirements-jax-cuda.txt --progress-bar off
45-
pip install keras-nlp-nightly
4642

4743
elif [ "$KERAS_BACKEND" == "torch" ]
4844
then
4945
echo "PyTorch backend detected."
5046
pip install -r requirements-torch-cuda.txt --progress-bar off
51-
pip install keras-nlp-nightly
5247
fi
5348

5449
pip install --no-deps -e "." --progress-bar off

keras_cv/models/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,6 @@
183183
from keras_cv.models.backbones.vit_det.vit_det_aliases import ViTDetLBackbone
184184
from keras_cv.models.backbones.vit_det.vit_det_backbone import ViTDetBackbone
185185
from keras_cv.models.classification.image_classifier import ImageClassifier
186-
from keras_cv.models.feature_extractor.clip import CLIP
187186
from keras_cv.models.object_detection.retinanet.retinanet import RetinaNet
188187
from keras_cv.models.object_detection.yolo_v8.yolo_v8_backbone import (
189188
YOLOV8Backbone,

keras_cv/models/feature_extractor/__init__.py

Lines changed: 0 additions & 13 deletions
This file was deleted.

keras_cv/models/feature_extractor/clip/__init__.py

Lines changed: 0 additions & 23 deletions
This file was deleted.

0 commit comments

Comments
 (0)