1.拉取 docker pull mcr.microsoft.com/mssql/server:2019-latest 2.查看镜像 docker images 3.配置密码启动容器,据说密码要配置的复杂一点 docker run -e ACCEPT_EULA=Y -e SA_PASSWORD=xx ...
分类:
数据库 时间:
2021-02-01 12:28:29
阅读次数:
0
tensorboard展示网络结构 代码 import tensorflow as tf from tensorflow.examples.tutorials.mnist import input_data tf.compat.v1.disable_eager_execution() #载入数据集 ...
分类:
其他好文 时间:
2021-02-01 12:26:02
阅读次数:
0
TCP/IP协议栈在Linux内核中的运行时序分析 一.概述 1.Linux系统概述 Linux,全称GNU/Linux,是一种免费使用和自由传播的类Unix操作系统,其内核由林纳斯·本纳第克特·托瓦兹于1991年10月5日首次发布,它主要受到Minix和Unix思想的启发,是一个基于POSIX和U ...
分类:
系统相关 时间:
2021-02-01 11:58:11
阅读次数:
0
原生 NodeJS 获取 post 提交的数据 request.js exports.getPostData=function(ctx){ return new Promise((resolve,reject)=>{ try { let params = ''; ctx.req.on('data', ...
分类:
其他好文 时间:
2021-02-01 11:56:23
阅读次数:
0
代码如下: <Window.Resources> <Style x:Key="ColumnHeaderStyle" TargetType="DataGridColumnHeader"> <Setter Property="HorizontalContentAlignment" Value="Cent ...
failed to register layer: devmapper:Thin Pool has 207894 free data blocks which is less than minimum required 320123 free data blocks. Create more fre ...
分类:
其他好文 时间:
2021-02-01 11:44:12
阅读次数:
0
'''pandas 中 inplace 参数在很多函数中都会有,它的作用是:是否在原对象基础上进行修改 ? inplace = True:不创建新的对象,直接对原始对象进行修改; ? inplace = False:对数据进行修改,创建并返回新的对象承载其修改结果。 默认是False,即创建新的对象 ...
分类:
编程语言 时间:
2021-01-30 12:17:49
阅读次数:
0
官方文档解读 TextRecognitionDataGenerator’s documentation Since the name is quite long, all subsequent refrences will be under the acronym TRDG. If you are ...
分类:
其他好文 时间:
2021-01-30 12:09:59
阅读次数:
0
01.note 一.不用pytorch的module模型手写简单的线性问题 1)输入train_data和test_data #1.输入数据集 inputs = np.array([[73, 67, 43], [91, 88, 64], [87, 134, 58], [102, 43, 37], [ ...
分类:
其他好文 时间:
2021-01-30 12:05:31
阅读次数:
0
使用CURL模拟访问网页,保留返回的COOKIE <?php class dnspod { public static function api_call($api, $data) { $api = 'https://dnsapi.cn/' . $api; echo $api . PHP_EOL; ...
分类:
Web程序 时间:
2021-01-30 11:45:04
阅读次数:
0