Skip to content

Commit b634f78

Browse files
committed
remove venv and reformat
1 parent d9a5aeb commit b634f78

14 files changed

+5
-16
lines changed

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,3 @@ build/
2020
.idea/
2121

2222
venv/
23-
venv_tf/
24-
venv_jax/

keras_rs/src/layers/embedding/embed_reduce_test.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88

99
from keras_rs.src import testing
1010
from keras_rs.src.layers.embedding.embed_reduce import EmbedReduce
11-
from keras_rs.src.utils import tpu_test_utils
1211

1312
try:
1413
import jax

keras_rs/src/layers/feature_interaction/dot_interaction_test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
from keras_rs.src.layers.feature_interaction.dot_interaction import (
99
DotInteraction,
1010
)
11-
from keras_rs.src.utils import tpu_test_utils
1211

1312

1413
class DotInteractionTest(testing.TestCase, parameterized.TestCase):
@@ -88,7 +87,8 @@ def test_call(self, self_interaction, skip_gather, exp_output_idx):
8887
output,
8988
self.exp_outputs[exp_output_idx],
9089
tpu_atol=1e-2,
91-
tpu_rtol=1e-2)
90+
tpu_rtol=1e-2,
91+
)
9292

9393
def test_invalid_input_rank(self):
9494
rank_1_input = [ops.ones((3,)), ops.ones((3,))]

keras_rs/src/layers/feature_interaction/feature_cross_test.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77
from keras_rs.src import testing
88
from keras_rs.src.layers.feature_interaction.feature_cross import FeatureCross
9-
from keras_rs.src.utils import tpu_test_utils
109

1110

1211
class FeatureCrossTest(testing.TestCase, parameterized.TestCase):

keras_rs/src/layers/retrieval/hard_negative_mining_test.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77
from keras_rs.src import testing
88
from keras_rs.src.layers.retrieval import hard_negative_mining
9-
from keras_rs.src.utils import tpu_test_utils
109

1110

1211
class HardNegativeMiningTest(testing.TestCase, parameterized.TestCase):

keras_rs/src/layers/retrieval/remove_accidental_hits_test.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77
from keras_rs.src import testing
88
from keras_rs.src.layers.retrieval import remove_accidental_hits
9-
from keras_rs.src.utils import tpu_test_utils
109

1110

1211
class RemoveAccidentalHitsTest(testing.TestCase, parameterized.TestCase):

keras_rs/src/layers/retrieval/sampling_probability_correction_test.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77
from keras_rs.src import testing
88
from keras_rs.src.layers.retrieval import sampling_probability_correction
9-
from keras_rs.src.utils import tpu_test_utils
109

1110

1211
class SamplingProbabilityCorrectionTest(

keras_rs/src/losses/list_mle_loss_test.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77
from keras_rs.src import testing
88
from keras_rs.src.losses.list_mle_loss import ListMLELoss
9-
from keras_rs.src.utils import tpu_test_utils
109

1110

1211
class ListMLELossTest(testing.TestCase, parameterized.TestCase):

keras_rs/src/losses/pairwise_hinge_loss_test.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77
from keras_rs.src import testing
88
from keras_rs.src.losses.pairwise_hinge_loss import PairwiseHingeLoss
9-
from keras_rs.src.utils import tpu_test_utils
109

1110

1211
class PairwiseHingeLossTest(testing.TestCase, parameterized.TestCase):

keras_rs/src/losses/pairwise_logistic_loss_test.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77
from keras_rs.src import testing
88
from keras_rs.src.losses.pairwise_logistic_loss import PairwiseLogisticLoss
9-
from keras_rs.src.utils import tpu_test_utils
109

1110

1211
class PairwiseLogisticLossTest(testing.TestCase, parameterized.TestCase):

0 commit comments

Comments
 (0)