上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 29 下一页
摘要: 今天刚接触Git,还有Gitstack,然后在克隆Gitstack服务器上的仓库时出现了一直用户身份识别失败问题,找了一些大佬的文章才知道原因在于密码输入错误过多。那么如何重新输入呢?需要清空本地的缓存凭证(用户名、密码): 运行一下命令缓存输入的用户名和密码: git config --globa 阅读全文
posted @ 2020-11-30 15:12 xiondun 阅读(874) 评论(0) 推荐(0) 编辑
摘要: import cv2cap = cv2.VideoCapture(0)#创建一个 VideoCapture 对象 flag = 1 #设置一个标志,用来输出视频信息num = 1 #递增,用来保存文件名while(cap.isOpened()):#循环读取每一帧 ret_flag, Vshow = 阅读全文
posted @ 2020-11-24 20:33 xiondun 阅读(249) 评论(0) 推荐(0) 编辑
摘要: a 链接控制打开新窗口 无地址栏 <a href="#" onclick="run()">帮助</a><script type="text/javascript"> //<![CDATA[ function run() { window.open('help.xhtml','newwindow',' 阅读全文
posted @ 2020-11-21 18:22 xiondun 阅读(387) 评论(0) 推荐(0) 编辑
摘要: 1、开放端口 firewall-cmd --zone=public --add-port=5672/tcp --permanent # 开放5672端口 firewall-cmd --zone=public --remove-port=5672/tcp --permanent #关闭5672端口 f 阅读全文
posted @ 2020-10-14 16:52 xiondun 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 非常详细的sklearn介绍 https://blog.csdn.net/algorithmPro/article/details/103045824 机器学习算法那些事 2019-11-12 08:30:00 0 引言 Sklearn (全称 Scikit-Learn) 是基于 Python 语言 阅读全文
posted @ 2020-09-27 09:18 xiondun 阅读(2606) 评论(0) 推荐(1) 编辑
摘要: 梯度下降法的原理与实现 本文链接:http://blog.csdn.net/dpengwang/article/details/86028041 概念介绍 梯度下降法目的是为了“下降”,下降的方法是按照“梯度”。比如你在一座山上,当前你只能迈出一步,如何走才能使你的高度下降的最多呢,根据梯度的理论, 阅读全文
posted @ 2020-09-24 17:31 xiondun 阅读(788) 评论(0) 推荐(0) 编辑
摘要: MSE(均方误差)、RMSE (均方根误差)、MAE (平均绝对误差) 1、MSE(均方误差)(Mean Square Error) MSE是真实值与预测值的差值的平方然后求和平均。 范围[0,+∞),当预测值与真实值完全相同时为0,误差越大,该值越大。 import numpy as np fro 阅读全文
posted @ 2020-09-22 10:48 xiondun 阅读(2382) 评论(0) 推荐(0) 编辑
摘要: pip install -i https://pypi.tuna.tsinghua.edu.cn/simple tensorflow 阅读全文
posted @ 2020-09-21 12:08 xiondun 阅读(63) 评论(0) 推荐(0) 编辑
摘要: 添加国内源: conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free conda config --add channels https://mirrors.tuna.tsinghua.e 阅读全文
posted @ 2020-09-21 09:36 xiondun 阅读(206) 评论(0) 推荐(0) 编辑
摘要: Python requests.post方法中data与json参数区别 在通过requests.post()进行POST请求时,传入报文的参数有两个,一个是data,一个是json。 data与json既可以是str类型,也可以是dict类型。 区别: 1、不管json是str还是dict,如果不 阅读全文
posted @ 2020-09-17 13:48 xiondun 阅读(580) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 29 下一页