码迷,mamicode.com
首页 >  
搜索关键字:level    ( 6507个结果
mysql5.7升级到mariadb-server-10.0
5.7############################..............................................................................................] The file /var/lib/mysql ...
分类:数据库   时间:2020-01-31 20:38:19    阅读次数:128
TensorFlow命令行参数FLAGS使用
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
TensorFlow的模型保存与加载
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
tensorflow版线性回归
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
opencv python:图像金字塔
图像金字塔原理 expand = 扩大+卷积 拉普拉斯金字塔 PyrDown:降采样 PyrUp:还原 example ...
分类:编程语言   时间:2020-01-31 00:43:34    阅读次数:118
P1983 车站分级
题目链接 题目描述 方法: 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 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
python日志logging模块(详细解析)
转自: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
[record] 初入android
参考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
PAT (Advanced Level) 1044 Shopping in Mars
题解 利用前缀和维护钻石的价值,然后枚举左端点,二分查找右端点。 代码 #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
6507条   上一页 1 ... 56 57 58 59 60 ... 651 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!