Attention技术在 NLP 模型中几乎已经成了不可或缺的重要组成部分,最早Attention主要应用在机器翻译中起到了文本对齐的作用,比如下图,Attention 矩阵...
Attention技术在 NLP 模型中几乎已经成了不可或缺的重要组成部分,最早Attention主要应用在机器翻译中起到了文本对齐的作用,比如下图,Attention 矩阵...
题目描述 Given a 32-bit signed integer, reverse digits of an integer. Example 1: Input: 123...
题目描述 Given a binary search tree (BST), find the lowest common ancestor (LCA) of two giv...
题目描述 Given an array of integers, find if the array contains any duplicates. Your functi...
题目描述 Given an integer, write a function to determine if it is a power of two. Example 1...
题目描述 Write a function to delete a node (except the tail) in a singly linked list, given...
题目描述 Given an array nums of n integers where n > 1, return an array output such that o...
题目描述 编写一个程序,找到两个单链表相交的起始节点。 如下面的两个链表: 在节点 c1 开始相交。 示例 1: 输入:intersectVal = 8, listA = [...
题目描述 实现 strStr() 函数。 给定一个 haystack 字符串和一个 needle 字符串,在 haystack 字符串中找出 needle 字符串出现的第一个...
题目描述 Determine whether an integer is a palindrome. An integer is a palindrome when it r...
题目描述 You are playing the following Nim Game with your friend: There is a heap of stones...
题目描述 给定一个链表,返回链表开始入环的第一个节点。 如果链表无环,则返回 null。 为了表示给定链表中的环,我们使用整数 pos 来表示链表尾连接到链表中的位置(索引从...
题目描述 给定一个链表,判断链表中是否有环。 为了表示给定链表中的环,我们使用整数 pos 来表示链表尾连接到链表中的位置(索引从 0 开始)。 如果 pos 是 -1,则在...
数据类型转换 查看数据类型data.dtypes 将不同的数据类型进行转换data['id'].astype(type_name) # str, float, intpd.t...
算法原理 XGB(extreme gradient boosting)是GBDT的一种工业实现,也是通过不断增加新树,拟合伪残差去降低损失函数。其拟合过程是使用的损失函数的二...
前向分布算法 负梯度拟合 使用负梯度作为伪残差拟合决策树。 损失函数 均方误差 回归 二分类,多分类 正则化 优缺点 优点 预测精度高 适合低维数据 能处理非线性数据 可以灵...
集成学习概念集成学习就是组合多个弱监督模型以期得到一个更好更全面的强监督模型,集成学习潜在的思想是即便某一个弱分类器得到了错误的预测,其他的弱分类器也可以将错误纠正回来。集成...