官方文档解读 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
微信小程序图片的获取和压缩 效果展示 wxml <view> <button bindtap="chooseImage">选择图片</button> <button bindtap="compressImage">压缩图片</button> </view> js 下面是js中data部分代码和绑定事 ...
分类:
微信 时间:
2021-01-29 12:22:12
阅读次数:
0
java三大版本 JDK,JRE,JVM Java三大版本 JavaSE—标准版(先) JavaEE—企业版(后) JDK,JRE,JVM JDK—Java Development Kit—(Java开发工具) JRE—Java Runtime Envionment—(Java运行环境) JVM—J ...
分类:
编程语言 时间:
2021-01-29 12:03:23
阅读次数:
0
sklean数据集 sklearn.datasets 加载获取流行数据集 datasets.load_*() 获取小规模数据集,数据包含在datasets里 datasets.fetch_*(data_home=None) 获取大规模数据集,需要从网络上下载,函数的第一个参数是data_home,表 ...
分类:
其他好文 时间:
2021-01-29 12:02:49
阅读次数:
0
线性查找 线性查找(1) 题目描述 LinearSearch 输入:数组,和目标元素 输出:目标元素所在的索引;若不存在,返回-1 代码实现 public class LinearSearch { /** * 查找数组中16所在的位置 * @param data:数组 * @param target ...
分类:
编程语言 时间:
2021-01-29 11:58:06
阅读次数:
0
给定一个罗马数字,转为整数(都是我写的,我很开心,如果我不思考这个问题看起来很难,但是当我思考了他就变得不是那么难) class Solution(object): data_dict = {"I": 1, "V": 5, "X": 10, "L": 50, "C": 100, "D": 500, ...
分类:
其他好文 时间:
2021-01-28 12:26:13
阅读次数:
0
#AJAX 不写原生js的AJAX,用JQuery $.ajax({ type: get, url: "demo.html", data: {username:lw}, dataType: ..., success: function(msg){ alert(msg); }, error:funct ...
分类:
Web程序 时间:
2021-01-28 12:11:32
阅读次数:
0
yml spring: data: elasticsearch: client: reactive: endpoints: 192.168.209.160:9200 connection-timeout: 10000#链接到es的超时时间,毫秒为单位,默认10秒(10000毫秒) socket-ti ...
分类:
编程语言 时间:
2021-01-28 12:03:55
阅读次数:
0