
深度学习
涂伟峰
这个作者很懒,什么都没留下…
展开
-
深度学习MNIST手写数字识别
python3.6 tensorflow1.12.0 # -*- coding: utf-8 -*- import tensorflow as tf from tensorflow.examples.tutorials.mnist import input_data mnist = input_data.read_data_sets("MNIST_data/", one_hot=True) ...原创 2018-12-14 18:18:28 · 471 阅读 · 0 评论 -
Librosa音频处理(五)
使用keras做一个狗猫叫声的分类器。 已上传github:https://github.com/tuweifeng/SoundClassifier import librosa import keras import numpy as np from sklearn.preprocessing import LabelBinarizer import os from sklearn.m...原创 2019-06-26 10:05:22 · 2499 阅读 · 0 评论 -
BP神经网络 + Python
参考博客: https://blog.youkuaiyun.com/weixin_41090915/article/details/79521161 整理了一下代码 import numpy as np import matplotlib.pyplot as plt class Test: def __init__(self, classes, numberperclass, dimen...原创 2019-06-26 18:03:27 · 425 阅读 · 0 评论