Dai Jie

Results 98 issues of Dai Jie

https://geektutu.com/post/hpg-sync-once.html Go 语言/golang 高性能编程,Go 语言进阶教程,Go 语言高性能编程(high performance go)。sync.Once 是 Golang package 中使方法只执行一次的对象实现,作用与 init 函数类似,但也有所不同。本文还解释了 sync.Once 源码中,done 为什么作为第一个字段。

Gitalk
/post/hpg-sync-once.html

https://geektutu.com/post/tensorflow-make-npy-hdf5-data-set.html tensorflow入门系列文章,mnist手写数字识别(四,h5py制作训练集)。

Gitalk
/post/tensorflow-make-npy-hdf5-data-set.html

https://geektutu.com/post/quick-go-protobuf.html protobuf 即 Protocol Buffers,是一种轻便高效的结构化数据存储格式,与语言、平台无关,可扩展可序列化。protobuf 性能和效率大幅度优于 JSON、XML 等其他的结构化数据格式。protobuf 是以二进制方式存储的,占用空间小,但也带来了可读性差的缺点。protobuf 在通信协议和数据存储等领域应用广泛。本文介绍的是 Protocol Buffers 3 (protobuf3, proto3) 的安装和基本语法,以及如何在 Go 语言使用。

Gitalk
/post/quick-go-protobuf.html

https://geektutu.com/post/tensorflow2-gym-q-learning.html TensorFlow 2.0 入门系列文章,第七篇,Q-Learning 玩转 OpenAI gym game MountainCar-v0。

Gitalk
/post/tensorflow2-gym-q-learning.html

https://geektutu.com/post/tensorflow-mnist-tensorboard-training.html tensorflow入门系列文章,mnist手写数字识别(三,可视化训练)。

Gitalk
/post/tensorflow-mnist-tensorboard-training.html

https://geektutu.com/post/tensorflow2-gym-pg.html TensorFlow 2.0 入门系列文章,第九篇,使用强化学习算法策略梯度(Policy Gradient),实战 OpenAI gym CartPole,代码仅70行。

Gitalk
/post/tensorflow2-gym-pg.html

https://geektutu.com/post/blog-experience-5.html 极客兔兔(Geektutu)的博客折腾记的第五篇,介绍对于站点质量评估和高质量外链的一些思考。

Gitalk
/post/blog-experience-5.html

https://geektutu.com/post/blog-experience-6.html 极客兔兔(Geektutu)的博客折腾记的第六篇,不要为了流量忘记了初心。

Gitalk
/post/blog-experience-6.html

https://geektutu.com/post/hpg-timeout-goroutine.html Go 语言/golang 高性能编程,Go 语言进阶教程,Go 语言高性能编程(high performance go)。本文介绍了 Go 语言中实现超时(timeout)退出时常见的错误,即子协程(goroutine)不能正常关闭,导致内存泄漏。常见的实现超时的方式有 time.After 和 context.WithTimeout。

Gitalk
/post/hpg-timeout-goroutine.html

https://geektutu.com/post/quick-go2.html#GO-%E7%9A%84%E6%BC%94%E8%BF%9B GO 2 (golang 2) 的变化和新特性,与Go1相比Go2的变化。GO2草案,GO2设计草案。包管理机制(package)、错误处理(Error handling),错误值(Error values)和泛型(Generics)。GO语言的历史。difference between GO 2 and GO 1.

Gitalk
/post/quick-go2.html