自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

bryant_meng

究天人之际,通古今之变,成一家之言。

  • 博客(12)
  • 资源 (2)
  • 收藏
  • 关注

原创 《Keras | 莫烦 》learning notes

学习资源:Keras 教程系列 | 莫烦 Python参考:《TensorFlow+Keras》Learning notes《Tensorflow | 莫烦 》learning notes文章目录1 Why Keras?1.1 Keras 的安装1.2 Backend 的切换2 Classification2.1 MLP for MNIST Classification2.2 ......

2019-04-28 00:32:06 813 1

原创 【Keras-MLP-GAN】MNIST

原文本博客是 One Day One GAN_keras版 [DAY 1] 的 learning notes!把代码梳理了一遍,用自己喜欢的方式呈现出来了!GAN 是用 MLP 搭建的!!!文章目录1 GAN 的前世今生2 GAN 生成 MNIST2.1 导入必要的库2.2 搭建 generator2.3 搭建 discriminator2.4 compile 模型,对学习过程进行配置2....

2019-04-25 01:00:03 2100 2

原创 【python】Regular Expression(13)

学习笔记,参考:正则表达式视频:https://www.bilibili.com/video/av16926522/?p=36文章目录1 简单的匹配2 灵活的匹配3 按类型匹配4 重复匹配5 分组6 findall / replace / split / compile和爬虫很相关字符串前加 r,表示的意思是禁止字符串转义(参考 python 字符串前面r的作用)print('yo\nu')print(r'yo\nu')outputyouyo\nu图片来源 ht

2019-04-19 17:23:42 380

原创 【ShuffleNet V2】《ShuffleNet V2:Practical Guidelines for Efficient CNN Architecture Design》

ECCV-2018caffe 版代码:https://github.com/miaow1988/ShuffleNet_V2_pytorch_caffe/blob/master/shufflenet_v2_x1.0.prototxtcaffe 代码可视化工具:http://ethereon.github.io/netscope/#/editor文章目录1 Background and Mo...

2019-04-18 16:08:41 1150

原创 【MobileNet V2】《MobileNetV2:Inverted Residuals and Linear Bottlenecks》

CVPR-2018caffe 版本的代码:https://github.com/shicai/MobileNet-Caffe/blob/master/mobilenet_v2_deploy.prototxtcaffe 代码可视化工具:http://ethereon.github.io/netscope/#/editor文章目录1 Background and Motivation2 Advantages / Contributions3 Innovations4 Relative work4 M.

2019-04-16 22:14:56 740

原创 【Noise-Label】《Learning from Noisy Labels with Deep Neural Networks》

arXiv-2014文章目录1 Background and Motivation2 Advantages3 Innovations4 Method4.1 Bottom-up Noise Model4.2 Estimating Noise Distribution Using Clean Data4.3 Learning Noise Distribution From Noisy Data...

2019-04-16 12:00:59 4192 2

原创 【Keras-RNN】IMDb

文章目录1 下载数据集2 数据预处理3 建立模型4 训练模型5 评估模型的准确率6 预测概率和预测结果7 查看测试集中的文本和其预测结果8 测试新的影评9 保存模型MLP或者CNN都只能依照当前的状态进行识别,如果处理时间序列的问题,就需要RNN、LSTM模型了。本博客使用 RNN 对 IMDb 数据集进行分析预测,用MLP进行预测可以参考这篇博客 【Keras-MLP】IMDbRNN结构...

2019-04-15 22:06:58 2964 7

原创 【Keras-ResNeXt】CIFAR-10

系列连载目录请查看博客 《Paper》 4.1 小节 【Keras】Classification in CIFAR-10 系列连载学习借鉴github:BIGBALLON/cifar-10-cnn知乎专栏:写给妹子的深度学习教程Caffe 版代码:https://github.com/soeaver/caffe-model/tree/master/cls/resnextKeras...

2019-04-11 21:05:25 2268 1

原创 【Attention】《CBAM: Convolutional Block Attention Module》

ECCV-2018文章目录1 Background and motivation2 Innovations / Advantages / Contributions3 Related work4 Methods4.1 Channel attention module4.2 Spatial attention module5 Experiment5.1 Ablation studies5.1.1 Channel attention5.1.2 Spatial attention5.1.3 Arrangem.

2019-04-09 21:12:18 895 3

原创 【Noise-Label】《Training a Neural Network Based on Unreliable Human Annotation of Medical Images》

2018 IEEE 15th International Symposium on Biomedical Imaging (ISBI 2018)文章目录1 Background and Motivation2 Advantages / Contributions3 Notions / Innovations4 Method5 Datasets6 Experiments7 Conclusio...

2019-04-07 23:27:07 1376 2

原创 【MS-FRCNN】《Multiple Scale Faster-RCNN》

CVPR-2016文章目录1 Background and Motivation2 Advantages / Contributions3 Innovations4 Method4.1 Multiple Scale Faster RCNN (MS FRCNN)4.2 L2 Normalization4.3 New Layer in Deep Learning Caffe Framework...

2019-04-04 00:47:35 796 1

原创 【PVANet】《PVANET:Deep but Lightweight Neural Networks for Real-time Object Detection》

arXiv preprint arXiv:1608.08021, 2016.文章目录1 Background and Motivation2 Advantages / Contributions3 Notions / Innovations4 Method5 Datasets6 Experiments7 Conclusion / Future work1 Background and ...

2019-04-03 17:18:55 355

【MoCo】.pptx

【MoCo】《Momentum Contrast for Unsupervised Visual Representation Learning》 【MoCo】《Momentum Contrast for Unsupervised Visual Representation Learning》 【MoCo】《Momentum Contrast for Unsupervised Visual Representation Learning》

2019-12-05

中科院JCR期刊分区数据(2017年11月发布)

中科院JCR期刊分区数据(2017年11月发布),可以查看各种期刊及其分区

2018-09-11

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除