注:本文内容主要来源自台大李宏毅老师的Deep Learning for Human Language Processing系列课程一、语音识别的基本过程语音识别的输入一般是时域的语音信号,数学上用一系列向量表示(length T, dimension d),输出是文本,用一系列to…
创建游标首先在MySql中创建一张数据表:CREATE TABLE IF NOT EXISTS store (id int(11) NOT NULL AUTO_INCREMENT,name varchar(20) NOT NULL,count int(11) NOT NULL DEFAULT 1,PRIMARY KEY (id)) ENGINEInnoDB DEFAULT CHARSETlatin1 AUTO_INCREMENT7;INSERT INTO …
在master上创建repl账户,用于复制。grant replication slave on *.* to [email protected]%‘ identified by ‘P$$W0rd‘;flush privileges;与windows下搭建mysql主从的区别:二进制日志的路径格式不一样master:my.cnf部分配置(master):thread_handling …
let http require(http)
let fs require(fs)
http.createServer((req,res)>{console.log("我来了");console.log(req.url);res.end(index);fs.readFile(${req.url},(err,data)>{if(err){console.log(err)res.writeHead(404)res.end(404 not found)}else{res.…