博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
人工智能资料库:第63辑(20170620)
阅读量:2442 次
发布时间:2019-05-10

本文共 4045 字,大约阅读时间需要 13 分钟。

作者:chen_h

微信号 & QQ:862251340
微信公众号:coderpai


1.【博客】Types of Optimization Algorithms used in Neural Networks and Ways to Optimize Gradient Descent

简介:

Have you ever wondered which optimization algorithm to use for your Neural network Model to produce slightly better and faster results by updating the Model parameters such as Weights and Bias values . Should we use Gradient Descent or Stochastic gradient Descent or Adam ?

I too didn’t know about the major differences between these different types of Optimization Strategies and which one is better over another before writing this article.

原文链接:


2.【博客】Exploring Elliptic Curve Pairings

简介:

One of the key cryptographic primitives behind various constructions, including deterministic threshold signatures, zk-SNARKs and other simpler forms of zero-knowledge proofs is the elliptic curve pairing. Elliptic curve pairings (or “bilinear maps”) are a recent addition to a 30-year-long history of using elliptic curves for cryptographic applications including encryption and digital signatures; pairings introduce a form of “encrypted multiplication”, greatly expanding what elliptic curve-based protocols can do. The purpose of this article will be to go into elliptic curve pairings in detail, and explain a general outline of how they work.

You’re not expected to understand everything here the first time you read it, or even the tenth time; this stuff is genuinely hard. But hopefully this article will give you at least a bit of an idea as to what is going on under the hood.

原文链接:


3.【视频】Phase-Functioned Neural Networks for Character Control

简介:

This year at SIGGRAPH I am presenting Phase-Functioned Neural Networks for Character Control. This paper uses a new kind of neural network called a “Phase-Functioned Neural Network” to create a character controller suitable for games. Our controller requires very little memory, is fast to compute at runtime, and generates high quality motion in many complex situations. We also present a technique for fitting terrains from virtual environments to separately captured motion data. This is used to train our system so it can natually traverse rough terrains at runtime.

原文链接:


4.【代码】NLP concepts with spaCy

简介:

“Natural Language Processing” is a field at the intersection of computer science, linguistics and artificial intelligence which aims to make the underlying structure of language available to computer programs for analysis and manipulation. It’s a vast and vibrant field with a long history! New research and techniques are being developed constantly.

The aim of this notebook is to introduce a few simple concepts and techniques from NLP—just the stuff that’ll help you do creative things quickly, and maybe open the door for you to understand more sophisticated NLP concepts that you might encounter elsewhere.

We’ll be using a library called , which is a good compromise between being very powerful and state-of-the-art and easy for newcomers to understand.

(Traditionally, most NLP work in Python was done with a library called . NLTK is a fantastic library, but it’s also a writhing behemoth: large and slippery and difficult to understand. Also, much of the code in NLTK is decades out of date with contemporary practices in NLP.)

This tutorial is written in Python 2.7, but the concepts should translate easily to later versions.

原文链接:


5.【代码】A TensorFlow Implementation of the Transformer: Attention Is All You Need

简介:

I tried to implement the idea in . They authors claimed that their model, the Transformer, outperformed the state-of-the-art one in machine translation with only attention, no CNNs, no RNNs. How cool it is! At the end of the paper, they promise they will make their code available soon, but apparently it is not so yet. I have two goals with this project. One is I wanted to have a full understanding of the paper. Often it’s hard for me to have a good grasp before writing some code for it. Another is to share my code with people who are interested in this model before the official code is unveiled.

原文链接:


转载地址:http://lldqb.baihongyu.com/

你可能感兴趣的文章
JavaScript super关键字
查看>>
redis 自增步数_Redis的第一步
查看>>
docker删除映像_Docker映像简介
查看>>
redis发布/订阅广播_Redis发布/订阅
查看>>
Docker容器简介
查看>>
macos安装docker_在macOS上安装Docker
查看>>
JavaScript中的自定义事件
查看>>
如何使用Redis排序列表
查看>>
JavaScript for..of循环
查看>>
flexbox_如何在Flexbox中对齐中心
查看>>
科慧花园小户型怎么样_这是我的小数码花园
查看>>
JavaScript中的自定义错误
查看>>
如何使用insertAdjacentHTML
查看>>
如何在Sapper中重定向到URL
查看>>
如何在VS Code中删除空行
查看>>
JavaScript中的链接方法调用
查看>>
postgresql使用_如何使用Sequelize与PostgreSQL交互
查看>>
盖茨比乔布斯_盖茨比,如何更改图标
查看>>
npm本地包安装_如何在本地测试NPM软件包
查看>>
如何处理承诺拒绝
查看>>