摘要:
这次的Git VCS problem 加深了我对Git的理解。 git remote -v git branch 发现branch下只有一个分支zh_CN git push repos zh_CN --force 问题解决。 阅读全文
摘要:
maven { url 'https://maven.aliyun.com/nexus/content/groups/public/' } maven { url 'https://maven.aliyun.com/nexus/content/repositories/jcenter' } mave 阅读全文
摘要:
函数递归调用自身的技巧叫做递归 递归是很神奇的概念。所有学编程和有志于解答世上最复杂的难题的人,都一定要好好理解一下什么是递归。 而尾递归是一种我们通常称之为“迭代”的递归方式。这篇文章无法确切地教给你到底什么是递归什么是尾递归,因为它们的真正含义需要有志者仔细体会。 尾递归 尾递归是带着一个“迭代 阅读全文
摘要:
综述 根据SICP,一门语言有以下模式: primitive expressions, which represent the simplest entities the language is concerned with, means of combination, by which compo 阅读全文
摘要:
A B Out 0 0 0 0 1 1 1 0 1 1 1 0 排他性分离本质上意味着"要么仅存在一个,要么两者都或者都不存在"。换句话说,如果陈述为 true,并且仅在一个为 true 且另一个为 false 时,该陈述才为 true。 例如,如果两匹马在赛跑,那么两匹马中一匹马将赢得比赛,但不是 阅读全文
摘要:
本文总结了知识图谱的核心论文之一《Knowledge Graphs》 定义 知识图谱的定义是有争议的,在本文中使用包容的定义,即我们将知识图谱看作一个关注累积和转化现实世界知识的数据图谱,它的节点展现了兴趣实体,而边展现了实体关系。 至于知识,我们定义为已知的事物。这种知识可以从外部源累积,或者从知 阅读全文
摘要:
(来自BERT论文) config文件定义了模型的超参数。 但是,由于此模型在64GB内存上训练,所以如果个人使用的话,需要调整超参数。 内存大小影响因子包括: max_seq_length,发布模型长度不超过512,你可以使用更短的。 train_batch_size(成正比) Model typ 阅读全文
摘要:
npm config set registry https://mirrors.huaweicloud.com/repository/npm/ && yarn config set registry https://mirrors.huaweicloud.com/yarn yarn config s 阅读全文
摘要:
At first, “programming” has nothing to do with writing code. It simply means filling up a table, like in making a TV/radio schedule. A deliberately mi 阅读全文
摘要:
class _BaseRidge(LinearModel, metaclass=ABCMeta): @abstractmethod @_deprecate_positional_args def __init__(self, alpha=1.0, *, fit_intercept=True, nor 阅读全文