keras-rs-nightly 0.0.1.dev2025042203__py3-none-any.whl → 0.0.1.dev2025042603__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of keras-rs-nightly might be problematic. Click here for more details.

keras_rs/__init__.py CHANGED
@@ -1,30 +1,11 @@
1
- import os
1
+ """DO NOT EDIT.
2
2
 
3
- # Import everything from /api/ into keras_rs.
4
- from keras_rs.api import * # noqa: F403
3
+ This file was autogenerated. Do not edit it by hand,
4
+ since your modifications would be overwritten.
5
+ """
5
6
 
6
- # Import * ignores names starting with "_", and `__version__` comes from
7
- # `version` anyway.
8
- from keras_rs.src.version import __version__
9
-
10
- # Add everything in /api/ to the module search path.
11
- __path__.append(os.path.join(os.path.dirname(__file__), "api")) # noqa: F405
12
-
13
- # Don't pollute namespace.
14
- del os
15
-
16
-
17
- # Never autocomplete `.src` or `.api` on an imported keras_rs object.
18
- def __dir__() -> list[str]:
19
- keys = dict.fromkeys((globals().keys()))
20
- keys.pop("src")
21
- keys.pop("api")
22
- return list(keys)
23
-
24
-
25
- # Don't import `.src` or `.api` during `from keras_rs import *`.
26
- __all__ = [
27
- name
28
- for name in globals().keys()
29
- if not (name.startswith("_") or name in ("src", "api"))
30
- ]
7
+ from keras_rs import layers as layers
8
+ from keras_rs import losses as losses
9
+ from keras_rs import metrics as metrics
10
+ from keras_rs.src.version import __version__ as __version__
11
+ from keras_rs.src.version import version as version
@@ -5,19 +5,21 @@ since your modifications would be overwritten.
5
5
  """
6
6
 
7
7
  from keras_rs.src.layers.feature_interaction.dot_interaction import (
8
- DotInteraction,
8
+ DotInteraction as DotInteraction,
9
+ )
10
+ from keras_rs.src.layers.feature_interaction.feature_cross import (
11
+ FeatureCross as FeatureCross,
9
12
  )
10
- from keras_rs.src.layers.feature_interaction.feature_cross import FeatureCross
11
13
  from keras_rs.src.layers.retrieval.brute_force_retrieval import (
12
- BruteForceRetrieval,
14
+ BruteForceRetrieval as BruteForceRetrieval,
13
15
  )
14
16
  from keras_rs.src.layers.retrieval.hard_negative_mining import (
15
- HardNegativeMining,
17
+ HardNegativeMining as HardNegativeMining,
16
18
  )
17
19
  from keras_rs.src.layers.retrieval.remove_accidental_hits import (
18
- RemoveAccidentalHits,
20
+ RemoveAccidentalHits as RemoveAccidentalHits,
19
21
  )
20
- from keras_rs.src.layers.retrieval.retrieval import Retrieval
22
+ from keras_rs.src.layers.retrieval.retrieval import Retrieval as Retrieval
21
23
  from keras_rs.src.layers.retrieval.sampling_probability_correction import (
22
- SamplingProbabilityCorrection,
24
+ SamplingProbabilityCorrection as SamplingProbabilityCorrection,
23
25
  )
@@ -0,0 +1,18 @@
1
+ """DO NOT EDIT.
2
+
3
+ This file was autogenerated. Do not edit it by hand,
4
+ since your modifications would be overwritten.
5
+ """
6
+
7
+ from keras_rs.src.losses.pairwise_hinge_loss import (
8
+ PairwiseHingeLoss as PairwiseHingeLoss,
9
+ )
10
+ from keras_rs.src.losses.pairwise_logistic_loss import (
11
+ PairwiseLogisticLoss as PairwiseLogisticLoss,
12
+ )
13
+ from keras_rs.src.losses.pairwise_mean_squared_error import (
14
+ PairwiseMeanSquaredError as PairwiseMeanSquaredError,
15
+ )
16
+ from keras_rs.src.losses.pairwise_soft_zero_one_loss import (
17
+ PairwiseSoftZeroOneLoss as PairwiseSoftZeroOneLoss,
18
+ )
@@ -0,0 +1,16 @@
1
+ """DO NOT EDIT.
2
+
3
+ This file was autogenerated. Do not edit it by hand,
4
+ since your modifications would be overwritten.
5
+ """
6
+
7
+ from keras_rs.src.metrics.dcg import DCG as DCG
8
+ from keras_rs.src.metrics.mean_average_precision import (
9
+ MeanAveragePrecision as MeanAveragePrecision,
10
+ )
11
+ from keras_rs.src.metrics.mean_reciprocal_rank import (
12
+ MeanReciprocalRank as MeanReciprocalRank,
13
+ )
14
+ from keras_rs.src.metrics.ndcg import NDCG as NDCG
15
+ from keras_rs.src.metrics.precision_at_k import PrecisionAtK as PrecisionAtK
16
+ from keras_rs.src.metrics.recall_at_k import RecallAtK as RecallAtK
keras_rs/src/version.py CHANGED
@@ -1,7 +1,7 @@
1
1
  from keras_rs.src.api_export import keras_rs_export
2
2
 
3
3
  # Unique source of truth for the version number.
4
- __version__ = "0.0.1.dev2025042203"
4
+ __version__ = "0.0.1.dev2025042603"
5
5
 
6
6
 
7
7
  @keras_rs_export("keras_rs.version")
@@ -1,8 +1,8 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: keras-rs-nightly
3
- Version: 0.0.1.dev2025042203
3
+ Version: 0.0.1.dev2025042603
4
4
  Summary: Multi-backend recommender systems with Keras 3.
5
- Author-email: Keras RS team <keras-rs@google.com>
5
+ Author-email: Keras team <keras-users@googlegroups.com>
6
6
  License: Apache License 2.0
7
7
  Project-URL: Home, https://keras.io/keras_rs
8
8
  Project-URL: Repository, https://github.com/keras-team/keras-rs
@@ -13,6 +13,7 @@ Classifier: Programming Language :: Python :: 3.10
13
13
  Classifier: Programming Language :: Python :: 3.11
14
14
  Classifier: Programming Language :: Python :: 3 :: Only
15
15
  Classifier: Operating System :: Unix
16
+ Classifier: Operating System :: Microsoft :: Windows
16
17
  Classifier: Operating System :: MacOS
17
18
  Classifier: Intended Audience :: Science/Research
18
19
  Classifier: Topic :: Scientific/Engineering
@@ -1,12 +1,11 @@
1
- keras_rs/__init__.py,sha256=X3VNKb_6VDEs5GqcbEc_l8mAsefWb5UgSu8krnQdFcM,794
2
- keras_rs/api/__init__.py,sha256=Q3tmPWGmDoqZ_cy_hCFZowdRzAWjWpOvVAuFLHzrmzw,305
3
- keras_rs/api/layers/__init__.py,sha256=SB7_QOBPizvbbyQAMb8mPl7vAx0gCxJBPm6V7H67SgU,747
4
- keras_rs/api/losses/__init__.py,sha256=LGW7eHQh8FbQXdMV1s9zJpbloVlz_Zlo51sorWAvFwE,455
5
- keras_rs/api/metrics/__init__.py,sha256=tKI6Hj8VQIT01xOCsp7hw5_eZ9Tl2HcVfhq7VpsOkOw,472
1
+ keras_rs/__init__.py,sha256=8sjHiPN2GhUqAq4V7Vh4FLLqYw20-jgdI26ZKX5sg6M,350
2
+ keras_rs/layers/__init__.py,sha256=cvrFgFWg0RjI0ExUZOKZRdcN-FwTIkqhT33Vx8wGtjQ,905
3
+ keras_rs/losses/__init__.py,sha256=m04QOgxIUfJ2MvCUKLgEof-UbSNKgUYLPnY-D9NAclI,573
4
+ keras_rs/metrics/__init__.py,sha256=Qxpf6OFooIL9TIn2l3WgOea3HFRG0hq02glPAxtMZ9c,580
6
5
  keras_rs/src/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
6
  keras_rs/src/api_export.py,sha256=RsmG-DvO-cdFeAF9W6LRzms0kvtm-Yp9BAA_d-952zI,510
8
7
  keras_rs/src/types.py,sha256=UyOdgjqrqg_b58opnY8n6gTiDHKVR8z_bmEruehERBk,514
9
- keras_rs/src/version.py,sha256=FW541YEknvHzS3EpQiUQw7SBE4hNNFoMmsDLUHSBESU,222
8
+ keras_rs/src/version.py,sha256=NWUeH6ZCZBzEMu2pleQCcD8iMZvTcd0TXNoPuTx1R0c,222
10
9
  keras_rs/src/layers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
10
  keras_rs/src/layers/feature_interaction/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
12
11
  keras_rs/src/layers/feature_interaction/dot_interaction.py,sha256=jGHcg0EiWxth6LTxG2yWgHcyx_GXrxvA61uQqpPfnDQ,6900
@@ -37,7 +36,7 @@ keras_rs/src/metrics/utils.py,sha256=6xanTNdwARn4ugzmb7ko2kwAhNhsnR4NhrpS_qW0IKc
37
36
  keras_rs/src/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
38
37
  keras_rs/src/utils/doc_string_utils.py,sha256=yVyQ8pYdl4gd4tKRhD8dXmQX1EwZeLiV3cCq3A1tUEk,1466
39
38
  keras_rs/src/utils/keras_utils.py,sha256=d28OdQP4GrJk4NIQS4n0KPtCbgOCxVU_vDnnI7ODpOw,1562
40
- keras_rs_nightly-0.0.1.dev2025042203.dist-info/METADATA,sha256=EHmYa_9Q01HrVfvhwfBju0dmxeH25EwW2WCTiKCEKqs,3555
41
- keras_rs_nightly-0.0.1.dev2025042203.dist-info/WHEEL,sha256=pxyMxgL8-pra_rKaQ4drOZAegBVuX-G_4nRHjjgWbmo,91
42
- keras_rs_nightly-0.0.1.dev2025042203.dist-info/top_level.txt,sha256=pWs8X78Z0cn6lfcIb9VYOW5UeJ-TpoaO9dByzo7_FFo,9
43
- keras_rs_nightly-0.0.1.dev2025042203.dist-info/RECORD,,
39
+ keras_rs_nightly-0.0.1.dev2025042603.dist-info/METADATA,sha256=IWKSafGJ3vF3bgQjtMgqRHgFheaSn7ovdx9Bzj9tLCw,3614
40
+ keras_rs_nightly-0.0.1.dev2025042603.dist-info/WHEEL,sha256=SmOxYU7pzNKBqASvQJ7DjX3XGUF92lrGhMb3R6_iiqI,91
41
+ keras_rs_nightly-0.0.1.dev2025042603.dist-info/top_level.txt,sha256=pWs8X78Z0cn6lfcIb9VYOW5UeJ-TpoaO9dByzo7_FFo,9
42
+ keras_rs_nightly-0.0.1.dev2025042603.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (79.0.0)
2
+ Generator: setuptools (79.0.1)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
keras_rs/api/__init__.py DELETED
@@ -1,11 +0,0 @@
1
- """DO NOT EDIT.
2
-
3
- This file was autogenerated. Do not edit it by hand,
4
- since your modifications would be overwritten.
5
- """
6
-
7
- from keras_rs.api import layers
8
- from keras_rs.api import losses
9
- from keras_rs.api import metrics
10
- from keras_rs.src.version import __version__
11
- from keras_rs.src.version import version
@@ -1,14 +0,0 @@
1
- """DO NOT EDIT.
2
-
3
- This file was autogenerated. Do not edit it by hand,
4
- since your modifications would be overwritten.
5
- """
6
-
7
- from keras_rs.src.losses.pairwise_hinge_loss import PairwiseHingeLoss
8
- from keras_rs.src.losses.pairwise_logistic_loss import PairwiseLogisticLoss
9
- from keras_rs.src.losses.pairwise_mean_squared_error import (
10
- PairwiseMeanSquaredError,
11
- )
12
- from keras_rs.src.losses.pairwise_soft_zero_one_loss import (
13
- PairwiseSoftZeroOneLoss,
14
- )
@@ -1,12 +0,0 @@
1
- """DO NOT EDIT.
2
-
3
- This file was autogenerated. Do not edit it by hand,
4
- since your modifications would be overwritten.
5
- """
6
-
7
- from keras_rs.src.metrics.dcg import DCG
8
- from keras_rs.src.metrics.mean_average_precision import MeanAveragePrecision
9
- from keras_rs.src.metrics.mean_reciprocal_rank import MeanReciprocalRank
10
- from keras_rs.src.metrics.ndcg import NDCG
11
- from keras_rs.src.metrics.precision_at_k import PrecisionAtK
12
- from keras_rs.src.metrics.recall_at_k import RecallAtK