go learning notes

1)  cgo

$go install test.go
# command-line-arguments
/usr/bin/ld: unrecognized option ‘--build-id=none‘
/usr/bin/ld: use the --help option for usage information
collect2: ld returned 1 exit status

https://github.com/golang/go/issues/9520

时间: 2024-11-09 16:32:34

go learning notes的相关文章

My naive machine learning notes

Notes: This page records my naive machine learning notes. is learning feasible ? Hoeffding inequaility : link Hoeffding inequality formular's left side is about something bad happending. You don't want this bad thing to happen, so that you can use a

Machine Learning Notes, MOOC, W1_Introduction

Definition of Supervised Learning and unsupervised learning Idea of supervised learning is to teach computer how to do something. Idea of unsupervised learning is to let the computer learn by itself. Reinforcement learning: 强化学习 Supervised Learning W

Learning Notes: Morvan - Reinforcement Learning, Part 4: Deep Q Network

Deep Q Network 4.1 DQN 算法更新 4.2 DQN 神经网络 4.3 DQN 思维决策 4.4 OpenAI gym 环境库 Notes Deep Q-learning Algorithm This gives us the final deep Q-learning algorithm with experience replay: There are many more tricks that DeepMind used to actually make it work

【Learning Notes】变分自编码(Variational Auto-Encoder,VAE)

近年,随着有监督学习的低枝果实被采摘的所剩无几,无监督学习成为了研究热点.VAE(Variational Auto-Encoder,变分自编码器)[1,2] 和 GAN(Generative Adversarial Networks) 等模型,受到越来越多的关注. 笔者最近也在学习 VAE 的知识(从深度学习角度).首先,作为工程师,我想要正确的实现 VAE 算法,以及了解 VAE 能够帮助我们解决什么实际问题:作为人工智能从业者,我同时希望在一定程度上了解背后的原理. 作为学习笔记,本文按照由

【Learning Notes】线性链条件随机场(CRF)原理及实现

1. 概述条件随机场(Conditional Random Field, CRF)是概率图模型(Probabilistic Graphical Model)与区分性分类( Discriminative Classification)的一种接合,能够用来对“结构预测”(structured prediction,e.g. 序列标注)问题进行建模. 如图1,论文 [1] 阐释了 CRF 与其他模型之间的关系. 图1. CRF 与 其他机器学习模型对比[src] 本文我们重点关注输入结点独立的“线性链

AngularJs learning notes overview

建议把脚本放在<body> 元素的底部.这会提高网页加载速度,因为 HTML 加载不受制于脚本加载. 2. AngularJS 通过ng-directives 扩展了HTML. ng-app 指令定义一个AngularJS 应用程序.(如果您移除了ng-app指令,HTML将直接把表达式显示出来,不会去计算表达式的结果.) ng-model 指令把元素值(比如输入域的值)绑定到应用程序.(likethe index of input value) ng-bind 指令把应用程序数据绑定到HTM

Java learning notes (1):Basic Knowlege points

Basic Knowlege points: 1: it's necessary that there is only one public class in per .java file 2: .java file name should better to same as class name 3: when set the environment variable CLASSPATH, you should make sure the '.' path can't be lack of.

Git learning notes

推荐文档:http://www.liaoxuefeng.com/wiki/0013739516305929606dd18361248578c67b8067c8c017b000/ 接触git两天,感觉很强大很方便,记录下一些学习笔记. 工作区 -> git add -> 暂存区 -> git commit -> 版本库 -> git push -> 远程仓库 版本库HEAD表示当前版本,上一个版本HEAD^,上上一个版本HEAD^^....... git config -

Python Django Learning Notes..

The first time I came across django was last month.. Since then I was considering it as the better choice of building/maintaining websites. Now I think it is its auto-gen sql and commitments of changes makes it convienient of making changes. Only 3 s