Classic Source Code Collected
收藏一些经典的源码,持续更新!!!
1.深度学习框架(Deep Learning Framework).
A:Caffe (Convolutional Architecture for Fast Feature Embedding)Convolutional
由伯克利大学Yangqing Jia Ph.D开发的开源深度学习的代码。
Homepage:http://caffe.berkeleyvision.org/
Paper:Caffe: Convolutional Architecture for Fast Feature Embedding
Source Code:1)BLVC Caffe(Linux,Mac OSX):https://github.com/BVLC/caffe
2)Microsoft Caffe(Windows):https://github.com/Microsoft/caffe
2.关系抽取(Neural Relation Extraction)
关系抽取是知识图谱构建的重要技术,旨在从文本自动抽取实体关系。
源码包括CNN、PCNN以及我们在ACL 2016提出的Attention over Instances模型CNN+ATT、PCNN+ATT。
该源码由林衍凯同学研制。
(Neural Relation Extraction, including CNN, PCNN, CNN+ATT, PCNN+ATT)
Paper:http://thunlp.org/~lyk/publications/acl2016_nre.pdf
Source Code: https://github.com/thunlp/NRE
Classic Source Code Collected的更多相关文章
- Tips for newbie to read source code
		
This post is first posted on my WeChat public account: GeekArtT Reading source code is always one bi ...
 - 编程等宽字体Source Code Pro(转)
		
Source Code Pro - 最佳的免费编程字体之一!来自 Adobe 公司的开源等宽字体下载 每一位程序员都有一套自己喜爱的代码编辑器与编程字体,譬如我们之前就推荐过一款"神 ...
 - How to build the Robotics Library from source code on Windows
		
The Robotics Library is an open source C++ library for robot kinematics, motion planning and control ...
 - How to build windows azure PowerShell Source Code
		
Download any version source code of Windows Azure Powershell from https://github.com/Azure/azure-sdk ...
 - akka cluster sharding source code 学习 (1/5) 替身模式
		
为了使一个项目支持集群,自己学习使用了 akka cluster 并在项目中实施了,从此,生活就变得有些痛苦.再配上 apache 做反向代理和负载均衡,debug 起来不要太酸爽.直到现在,我还对 ...
 - view class source code with JAD plugin in Eclipse
		
The default class viewer doesn't decompile the class file so you cannot open and check the source co ...
 - Attach source code to a Netbeans Library Wrapper Module
		
http://rubenlaguna.com/wp/2008/02/22/attach-source-code-to-a-netbeans-library-wrapper-module/ Attach ...
 - convert source code files to pdf format in python
		
import os import sys def find_file(root_dir, type): dirs_pool = [root_dir] dest_pool = [] def scan_d ...
 - Ununtu 12.04 gedit安装插件Source Code Browser
		
1. 安装ctags: sudo apt-get install exuberant-ctags 2. 打开https://github.com/Quixotix/gedit-source-code- ...
 
随机推荐
- Allegro16.3约束设置
			
差分对的约束设置 第一步,差分对的设置 差分对的设置有很多方法,下面介绍两种最常用的方法. 1. 点击菜单Logic→Assign Differential Pair... 弹出以下对话框. 点击你想 ...
 - HDU 4658 Integer Partition(整数拆分)
			
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4658 题意:给出n.k.求n的拆分方案数.要求拆分中每个数不超过k. i64 f[N]; void i ...
 - [HDOJ2546] 饭卡 (01背包)
			
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2546 先找出最贵的那个菜,这个菜一定是最后买的那个.然后再在前n-1个菜里做01背包.找出不超过m-5 ...
 - Oracle中添加视图
			
CREATE or REPLACE view view_will as select college.collegeid,mat.stuid,sum(score.chinese+score.ma ...
 - POJ 3468 A Simple Problem with Integers
			
线段树的指针表示法. 代码还有待消化.. 代码里面多次用到了函数递归,感觉这次对递归又有了深一层的理解. #define LOCAL #include <iostream> #includ ...
 - hdu 4655 Cut Pieces 找规律
			
链接:http://acm.hdu.edu.cn/showproblem.php?pid=4655 题意:给你一组整数,代表每个木块所能涂成的颜色种数(编号1~ai),相邻的两块所能涂成的颜色如果是一 ...
 - Java自动装箱拆箱
			
一.装箱.拆箱定义 如果一个int型量被传递到需要一个Integer对象的地方,那么,编译器将在幕后插入一个对Integer构造方法的调用,这就叫做自动装箱.而如果一个Integer对象被放到需要in ...
 - RequireJS进阶(二) 转
			
这一篇来认识下打包工具的paths参数,在入门一中就介绍了require.config方法的paths参数.用来配置jquery模块的文件名(jQuery作为AMD模块时id为“jquery”,但文件 ...
 - flash wmode参数详解
			
在做web开发中可能会遇到flash遮挡页面中元素的情况,无论怎么设置flash容器和层的深度(z-index)也无济于事,现有的解决方案是在插入flash的embed或object标签中加入”wmo ...
 - Linux makefile教程之总述二[转]
			
Makefile 总述——————— 一.Makefile里有什么? Makefile里主要包含了五个东西:显式规则.隐晦规则.变量定义.文件指示和注释. 1.显式规则.显式规则说明了,如何生成一个或 ...