深度学习
CynicalRat
努力做个工程师!
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
PyTorch入门——实现MNIST分类
import torch from matplotlib import pyplot as plt from torch import nn, optim # from torch.autograd import Variable from torch.utils.data import DataLoader from torchvision import datasets, transforms from tqdm import tqdm from matplotlib.ticker import Ma.原创 2022-04-28 09:59:04 · 2508 阅读 · 1 评论 -
Tensorflow2.6 Keras 实现kaggle猫狗大战
数据集在kaggle官网获取。不知为何优快云资源没办法上传。 Dogs vs. Cats | KaggleCreate an algorithm to distinguish dogs from catshttps://www.kaggle.com/c/dogs-vs-cats 首先是制作数据集 input_data.py import tensorflow as tf import numpy as np import os import matplotlib.pyplot as plt fr原创 2022-03-26 20:46:24 · 678 阅读 · 1 评论 -
使用Tensorflow2.6, Keras实现MNIST分类
# TensorFlow and tf.keras import tensorflow as tf from tensorflow import keras from tensorflow.keras import layers # Helper libraries import numpy as np import matplotlib.pyplot as plt from matplotlib.ticker import MaxNLocator # import tensorflow_datasets.原创 2022-03-26 20:19:02 · 3266 阅读 · 1 评论
分享