models
models copied to clipboard
Models and examples built with TensorFlow
Bumps [cookie](https://github.com/jshttp/cookie) and [socket.io](https://github.com/socketio/socket.io). These dependencies needed to be updated together. Updates `cookie` from 0.4.2 to 0.7.2 Release notes Sourced from cookie's releases. v0.7.2 Fixed Fix object assignment of hasOwnProperty...
# Prerequisites Please answer the following questions for yourself before submitting an issue. - [Yes] I am using the latest TensorFlow Model Garden release and TensorFlow 2. - [Yes] I...
# Description > :memo: Please include a summary of the change. > > * Please also include relevant motivation and context. > * List any dependencies that are required for...
Bumps [webpack](https://github.com/webpack/webpack) from 5.88.2 to 5.95.0. Release notes Sourced from webpack's releases. v5.95.0 Bug Fixes Fixed hanging when attempting to read a symlink-like file that it can't read Handle default...
Bumps [send](https://github.com/pillarjs/send) to 0.19.0 and updates ancestor dependency [browser-sync](https://github.com/BrowserSync/browser-sync). These dependencies need to be updated together. Updates `send` from 0.16.2 to 0.19.0 Release notes Sourced from send's releases. 0.19.0 What's...
Bumps [serve-static](https://github.com/expressjs/serve-static) to 1.16.2 and updates ancestor dependency [browser-sync](https://github.com/BrowserSync/browser-sync). These dependencies need to be updated together. Updates `serve-static` from 1.13.2 to 1.16.2 Release notes Sourced from serve-static's releases. 1.16.0 What's...
# Prerequisites Please answer the following questions for yourself before submitting an issue. - [ +] I am using the latest TensorFlow Model Garden release and TensorFlow 2. - [...
How do you download an init checkpoint, such as init checkpoint:maskconver_seg_mnv3p5rf_coco_200k/43437096,Does it download automatically, or do I need to download it locally? If so, how can I find the download...
tensorflow/models/official/projects/maskconver/configs/experiments/maskconver_mobilenetv3p5_rf_640_coco.yaml where the init_checkpoint: 'maskconver_seg_mnv3p5rf_coco_200k/43437096' report an error:tensorflow.python.framework.errors_impl.NotFoundError: Unsuccessful TensorSliceReader constructor: Failed to find any matching files for maskconver_seg_mnv3p5rf_coco_200k/43437096
The code for sampling from a beta distribution in tfm.vision.augment.MixupAndCutmix._sample_from_beta is incorrect: It should be ``` @staticmethod def _sample_from_beta(alpha, beta, shape): sample_alpha = tf.random.gamma(shape, alpha, beta=1.0) # not: tf.random.gamma(shape, 1.0,...