Simple AI
首页
归档
分类
标签
关于
文档
TensorFlow 2系列教程
pip换源
pip在windows和linux上换源的方法:pip国内的一些镜像 阿里云 http://mirrors.aliyun.com/pypi/simple/ 中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/ 豆瓣(douban) http://pypi.douban.com/simple/ 清华大学 https://pypi.tun
2018-10-19
linux
linux
pip
ubuntu换源
查找国内的开源镜像提供的源地址 Ubuntu的源的list文件位于 /etc/apt/sources.list 高校镜像源清华大学开源镜像站中科大开源镜像站 企业镜像源阿里云开源镜像站网易开源镜像站 这里以清华源为例 先去查一下清华源的帮助文档,戳 清华大学开源镜像站,选择相匹配的Ubuntu的版本,会得到软件源镜像的地址。 接下来直接替换一下系统的source.list文件 # 备份一下
2018-10-15
linux
linux
ubuntu
TensorFlow安装问题检测
当你安装TensorFlow后,import时需要未知的错误,以下代码会为你检测出来并提供正确的解决方式import ctypes import imp import sys def main(): try: import tensorflow as tf print("TensorFlow successfully installed.") if tf.test.i
2018-10-09
TensorFlow
linux
pip
Pytorch实现AlexNet
示例代码:import torch.nn as nn class AlexNet(nn.Module): def __init__(self): super(AlexNet, self).__init__() self.conv1 = nn.Sequential( nn.Conv2d(in_channels=3,
2018-09-15
Pytorch
深度学习
Pytorch
Pytorch实现CIFAR10之读取模型训练本地图片
示例代码:#!/usr/bin/env python # -*- coding: utf-8 -*- # @Time : 2018/9/14 12:51 # @Author : Seven # @Site : # @File : test.py # @Software: PyCharm import torch import numpy as np from PIL imp
2018-09-15
Pytorch
深度学习
Pytorch
Pytorch实现CIFAR10之训练模型
示例代码: lr = 0.001 best_acc = 0 # best test accuracy epochs = 20 criterion = nn.CrossEntropyLoss() optimizer = optim.Adam(net.parameters(), lr=lr, weight_decay=5e-4) # Training def train(): for epo
2018-09-15
Pytorch
深度学习
Pytorch
Pytorch实现DenseNet
示例代码:#!/usr/bin/env python # -*- coding: utf-8 -*- # @Time : 2018/9/14 16:02 # @Author : Seven # @Site : # @File : DenseNet.py # @Software: PyCharm import math import torch import torch.nn
2018-09-15
Pytorch
深度学习
Pytorch
DenseNet
Pytorch实现GoogleNet
示例代码:#!/usr/bin/env python # -*- coding: utf-8 -*- # @Time : 2018/9/14 15:11 # @Author : Seven # @Site : # @File : GoogleNet.py # @Software: PyCharm import torch import torch.nn as nn cla
2018-09-15
Pytorch
深度学习
Pytorch
GoogleNet
Pytorch实现LeNet
示例代码:#!/usr/bin/env python # -*- coding: utf-8 -*- # @Time : 2018/9/13 20:26 # @Author : Seven # @Site : # @File : LeNet.py # @Software: PyCharm import torch.nn as nn class LeNet(nn.Module
2018-09-15
Pytorch
深度学习
LeNet
Pytorch
Pytorch实现ResNet
示例代码:#!/usr/bin/env python # -*- coding: utf-8 -*- # @Time : 2018/9/14 21:57 # @Author : Seven # @Site : # @File : ResNet.py # @Software: PyCharm import torch.nn as nn import torch.nn.funct
2018-09-15
Pytorch
深度学习
Pytorch
ResNet
1
…
7
8
9
10
11
…
14
搜索
×
关键词