"...text-generation-inference.git" did not exist on "9ecfa16b12c13ac6ed136929258829208ed8afc5"
Commit 1b0bf3e6 authored by Eli Bixby's avatar Eli Bixby
Browse files

Fix relative imports to work if packaged

parent 68612afb
......@@ -33,8 +33,9 @@ import functools
import operator
import os
import cifar10
import cifar10_model
from . import cifar10
from . import cifar10_model
import numpy as np
from six.moves import xrange # pylint: disable=redefined-builtin
import tensorflow as tf
......
......@@ -19,7 +19,7 @@ from __future__ import print_function
import tensorflow as tf
import model_base
from . import model_base
class ResNetCifar10(model_base.ResNet):
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment