-
大小: 5KB文件类型: .zip金币: 1下载: 0 次发布日期: 2021-01-03
- 语言: Python
- 标签: alexnet tensorflow
资源简介
python3 tensorflow平台下 alexnet训练与预测源码,亲测ok
代码片段和文件信息
import numpy as np
import os
import cv2
class Dataset:
def __init__(self imagePath extensions):
self.data = createImageList(imagePath extensions)
np.random.shuffle(self.data)
self.num_records = len(self.data)
self.next_record = 0
self.labels self.inputs = zip(*self.data)
category = np.unique(self.labels)
self.num_labels = len(category)
self.category2label = dict(zip(category range(len(category))))
self.label2category = {l: k for k l in self.category2label.items()}
# Convert the labels to numbers
self.labels = [self.category2label[l] for l in self.labels]
def __len__(self):
return self.num_records
def onehot(self label):
v = np.zeros(self.num_labels)
v[la
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 4203 2017-12-20 08:55 importData.py
文件 3468 2016-07-07 16:47 inference.py
文件 720 2016-07-07 16:47 predict_image.py
文件 1088 2017-12-20 09:49 test.py
文件 2589 2017-12-20 09:17 train.py
文件 170 2016-07-07 16:47 README.md
相关资源
- 基于机器学习框架tensorflow的图像分类
- 机器学习实战:基于 Scikit-Learn 和 T
- 《白话深度学习与TensorFlow》.pdf
- Tensorflow+实战Google深度学习框架
- python MNIST分类 tensorflow
- tensorflow下用LSTM网络进行时间序列预测
- 深度学习之二:用Tensorflow实现卷积神
- tensorflow版本的YOLO v3,在Windows系统下
- Python实现的TensorFlow入门案例
- 《TensorFlow技术解析与实战》高清中文
- python实现TensorFlow2 股票股价预测(源
- 计算 语义分割结果 MIOU,miou.py操作简
- tensorflow做cifar-10识别
- TensorFlow手写数字识别代码
- 基于kNN方法的MNIST手写数字识别Tenso
- cifar10_input.py
- Python-PythonTensorflowKeras实现参数tSNE算法
- TensorFlow实现CNN
- Python TensorFlow手写数字识别
- Alexnet鲜花分类
- cnn +rnn +attention 以及CTC-loss融合的文字
- TensorFlow入门指导中英文 PDF版
- tensorflow提取图片特征-
- tensorflow物体检测-图片目标分类计数
- python+tensorflow+keras 基于Inception-v3模型
评论
共有 条评论