自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(46)
  • 收藏
  • 关注

原创 Leetcode-105.从前序与中序遍历序列构造二叉树

【代码】Leetcode-105.从前序与中序遍历序列构造二叉树。

2024-01-05 21:05:07 493

原创 Leetcode-114.二叉树展开为链表(Python)

【代码】Leetcode-114.二叉树展开为链表(Python)

2024-01-04 21:02:39 435

原创 Leetcode-199.二叉树的右视图(Python)

需复习树的广度和深度遍历~

2024-01-01 18:56:56 496

原创 阅读笔记-A Cluster Separation Measure

确定数据中聚类的适当数量

2023-12-23 11:20:52 1613 1

原创 阅读笔记-PRECISE ADJACENT MARGIN LOSS FOR DEEP FACE RECOGNITION

人脸识别的损失函数

2023-12-23 11:15:17 1299

原创 阅读笔记-GICOFACE: GLOBAL INFORMATION-BASED COSINE OPTIMAL LOSS FOR DEEP FACE RECOGNITION

人脸识别的损失函数

2023-12-23 11:11:32 1039

原创 阅读笔记-Minimum margin loss for deep face recognition

人脸识别的损失函数

2023-12-23 11:07:24 1186

原创 Leetcode-230.二叉搜索树中第k小的元素(Python)

此题看题解,其实这道题蛮简单的,需要注意二叉搜索树左小右大,为什么还需要看题解,需要反思!

2023-12-23 10:54:13 385

原创 Leetcode-98.验证二叉搜索树(Python)

【代码】Leetcode-98.验证二叉搜索树(Python)

2023-12-22 13:37:57 352

原创 LeetCode-146.LRU缓存(Python)

【代码】LeetCode-146.LRU缓存(Python)

2023-12-21 15:05:27 979

原创 Leetcode-102.二叉树的层序遍历(Python)

【代码】Leetcode-102.二叉树的层序遍历(Python)

2023-12-20 20:50:28 337

原创 Leetcode-138.随机链表的复制(Python)

【代码】Leetcode-138.随机链表的复制(Python)

2023-12-19 19:29:12 365

原创 LeetCode-148.排序链表(Python)

【代码】LeetCode-148.排序链表(Python)

2023-12-18 20:15:11 357

原创 Leetcode-2.两数相加(Python)

【代码】Leetcode-2.两数相加(Python)

2023-12-17 20:44:32 24

原创 Leetcode-48.旋转图像(Python)

【代码】Leetcode-48.旋转图像(Python)

2023-12-15 20:18:26 65

原创 Leetcode-54.螺旋矩阵(Python)

【代码】Leetcode-54.螺旋矩阵(Python)

2023-12-14 11:33:00 29

原创 Leetcode-73.矩阵置零(Python)

【代码】Leetcode-73.矩阵置零(Python)

2023-12-13 15:52:39 48

原创 Leetcode-238.除自身以外数组的乘积(Python)

【代码】Leetcode-238.除自身以外数组的乘积(Python)

2023-12-12 20:56:29 24

原创 LeetCode-189.轮转数组(Python)

【代码】LeetCode-189.轮转数组(Python)

2023-12-11 11:28:06 40

原创 Leetcode-56.合并区间(Python)

【代码】Leetcode-56.合并区间(Python)

2023-12-10 14:01:32 61

原创 Leetcode-560.和为k的子数组(python)

【代码】Leetcode-560.和为k的子数组(python)

2023-12-10 13:41:52 65

原创 LeetCode-438.找到字符串中所有字母异位词(Python)

方法一:超出时间限制。

2023-12-09 21:03:03 120

原创 LeetCode-3.无重复字符的最长子串(Python)

【代码】LeetCode-3.无重复字符的最长子串(Python)

2023-12-09 20:05:47 28

原创 LeetCode-三数之和(Python)

【代码】LeetCode-三数之和(Python)

2023-12-08 16:49:50 32

原创 Leetcode-11.盛最多水的容器(Python)

此题双层循环超出时长,故看题解。

2023-12-08 16:04:50 49

原创 LeetCode-169.多数元素(Python)

【代码】LeetCode-169.多数元素(Python)

2023-12-07 10:58:07 31

原创 LeetCode-136.只出现一次的数字(Python)

【代码】LeetCode-136.只出现一次的数字(Python)

2023-12-07 10:48:33 25

原创 LeetCode-118.杨辉三角(Python)

【代码】LeetCode-118.杨辉三角(Python)

2023-12-07 10:35:41 231

原创 LeetCode-70.爬楼梯(Python)

此题递归超时,看的题解题目链接class Solution: def climbStairs(self, n: int) -> int: a=b=1 for i in range(2,n+1): a,b=b,a+b return b

2023-12-07 10:08:25 36

原创 LeetCode-35.搜索插入位置(Python)

【代码】LeetCode-35.搜索插入位置(Python)

2023-12-06 16:49:37 69 1

原创 LeetCode-108.将有序数组转换为二叉搜索树(Python)

【代码】LeetCode-108.将有序数组转换为二叉搜索树(Python)

2023-12-06 16:29:28 44 1

原创 LeetCode-543.二叉树的直径(Python)

【代码】LeetCode-543.二叉树的直径(Python)

2023-12-06 15:31:40 44 1

原创 LeetCode-101.对称二叉树(Python)

此题是看leetcode题解后做出。

2023-12-04 18:11:49 53

原创 LeetCode-226.翻转二叉树(Python)

【代码】LeetCode-226.翻转二叉树(Python)

2023-12-04 17:50:38 32

原创 LeetCode-104.二叉树的最大深度(Python)

【代码】LeetCode-104.二叉树的最大深度(Python)

2023-12-03 15:07:09 44 1

原创 Ubuntu在xshell中一次性执行多条python命令

例如python main.py --dataset="CASIA" --encoder="VGG19" --classifier_init="WI" --finetune_layers="None" --matcher="NAC" --lr=1e-3后不能有空格。如果使用学校集群,可以通过nvidia-smi查看使用情况,可以通过CUDA_VISIBLE_DEVICES=1 sh auto-code.sh更换gpu节点,1是gpu节点号。最后授予权限,运行即可!每行命令后不能有空格。

2023-11-25 18:26:31 410

原创 LeetCode-94.二叉树的中序遍历(Python)

关于树,我之前没有写过,所以没有写出来,是看了LeetCode上一位大佬的题解,真的牛!

2023-11-19 21:21:09 26 1

原创 LeetCode-141.环形链表(Python)

【代码】LeetCode-141.环形链表(Python)

2023-11-18 11:00:27 38 1

原创 LeetCode-234.回文链表

【代码】LeetCode-234.回文链表。

2023-11-15 21:14:14 23

原创 LeetCode-49.字母异位词分组(Python)

【代码】LeetCode-49.字母异位词分组(Python)

2023-11-15 20:32:08 31

CVPR2022-人脸识别:adaface一种基于质量的自适应损失函数

在这篇论文中,解决了训练数据集中无法识别的人脸图像所产生的问题。数据收集过程或数据增强将这些图像引入训练数据中。基于图像质量的可识别性的差异,通过使用特征范数作为图像质量的代理和基于特征范数自适应地改变边缘函数来控制分配给不同质量的图像的梯度尺度来解决这个问题。本文评估了所提出的自适应损失对各种质量的数据集的有效性,并实现了在混合低质量人脸数据集高性能。

2024-01-04

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除