摘要:
@TableField(value = "stateflag") @ApiModelProperty(value="") @TableLogic(value = "0",delval = "1") private String stateflag; 字段添加如上注解并没有正确拼接sql查询条件,解决 阅读全文
摘要:
maven配置: <properties> <java.version>1.8</java.version> <oracle.version>11.2.0.4</oracle.version></properties> <!--kafka--> <dependency> <groupId>org.s 阅读全文
摘要:
tensorflow1.0和tensorflow2.0的区别主要是1.0用的静态图 一般情况1.0已经足够,但是如果要进行深度神经网络的训练,当然还是tensorflow2.*-gpu比较快啦。 其中tensorflow有CPU和GPU两个版本(2.0安装方法), CPU安装比较简单: pip in 阅读全文
摘要:
数据类型 每个numpy数组都是相同类型元素的网格。Numpy提供了一组可用于构造数组的大量数值数据类型。Numpy在创建数组时尝试猜测数据类型,但构造数组的函数通常还包含一个可选参数来显式指定数据类型。这是一个例子: import numpy as np x = np.array([1, 2]) 阅读全文
摘要:
async handleCrudSelect(e) { const that = this; let count = 0; // displayValueList 显示值 // rawValueList 原值 // 弹窗选择完数据后向后台发起 每条数据新增一条历史数据的请求 // eslint-di 阅读全文
摘要:
父组件: <template> <div class="hello"> {{ pageNum }}父亲 <child :pagea.sync="pageNum"></child> <input v-model="pageNum"/>父亲 </div> </template> <script> imp 阅读全文
摘要:
tensorflow1.0和tensorflow2.0的区别主要是1.0用的静态图 一般情况1.0已经足够,但是如果要进行深度神经网络的训练,当然还是tensorflow2.*-gpu比较快啦。 其中tensorflow有CPU和GPU两个版本(2.0安装方法), CPU安装比较简单: pip in 阅读全文
摘要:
pip config set global.index-url https://mirrors.aliyun.com/pypi/simple pip config set global.trusted-host mirrors.aliyun.com 阅读全文
摘要:
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=0"> <sc 阅读全文
摘要:
单一的微服务集成swagger: maven: <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> <version>2.9.2</version> </dependency 阅读全文