自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(11)
  • 收藏
  • 关注

原创 Leetcode

给定一个包含 n 个整数的数组 S,是否存在属于 S 的三个元素 a,b,c 使得 a + b + c = 0 ?找出所有不重复的三个元素组合使三个数的和为零。注意:结果不能包括重复的三个数的组合。例如, 给定数组 S = [-1, 0, 1, 2, -1, -4],一个结果集合为:[[-1, 0, 1],[-1, -1, 2]]# -*- coding: utf-8 -*-""...

2019-03-24 10:21:30 92

原创 使用word2vec分析新闻标题并预测文章流行度

Can word embeddings of article titles predict popularity? What can we learn about the relationship between sentiment and shares? word2vec can help us answer these questions, and more.Word embeddings...

2019-03-21 15:40:17 2210

原创 你知道如何在7种不同类型中选择合适的机器学习算法吗?

This is a generic, practical approach that can be applied to most machine learning problems:1-Categorize the problemThe next step is to categorize the problem.Categorize by the input: If it is...

2019-03-21 12:25:03 754

翻译 It’s Only Natural: An Excessively Deep Dive Into Natural Gradient Optimization

I’m going to tell a story: one you’ve almost certainly heard before, but with a different emphasis than you’re used to.To a first (order) approximation, all modern deep learning models are trained us...

2019-03-21 11:45:57 286

翻译 Understanding Confusion Matrix

当我们获得数据时,在数据清理,预处理和争论之后,我们要做的第一步是将其提供给一个出色的模型,当然,还要获得概率输出。 但坚持下去! 我们如何能够衡量模型的有效性。 更好的效果,更好的性能,这正是我们想要的。 而这正是混乱矩阵引人注目的地方。 混淆矩阵是机器学习分类的性能测量。这个博客旨在回答以下问题:1,混淆矩阵是什么以及为什么需要它?2,如何计算2类分类问题的混淆矩阵?今天,让...

2019-03-21 11:33:55 313

原创 Understanding AUC - ROC Curve

在机器学习中,性能测量是一项重要任务。 因此,当涉及到分类问题时,我们可以依靠AUC - ROC曲线。 当我们需要检查或可视化多类分类问题的性能时,我们使用AUC(曲线下面积)ROC(接收器操作特性)曲线。 它是检查任何分类模型性能的最重要的评估指标之一。 它也被写为AUROC(接收器工作特性下的区域)本博客旨在回答以下问题:1.什么是AUC - ROC曲线?2.定义AUC和ROC...

2019-03-21 11:21:01 338

翻译 训练神经网络对服装数据集进行分类

本指南会训练一个对服饰(例如运动鞋和衬衫)图像进行分类的神经网络模型。即使您不了解所有细节也没关系,本教程只是简要介绍了一个完整的 TensorFlow 程序,而且后续我们会详细介绍。本指南使用的是 tf.keras,它是一种用于在 TensorFlow 中构建和训练模型的高阶 API。# TensorFlow and tf.kerasimport tensorflow as tffrom...

2019-03-19 08:31:55 3159 1

原创 注意神经机器翻译----创建与训练机器翻译模型

This notebook trains a sequence to sequence (seq2seq) model for Spanish to English translation. This is an advanced example that assumes some knowledge of sequence to sequence models.After training t...

2019-03-18 20:30:47 990

原创 卷积变分自动编码器

This notebook demonstrates how to generate images of handwritten digits by training a Variational Autoencoder (1, 2).# to generate gifs!pip install imageioImport TensorFlow and other libraries...

2019-03-16 09:57:56 1936 1

原创 坤哥带你学AI之----深度卷积生成对抗网络--DCGAN

What are GANs?Generative Adversarial Networks (GANs) are one of the most interesting ideas in computer science today. Two models are trained simultaneously by an adversarial process. A generator (“th...

2019-03-16 09:37:49 694

原创 用Keras建立自动编码器

Building Autoencoders in KerasWhat are autoencoders?“Autoencoding” is a data compression algorithm where the compression and decompression functions are 1) data-specific, 2) lossy, and 3) learned a...

2019-03-05 23:26:43 4712 1

空空如也

空空如也

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

TA关注的人

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