Skip to content
#

tensorflow-2

Here are 81 public repositories matching this topic...

johngrabner
johngrabner commented Feb 8, 2020
def read_images(img_dir):
   ...
   file_list = [f for f in os.listdir(img_dir) if os.path.isfile(os.path.join(img_dir, f))]
   frames_list = [file for file in file_list if ('_L' not in file) and ('txt' not in file)]
   masks_list = [file for file in file_list if ('_L' in file) and ('txt' not in file)]

adding

for i in range(10):
        print(f"{frames_list[i]} and {ma

Deep generative models implemented with TensorFlow 2.0: eg. Restricted Boltzmann Machine (RBM), Deep Belief Network (DBN), Deep Boltzmann Machine (DBM), Convolutional Variational Auto-Encoder (CVAE), Convolutional Generative Adversarial Network (CGAN)

  • Updated Jun 13, 2020
  • Python

Improve this page

Add a description, image, and links to the tensorflow-2 topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the tensorflow-2 topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.