Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

/ Update minibatch.py #848

Open
wants to merge 1 commit into
base: pytorch-1.0
Choose a base branch
from
Open
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: 3 additions & 1 deletion lib/roi_data_layer/minibatch.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@

import numpy as np
import numpy.random as npr
from scipy.misc import imread
# from scipy.misc import imread
# pip install imageio
from imageio import imread
from model.utils.config import cfg
from model.utils.blob import prep_im_for_blob, im_list_to_blob
import pdb
Expand Down