摘要:
# -*- coding: utf-8 -*- import tensorflow as tf import os import random import tensorflow.contrib.slim as slim import time import numpy as np import pickle from PIL import Image mode = "inference... 阅读全文
摘要:
slim.flatten(inputs,outputs_collections=None,scope=None) (注:import tensorflow.contrib.slim as slim) 将输入扁平化但保留batch_size,假设第一维是batch。 Args: inputs: a t 阅读全文
摘要:
tflearn 数据集太大无法加载进内存问题? Hi, all! I'm trying to train deep net on a big dataset that doesn't fit into memory. Is there any way to use generators to rea 阅读全文
摘要:
numpy.argmax numpy.argmax(a, axis=None, out=None)[source] Returns the indices of the maximum values along an axis. Parameters: a : array_like Input ar 阅读全文