Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cvae/cvae.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
import shutil

import numpy as np
import tensorflow as tf
import tensorflow.compat.v1 as tf
try:
tf.compat.v1.logging.set_verbosity(tf.compat.v1.logging.ERROR)
tf.logging.set_verbosity(tf.logging.ERROR)
except:
pass

Expand Down
2 changes: 1 addition & 1 deletion cvae/lib/data_reader.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import threading
import random
import tensorflow as tf
import tensorflow.compat.v1 as tf
import numpy as np
import joblib
import os
Expand Down
2 changes: 1 addition & 1 deletion cvae/lib/data_reader_array.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import threading
import random
import tensorflow as tf
import tensorflow.compat.v1 as tf
import numpy as np
import joblib
import os
Expand Down
2 changes: 1 addition & 1 deletion cvae/lib/model_iaf.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import tensorflow as tf
import tensorflow.compat.v1 as tf


def create_variable(name, shape, initializer_type=None):
Expand Down