码迷,mamicode.com
首页 >  
搜索关键字:one pass    ( 36218个结果
2 locust 发送 post 请求
1 脚本 from locust import HttpLocust, TaskSet, task, between # 新建任务集 class TestLogin(TaskSet): @task def req_index(self): data = { "username": "admin", ...
分类:其他好文   时间:2021-01-27 13:25:57    阅读次数:0
1021 Deepest Root (25分)
树的直径+统计连通块数。 和树的直径的模板题不同的是要求出所有能够构成直径两个端点的点,即为最深的根。 注意对$n=1$的特殊处理,这个corner case还是挺好想的,第一次交$23$分,调试一下就发现了。 由于要从小到大输出所有最深的根,故将它们全部插入集合中输出。 连通分量直接dfs统计就行 ...
分类:其他好文   时间:2021-01-27 13:11:33    阅读次数:0
poj1503 Integer Inquiry
Integer Inquiry poj1503 题目 Problem Description One of the first users of BIT's new supercomputer was Chip Diller. He extended his exploration of power ...
分类:其他好文   时间:2021-01-27 13:01:44    阅读次数:0
MySQL与Oracle数据库连接配置
1、MySQL配置: jdbc:mysql://<主机名>:<端口号(默认3306)>/<数据库名> url=jdbc:mysql://localhost:3306/testdb?useUnicode=true&characterEncoding=utf-8 driver=com.mysql.jdb ...
分类:数据库   时间:2021-01-26 12:21:17    阅读次数:0
LSTM原理
LSTM原理 CNN卷积神经网络 应用:图像,视频 RNN 递归神经网络 应用:NLP 1RNN结构 one to one 比如输入一张图片,它会给我们输出是猫还是狗 one to many 比如输入一张图片,给出一些列图片描述 many to one 比如文本分析,给出文本是积极还是消极的 man ...
分类:其他好文   时间:2021-01-26 12:10:00    阅读次数:0
Python for Data Science - DBSCan clustering to identify outliers
Chapter 4 - Clustering Models Segment 3 - DBSCan clustering to identify outliers DBSCAN for Outlier Detection Unsupervised method that clusters core s ...
分类:数据库   时间:2021-01-26 11:57:37    阅读次数:0
POJ2406 Power Strings(循环节)
Power Strings Description Given two strings a and b we define a*b to be their concatenation. For example, if a = "abc" and b = "def" then a*b = "abcde ...
分类:其他好文   时间:2021-01-26 11:47:12    阅读次数:0
hive删除数据库
删除数据库时提示:message:Database DBname is not empty. One or more tables exist. ##解决方案1: 先删除数据库中的所有表,再删除数据库 ##解决方案2: 强制删除 drop database db_hive cascade; ...
分类:数据库   时间:2021-01-26 11:44:00    阅读次数:0
linux下安装zsh和p10k的详细过程
下载zsh sudo apt-get install zsh sudo apt-get install git 下载oh-my-zsh 因为zsh配置起来太麻烦了,直接安装oh-my-zsh即可,前往oh-my-zsh官网: https://ohmyz.sh 使用命令: $ sh -c "$(cur ...
分类:系统相关   时间:2021-01-26 11:42:41    阅读次数:0
双向认证SSL配置文件 server.xml
<Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true" maxThreads="150" scheme="https" secure="true" clientAuth="true" sslProtocol="TLS" keystor ...
分类:其他好文   时间:2021-01-25 11:20:14    阅读次数:0
36218条   上一页 1 ... 44 45 46 47 48 ... 3622 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!