异常信息 分析原因 1.该异常是如何产生的 我是通过postman,发送一个post请求,导致该异常的。 从上面的异常信息来看,是因为该目录[/tmp/tomcat.1428942566812653608.8090/work/Tomcat/localhost/ROOT],不存在导致的。 2.该异常为 ...
分类:
编程语言 时间:
2020-02-14 14:32:50
阅读次数:
404
Hash Join只能用于相等连接,且只能在CBO优化器模式下。相对于nested loop join,hash join更适合处理大型结果集 Hash Join的执行计划第1个是hash表(build table),第2个探查表(probe table),一般不叫内外表,nested loop才有 ...
分类:
数据库 时间:
2020-02-14 11:11:03
阅读次数:
80
主要思路 将训练好的.pt文件转换为keras的.h5文件,再将.h5文件转换为.tflite文件。 步骤: 1.环境:PyTorch1.0以上(其他版本也可以,主要是适配下面的开源代码) .pt转weights下载后在文件内添加pt_to_weights.py。 from models impor ...
分类:
其他好文 时间:
2020-02-13 15:00:58
阅读次数:
494
https://stackoverflow.com/questions/3232943/update-value-of-a-nested-dictionary-of-varying-depth import copy d = {'k': 'kv'} j_sc = {'k1': copy.copy(d ...
分类:
Web程序 时间:
2020-02-13 10:04:07
阅读次数:
74
错误提示:Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Could not get JDBC Connection; nested exception is java.sql.SQLException: The s ...
分类:
数据库 时间:
2020-02-12 10:40:00
阅读次数:
464
1. 问题描述 运行多个 spring boot 程序,出现报错 java.rmi.server.ExportException: Port already in use: 7888; nested exception is: java.net.BindException: Address alre ...
分类:
编程语言 时间:
2020-02-10 17:56:16
阅读次数:
71
前言: NumPy系统是Python的一种开源的数值计算扩展。 这种工具可用来存储和处理大型矩阵,比Python自身的嵌套列表(nested list structure)结构要高效的多(该结构也可以用来表示矩阵(matrix))。 在处理ndarray数据的时候,numpy的内置函数会让你感觉到什 ...
分类:
其他好文 时间:
2020-02-04 00:31:24
阅读次数:
69
plt.hist() 字体测试 plt.hist(x, bins=None, range=None, density=None, weights=None, cumulative=False, bottom=None, histtype='bar', align='mid', orientation ...
分类:
其他好文 时间:
2020-02-02 11:49:47
阅读次数:
81
模型的保存与加载一般有三种模式:save/load weights(最干净、最轻量级的方式,只保存网络参数,不保存网络状态),save/load entire model(最简单粗暴的方式,把网络所有的状态都保存起来),saved_model(更通用的方式,以固定模型格式保存,该格式是各种语言通用的 ...
分类:
其他好文 时间:
2020-01-31 19:10:50
阅读次数:
110
1、“列类型”与“where值类型”不符 2、join时 ① ② 相join的两个表的字符编码不同,不能命中索引,会导致笛卡尔积的循环计算(nested loop)。 参考 : https://mp.weixin.qq.com/s/1Sowt2TcjMGDv55OQOe2rQ ...
分类:
数据库 时间:
2020-01-21 20:16:48
阅读次数:
111