tf-models-nightly 2.19.0.dev20241209__py2.py3-none-any.whl → 2.19.0.dev20241211__py2.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.
Files changed (33) hide show
  1. official/legacy/xlnet/preprocess_classification_data.py +0 -1
  2. official/legacy/xlnet/preprocess_pretrain_data.py +0 -1
  3. official/legacy/xlnet/preprocess_squad_data.py +0 -1
  4. official/legacy/xlnet/run_classifier.py +0 -1
  5. official/legacy/xlnet/run_pretrain.py +0 -1
  6. official/legacy/xlnet/run_squad.py +0 -1
  7. official/vision/dataloaders/classification_input.py +0 -1
  8. official/vision/dataloaders/maskrcnn_input.py +0 -1
  9. official/vision/dataloaders/retinanet_input.py +0 -2
  10. official/vision/dataloaders/tf_example_decoder_test.py +0 -1
  11. official/vision/dataloaders/tf_example_label_map_decoder.py +0 -1
  12. official/vision/dataloaders/tf_example_label_map_decoder_test.py +0 -1
  13. official/vision/dataloaders/utils.py +0 -1
  14. official/vision/dataloaders/utils_test.py +0 -2
  15. official/vision/dataloaders/video_input_test.py +0 -1
  16. official/vision/modeling/layers/box_sampler.py +0 -1
  17. official/vision/modeling/layers/detection_generator.py +0 -2
  18. official/vision/modeling/layers/detection_generator_test.py +0 -2
  19. official/vision/modeling/layers/mask_sampler.py +0 -1
  20. official/vision/modeling/layers/nn_blocks.py +0 -1
  21. official/vision/modeling/layers/nn_blocks_3d.py +0 -1
  22. official/vision/modeling/layers/nn_blocks_3d_test.py +0 -1
  23. official/vision/modeling/layers/nn_blocks_test.py +0 -2
  24. official/vision/modeling/layers/nn_layers_test.py +0 -1
  25. official/vision/modeling/layers/roi_aligner_test.py +0 -1
  26. official/vision/modeling/layers/roi_generator.py +0 -1
  27. official/vision/modeling/layers/roi_sampler.py +0 -1
  28. {tf_models_nightly-2.19.0.dev20241209.dist-info → tf_models_nightly-2.19.0.dev20241211.dist-info}/METADATA +1 -1
  29. {tf_models_nightly-2.19.0.dev20241209.dist-info → tf_models_nightly-2.19.0.dev20241211.dist-info}/RECORD +33 -33
  30. {tf_models_nightly-2.19.0.dev20241209.dist-info → tf_models_nightly-2.19.0.dev20241211.dist-info}/AUTHORS +0 -0
  31. {tf_models_nightly-2.19.0.dev20241209.dist-info → tf_models_nightly-2.19.0.dev20241211.dist-info}/LICENSE +0 -0
  32. {tf_models_nightly-2.19.0.dev20241209.dist-info → tf_models_nightly-2.19.0.dev20241211.dist-info}/WHEEL +0 -0
  33. {tf_models_nightly-2.19.0.dev20241209.dist-info → tf_models_nightly-2.19.0.dev20241211.dist-info}/top_level.txt +0 -0
@@ -18,7 +18,6 @@ import collections
18
18
  import csv
19
19
  import os
20
20
 
21
- # Import libraries
22
21
  from absl import app
23
22
  from absl import flags
24
23
  from absl import logging
@@ -19,7 +19,6 @@ import json
19
19
  import os
20
20
  import random
21
21
 
22
- # Import libraries
23
22
  from absl import app
24
23
  from absl import flags
25
24
  from absl import logging
@@ -18,7 +18,6 @@
18
18
  import os
19
19
  import random
20
20
 
21
- # Import libraries
22
21
  from absl import app
23
22
  from absl import flags
24
23
  from absl import logging
@@ -15,7 +15,6 @@
15
15
  """XLNet classification finetuning runner in tf2.0."""
16
16
 
17
17
  import functools
18
- # Import libraries
19
18
  from absl import app
20
19
  from absl import flags
21
20
  from absl import logging
@@ -17,7 +17,6 @@
17
17
  import functools
18
18
  import os
19
19
 
20
- # Import libraries
21
20
  from absl import app
22
21
  from absl import flags
23
22
  from absl import logging
@@ -19,7 +19,6 @@ import json
19
19
  import os
20
20
  import pickle
21
21
 
22
- # Import libraries
23
22
  from absl import app
24
23
  from absl import flags
25
24
  from absl import logging
@@ -14,7 +14,6 @@
14
14
 
15
15
  """Classification decoder and parser."""
16
16
  from typing import Any, Dict, List, Optional, Tuple
17
- # Import libraries
18
17
  import tensorflow as tf, tf_keras
19
18
 
20
19
  from official.vision.configs import common
@@ -16,7 +16,6 @@
16
16
 
17
17
  from typing import Optional
18
18
 
19
- # Import libraries
20
19
  import tensorflow as tf, tf_keras
21
20
 
22
21
  from official.vision.configs import common
@@ -20,8 +20,6 @@ into (image, labels) tuple for RetinaNet.
20
20
 
21
21
  from typing import Optional
22
22
 
23
- # Import libraries
24
-
25
23
  from absl import logging
26
24
  import tensorflow as tf, tf_keras
27
25
 
@@ -14,7 +14,6 @@
14
14
 
15
15
  """Tests for tf_example_decoder.py."""
16
16
 
17
- # Import libraries
18
17
  from absl.testing import parameterized
19
18
  import numpy as np
20
19
  import tensorflow as tf, tf_keras
@@ -18,7 +18,6 @@ A decoder to decode string tensors containing serialized tensorflow.Example
18
18
  protos for object detection.
19
19
  """
20
20
  import csv
21
- # Import libraries
22
21
  import tensorflow as tf, tf_keras
23
22
 
24
23
  from official.vision.dataloaders import tf_example_decoder
@@ -15,7 +15,6 @@
15
15
  """Tests for tf_example_label_map_decoder.py."""
16
16
 
17
17
  import os
18
- # Import libraries
19
18
  from absl.testing import parameterized
20
19
  import numpy as np
21
20
  import tensorflow as tf, tf_keras
@@ -15,7 +15,6 @@
15
15
  """Data loader utils."""
16
16
  from typing import Dict
17
17
 
18
- # Import libraries
19
18
  import tensorflow as tf, tf_keras
20
19
 
21
20
  from official.vision.ops import preprocess_ops
@@ -14,8 +14,6 @@
14
14
 
15
15
  """Tests for dataloader utils functions."""
16
16
 
17
- # Import libraries
18
-
19
17
  from absl.testing import parameterized
20
18
  import tensorflow as tf, tf_keras
21
19
 
@@ -15,7 +15,6 @@
15
15
 
16
16
  import io
17
17
 
18
- # Import libraries
19
18
  import numpy as np
20
19
  from PIL import Image
21
20
  import tensorflow as tf, tf_keras
@@ -14,7 +14,6 @@
14
14
 
15
15
  """Contains definitions of box sampler."""
16
16
 
17
- # Import libraries
18
17
  import tensorflow as tf, tf_keras
19
18
 
20
19
  from official.vision.ops import sampling_ops
@@ -16,8 +16,6 @@
16
16
  import contextlib
17
17
  from typing import Any, Dict, List, Optional, Mapping, Sequence, Tuple
18
18
 
19
- # Import libraries
20
-
21
19
  import numpy as np
22
20
  import tensorflow as tf, tf_keras
23
21
 
@@ -15,8 +15,6 @@
15
15
  """Tests for detection_generator.py."""
16
16
  from unittest import mock
17
17
 
18
- # Import libraries
19
-
20
18
  from absl.testing import parameterized
21
19
  import numpy as np
22
20
  import tensorflow as tf, tf_keras
@@ -14,7 +14,6 @@
14
14
 
15
15
  """Contains definitions of mask sampler."""
16
16
 
17
- # Import libraries
18
17
  import tensorflow as tf, tf_keras
19
18
 
20
19
  from official.vision.ops import spatial_transform_ops
@@ -16,7 +16,6 @@
16
16
 
17
17
  from typing import Any, Callable, Dict, List, Optional, Tuple, Union, Text
18
18
 
19
- # Import libraries
20
19
  from absl import logging
21
20
  import tensorflow as tf, tf_keras
22
21
 
@@ -13,7 +13,6 @@
13
13
  # limitations under the License.
14
14
 
15
15
  """Contains common building blocks for 3D networks."""
16
- # Import libraries
17
16
  import tensorflow as tf, tf_keras
18
17
 
19
18
  from official.modeling import tf_utils
@@ -14,7 +14,6 @@
14
14
 
15
15
  """Tests for resnet."""
16
16
 
17
- # Import libraries
18
17
  from absl.testing import parameterized
19
18
  import tensorflow as tf, tf_keras
20
19
 
@@ -16,8 +16,6 @@
16
16
 
17
17
  from typing import Any, Iterable, Tuple
18
18
 
19
- # Import libraries
20
-
21
19
  from absl.testing import parameterized
22
20
  import numpy as np
23
21
  import tensorflow as tf, tf_keras
@@ -14,7 +14,6 @@
14
14
 
15
15
  """Tests for nn_layers."""
16
16
 
17
- # Import libraries
18
17
  from absl.testing import parameterized
19
18
  import tensorflow as tf, tf_keras
20
19
 
@@ -14,7 +14,6 @@
14
14
 
15
15
  """Tests for roi_aligner.py."""
16
16
 
17
- # Import libraries
18
17
  import tensorflow as tf, tf_keras
19
18
 
20
19
  from official.vision.modeling.layers import roi_aligner
@@ -14,7 +14,6 @@
14
14
 
15
15
  """Contains definitions of ROI generator."""
16
16
  from typing import Optional, Mapping
17
- # Import libraries
18
17
  import tensorflow as tf, tf_keras
19
18
 
20
19
  from official.vision.ops import box_ops
@@ -14,7 +14,6 @@
14
14
 
15
15
  """Contains definitions of ROI sampler."""
16
16
  from typing import Optional, Tuple, Union
17
- # Import libraries
18
17
  import tensorflow as tf, tf_keras
19
18
 
20
19
  from official.vision.modeling.layers import box_sampler
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tf-models-nightly
3
- Version: 2.19.0.dev20241209
3
+ Version: 2.19.0.dev20241211
4
4
  Summary: TensorFlow Official Models
5
5
  Home-page: https://github.com/tensorflow/models
6
6
  Author: Google Inc.
@@ -176,13 +176,13 @@ official/legacy/xlnet/classifier_utils.py,sha256=k3VH18RnkkHqeN4DC2w7VivjU--3Vsv
176
176
  official/legacy/xlnet/common_flags.py,sha256=22XZho7XUk6iQRA0RKw07yr0Npj0xIPcpKOytRUgZWI,5367
177
177
  official/legacy/xlnet/data_utils.py,sha256=ZXq3xDYOFQOAhCWXd4K8IcF4ZTvdL9diEs_D5ZgGuXg,30105
178
178
  official/legacy/xlnet/optimization.py,sha256=GXrK4qm7YgxvviStbI7frLl11E69BQrUYdb2eAeEL10,3779
179
- official/legacy/xlnet/preprocess_classification_data.py,sha256=y2Iw2nDkvOXjBGSArlJJhp_qUI9X_U-g3hOjp5R6f5Y,15354
180
- official/legacy/xlnet/preprocess_pretrain_data.py,sha256=aWM-GDyC6wLDA7xEuDoC3Qhez8Hc3Cs-8r2S7qM5NNo,32391
181
- official/legacy/xlnet/preprocess_squad_data.py,sha256=kxVr_21xzGpOMuJYI1elG3s0pp40eKLYYHI6wD3X3qw,4056
179
+ official/legacy/xlnet/preprocess_classification_data.py,sha256=XyBmuZRbIkM55Mon5ASv6ZCb9FHJ6qISISeDUipjffA,15335
180
+ official/legacy/xlnet/preprocess_pretrain_data.py,sha256=IpEEGimhFlo7VYVO0o6fTmOHq-tKB5wUTJy8RbnEwd4,32372
181
+ official/legacy/xlnet/preprocess_squad_data.py,sha256=kXJn6ASI3C6kPM4JxJdUQyeyBjozavQMMlSlInNkQhE,4037
182
182
  official/legacy/xlnet/preprocess_utils.py,sha256=CEADQ96s5z7UVKXAlKDrtiqwswywWxc9OPdNGFqKLcQ,3693
183
- official/legacy/xlnet/run_classifier.py,sha256=oCU1BZIkOwCXuWPCL_82ZJTizZ8hD698il7iZ9q8ulA,6986
184
- official/legacy/xlnet/run_pretrain.py,sha256=DsYpbUQm6znpT0zwWM05vHI9fiB6OvRR7Waht4yGu6o,5720
185
- official/legacy/xlnet/run_squad.py,sha256=RfZItm9BgCz3SqQbC6o0ZLf_nAwxticWrdP_ki9oAic,11607
183
+ official/legacy/xlnet/run_classifier.py,sha256=rOcBLdn6go6SikYLJCixgyzSnTgo7qSY1vZJvGKeJWk,6967
184
+ official/legacy/xlnet/run_pretrain.py,sha256=YJ1Lj7FxzSSLLBfBYIBQ3EpadD12IVaJVLWIAUVxOR4,5701
185
+ official/legacy/xlnet/run_squad.py,sha256=85eDRnSWmMRcjDgrEL-Q_L5BSQ2Rr6bhudDUAMi7mBM,11588
186
186
  official/legacy/xlnet/squad_utils.py,sha256=Q4tnXvyMxKY3p24SH668gZ6FphWiZaT1iJ0c73gL6H8,32236
187
187
  official/legacy/xlnet/training_utils.py,sha256=IQxm97zlPGJ2NZMaKoEMTh8z5AtT1UZzD4y6cHcHUFE,11674
188
188
  official/legacy/xlnet/xlnet_config.py,sha256=vlsFM7x4H21bLTMiJAhPtShfQN-FKrcVRzb7xuwf0uk,5904
@@ -997,28 +997,28 @@ official/vision/data/tf_example_feature_key.py,sha256=UsbA9cIBI2HOktuhRGtesxDXG5
997
997
  official/vision/data/tfrecord_lib.py,sha256=GrHeOtbWApvxdr0l17R5gE15vCOwkqpyYa10L2zgumw,6326
998
998
  official/vision/data/tfrecord_lib_test.py,sha256=7z0W1zdzZ19ry90gelRLVahxObwaH-GAQ0wU9fHHGOk,5081
999
999
  official/vision/dataloaders/__init__.py,sha256=7oiypy0N82PDw9aSdcJBLVoGTd_oRSUOdvuJhMv4leQ,609
1000
- official/vision/dataloaders/classification_input.py,sha256=G3dB5vQDBsNvSeDtfQAJsMJ6Q68xXvvK-HfVb9cZyPk,13039
1000
+ official/vision/dataloaders/classification_input.py,sha256=jBMnmB1RD464qERLPlZkKq435Q8zuSYh-ZRGhqxZ_G4,13020
1001
1001
  official/vision/dataloaders/decoder.py,sha256=PeZKuvBbPRegNDCuOQy_wS32IrK0zeQ0zY2EvV4WvyY,1016
1002
1002
  official/vision/dataloaders/input_reader.py,sha256=CHojw8PJKf74jl8Q3rtH2ylwhmTYgA2FtwJYrAS-Rws,10716
1003
1003
  official/vision/dataloaders/input_reader_factory.py,sha256=WpvSA8qyqAo3wkmme4WqXpICBVg0SuR6_nNWHZ0ECM0,1623
1004
- official/vision/dataloaders/maskrcnn_input.py,sha256=iCc08yYD-7mvIPojgBjm_nSvoQACXWCIeZNZN8CfXSs,16822
1004
+ official/vision/dataloaders/maskrcnn_input.py,sha256=6QhSnKv7Q9qlKrQ6VnWsOxKsOq55MxBs9Rr47ZStUks,16803
1005
1005
  official/vision/dataloaders/parser.py,sha256=nMXnhigMa_ascSJ2OK88xi4HdE9xvfL3G4oMrHau-t4,2315
1006
- official/vision/dataloaders/retinanet_input.py,sha256=bU1fDpJuOtBZVJSg3Fzaku2PjxHh22E4d3M7B3Vu8ZQ,18831
1006
+ official/vision/dataloaders/retinanet_input.py,sha256=0UgHSuhjxii0IpAODqc1eW3CIfMio6IUg5c5vCthFqg,18811
1007
1007
  official/vision/dataloaders/segmentation_input.py,sha256=Klg5KAChYZDRvqzZfyIzdPy54rTlWYZp2AotolD3WX8,12934
1008
1008
  official/vision/dataloaders/tf_example_decoder.py,sha256=9yCT6uSLMpmw50w7zdaRR_BXy6vIvliLZntrYAgzD18,8647
1009
- official/vision/dataloaders/tf_example_decoder_test.py,sha256=PHxneXHn5-eIMdmk1uI4IPLa178kTCifa4EF53ik2Jo,12629
1010
- official/vision/dataloaders/tf_example_label_map_decoder.py,sha256=EHu6ZQvYxqjUliOlsN_f4okYt9Hdpydv_lM_dQwrklU,2598
1011
- official/vision/dataloaders/tf_example_label_map_decoder_test.py,sha256=DUalsc0cigGT1kdGyzUQoVFxmExLyvjaCjz_f0_LcUY,7756
1009
+ official/vision/dataloaders/tf_example_decoder_test.py,sha256=iRPq780PvET64Ooa-1m5ahMp8lAObpC3l8ez8aATr1A,12610
1010
+ official/vision/dataloaders/tf_example_label_map_decoder.py,sha256=zquhN__lZv-S4rEo595Sveno64c-lNUxlf6-z1w7J3c,2579
1011
+ official/vision/dataloaders/tf_example_label_map_decoder_test.py,sha256=QPhSjSLLMgdVhED7gdCsMuMaXGo32ht5TFhWX6603q8,7737
1012
1012
  official/vision/dataloaders/tfds_classification_decoders.py,sha256=4UYWTqB2jS5zeZWzovBpBlRpv1gpqd2oO014xAWk2n4,1311
1013
1013
  official/vision/dataloaders/tfds_detection_decoders.py,sha256=E15KncqL7UPj0pMvybJTiZlp4dxwFdZTwZMnLTdZY0U,2324
1014
1014
  official/vision/dataloaders/tfds_factory.py,sha256=Wcofrevp4IdoNx4-SeGjo1xKuofmGviHV-sv23IE5gs,2568
1015
1015
  official/vision/dataloaders/tfds_factory_test.py,sha256=mXwqfslFqz9coXZW1ABDvGfb7TPu05faDJC2ZyY8fjM,4020
1016
1016
  official/vision/dataloaders/tfds_segmentation_decoders.py,sha256=-T8hrcEjaUivvtQewVnQeWg6pVw96RTUWkMptQUvYko,2428
1017
1017
  official/vision/dataloaders/tfexample_utils.py,sha256=qYUaT3V2zcEybJooImTxRT6MbCYzKAc_6iZPzIgBiyw,12698
1018
- official/vision/dataloaders/utils.py,sha256=0E20HOYq-NeK479bmVmXQakD8M9GQn_lyWeyVXRdWq4,3113
1019
- official/vision/dataloaders/utils_test.py,sha256=8gG1b0Wx8mjvAxEEnqSOBIXOGNGQM0zAKpX815umKu4,2567
1018
+ official/vision/dataloaders/utils.py,sha256=omt0bST-0GgqxWBC9JacZEOlgBuOC9UWkPh2ouWPm9U,3094
1019
+ official/vision/dataloaders/utils_test.py,sha256=MyeayKuVi_SreAEgqUTXGL_kqBgWexOLuRGZN7RSfCI,2547
1020
1020
  official/vision/dataloaders/video_input.py,sha256=4TuPmV3W0c5vcNPeQNX8FdlCXqz3fGecss9vMi5WjJs,17756
1021
- official/vision/dataloaders/video_input_test.py,sha256=fhHh5lft0KthdJ0_6n3kP3dZ6y8GLkji1Rlq4zP0jbU,7551
1021
+ official/vision/dataloaders/video_input_test.py,sha256=qzKPBEz8uc3r78Jx3MskMhZDo35abviIcn_Am0EfqUM,7532
1022
1022
  official/vision/evaluation/__init__.py,sha256=7oiypy0N82PDw9aSdcJBLVoGTd_oRSUOdvuJhMv4leQ,609
1023
1023
  official/vision/evaluation/coco_evaluator.py,sha256=nHYS-AR4bklHl-6n-5kudfYYnNI508HQ2ikAN-xrCDU,15582
1024
1024
  official/vision/evaluation/coco_utils.py,sha256=TDewB5WzIIvh4etCIjQQ3NveGRn3aaK-MBNu6O4p1-Q,17860
@@ -1099,24 +1099,24 @@ official/vision/modeling/heads/instance_heads_test.py,sha256=k6lqCAFOEnW-rcSHwlq
1099
1099
  official/vision/modeling/heads/segmentation_heads.py,sha256=E3wWfpazWC6VZ1u0iHyCByXaJM8IhJs9AbDT5mswo-w,20172
1100
1100
  official/vision/modeling/heads/segmentation_heads_test.py,sha256=XgpA_AewJ8ivS8m1q0LNk0XtVKG3nqy7lRqgPW3ZNFA,3793
1101
1101
  official/vision/modeling/layers/__init__.py,sha256=_RjeNeStjst4yPYwYUBZ1G9dnmx4Lz5X110N5H1f6uU,2597
1102
- official/vision/modeling/layers/box_sampler.py,sha256=UakVZOA9EVY00RzgTFbuTsUvuzFZ2feJWvn5f6U0m6c,3411
1102
+ official/vision/modeling/layers/box_sampler.py,sha256=kSY-8XBtC3vomxisCYRKrr1Ce9PqI8F1KOJQwF1nPlg,3392
1103
1103
  official/vision/modeling/layers/deeplab.py,sha256=Oeb7OoOzhQZgf7cV7By4-eJJqkd1ysP7dPkc-fAdpeg,8571
1104
1104
  official/vision/modeling/layers/deeplab_test.py,sha256=YXAOz9tD6W0ZL4YSUQAoY_bd9vQKpgkNpT1BQwqz3Xs,1904
1105
- official/vision/modeling/layers/detection_generator.py,sha256=jCWaVMO5fsHk60RcMiytZEW1s_EYyx91ZUWHY_h1LFU,66295
1106
- official/vision/modeling/layers/detection_generator_test.py,sha256=wd-LL1yA9KZJrqICM9ZIG1ehfgI2c93KbPkDR4Yqxw8,17663
1105
+ official/vision/modeling/layers/detection_generator.py,sha256=zh0F1ivnelDzaln6p5S7b-aGfBCcZD5PvNQsz9EG2Sw,66275
1106
+ official/vision/modeling/layers/detection_generator_test.py,sha256=Wgz7A6wwV3Z-bdLvIGJ2EypRL_R3RRiy79p3k6gAGY0,17643
1107
1107
  official/vision/modeling/layers/edgetpu.py,sha256=TAx66cwdvC1bl6i_GQEmjQRc3VtteipmFr73F1Y8F9I,16737
1108
1108
  official/vision/modeling/layers/edgetpu_test.py,sha256=-3UnEdnRnhVCQAKh9lCaEvtjV6rgwSntWn2TvMZlXW0,10120
1109
- official/vision/modeling/layers/mask_sampler.py,sha256=Y7EK_9aHfxMJA3QFBiJrgoaPc73zO9PJYvEVW9FyncI,7924
1110
- official/vision/modeling/layers/nn_blocks.py,sha256=g4S_4lyO1AxlOVVe3B0xiltyWoqgGlm9sPeCdHDxW9A,106634
1111
- official/vision/modeling/layers/nn_blocks_3d.py,sha256=iI63otyl6NgqXYYFCVa_C3WKoq4tANDfmaLG7EeGnwI,10575
1112
- official/vision/modeling/layers/nn_blocks_3d_test.py,sha256=6JC8SgZW1EIgll2MqiRFCGSSVmNpgUzwNKcoiNFLwCU,2038
1113
- official/vision/modeling/layers/nn_blocks_test.py,sha256=4cQhJvIq7jxp5ldfjPCf7CDcU3_7Syk2-kzBg2u7KPs,40401
1109
+ official/vision/modeling/layers/mask_sampler.py,sha256=GALk7KhbEPEkjtifXq_jvkJ1Mysyc1KZHMXaICboUBA,7905
1110
+ official/vision/modeling/layers/nn_blocks.py,sha256=tu7g_DFdwDSKZ57KS17ZhXC_GCRkt9Syh2RVclz10XA,106615
1111
+ official/vision/modeling/layers/nn_blocks_3d.py,sha256=TL3EFTxnyA7kiEwIAgKkhUxPnNcv7qlv8VhsZO2DO2o,10556
1112
+ official/vision/modeling/layers/nn_blocks_3d_test.py,sha256=MNb0a9LlqExQb89rfRC-u0FWS9mKViUvqbpVG6h6kHA,2019
1113
+ official/vision/modeling/layers/nn_blocks_test.py,sha256=FvdBd6C0cd7ehXqiXBGzzYciNNANfpQLi0Y9G6Njwr0,40381
1114
1114
  official/vision/modeling/layers/nn_layers.py,sha256=_Ftdcbl04zbEXxkaB_61Lq8jXvNmRkS3XHhjkot-mlw,52982
1115
- official/vision/modeling/layers/nn_layers_test.py,sha256=EnQrMEAuPFe0P15KbiSqwnqEfM-UxcVOnPM-U6v0mF0,13319
1115
+ official/vision/modeling/layers/nn_layers_test.py,sha256=envUSvXD_sNkCYvfvutmVmPV9Dpuol7_rtKCwILwEpQ,13300
1116
1116
  official/vision/modeling/layers/roi_aligner.py,sha256=ZEtAJnqxSla2xVQS0JfOze51-dOxFUgyQDFiYXWhUpc,2583
1117
- official/vision/modeling/layers/roi_aligner_test.py,sha256=zOxhUJqbbtheKMFrBy0RfUCUDzTDYe61klvW6K24QjQ,1285
1118
- official/vision/modeling/layers/roi_generator.py,sha256=ZL-m5IObg8JsXJ_DZ0QQusv2UBzHNiGXlTZZU1rJorU,14418
1119
- official/vision/modeling/layers/roi_sampler.py,sha256=uajmniFsZrmAR_-ojva_dVm9xZU3wze5EqCryP9gUoQ,10006
1117
+ official/vision/modeling/layers/roi_aligner_test.py,sha256=l3amSeBmAE7cuRAJU3xflE62JHh1r0Xe68XlFJxDu1o,1266
1118
+ official/vision/modeling/layers/roi_generator.py,sha256=-wBKWIAuC0XxER43aFa9mUuOrIfW8qGT9T3p-ujndNU,14399
1119
+ official/vision/modeling/layers/roi_sampler.py,sha256=zwyAE3-cw2MO8QisprYDBtVi1Gj8Ft-Q9GzDmPsnNuI,9987
1120
1120
  official/vision/modeling/models/__init__.py,sha256=9tSOgQ3WTOmg91vIOdiAzpcHCvMJ76nFqCDyQR095k4,1020
1121
1121
  official/vision/ops/__init__.py,sha256=7oiypy0N82PDw9aSdcJBLVoGTd_oRSUOdvuJhMv4leQ,609
1122
1122
  official/vision/ops/anchor.py,sha256=kPM7gkja4XfUxMXxBew65nxrmu5rjWFwc1ywsyinAO4,20611
@@ -1222,9 +1222,9 @@ tensorflow_models/tensorflow_models_test.py,sha256=nc6A9K53OGqF25xN5St8EiWvdVbda
1222
1222
  tensorflow_models/nlp/__init__.py,sha256=4tA5Pf4qaFwT-fIFOpX7x7FHJpnyJT-5UgOeFYTyMlc,807
1223
1223
  tensorflow_models/uplift/__init__.py,sha256=mqfa55gweOdpKoaQyid4A_4u7xw__FcQeSIF0k_pYmI,999
1224
1224
  tensorflow_models/vision/__init__.py,sha256=zBorY_v5xva1uI-qxhZO3Qh-Dii-Suq6wEYh6hKHDfc,833
1225
- tf_models_nightly-2.19.0.dev20241209.dist-info/AUTHORS,sha256=1dG3fXVu9jlo7bul8xuix5F5vOnczMk7_yWn4y70uw0,337
1226
- tf_models_nightly-2.19.0.dev20241209.dist-info/LICENSE,sha256=WxeBS_DejPZQabxtfMOM_xn8qoZNJDQjrT7z2wG1I4U,11512
1227
- tf_models_nightly-2.19.0.dev20241209.dist-info/METADATA,sha256=xTmPZyQ9d4eOcL8WBsVXzO0RNkW389_BVDgzhKXYrN8,1432
1228
- tf_models_nightly-2.19.0.dev20241209.dist-info/WHEEL,sha256=kGT74LWyRUZrL4VgLh6_g12IeVl_9u9ZVhadrgXZUEY,110
1229
- tf_models_nightly-2.19.0.dev20241209.dist-info/top_level.txt,sha256=gum2FfO5R4cvjl2-QtP-S1aNmsvIZaFFT6VFzU0f4-g,33
1230
- tf_models_nightly-2.19.0.dev20241209.dist-info/RECORD,,
1225
+ tf_models_nightly-2.19.0.dev20241211.dist-info/AUTHORS,sha256=1dG3fXVu9jlo7bul8xuix5F5vOnczMk7_yWn4y70uw0,337
1226
+ tf_models_nightly-2.19.0.dev20241211.dist-info/LICENSE,sha256=WxeBS_DejPZQabxtfMOM_xn8qoZNJDQjrT7z2wG1I4U,11512
1227
+ tf_models_nightly-2.19.0.dev20241211.dist-info/METADATA,sha256=RmY2D34srqp9gVp7yZVR2MIUIIAcHHBO5DC-7_RPkYs,1432
1228
+ tf_models_nightly-2.19.0.dev20241211.dist-info/WHEEL,sha256=kGT74LWyRUZrL4VgLh6_g12IeVl_9u9ZVhadrgXZUEY,110
1229
+ tf_models_nightly-2.19.0.dev20241211.dist-info/top_level.txt,sha256=gum2FfO5R4cvjl2-QtP-S1aNmsvIZaFFT6VFzU0f4-g,33
1230
+ tf_models_nightly-2.19.0.dev20241211.dist-info/RECORD,,