Skip to content

Commit

Permalink
separate ui to another branch
Browse files Browse the repository at this point in the history
  • Loading branch information
woodfrog committed Apr 7, 2017
1 parent 5789daf commit 50b98fc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -4,3 +4,4 @@ data/
*.h5
/logs
.DS_Store
__pycache__
2 changes: 1 addition & 1 deletion models/finetuned_resnet.py
@@ -1,7 +1,7 @@
import os
from keras.models import Model
from keras.layers import Dense, Flatten, Dropout
from .resnet50 import ResNet50
from resnet50 import ResNet50

N_CLASSES = 101
IMSIZE = (216, 216, 3)
Expand Down
6 changes: 3 additions & 3 deletions predict.py
@@ -1,8 +1,8 @@
import os
import numpy as np
from .utils.UCF_utils import two_stream3_generator, two_stream18_generator
from .models.two_stream import two_stream_model
from .utils.OF_utils import stack_optical_flow
from utils.UCF_utils import two_stream3_generator, two_stream18_generator
from models.two_stream import two_stream_model
from utils.OF_utils import stack_optical_flow
import cv2
import random
from scipy.misc import imresize
Expand Down

0 comments on commit 50b98fc

Please sign in to comment.