diff --git a/README.md b/README.md index 154df8298fab5ecf322016157858e08cd1bccbe1..197bfce393c0d45af5ad0a3c272c51653d480bc0 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,56 @@ --- -license: apache-2.0 +library_name: keras +tags: +- feature extraction +- autoencoder --- + +# Vector-Quantized Variational Autoencoders (VQ-VAE) + +## Model description +Learning latent space representations of data remains to be an important task in machine learning. This model, the Vector-Quantized Variational Autoencoder (VQ-VAE) builds upon traditional VAEs in two ways. +- The encoder network outputs discrete, rather than continous, codes. +- The prior is learned rather than static. + +To learn discrete latent representations, ideas from vector quantisation (VQ) are used. Using the VQ method allows the model to avoid issues of ["posterior collapse"](https://datascience.stackexchange.com/questions/48962/what-is-posterior-collapse-phenomenon). By pairing these representations with an autoregressive prior, VQ-VAE models can generate high quality images, videos, speech as well as doing high quality speaker conversion and unsupervised learning of phonemes, providing further evidence of the utility of the learnt representations. + +Full Credits for this example go to [Sayak Paul](https://twitter.com/RisingSayak) + +### Further learning +This model has been trained using code from this [example](https://keras.io/examples/generative/vq_vae/), and a result of this [paper.](https://arxiv.org/pdf/1711.00937.pdf) + +## Model +Below we have a graphic from the paper above, showing the VQ-VAE model architecture and quantization process. +![VQ-VAE Model](vq.png) + +## Intended uses & limitations + +This model is intended to be used for educational purposes. To train your own VQ-VAE model, follow along with this [example](https://keras.io/examples/generative/vq_vae/) + +## Training and evaluation data + +This model is trained using the popular MNIST dataset. +This dataset can be found/used with the following command +``` +keras.datasets.mnist.load_data() + ``` + +## Hyperparameters +The model was trained usign the following +- Latent Dimension = 16 +- Number of Embeddings = 128 +- Epochs = 30 + +The author of the example encourages toying with both the number and size of the embeddings to see how it affects the results. + +## Reconstruction +Below, we can see a few examples of MNIST digits being reconstructed after passing through our model. +![Reconstructed](reconstruct.png) + + +## Discrete Latent Space +Below, we can see a few examples of MNIST digits being mapped to a discrete latent space. +![Discrete](discrete_code.png) + +## Next Steps +The keras example details of this model shows it can be paired with a PixelCNN for novel image generation. Check out the example linked above to try it yourself. \ No newline at end of file diff --git a/keras_metadata.pb b/keras_metadata.pb new file mode 100644 index 0000000000000000000000000000000000000000..b165a6e7fd8b07e30fe7819b928b6f0c71213595 --- /dev/null +++ b/keras_metadata.pb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b06b1dd65999b96f4e3ea70f1b9823de135509e71dfe6162bd0ad094d5e3577e +size 29175 diff --git a/logs/train/events.out.tfevents.1655747840.DESKTOP-JBB2V53.13476.946.v2 b/logs/train/events.out.tfevents.1655747840.DESKTOP-JBB2V53.13476.946.v2 new file mode 100644 index 0000000000000000000000000000000000000000..b61be864edb8802d502e3e1eeb56f0a6020154ef --- /dev/null +++ b/logs/train/events.out.tfevents.1655747840.DESKTOP-JBB2V53.13476.946.v2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f16e9ce61fd0b09114e28f5dc3f468eaffedce1b6ed2563bc5bcd2d33dedbdfd +size 774608 diff --git a/logs/train/events.out.tfevents.1655747840.DESKTOP-JBB2V53.profile-empty b/logs/train/events.out.tfevents.1655747840.DESKTOP-JBB2V53.profile-empty new file mode 100644 index 0000000000000000000000000000000000000000..a991f36fa8f28b285ef0bcfc6d43c10cb9867de9 --- /dev/null +++ b/logs/train/events.out.tfevents.1655747840.DESKTOP-JBB2V53.profile-empty @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52884e86b591d12c1686f482ebecf8ea1c95a2991126d5f7bb22de4f4e772bdb +size 40 diff --git a/logs/train/events.out.tfevents.1655748628.DESKTOP-JBB2V53.6552.946.v2 b/logs/train/events.out.tfevents.1655748628.DESKTOP-JBB2V53.6552.946.v2 new file mode 100644 index 0000000000000000000000000000000000000000..7c2696b40c75f15955a93b9dcdf1767926a0cdad --- /dev/null +++ b/logs/train/events.out.tfevents.1655748628.DESKTOP-JBB2V53.6552.946.v2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ab58ded570029ec26163b33779e4e7d1cd69cf356dc8c44a84b6debf7c0f4a7 +size 99644 diff --git a/logs/train/events.out.tfevents.1655748755.DESKTOP-JBB2V53.4604.946.v2 b/logs/train/events.out.tfevents.1655748755.DESKTOP-JBB2V53.4604.946.v2 new file mode 100644 index 0000000000000000000000000000000000000000..18a652ff18ffce0c793c90d7f95578d0b5074a08 --- /dev/null +++ b/logs/train/events.out.tfevents.1655748755.DESKTOP-JBB2V53.4604.946.v2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:573b6cc54138b404e9bbba9266e5c5570faae6ff7052e2bce1872d1b9211678f +size 99292 diff --git a/logs/train/events.out.tfevents.1655748878.DESKTOP-JBB2V53.15280.946.v2 b/logs/train/events.out.tfevents.1655748878.DESKTOP-JBB2V53.15280.946.v2 new file mode 100644 index 0000000000000000000000000000000000000000..371cc0a4d605a6cc11b205a3ea2e867b3e8dc779 --- /dev/null +++ b/logs/train/events.out.tfevents.1655748878.DESKTOP-JBB2V53.15280.946.v2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c53253a8689b00985345e46ffbd59a24cfb38cc421371fd68d7b639e3c17c641 +size 99404 diff --git a/logs/train/events.out.tfevents.1655749084.DESKTOP-JBB2V53.16660.946.v2 b/logs/train/events.out.tfevents.1655749084.DESKTOP-JBB2V53.16660.946.v2 new file mode 100644 index 0000000000000000000000000000000000000000..61c9a68f28b58d147c5ebe5ff1c24a20621c244b --- /dev/null +++ b/logs/train/events.out.tfevents.1655749084.DESKTOP-JBB2V53.16660.946.v2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2de35dabff621b2fa2c4f89ad783312c1fd9613800f7beef50e008c0205d45d +size 781648 diff --git a/logs/train/events.out.tfevents.1655749823.DESKTOP-JBB2V53.14016.946.v2 b/logs/train/events.out.tfevents.1655749823.DESKTOP-JBB2V53.14016.946.v2 new file mode 100644 index 0000000000000000000000000000000000000000..543d4bb188b0cd8084abaa8f2e40f944a4f96ab1 --- /dev/null +++ b/logs/train/events.out.tfevents.1655749823.DESKTOP-JBB2V53.14016.946.v2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a587d8e85490f4b1cbdb465a36dee639a67e708f0064d699be20fbb49a8fbd53 +size 785232 diff --git a/logs/train/events.out.tfevents.1655848512.DESKTOP-JBB2V53.17432.946.v2 b/logs/train/events.out.tfevents.1655848512.DESKTOP-JBB2V53.17432.946.v2 new file mode 100644 index 0000000000000000000000000000000000000000..40a90d5c36a78c391e94b6d481b377fe5c0fdb3a --- /dev/null +++ b/logs/train/events.out.tfevents.1655848512.DESKTOP-JBB2V53.17432.946.v2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a4bf13da69476ffd3cea4d59cea485eaad89ddd47fd8aae1f4a563aa1a7f445 +size 783888 diff --git a/logs/train/plugins/profile/2022_06_20_17_57_20/DESKTOP-JBB2V53.input_pipeline.pb b/logs/train/plugins/profile/2022_06_20_17_57_20/DESKTOP-JBB2V53.input_pipeline.pb new file mode 100644 index 0000000000000000000000000000000000000000..e9010c6bf7a27505dd613f280ce469e27646916f --- /dev/null +++ b/logs/train/plugins/profile/2022_06_20_17_57_20/DESKTOP-JBB2V53.input_pipeline.pb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27ccfd3e045864738f4855bdfa1b28c90aaeb6aee487ba99a9cca99e04c9a48b +size 2884 diff --git a/logs/train/plugins/profile/2022_06_20_17_57_20/DESKTOP-JBB2V53.kernel_stats.pb b/logs/train/plugins/profile/2022_06_20_17_57_20/DESKTOP-JBB2V53.kernel_stats.pb new file mode 100644 index 0000000000000000000000000000000000000000..fc8e42b32efb9a9bf3ae0234a18a948e499490f8 --- /dev/null +++ b/logs/train/plugins/profile/2022_06_20_17_57_20/DESKTOP-JBB2V53.kernel_stats.pb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 +size 0 diff --git a/logs/train/plugins/profile/2022_06_20_17_57_20/DESKTOP-JBB2V53.memory_profile.json.gz b/logs/train/plugins/profile/2022_06_20_17_57_20/DESKTOP-JBB2V53.memory_profile.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..f1300f9960dd3c39d0e43386411c770bbde8c3dd --- /dev/null +++ b/logs/train/plugins/profile/2022_06_20_17_57_20/DESKTOP-JBB2V53.memory_profile.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46d579a4fc38e17ca4026f68112be9068917639b441f6378c043e903e135ea8b +size 73 diff --git a/logs/train/plugins/profile/2022_06_20_17_57_20/DESKTOP-JBB2V53.overview_page.pb b/logs/train/plugins/profile/2022_06_20_17_57_20/DESKTOP-JBB2V53.overview_page.pb new file mode 100644 index 0000000000000000000000000000000000000000..024aac413b44aec09d71b0d585a4e874a2b85699 --- /dev/null +++ b/logs/train/plugins/profile/2022_06_20_17_57_20/DESKTOP-JBB2V53.overview_page.pb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18a45470d7ccb14e35de67f42e062f834359c507b7619d57f168135fcaaf6e4e +size 4259 diff --git a/logs/train/plugins/profile/2022_06_20_17_57_20/DESKTOP-JBB2V53.tensorflow_stats.pb b/logs/train/plugins/profile/2022_06_20_17_57_20/DESKTOP-JBB2V53.tensorflow_stats.pb new file mode 100644 index 0000000000000000000000000000000000000000..32e6b925ef8da1b4d44a19e0b62e9761e0c7ef33 --- /dev/null +++ b/logs/train/plugins/profile/2022_06_20_17_57_20/DESKTOP-JBB2V53.tensorflow_stats.pb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72228d6e98ae10dc280fe5cb9ab1b1f02a4595b3c24315a2004ce98922d98133 +size 37135 diff --git a/logs/train/plugins/profile/2022_06_20_17_57_20/DESKTOP-JBB2V53.trace.json.gz b/logs/train/plugins/profile/2022_06_20_17_57_20/DESKTOP-JBB2V53.trace.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..c4817c91804858b821823e9c84c45d79b65331aa --- /dev/null +++ b/logs/train/plugins/profile/2022_06_20_17_57_20/DESKTOP-JBB2V53.trace.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:218361e852be60c236d8ba078d28bad3933537a7877ddb1f6801064fb60ff295 +size 6530 diff --git a/logs/train/plugins/profile/2022_06_20_17_57_20/DESKTOP-JBB2V53.xplane.pb b/logs/train/plugins/profile/2022_06_20_17_57_20/DESKTOP-JBB2V53.xplane.pb new file mode 100644 index 0000000000000000000000000000000000000000..a728cce221a1d0298dacdfe6724172a5610dad8d --- /dev/null +++ b/logs/train/plugins/profile/2022_06_20_17_57_20/DESKTOP-JBB2V53.xplane.pb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7eb4e49138d5f5f06d11a20725310eb67e80591d79aedf7435ff00e5295dd90a +size 22279 diff --git a/logs/train/plugins/profile/2022_06_20_18_10_29/DESKTOP-JBB2V53.input_pipeline.pb b/logs/train/plugins/profile/2022_06_20_18_10_29/DESKTOP-JBB2V53.input_pipeline.pb new file mode 100644 index 0000000000000000000000000000000000000000..8d8c7769b2caaae9a8e86d656a9270149ebdfda3 --- /dev/null +++ b/logs/train/plugins/profile/2022_06_20_18_10_29/DESKTOP-JBB2V53.input_pipeline.pb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ed1e9af9b29069e9f026e3efbf3223e4f2f724cf16bff2703532f6cc18687e9 +size 2884 diff --git a/logs/train/plugins/profile/2022_06_20_18_10_29/DESKTOP-JBB2V53.kernel_stats.pb b/logs/train/plugins/profile/2022_06_20_18_10_29/DESKTOP-JBB2V53.kernel_stats.pb new file mode 100644 index 0000000000000000000000000000000000000000..fc8e42b32efb9a9bf3ae0234a18a948e499490f8 --- /dev/null +++ b/logs/train/plugins/profile/2022_06_20_18_10_29/DESKTOP-JBB2V53.kernel_stats.pb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 +size 0 diff --git a/logs/train/plugins/profile/2022_06_20_18_10_29/DESKTOP-JBB2V53.memory_profile.json.gz b/logs/train/plugins/profile/2022_06_20_18_10_29/DESKTOP-JBB2V53.memory_profile.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..f1300f9960dd3c39d0e43386411c770bbde8c3dd --- /dev/null +++ b/logs/train/plugins/profile/2022_06_20_18_10_29/DESKTOP-JBB2V53.memory_profile.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46d579a4fc38e17ca4026f68112be9068917639b441f6378c043e903e135ea8b +size 73 diff --git a/logs/train/plugins/profile/2022_06_20_18_10_29/DESKTOP-JBB2V53.overview_page.pb b/logs/train/plugins/profile/2022_06_20_18_10_29/DESKTOP-JBB2V53.overview_page.pb new file mode 100644 index 0000000000000000000000000000000000000000..f33b685a3f4d04d4d7f2b8fcc7848ecf64ed16ea --- /dev/null +++ b/logs/train/plugins/profile/2022_06_20_18_10_29/DESKTOP-JBB2V53.overview_page.pb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12cabcc35e3b2d4575d3b543a4e763e682bb4e953f9f380d761038883787ed04 +size 4259 diff --git a/logs/train/plugins/profile/2022_06_20_18_10_29/DESKTOP-JBB2V53.tensorflow_stats.pb b/logs/train/plugins/profile/2022_06_20_18_10_29/DESKTOP-JBB2V53.tensorflow_stats.pb new file mode 100644 index 0000000000000000000000000000000000000000..4e5f4d8578464ad81fe106e866ef5f6f35138509 --- /dev/null +++ b/logs/train/plugins/profile/2022_06_20_18_10_29/DESKTOP-JBB2V53.tensorflow_stats.pb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2fcbc4ff19f361dd19967e039b76a157333eecc61f3f21977d0c3873681a5a1 +size 37135 diff --git a/logs/train/plugins/profile/2022_06_20_18_10_29/DESKTOP-JBB2V53.trace.json.gz b/logs/train/plugins/profile/2022_06_20_18_10_29/DESKTOP-JBB2V53.trace.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..4d048eb66e071e8d8b23869464b3e9233b762988 --- /dev/null +++ b/logs/train/plugins/profile/2022_06_20_18_10_29/DESKTOP-JBB2V53.trace.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ef7ef53d363532acd6106afe622fcb65680c11514cdce11934abc7ac999a0f1 +size 6464 diff --git a/logs/train/plugins/profile/2022_06_20_18_10_29/DESKTOP-JBB2V53.xplane.pb b/logs/train/plugins/profile/2022_06_20_18_10_29/DESKTOP-JBB2V53.xplane.pb new file mode 100644 index 0000000000000000000000000000000000000000..3772c0cc4e75b5bfc6facc6723b8d77473ed1029 --- /dev/null +++ b/logs/train/plugins/profile/2022_06_20_18_10_29/DESKTOP-JBB2V53.xplane.pb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92922aa8e4e914d0b3124bea8bcd425a6bd9cad4a9c44dc9b883556c1eed7b64 +size 22284 diff --git a/logs/train/plugins/profile/2022_06_20_18_12_36/DESKTOP-JBB2V53.input_pipeline.pb b/logs/train/plugins/profile/2022_06_20_18_12_36/DESKTOP-JBB2V53.input_pipeline.pb new file mode 100644 index 0000000000000000000000000000000000000000..236702314eca42270f14e999074898ba8178b2f0 --- /dev/null +++ b/logs/train/plugins/profile/2022_06_20_18_12_36/DESKTOP-JBB2V53.input_pipeline.pb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8059d78f1f2d3d98cd4671af7e11e68294ad9be2646a27e08c7840a84f3350da +size 2884 diff --git a/logs/train/plugins/profile/2022_06_20_18_12_36/DESKTOP-JBB2V53.kernel_stats.pb b/logs/train/plugins/profile/2022_06_20_18_12_36/DESKTOP-JBB2V53.kernel_stats.pb new file mode 100644 index 0000000000000000000000000000000000000000..fc8e42b32efb9a9bf3ae0234a18a948e499490f8 --- /dev/null +++ b/logs/train/plugins/profile/2022_06_20_18_12_36/DESKTOP-JBB2V53.kernel_stats.pb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 +size 0 diff --git a/logs/train/plugins/profile/2022_06_20_18_12_36/DESKTOP-JBB2V53.memory_profile.json.gz b/logs/train/plugins/profile/2022_06_20_18_12_36/DESKTOP-JBB2V53.memory_profile.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..f1300f9960dd3c39d0e43386411c770bbde8c3dd --- /dev/null +++ b/logs/train/plugins/profile/2022_06_20_18_12_36/DESKTOP-JBB2V53.memory_profile.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46d579a4fc38e17ca4026f68112be9068917639b441f6378c043e903e135ea8b +size 73 diff --git a/logs/train/plugins/profile/2022_06_20_18_12_36/DESKTOP-JBB2V53.overview_page.pb b/logs/train/plugins/profile/2022_06_20_18_12_36/DESKTOP-JBB2V53.overview_page.pb new file mode 100644 index 0000000000000000000000000000000000000000..3ec408ed5b7bdb108b924b66487435e43036e8be --- /dev/null +++ b/logs/train/plugins/profile/2022_06_20_18_12_36/DESKTOP-JBB2V53.overview_page.pb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d39cf8494e455f99d37282940b53dabf4585d5357eb8f36ba17c02ea08c868dd +size 4259 diff --git a/logs/train/plugins/profile/2022_06_20_18_12_36/DESKTOP-JBB2V53.tensorflow_stats.pb b/logs/train/plugins/profile/2022_06_20_18_12_36/DESKTOP-JBB2V53.tensorflow_stats.pb new file mode 100644 index 0000000000000000000000000000000000000000..8f57cb9dd48d7addd1cffe99d1d933006f678a93 --- /dev/null +++ b/logs/train/plugins/profile/2022_06_20_18_12_36/DESKTOP-JBB2V53.tensorflow_stats.pb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16589e36b457d6cf3a480644b6dd27518f84ecc53ca4a562a644b07efc1983f3 +size 37135 diff --git a/logs/train/plugins/profile/2022_06_20_18_12_36/DESKTOP-JBB2V53.trace.json.gz b/logs/train/plugins/profile/2022_06_20_18_12_36/DESKTOP-JBB2V53.trace.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..003b1d3395f372cb124d9aec146aedb4d3cf40b2 --- /dev/null +++ b/logs/train/plugins/profile/2022_06_20_18_12_36/DESKTOP-JBB2V53.trace.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9093b7c2e7750f3d6122a38fbefaf70446d458f1f35b0065cb4be2000f74f6be +size 6513 diff --git a/logs/train/plugins/profile/2022_06_20_18_12_36/DESKTOP-JBB2V53.xplane.pb b/logs/train/plugins/profile/2022_06_20_18_12_36/DESKTOP-JBB2V53.xplane.pb new file mode 100644 index 0000000000000000000000000000000000000000..bdd3b642556a86f4bb29857403950490c0382ddd --- /dev/null +++ b/logs/train/plugins/profile/2022_06_20_18_12_36/DESKTOP-JBB2V53.xplane.pb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90852fea3d17aefc85fe01af77bb3444f23a4174fa0f2f2539b22896580f4e85 +size 22417 diff --git a/logs/train/plugins/profile/2022_06_20_18_14_39/DESKTOP-JBB2V53.input_pipeline.pb b/logs/train/plugins/profile/2022_06_20_18_14_39/DESKTOP-JBB2V53.input_pipeline.pb new file mode 100644 index 0000000000000000000000000000000000000000..147cf340a09baf35631ec55cd8746571f7fb0b27 --- /dev/null +++ b/logs/train/plugins/profile/2022_06_20_18_14_39/DESKTOP-JBB2V53.input_pipeline.pb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a883da2deb0bdd0973342aeaeccf72c01f32895fa35b070f41067adf0fc03e7 +size 2884 diff --git a/logs/train/plugins/profile/2022_06_20_18_14_39/DESKTOP-JBB2V53.kernel_stats.pb b/logs/train/plugins/profile/2022_06_20_18_14_39/DESKTOP-JBB2V53.kernel_stats.pb new file mode 100644 index 0000000000000000000000000000000000000000..fc8e42b32efb9a9bf3ae0234a18a948e499490f8 --- /dev/null +++ b/logs/train/plugins/profile/2022_06_20_18_14_39/DESKTOP-JBB2V53.kernel_stats.pb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 +size 0 diff --git a/logs/train/plugins/profile/2022_06_20_18_14_39/DESKTOP-JBB2V53.memory_profile.json.gz b/logs/train/plugins/profile/2022_06_20_18_14_39/DESKTOP-JBB2V53.memory_profile.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..f1300f9960dd3c39d0e43386411c770bbde8c3dd --- /dev/null +++ b/logs/train/plugins/profile/2022_06_20_18_14_39/DESKTOP-JBB2V53.memory_profile.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46d579a4fc38e17ca4026f68112be9068917639b441f6378c043e903e135ea8b +size 73 diff --git a/logs/train/plugins/profile/2022_06_20_18_14_39/DESKTOP-JBB2V53.overview_page.pb b/logs/train/plugins/profile/2022_06_20_18_14_39/DESKTOP-JBB2V53.overview_page.pb new file mode 100644 index 0000000000000000000000000000000000000000..e3e4b83aaec99fa5ec4d5685895a4f016ec544e1 --- /dev/null +++ b/logs/train/plugins/profile/2022_06_20_18_14_39/DESKTOP-JBB2V53.overview_page.pb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1150da73ec851f55476bea255132b4ef5a2459c49c2ee002887597071cd0f04f +size 4259 diff --git a/logs/train/plugins/profile/2022_06_20_18_14_39/DESKTOP-JBB2V53.tensorflow_stats.pb b/logs/train/plugins/profile/2022_06_20_18_14_39/DESKTOP-JBB2V53.tensorflow_stats.pb new file mode 100644 index 0000000000000000000000000000000000000000..90f87c5c0095c72e92368901f2403aeaf4960e69 --- /dev/null +++ b/logs/train/plugins/profile/2022_06_20_18_14_39/DESKTOP-JBB2V53.tensorflow_stats.pb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b1848e7f1d5d6b31ca5b9da43547923a585fe51834f62455f5649604d3a05cd +size 37135 diff --git a/logs/train/plugins/profile/2022_06_20_18_14_39/DESKTOP-JBB2V53.trace.json.gz b/logs/train/plugins/profile/2022_06_20_18_14_39/DESKTOP-JBB2V53.trace.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..d94ca8ae6263988bbfb6bed2ba75f374738cf4c1 --- /dev/null +++ b/logs/train/plugins/profile/2022_06_20_18_14_39/DESKTOP-JBB2V53.trace.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c042f8ec9045759201f27e790e60d94ef67795ae2aecf5eb7daa11c339ddc52 +size 6642 diff --git a/logs/train/plugins/profile/2022_06_20_18_14_39/DESKTOP-JBB2V53.xplane.pb b/logs/train/plugins/profile/2022_06_20_18_14_39/DESKTOP-JBB2V53.xplane.pb new file mode 100644 index 0000000000000000000000000000000000000000..e3ecd91be7f206453b025e7bd6a202e90d794ae2 --- /dev/null +++ b/logs/train/plugins/profile/2022_06_20_18_14_39/DESKTOP-JBB2V53.xplane.pb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc9e788b28265ac3f465ce7f5ac23dc6cc37532fd6eedc651834892e5257654c +size 22262 diff --git a/logs/train/plugins/profile/2022_06_20_18_18_04/DESKTOP-JBB2V53.input_pipeline.pb b/logs/train/plugins/profile/2022_06_20_18_18_04/DESKTOP-JBB2V53.input_pipeline.pb new file mode 100644 index 0000000000000000000000000000000000000000..9f82aa2243ee8e8aae4372ad80e1e39900222306 --- /dev/null +++ b/logs/train/plugins/profile/2022_06_20_18_18_04/DESKTOP-JBB2V53.input_pipeline.pb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad04698e2044b4ddbfa3f559f214de41872bc1025ca553b19aea87afbfa9d913 +size 2884 diff --git a/logs/train/plugins/profile/2022_06_20_18_18_04/DESKTOP-JBB2V53.kernel_stats.pb b/logs/train/plugins/profile/2022_06_20_18_18_04/DESKTOP-JBB2V53.kernel_stats.pb new file mode 100644 index 0000000000000000000000000000000000000000..fc8e42b32efb9a9bf3ae0234a18a948e499490f8 --- /dev/null +++ b/logs/train/plugins/profile/2022_06_20_18_18_04/DESKTOP-JBB2V53.kernel_stats.pb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 +size 0 diff --git a/logs/train/plugins/profile/2022_06_20_18_18_04/DESKTOP-JBB2V53.memory_profile.json.gz b/logs/train/plugins/profile/2022_06_20_18_18_04/DESKTOP-JBB2V53.memory_profile.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..f1300f9960dd3c39d0e43386411c770bbde8c3dd --- /dev/null +++ b/logs/train/plugins/profile/2022_06_20_18_18_04/DESKTOP-JBB2V53.memory_profile.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46d579a4fc38e17ca4026f68112be9068917639b441f6378c043e903e135ea8b +size 73 diff --git a/logs/train/plugins/profile/2022_06_20_18_18_04/DESKTOP-JBB2V53.overview_page.pb b/logs/train/plugins/profile/2022_06_20_18_18_04/DESKTOP-JBB2V53.overview_page.pb new file mode 100644 index 0000000000000000000000000000000000000000..d6a7991346c31598aee873d0463b9e85798fb361 --- /dev/null +++ b/logs/train/plugins/profile/2022_06_20_18_18_04/DESKTOP-JBB2V53.overview_page.pb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bb30cf30a84b3c8251e6075f2854c8e5f2395a30103e987e1afcfa75440e686 +size 4432 diff --git a/logs/train/plugins/profile/2022_06_20_18_18_04/DESKTOP-JBB2V53.tensorflow_stats.pb b/logs/train/plugins/profile/2022_06_20_18_18_04/DESKTOP-JBB2V53.tensorflow_stats.pb new file mode 100644 index 0000000000000000000000000000000000000000..f6cc526c34248d98880f0d795ef6b7f9d0ea1aef --- /dev/null +++ b/logs/train/plugins/profile/2022_06_20_18_18_04/DESKTOP-JBB2V53.tensorflow_stats.pb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0666d0d5b4d8a0cfd84bf3b5353d5c1de08b19bae10beef68aa591ad935f7244 +size 37135 diff --git a/logs/train/plugins/profile/2022_06_20_18_18_04/DESKTOP-JBB2V53.trace.json.gz b/logs/train/plugins/profile/2022_06_20_18_18_04/DESKTOP-JBB2V53.trace.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..25cde1c87bad1420022b60c1f7d1dec437cba169 --- /dev/null +++ b/logs/train/plugins/profile/2022_06_20_18_18_04/DESKTOP-JBB2V53.trace.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:575b8570dd4c4899cb4039c05404f6508b87d12bc4805cb6edf06bb765d5c322 +size 6527 diff --git a/logs/train/plugins/profile/2022_06_20_18_18_04/DESKTOP-JBB2V53.xplane.pb b/logs/train/plugins/profile/2022_06_20_18_18_04/DESKTOP-JBB2V53.xplane.pb new file mode 100644 index 0000000000000000000000000000000000000000..7f13afd3f0620037d22bb68d85bc04f432958278 --- /dev/null +++ b/logs/train/plugins/profile/2022_06_20_18_18_04/DESKTOP-JBB2V53.xplane.pb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:751e8b2607c52b6079ae0a4d3aa9c20a9df3ce9d8fc5fb969abdfd0eb1a3499d +size 22304 diff --git a/logs/train/plugins/profile/2022_06_20_18_30_23/DESKTOP-JBB2V53.input_pipeline.pb b/logs/train/plugins/profile/2022_06_20_18_30_23/DESKTOP-JBB2V53.input_pipeline.pb new file mode 100644 index 0000000000000000000000000000000000000000..7a274d1ed7f176dad10b5edb6f33504d84586b8f --- /dev/null +++ b/logs/train/plugins/profile/2022_06_20_18_30_23/DESKTOP-JBB2V53.input_pipeline.pb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07d19dee10dc341dc4abc42f0561280ef87589eeb1a8918b44700d40cb120f8f +size 2884 diff --git a/logs/train/plugins/profile/2022_06_20_18_30_23/DESKTOP-JBB2V53.kernel_stats.pb b/logs/train/plugins/profile/2022_06_20_18_30_23/DESKTOP-JBB2V53.kernel_stats.pb new file mode 100644 index 0000000000000000000000000000000000000000..fc8e42b32efb9a9bf3ae0234a18a948e499490f8 --- /dev/null +++ b/logs/train/plugins/profile/2022_06_20_18_30_23/DESKTOP-JBB2V53.kernel_stats.pb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 +size 0 diff --git a/logs/train/plugins/profile/2022_06_20_18_30_23/DESKTOP-JBB2V53.memory_profile.json.gz b/logs/train/plugins/profile/2022_06_20_18_30_23/DESKTOP-JBB2V53.memory_profile.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..f1300f9960dd3c39d0e43386411c770bbde8c3dd --- /dev/null +++ b/logs/train/plugins/profile/2022_06_20_18_30_23/DESKTOP-JBB2V53.memory_profile.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46d579a4fc38e17ca4026f68112be9068917639b441f6378c043e903e135ea8b +size 73 diff --git a/logs/train/plugins/profile/2022_06_20_18_30_23/DESKTOP-JBB2V53.overview_page.pb b/logs/train/plugins/profile/2022_06_20_18_30_23/DESKTOP-JBB2V53.overview_page.pb new file mode 100644 index 0000000000000000000000000000000000000000..b3a398a4812ee3ec18146fd1a285286c693ab240 --- /dev/null +++ b/logs/train/plugins/profile/2022_06_20_18_30_23/DESKTOP-JBB2V53.overview_page.pb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c2b399b76f176f36dc6262b9a46adf659b2f9466309cda0de0f452baf28dc97 +size 4259 diff --git a/logs/train/plugins/profile/2022_06_20_18_30_23/DESKTOP-JBB2V53.tensorflow_stats.pb b/logs/train/plugins/profile/2022_06_20_18_30_23/DESKTOP-JBB2V53.tensorflow_stats.pb new file mode 100644 index 0000000000000000000000000000000000000000..d9c8b82c300bb989f5ccb4e4a99258f1ea58d959 --- /dev/null +++ b/logs/train/plugins/profile/2022_06_20_18_30_23/DESKTOP-JBB2V53.tensorflow_stats.pb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58238f042e2921fcefcf2eb310fcc8a2d633d30bf5e98e3f6753e0f2a9b377ca +size 37135 diff --git a/logs/train/plugins/profile/2022_06_20_18_30_23/DESKTOP-JBB2V53.trace.json.gz b/logs/train/plugins/profile/2022_06_20_18_30_23/DESKTOP-JBB2V53.trace.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..361f30df8b803eb2011b8d9a77846fff66865628 --- /dev/null +++ b/logs/train/plugins/profile/2022_06_20_18_30_23/DESKTOP-JBB2V53.trace.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d321a990da7adf27f5ab9ab8a244ad02ec7da84b9c2bca03ac22c4c9c74ec745 +size 6535 diff --git a/logs/train/plugins/profile/2022_06_20_18_30_23/DESKTOP-JBB2V53.xplane.pb b/logs/train/plugins/profile/2022_06_20_18_30_23/DESKTOP-JBB2V53.xplane.pb new file mode 100644 index 0000000000000000000000000000000000000000..ef7e30585770ebc8b20e25cb055b9380f12963f9 --- /dev/null +++ b/logs/train/plugins/profile/2022_06_20_18_30_23/DESKTOP-JBB2V53.xplane.pb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3689f1f25d543e06cf37e2925b491b06bb919abe83b3ba08d7de40b4be5360b +size 22312 diff --git a/logs/train/plugins/profile/2022_06_21_21_55_12/DESKTOP-JBB2V53.input_pipeline.pb b/logs/train/plugins/profile/2022_06_21_21_55_12/DESKTOP-JBB2V53.input_pipeline.pb new file mode 100644 index 0000000000000000000000000000000000000000..c1891acd0095e18361fb104495ffea3de286368a --- /dev/null +++ b/logs/train/plugins/profile/2022_06_21_21_55_12/DESKTOP-JBB2V53.input_pipeline.pb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b71bec2e0112c78275bf66018fcf06782274d7d6663b7129c8bbb209378043cd +size 2884 diff --git a/logs/train/plugins/profile/2022_06_21_21_55_12/DESKTOP-JBB2V53.kernel_stats.pb b/logs/train/plugins/profile/2022_06_21_21_55_12/DESKTOP-JBB2V53.kernel_stats.pb new file mode 100644 index 0000000000000000000000000000000000000000..fc8e42b32efb9a9bf3ae0234a18a948e499490f8 --- /dev/null +++ b/logs/train/plugins/profile/2022_06_21_21_55_12/DESKTOP-JBB2V53.kernel_stats.pb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 +size 0 diff --git a/logs/train/plugins/profile/2022_06_21_21_55_12/DESKTOP-JBB2V53.memory_profile.json.gz b/logs/train/plugins/profile/2022_06_21_21_55_12/DESKTOP-JBB2V53.memory_profile.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..f1300f9960dd3c39d0e43386411c770bbde8c3dd --- /dev/null +++ b/logs/train/plugins/profile/2022_06_21_21_55_12/DESKTOP-JBB2V53.memory_profile.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46d579a4fc38e17ca4026f68112be9068917639b441f6378c043e903e135ea8b +size 73 diff --git a/logs/train/plugins/profile/2022_06_21_21_55_12/DESKTOP-JBB2V53.overview_page.pb b/logs/train/plugins/profile/2022_06_21_21_55_12/DESKTOP-JBB2V53.overview_page.pb new file mode 100644 index 0000000000000000000000000000000000000000..446e788ed9688a89f5e119a9e4758e1bdf742159 --- /dev/null +++ b/logs/train/plugins/profile/2022_06_21_21_55_12/DESKTOP-JBB2V53.overview_page.pb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f9db4bb1bb9d29ded079d93e8e33b88cb8250f158af424cd35be500733e6a1b +size 4259 diff --git a/logs/train/plugins/profile/2022_06_21_21_55_12/DESKTOP-JBB2V53.tensorflow_stats.pb b/logs/train/plugins/profile/2022_06_21_21_55_12/DESKTOP-JBB2V53.tensorflow_stats.pb new file mode 100644 index 0000000000000000000000000000000000000000..a66e1d79f8271bf33de3a2596e4b57d69247db35 --- /dev/null +++ b/logs/train/plugins/profile/2022_06_21_21_55_12/DESKTOP-JBB2V53.tensorflow_stats.pb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed093728b9df72b042b2db0ef6251d0b0652f400c0551fc926dcd78b9fa1bff7 +size 37135 diff --git a/logs/train/plugins/profile/2022_06_21_21_55_12/DESKTOP-JBB2V53.trace.json.gz b/logs/train/plugins/profile/2022_06_21_21_55_12/DESKTOP-JBB2V53.trace.json.gz new file mode 100644 index 0000000000000000000000000000000000000000..b078ca5dcebdc17c4f0ef8be5e20b377831cb77b --- /dev/null +++ b/logs/train/plugins/profile/2022_06_21_21_55_12/DESKTOP-JBB2V53.trace.json.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:193e5c1bead8a40d63c28e305fbcced8d74490c761a1a7e63b4c2dcc131c6d0e +size 6627 diff --git a/logs/train/plugins/profile/2022_06_21_21_55_12/DESKTOP-JBB2V53.xplane.pb b/logs/train/plugins/profile/2022_06_21_21_55_12/DESKTOP-JBB2V53.xplane.pb new file mode 100644 index 0000000000000000000000000000000000000000..98b1c30c6a5e82c50fc61935142d702728242e04 --- /dev/null +++ b/logs/train/plugins/profile/2022_06_21_21_55_12/DESKTOP-JBB2V53.xplane.pb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0e00e132d85008b624991fa0f1500d240a29702a6b9d44be5788823707e50c1 +size 22296 diff --git a/saved_model.pb b/saved_model.pb new file mode 100644 index 0000000000000000000000000000000000000000..de55a48605c08730457c0248a06bd1a6dc3d1382 --- /dev/null +++ b/saved_model.pb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d58983c821e4d952dcadb8e42fce030d884d8827a074fe94fb481cb091a37ec +size 288253 diff --git a/variables/variables.data-00000-of-00001 b/variables/variables.data-00000-of-00001 new file mode 100644 index 0000000000000000000000000000000000000000..f0d7da1610cb36a5a9140ef3d250642422bc724b Binary files /dev/null and b/variables/variables.data-00000-of-00001 differ diff --git a/variables/variables.index b/variables/variables.index new file mode 100644 index 0000000000000000000000000000000000000000..93d22651dee868df3c77f8411b319540271fa5c2 Binary files /dev/null and b/variables/variables.index differ