keras-hub-nightly 0.20.0.dev202503260356__py3-none-any.whl → 0.20.0.dev202503270400__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.
- keras_hub/api/layers/__init__.py +3 -0
- keras_hub/api/models/__init__.py +6 -0
- keras_hub/api/tokenizers/__init__.py +1 -0
- keras_hub/src/models/gemma3/__init__.py +5 -0
- keras_hub/src/models/gemma3/gemma3_attention.py +315 -0
- keras_hub/src/models/gemma3/gemma3_backbone.py +352 -0
- keras_hub/src/models/gemma3/gemma3_causal_lm.py +306 -0
- keras_hub/src/models/gemma3/gemma3_causal_lm_preprocessor.py +691 -0
- keras_hub/src/models/gemma3/gemma3_decoder_block.py +305 -0
- keras_hub/src/models/gemma3/gemma3_image_converter.py +8 -0
- keras_hub/src/models/gemma3/gemma3_interleave_embeddings.py +79 -0
- keras_hub/src/models/gemma3/gemma3_presets.py +93 -0
- keras_hub/src/models/gemma3/gemma3_tokenizer.py +87 -0
- keras_hub/src/models/gemma3/gemma3_vit.py +608 -0
- keras_hub/src/models/gemma3/rms_normalization.py +26 -0
- keras_hub/src/version_utils.py +1 -1
- {keras_hub_nightly-0.20.0.dev202503260356.dist-info → keras_hub_nightly-0.20.0.dev202503270400.dist-info}/METADATA +1 -1
- {keras_hub_nightly-0.20.0.dev202503260356.dist-info → keras_hub_nightly-0.20.0.dev202503270400.dist-info}/RECORD +20 -8
- {keras_hub_nightly-0.20.0.dev202503260356.dist-info → keras_hub_nightly-0.20.0.dev202503270400.dist-info}/WHEEL +0 -0
- {keras_hub_nightly-0.20.0.dev202503260356.dist-info → keras_hub_nightly-0.20.0.dev202503270400.dist-info}/top_level.txt +0 -0
@@ -1,14 +1,14 @@
|
|
1
1
|
keras_hub/__init__.py,sha256=QGdXyHgYt6cMUAP1ebxwc6oR86dE0dkMxNy2eOCQtFo,855
|
2
2
|
keras_hub/api/__init__.py,sha256=EzR6D-XWsm_gDrX5LDwKEmrah_gu3ffpj8GKBudE0yI,485
|
3
|
-
keras_hub/api/layers/__init__.py,sha256
|
3
|
+
keras_hub/api/layers/__init__.py,sha256=cALDY20DHCVjJDKCD84zHvTZtAgz0xEvozk7a3Cl1Uk,3719
|
4
4
|
keras_hub/api/metrics/__init__.py,sha256=So8Ec-lOcTzn_UUMmAdzDm8RKkPu2dbRUm2px8gpUEI,381
|
5
|
-
keras_hub/api/models/__init__.py,sha256=
|
5
|
+
keras_hub/api/models/__init__.py,sha256=yHFQvK1rwOXwsQ6sQB8G-xWrsD7-fzOxylwJdUxAd2M,18632
|
6
6
|
keras_hub/api/samplers/__init__.py,sha256=n-_SEXxr2LNUzK2FqVFN7alsrkx1P_HOVTeLZKeGCdE,730
|
7
|
-
keras_hub/api/tokenizers/__init__.py,sha256=
|
7
|
+
keras_hub/api/tokenizers/__init__.py,sha256=TOTM3he5JWPME_4e29_S1nrWibTHomcuuKQ4KarqUNo,2831
|
8
8
|
keras_hub/api/utils/__init__.py,sha256=Gp1E6gG-RtKQS3PBEQEOz9PQvXkXaJ0ySGMqZ7myN7A,215
|
9
9
|
keras_hub/src/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
10
10
|
keras_hub/src/api_export.py,sha256=9pQZK27JObxWZ96QPLBp1OBsjWigh1iuV6RglPGMRk0,1499
|
11
|
-
keras_hub/src/version_utils.py,sha256=
|
11
|
+
keras_hub/src/version_utils.py,sha256=eoAdXpOBc-KSB6sXg6R_qD83_0__tWgnDYe4dImnd1M,222
|
12
12
|
keras_hub/src/layers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
13
13
|
keras_hub/src/layers/modeling/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
14
14
|
keras_hub/src/layers/modeling/alibi_bias.py,sha256=1XBTHI52L_iJDhN_w5ydu_iMhCuTgQAxEPwcLA6BPuk,4411
|
@@ -194,6 +194,18 @@ keras_hub/src/models/gemma/gemma_decoder_block.py,sha256=f5UsRO-VNsKJfm_WHVJWK4U
|
|
194
194
|
keras_hub/src/models/gemma/gemma_presets.py,sha256=lWPjEb_6pFC1vdX7mwxf-C2im93YygmlSPjWvqnLWic,7178
|
195
195
|
keras_hub/src/models/gemma/gemma_tokenizer.py,sha256=FhcyNL4lo63MqOhTQPFr07-u3BddL0fVM4TmOm8ku-I,2622
|
196
196
|
keras_hub/src/models/gemma/rms_normalization.py,sha256=fku-JEo2sNy-ytX7ySD1sRzdhRAPmYex_z8oFk1NiG8,833
|
197
|
+
keras_hub/src/models/gemma3/__init__.py,sha256=oPFadkdK5DRLD6sYx83iTetY5daWuSzmJilLjokHcbU,257
|
198
|
+
keras_hub/src/models/gemma3/gemma3_attention.py,sha256=bEAgo88D4HjhGLyLhvjDc_-cYgvYb73TJIp4IkzvLl4,11131
|
199
|
+
keras_hub/src/models/gemma3/gemma3_backbone.py,sha256=aogg-VF3lFOQj84vFqI16Y_rWzTFyDxB6w6wOxO9fJs,14019
|
200
|
+
keras_hub/src/models/gemma3/gemma3_causal_lm.py,sha256=6sQ88eU_31PLl-PW-9risgNWOxRFp1GSnbS-vUUBPfQ,11666
|
201
|
+
keras_hub/src/models/gemma3/gemma3_causal_lm_preprocessor.py,sha256=YDbai1LyjMDZLuMLPzsZyiEviojCi26s6k6q9IvOC0s,25419
|
202
|
+
keras_hub/src/models/gemma3/gemma3_decoder_block.py,sha256=4xXYWijLln1rs7iZidnVBtRqEtr6J9jGrZW10fj3O6E,10571
|
203
|
+
keras_hub/src/models/gemma3/gemma3_image_converter.py,sha256=kbo7IkkNHRnj-2p7wcVqUYZeIvIVsm0k7perbo5oAK4,342
|
204
|
+
keras_hub/src/models/gemma3/gemma3_interleave_embeddings.py,sha256=V5uwR6pW8ZxTaHd64TgqXliR83C2eYHYtgvj_xcyvKc,2702
|
205
|
+
keras_hub/src/models/gemma3/gemma3_presets.py,sha256=qFsrEYB8kR8jvjcX6Kaoyn4tkEIZB2vhmzvFg8b1Q6c,2993
|
206
|
+
keras_hub/src/models/gemma3/gemma3_tokenizer.py,sha256=iEYhQLT-NaJzZFWZ8TIroqUUa9cu21lZnuAq_qu-IpE,2809
|
207
|
+
keras_hub/src/models/gemma3/gemma3_vit.py,sha256=t8UqOHRlWHjdb4EEk4pGyaumyRo0yjXCIMyuhnzOrhk,20231
|
208
|
+
keras_hub/src/models/gemma3/rms_normalization.py,sha256=fku-JEo2sNy-ytX7ySD1sRzdhRAPmYex_z8oFk1NiG8,833
|
197
209
|
keras_hub/src/models/gpt2/__init__.py,sha256=_hqeljpBkW8DLABy4nKBzJxXUh29WIEW27obmDCiH5Q,245
|
198
210
|
keras_hub/src/models/gpt2/gpt2_backbone.py,sha256=H1LgDd-bavrWtdCavdI519qlaruE2Jj5H3-SMc-5d14,6961
|
199
211
|
keras_hub/src/models/gpt2/gpt2_causal_lm.py,sha256=ynAcvh0-WUmwMN7vgflau4LH4YRFLf986OYRZ3M2Znk,16765
|
@@ -436,7 +448,7 @@ keras_hub/src/utils/transformers/convert_qwen.py,sha256=I2bfwo8AQd_JfwFpiAuCQ3k_
|
|
436
448
|
keras_hub/src/utils/transformers/convert_vit.py,sha256=9SUZ9utNJhW_5cj3acMn9cRy47u2eIcDsrhmzj77o9k,5187
|
437
449
|
keras_hub/src/utils/transformers/preset_loader.py,sha256=0Hi7R8HnATcwFVLsJwMMIMWTCXHNfep4IPiRpQXqM-w,3933
|
438
450
|
keras_hub/src/utils/transformers/safetensor_utils.py,sha256=CYUHyA4y-B61r7NDnCsFb4t_UmSwZ1k9L-8gzEd6KRg,3339
|
439
|
-
keras_hub_nightly-0.20.0.
|
440
|
-
keras_hub_nightly-0.20.0.
|
441
|
-
keras_hub_nightly-0.20.0.
|
442
|
-
keras_hub_nightly-0.20.0.
|
451
|
+
keras_hub_nightly-0.20.0.dev202503270400.dist-info/METADATA,sha256=_GBi587oOZ1t7QEQc4M2gGLP4jX267x_ypIvTLJWyxQ,7715
|
452
|
+
keras_hub_nightly-0.20.0.dev202503270400.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
453
|
+
keras_hub_nightly-0.20.0.dev202503270400.dist-info/top_level.txt,sha256=N4J6piIWBKa38A4uV-CnIopnOEf8mHAbkNXafXm_CuA,10
|
454
|
+
keras_hub_nightly-0.20.0.dev202503270400.dist-info/RECORD,,
|
File without changes
|