创建画布 imagecreate 新建一个基于调色板的图像 imagecreatetruecolor 新建一个真彩色图像 imagecreatefromjpeg 由文件或 URL 创建一个新图象。 imagecreatefrompng 由文件或 URL 创建一个新图象。 准备颜色 imagecolo ...
分类:
其他好文 时间:
2020-07-25 11:45:17
阅读次数:
87
# 可能自带了精简版的vim,不太习惯,装个完整的 apt install vim -y # 版本控制 apt install git -y # c编译器 apt install gcc -y # c++编译器 apt install g++ -y # c/c++调试器 apt install gd ...
分类:
其他好文 时间:
2020-07-12 14:46:28
阅读次数:
73
运行docker: sudo systemctl start docker 0.创建docker网络: docker network create --subnet=172.18.0.0/24 mxd 1. 复制配置文件到宿主机: # 创建宿主机目录结构 mkdir -p /www/docker/n ...
分类:
数据库 时间:
2020-07-11 14:27:26
阅读次数:
156
首先使用vim ~/.bashrc进入 ~/.bashrc文件 然后在~/.bashrc文件添加以下修改 凭自己的习惯添加 alias gst='git status' alias ga='git add -A .' alias gc='git commit -m' alias gd='git di ...
分类:
系统相关 时间:
2020-07-01 20:34:45
阅读次数:
70
Batch_mini-Batch_SGD_BGD Overview for Understanding of SGD 严格来说,有SGD、mini-Batch-GD、BGD,在相对比较早的材料中是这样划分的,SGD一次更新用到1个样本,BGD一次更新用到所有样本(如吴恩达的ML课程),mini-Ba ...
分类:
其他好文 时间:
2020-06-29 15:22:24
阅读次数:
71
参考文献 An overview of gradient descent optimization algorithms 梯度下降 GD(Gradient Descent) 梯度方向是函数变化率最大的方向,是函数增长最快的方向。 梯度的反方向是函数减少的最快方向。 ex: 从山上走到谷底 \(x_j ...
分类:
编程语言 时间:
2020-06-27 09:53:45
阅读次数:
125
Call to undefined function think\captcha\imagettftext()
分类:
Web程序 时间:
2020-06-20 10:32:15
阅读次数:
97
/* example1.c */ /* */ /* This small program shows how to print a rotated string with the */ /* FreeType 2 library. */ #include <stdio.h> #include <st ...
分类:
其他好文 时间:
2020-06-01 20:50:42
阅读次数:
54
1.安装依赖 # 先安装一些依赖 yum install libjpeg libjpeg-devel libpng libpng-devel libtiff libtiff-devel libungif libungif-devel freetype zlib 2.安装ImageMagick 2.1 ...
分类:
其他好文 时间:
2020-05-26 15:01:01
阅读次数:
74