代码拉取完成,页面将自动刷新
同步操作将从 赵泽伟/verification-decoder 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
import numpy as np
import glob
import code_utils as cu
from PIL import Image
class ImageUtils():
def __init__(self):
self.test_data = glob.glob('test-images/*.jpeg')
self.test_label = np.array(
[cu.in_transition(self.test_data[index].split('/')[-1].split('.')[0].split('_')[0]) for index in
range(len(self.test_data))])
self.train_data = glob.glob('train-images/*.jpeg')
self.train_label = np.array(
[cu.in_transition(self.train_data[index].split('/')[-1].split('.')[0].split('_')[0]) for index in
range(len(self.train_data))])
@staticmethod
def sample(capacity, batch_size, datas, labels):
sample_index = np.random.choice(capacity, batch_size)
_datas = np.array([np.array(Image.open(datas[index]).convert("1"))[:, :, np.newaxis] for index in sample_index])
_labels = labels[sample_index, :]
return _datas, _labels
@staticmethod
def trainstion_data(datas, sample_index=None, start=0, end=1000):
if sample_index != None:
return np.array(
[np.array(Image.open(datas[index]).convert("1"))[:, :, np.newaxis] for index in sample_index])
return np.array(
[np.array(Image.open(datas[index]).convert("1"))[:, :, np.newaxis] for index in range(start, end)])
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。