上一页 1 ··· 9 10 11 12 13
摘要: 注意:本目录中的所有模型均使用BertTokenizer以及BertModel加载,请勿使用RobertaTokenizer/RobertaModel! https://github.com/ymcui/Chinese-BERT-wwm#faq 需要注意的是,该模型并非原版RoBERTa模型,只是按 阅读全文
posted @ 2020-10-03 18:11 千心 阅读(251) 评论(0) 推荐(0) 编辑
摘要: import numpy as np #将数据降维的函数,输出值一定在-1~1之间,可以定性(男/女) def sigmoid(x): return 1 / (1 + np.exp(-x)) def deriv_sigmoid(x): fx = sigmoid(x) return fx * (1 - 阅读全文
posted @ 2020-09-18 17:40 千心 阅读(203) 评论(0) 推荐(0) 编辑
摘要: Meet your new best friend, Pareto - The Pareto principle states that for most things, 80% of the results come from 20% of the causes. Before you even 阅读全文
posted @ 2020-09-15 17:11 千心 阅读(411) 评论(0) 推荐(0) 编辑
摘要: 前文提要 上章我们建立了模型来拟合数据,这章我们将检验模型。 Model-Validation(check accuracy,验证) You've built a model. But how good is it? In this lesson, you will learn to use mod 阅读全文
posted @ 2020-09-03 09:17 千心 阅读(117) 评论(0) 推荐(0) 编辑
摘要: How-Models-Work Introduction We'll start with an overview of how machine learning models work and how they are used. This may feel basic if you've don 阅读全文
posted @ 2020-08-29 13:34 千心 阅读(329) 评论(0) 推荐(0) 编辑
摘要: 字节跳动cdn公共库 http://cdn.bytedance.com/ 猫云 https://www.bootcdn.cn/ 1. Staticfile CDN http://www.staticfile.org/ 7. Microsoft Ajax CDN https://docs.micros 阅读全文
posted @ 2020-07-19 21:08 千心 阅读(208) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13