软件架构 基于spring-boot2.1.9.RELEASE、阿里云aliyun-sdk-oss3.7.0 <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</ar ...
分类:
其他好文 时间:
2020-06-14 21:01:33
阅读次数:
77
1.手写数字数据集 from sklearn.datasets import load_digits digits = load_digits() 2.图片数据预处理 x:归一化MinMaxScaler() y:独热编码OneHotEncoder()或to_categorical 训练集测试集划分 ...
分类:
其他好文 时间:
2020-06-14 20:37:29
阅读次数:
51
<template> <div> <div id="container"> <button id="selectfiles" type="primary" class="btn">选择文件</button> <template id="postfile" /> <button type="prima ...
分类:
其他好文 时间:
2020-06-14 20:36:59
阅读次数:
47
获取下载签名代码 /** * 获取下载的url * @param objectName * @return */ public String downloadUrl(OSSClient ossClient,OssProperties ossProperties,String objectName) ...
分类:
编程语言 时间:
2020-06-14 20:21:13
阅读次数:
85
获取上传签名代码 /** * 获取签名 * @return */ public OssSignature getSignature(OSSClient ossClient,OssProperties ossProperties,String fileName) { /** * host的格式为 bu ...
分类:
编程语言 时间:
2020-06-14 20:20:42
阅读次数:
54
1.手写数字数据集 from sklearn.datasets import load_digits digits = load_digits() 2.图片数据预处理 x:归一化MinMaxScaler() y:独热编码OneHotEncoder()或to_categorical 训练集测试集划分 ...
分类:
其他好文 时间:
2020-06-14 16:30:52
阅读次数:
51
前言:此文档是用来在线下环境harbor利用MinIO做镜像存储的,至于那些说OSS不香吗?或者单机harbor的,不用看了。此文档对你没啥用,如果是采用单机的harbor连接集群MinIO,请看我的另一篇博文。 环境: 应用版本:helm v3.2.3kubernetes 1.14.3nginx- ...
分类:
Web程序 时间:
2020-06-13 13:19:02
阅读次数:
72
1.手写数字数据集 from sklearn.datasets import load_digits digits = load_digits() 2.图片数据预处理 x:归一化MinMaxScaler() y:独热编码OneHotEncoder()或to_categorical 训练集测试集划分 ...
分类:
其他好文 时间:
2020-06-13 11:01:52
阅读次数:
46
OllyDbg https://www.cnblogs.com/onepixel/p/7468343.html 优缺点 Big-Endian 优点:靠首先提取高位字节,你总是可以由看看在偏移位置为0的字节来确定这个数字是正数还是负数。你不必知道这个数值有多长,或者你也不必过一些字节来看这个数值是否含 ...
分类:
其他好文 时间:
2020-06-13 11:00:51
阅读次数:
199
最近ytkah在用oss进行上传文件,但是网页版的有限制单次上传100个文件,而且速度也相对慢;用zip压缩包的形式上传,解压又要收费,配置又麻烦,后面采用了ossbrowser上传非常方便,ossbrowser是阿里云官方提供的OSS图形化管理工具,提供类似Windows资源管理器的功能。使用os ...
分类:
Web程序 时间:
2020-06-12 18:41:19
阅读次数:
128