5.7############################..............................................................................................] The file /var/lib/mysql ...
分类:
数据库 时间:
2020-01-31 20:38:19
阅读次数:
128
import os os.environ['TF_CPP_MIN_LOG_LEVEL'] = '2' import tensorflow as tf #tensorboard --logdir="./" # 命令行参数 python x.py --max_step=500 tf.app.flags. ...
分类:
其他好文 时间:
2020-01-31 20:35:23
阅读次数:
169
import os os.environ['TF_CPP_MIN_LOG_LEVEL'] = '2' import tensorflow as tf #tensorboard --logdir="./" def linearregression(): with tf.variable_scope(" ...
分类:
其他好文 时间:
2020-01-31 20:34:28
阅读次数:
63
import os os.environ['TF_CPP_MIN_LOG_LEVEL'] = '2' import tensorflow as tf def linearregression(): X = tf.random_normal([100,1],mean=0.0,stddev=1.0) y ...
分类:
其他好文 时间:
2020-01-31 19:04:29
阅读次数:
75
图像金字塔原理 expand = 扩大+卷积 拉普拉斯金字塔 PyrDown:降采样 PyrUp:还原 example ...
分类:
编程语言 时间:
2020-01-31 00:43:34
阅读次数:
118
题目链接 题目描述 方法: topo 每趟列车,没有停靠的车站(u)的等级必然小于停靠车站(v)的等级,所以u,v连边,拓扑排序算level。 Code: #include <bits/stdc++.h> # define LL long long using namespace std; cons ...
分类:
其他好文 时间:
2020-01-30 23:18:09
阅读次数:
137
" " " " Nightmare Nightmare is a high level browser automation library from "Segment" . The goal is to expose a few simple methods that mimic user act ...
分类:
Web程序 时间:
2020-01-29 23:35:58
阅读次数:
1385
转自:https://blog.csdn.net/pansaky/article/details/90710751 1 基本使用 配置logging基本的设置,然后在控制台输出日志: import logging logging.basicConfig(level = logging.INFO,fo ...
分类:
编程语言 时间:
2020-01-29 19:56:46
阅读次数:
84
参考1: https://www.javatpoint.com/hello-android-example 首先下载android studio 然后新建一个empty activity的项目。 然后新建一个虚拟设备,AVD。我选择pixel xl,API level 29,也就是android 1 ...
分类:
移动开发 时间:
2020-01-28 19:34:55
阅读次数:
101
题解 利用前缀和维护钻石的价值,然后枚举左端点,二分查找右端点。 代码 #include<bits/stdc++.h> using namespace std; int n,m,pre_sum[100005]; vector<int> ans; void check(int i,int &j,int ...
分类:
其他好文 时间:
2020-01-28 15:33:52
阅读次数:
65