|
4 | 4 | since your modifications would be overwritten.
|
5 | 5 | """
|
6 | 6 |
|
7 |
| -from keras_rs.src.layers.embedding.distributed_embedding import ( |
8 |
| - DistributedEmbedding as DistributedEmbedding, |
9 |
| -) |
10 |
| -from keras_rs.src.layers.embedding.distributed_embedding_config import ( |
11 |
| - FeatureConfig as FeatureConfig, |
12 |
| -) |
13 |
| -from keras_rs.src.layers.embedding.distributed_embedding_config import ( |
14 |
| - TableConfig as TableConfig, |
15 |
| -) |
16 |
| -from keras_rs.src.layers.embedding.embed_reduce import ( |
17 |
| - EmbedReduce as EmbedReduce, |
18 |
| -) |
19 |
| -from keras_rs.src.layers.feature_interaction.dot_interaction import ( |
20 |
| - DotInteraction as DotInteraction, |
21 |
| -) |
22 |
| -from keras_rs.src.layers.feature_interaction.feature_cross import ( |
23 |
| - FeatureCross as FeatureCross, |
24 |
| -) |
25 |
| -from keras_rs.src.layers.retrieval.brute_force_retrieval import ( |
26 |
| - BruteForceRetrieval as BruteForceRetrieval, |
27 |
| -) |
28 |
| -from keras_rs.src.layers.retrieval.hard_negative_mining import ( |
29 |
| - HardNegativeMining as HardNegativeMining, |
30 |
| -) |
31 |
| -from keras_rs.src.layers.retrieval.remove_accidental_hits import ( |
32 |
| - RemoveAccidentalHits as RemoveAccidentalHits, |
33 |
| -) |
| 7 | + |
| 8 | +from keras_rs.src.layers.embedding.distributed_embedding import DistributedEmbedding as DistributedEmbedding |
| 9 | +from keras_rs.src.layers.embedding.distributed_embedding_config import FeatureConfig as FeatureConfig |
| 10 | +from keras_rs.src.layers.embedding.distributed_embedding_config import TableConfig as TableConfig |
| 11 | +from keras_rs.src.layers.embedding.embed_reduce import EmbedReduce as EmbedReduce |
| 12 | +from keras_rs.src.layers.feature_interaction.dot_interaction import DotInteraction as DotInteraction |
| 13 | +from keras_rs.src.layers.feature_interaction.feature_cross import FeatureCross as FeatureCross |
| 14 | +from keras_rs.src.layers.retrieval.brute_force_retrieval import BruteForceRetrieval as BruteForceRetrieval |
| 15 | +from keras_rs.src.layers.retrieval.hard_negative_mining import HardNegativeMining as HardNegativeMining |
| 16 | +from keras_rs.src.layers.retrieval.remove_accidental_hits import RemoveAccidentalHits as RemoveAccidentalHits |
34 | 17 | from keras_rs.src.layers.retrieval.retrieval import Retrieval as Retrieval
|
35 |
| -from keras_rs.src.layers.retrieval.sampling_probability_correction import ( |
36 |
| - SamplingProbabilityCorrection as SamplingProbabilityCorrection, |
37 |
| -) |
| 18 | +from keras_rs.src.layers.retrieval.sampling_probability_correction import SamplingProbabilityCorrection as SamplingProbabilityCorrection |
0 commit comments