使用阿里云镜像地址 yum-config-manager \ --add-repo \ http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo 更新包索引 yum makecache fase 安装docker yum inst ...
分类:
其他好文 时间:
2021-06-11 18:28:19
阅读次数:
0
拼命报错,折腾了一天 ValueError: Tensor Tensor("conv1d_20/BiasAdd:0", shape=(?, 27, 512), dtype=float32) is not an element of this graph. keras修改backend的方法 http ...
分类:
其他好文 时间:
2021-06-11 18:23:34
阅读次数:
0
使用vuex,首先得了解它是用来干什么的? >实现数据共享的。 第一步:在项目中引入vuex ①在项目目录下,使用npm引入vuex:npm install vuex --save ②在项目的src中创建一个以store命名的文件夹,在store下创建一个以index.js命名的文件 ③在index ...
分类:
其他好文 时间:
2021-06-11 18:22:24
阅读次数:
0
  DETACH DELETE n 2. 接着,我们创建一个人物节点: CREATE (n:Person {name:'John'}) RETURN n CREATE是创建操作,Person是标签,代表节点的类型。花 ...
分类:
其他好文 时间:
2021-06-11 17:35:18
阅读次数:
0
对于一些比特币支持者来说,让比特币取代美元成为世界储备货币是一个崇高的目标,但这现实吗? ...
分类:
其他好文 时间:
2021-06-10 18:53:20
阅读次数:
0
任何容器的底层数据结构只有两种:一种是数组;另一种是链表。例如:list,set,map,二叉树,图等容器。访问容器使用Iterator迭代器。 public interface Collection_ { void add(Object o); int size(); Iterator_ iter ...
分类:
其他好文 时间:
2021-06-10 18:43:23
阅读次数:
0
#Lnux# 1.linux防火墙设置 命令如下,这里根据自己设置的端口进行更改。 firewall-cmd --add-port=8888/tcp --permanent --zone=public #重启防火墙(修改配置后要重启防火墙) firewall-cmd --reload ...
分类:
系统相关 时间:
2021-06-10 18:36:17
阅读次数:
0
create temporary table temp_t like t1; alter table temp_t add index(b); insert into temp_t select * from t2 where b>=1 and b<=2000; select * from t1 j ...
分类:
其他好文 时间:
2021-06-10 18:34:39
阅读次数:
0
图像加法 你可以使用函数cv2.add() 将两幅图像进行加法运算,当然也可以直接使 用numpy,res=img1+img。两幅图像的大小,类型必须一致,或者第二个 图像可以使一个简单的标量值。 import numpy as np import cv2 from matplotlib impor ...
分类:
编程语言 时间:
2021-06-10 18:30:52
阅读次数:
0