Skip to content

Commit

Permalink
Merge pull request machrisaa#26 from a514514772/master
Browse files Browse the repository at this point in the history
fix import path
  • Loading branch information
machrisaa authored Apr 4, 2017
2 parents cdbc793 + 226c13f commit ff94ec6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions test_vgg16.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import numpy as np
import tensorflow as tf

from tensoflow_vgg import vgg16
from tensoflow_vgg import utils
import vgg16
import utils

img1 = utils.load_image("./test_data/tiger.jpeg")
img2 = utils.load_image("./test_data/puzzle.jpeg")
Expand Down
4 changes: 2 additions & 2 deletions test_vgg19.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import numpy as np
import tensorflow as tf

from tensoflow_vgg import vgg19
from tensoflow_vgg import utils
import vgg19
import utils

img1 = utils.load_image("./test_data/tiger.jpeg")
img2 = utils.load_image("./test_data/puzzle.jpeg")
Expand Down
4 changes: 2 additions & 2 deletions test_vgg19_trainable.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

import tensorflow as tf

from tensoflow_vgg import vgg19_trainable as vgg19
from tensoflow_vgg import utils
import vgg19_trainable as vgg19
import utils

img1 = utils.load_image("./test_data/tiger.jpeg")
img1_true_result = [1 if i == 292 else 0 for i in range(1000)] # 1-hot result for tiger
Expand Down

0 comments on commit ff94ec6

Please sign in to comment.