By admin , 9 九月, 2025

PHP 7.2已经在中止支持,旧代码需要在下面链接下载:

https://php.watch/versions/7.2/releases/7.2.34

在安装PHP前,如果不是旧系统,自带的OpenSSL库会是3,需要先安装旧版OpenSSL库:

$ wget https://github.com/openssl/openssl/releases/download/OpenSSL_1_1_1w/openssl-1.1.1w.tar.gz
$ tar zxvf openssl-1.1.1w.tar.gz
$ cd openssl*
$ ./config --prefix=/usr/local/ssl --openssldir=/usr/local/ssl shared zlib
$ make
$ make test
$ make install

然后再安装PHP:

标签

By admin , 23 七月, 2025

https://www.youtube.com/watch?v=Ye018rCVvOo&list=PLJV_el3uVTsMhtt7_Y6sgTHGHp1Vb2P2J

机器学习分为regression和classification两种,前者学习一个数值,后者在有限的选择里做分类。围棋是在有限的位置里判断下在哪个位置,因此,属于分类问题。

Label表示真实的值。

Error Surface表示Loss等高线图。

Gradient Descent:寻找Loss极值的梯度下降法。

hyperparameter是需要人实现配置的参数,例如learning rate、batch尺寸。

标签

最新内容