You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I run the imports cell, this iimport error occurs:
CELL:
`import tensorflow as tf
import numpy as np
import concurrent.futures
from threading import Lock
import json, math, random, os, pprint
from matplotlib import pyplot as plt
import matplotlib as mpl
import utils_box as box
#import box_ops as box
AUTO = tf.data.AUTOTUNE
pp = pprint.PrettyPrinter()
print("TensorFlow version", tf.version)
from tensorflow_models.vision import box_ops as boxutils`
ERROR:
`ModuleNotFoundError Traceback (most recent call last) in ()
6 from matplotlib import pyplot as plt
7 import matplotlib as mpl
----> 8 import utils_box as box
9 #import box_ops as box
10 AUTO = tf.data.AUTOTUNE
ModuleNotFoundError: No module named 'utils_box'
Is there any other package able to replace this one?
The text was updated successfully, but these errors were encountered:
When I run the imports cell, this iimport error occurs:
CELL:
`import tensorflow as tf
import numpy as np
import concurrent.futures
from threading import Lock
import json, math, random, os, pprint
from matplotlib import pyplot as plt
import matplotlib as mpl
import utils_box as box
#import box_ops as box
AUTO = tf.data.AUTOTUNE
pp = pprint.PrettyPrinter()
print("TensorFlow version", tf.version)
from tensorflow_models.vision import box_ops as boxutils`
ERROR:
`ModuleNotFoundError Traceback (most recent call last)
in ()
6 from matplotlib import pyplot as plt
7 import matplotlib as mpl
----> 8 import utils_box as box
9 #import box_ops as box
10 AUTO = tf.data.AUTOTUNE
ModuleNotFoundError: No module named 'utils_box'
Is there any other package able to replace this one?
The text was updated successfully, but these errors were encountered: