
机器学习
文章平均质量分 88
tissar
Talk is cheap, show me the code.
展开
-
MXNet网络模型(五)条件GAN神经网络
条件GAN神经网络基础。用MXNet实现。原创 2022-07-15 17:08:24 · 367 阅读 · 0 评论 -
MXNet网络模型(四)GAN神经网络
GAN神经网络基础。用MXNet实现。原创 2022-07-14 20:47:24 · 778 阅读 · 0 评论 -
Show Me the Code之MXNet网络模型(三)
Show Me the Code之MXNet网络模型(三)Show me the code!Show me the code!# -*- coding: utf-8 -*-import loggingimport structimport gzipimport numpy as npimport mxnet as mxlogging.getLogger().setLevel(l...原创 2022-07-05 13:32:32 · 219 阅读 · 0 评论 -
深度学习论文整理(按时间排序)未完待续
Cycle GAN - 《Unpaired Image-to-Image Translation using Cycle-Consistent Adversarial Networks》https://arxiv.org/pdf/1703.10593.pdf《Mask R-CNN》https://arxiv.org/pdf/1703.06870.pdf《Knowing When to Lo...原创 2019-01-29 23:19:30 · 1075 阅读 · 1 评论 -
用TensorFlow游乐场学习神经网络
用TensorFlow游乐场学习神经网络进入TensorFlow游乐场认识TensorFlow游乐场界面开始打副本参数解析1. 学习率2. 激活函数3. 正则化和正则化比率4. 问题类型和数据集5. 训练集大小和噪声6. 批大小7. 网络的深度和广度8. 损失值可训练参数尾巴进入TensorFlow游乐场https://playground.tensorflow.org认识Tens...原创 2019-01-24 15:00:19 · 1685 阅读 · 1 评论 -
Windows安装mxnet带GPU上下文
Windows 安装 mxnet 带 GPU 上下文前期准备安装步骤1. 安装anaconda2. 安装CUDA3. 安装CUDNN4. 安装mxnet前期准备名称版本网址python2 (anaconda)64bit ( python2/3均可 )https://www.anaconda.com/downloadCUDA8.0 / 9.0 / 9.2htt...原创 2019-01-15 19:23:15 · 919 阅读 · 0 评论 -
MXNet网络模型(一)—— 线性回归
Show Me the Code之MXNet网络模型(一)线性回归Show me the code!线性回归函数关系式:y = x1 + 2 * x2Show me the code!# -*- coding: utf-8 -*-import mxnet as mximport numpy as npimport logginglogging.getLogger().set...原创 2019-01-29 19:32:16 · 588 阅读 · 0 评论 -
MXNet网络模型(二)—— 多层感知器
Show Me the Code之MXNet网络模型(二)全链接网络 —— MNIST数据集Show me the code!全链接网络 —— MNIST数据集使用最普通的全链接模型,对MNIST数据集进行分类Show me the code!# -*- coding: utf-8 -*-import mxnet as mximport numpy as npimport gzip...原创 2019-01-29 20:34:49 · 478 阅读 · 0 评论