上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 31 下一页
摘要: 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 阅读(429) 评论(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 阅读(135) 评论(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 阅读(2662) 评论(0) 推荐(1)
摘要: 梯度下降法的原理与实现 本文链接:http://blog.csdn.net/dpengwang/article/details/86028041 概念介绍 梯度下降法目的是为了“下降”,下降的方法是按照“梯度”。比如你在一座山上,当前你只能迈出一步,如何走才能使你的高度下降的最多呢,根据梯度的理论, 阅读全文
posted @ 2020-09-24 17:31 xiondun 阅读(904) 评论(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 阅读(2708) 评论(0) 推荐(0)
摘要: pip install -i https://pypi.tuna.tsinghua.edu.cn/simple tensorflow 阅读全文
posted @ 2020-09-21 12:08 xiondun 阅读(69) 评论(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 阅读(221) 评论(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 阅读(682) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/nulige/p/6351318.html RabbitMQ队列 RabbitMQ是一个在AMQP基础上完整的,可复用的企业消息系统。他遵循Mozilla Public License开源协议。 MQ全称为Message Queue, 消息队列(MQ) 阅读全文
posted @ 2020-09-17 10:58 xiondun 阅读(648) 评论(0) 推荐(0)
摘要: import asyncio async def a(): print('Suspending a') await asyncio.sleep(0) print('Resuming a') async def b(): print('In b') async def main(): await as 阅读全文
posted @ 2020-09-14 10:52 xiondun 阅读(375) 评论(0) 推荐(0)
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 31 下一页