上一页 1 2 3 4 5 6 ··· 15 下一页
摘要: /* * fork_test.c * version 1 * Created on: 2010-5-29 * Author: wangth */#include #include int main () { pid_t fpid; /... 阅读全文
posted @ 2019-10-31 15:55 LandingGuys 阅读(48) 评论(0) 推荐(0) 编辑
摘要: 首先检查geoserver 跨域设置 之后查看请求的工作区是否正确 我的问题就是工作区出错了,写成另一个工作区,WMS服务无法发送请求 阅读全文
posted @ 2019-10-24 22:08 LandingGuys 阅读(1201) 评论(0) 推荐(0) 编辑
摘要: git pull 显示already up to date 1. 可能是你上传的分支和pull的分支不一样 2. git checkout master #转到master分支 git pull 显示error: The following untracked... 阅读全文
posted @ 2019-10-15 14:35 LandingGuys 阅读(2990) 评论(0) 推荐(0) 编辑
摘要: 1. git pull 进入项目目录里 2. npm install 3. npm run build 4. cd build 5. python -m SimpleHTTPServer 8089 其中8089是端口号,python2 python 3 为... 阅读全文
posted @ 2019-10-10 15:50 LandingGuys 阅读(66) 评论(0) 推荐(0) 编辑
摘要: constant 普通变量 placeholder 比如a,占位符,只有在用户输入后才能确定,在session.run的feed_dict({a:45})中确定其真正的值,是训练的输入值 variable 保存随时间变化的值。Variable对象包含了... 阅读全文
posted @ 2019-10-09 21:02 LandingGuys 阅读(144) 评论(0) 推荐(0) 编辑
摘要: 按照其他教程,阿里云的防火墙的端口也开通了,但还是无法访问。 最后按照这个成功了 https://blog.csdn.net/konglongaa/article/details/80996829 猜测我之前一直不能远程登陆的原因是 GRANT ALL PR... 阅读全文
posted @ 2019-10-08 18:42 LandingGuys 阅读(55) 评论(0) 推荐(0) 编辑
摘要: 转自 Python 数据分析与数据挖掘 目的:确定数据序列是否有随机趋势或确定趋势,防止伪回归 如果不平稳,则对其进行差分处理一直到平稳为止 代码: #平稳性检测from statsmodels.tsa.stattools import adfuller as... 阅读全文
posted @ 2019-10-05 10:11 LandingGuys 阅读(483) 评论(0) 推荐(0) 编辑
摘要: 需求:输入一句话将其转化为语义图 最基本的思路,输入句子,分解三元组,根据三元组在图中查找相关的,最后组成图 1. 句子提取三元组 参考https://github.com/lemonhu/open-entity-relation-extraction 2. ... 阅读全文
posted @ 2019-10-04 22:13 LandingGuys 阅读(75) 评论(0) 推荐(0) 编辑
摘要: 1. A persona-Base Neural Conversation Model 基础知识 词袋模型(Bag of Words... 阅读全文
posted @ 2019-09-26 17:19 LandingGuys 阅读(196) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2019-09-16 22:13 LandingGuys 阅读(186) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 15 下一页