知识
算法相关知识
silentclaire
这个作者很懒,什么都没留下…
展开
-
Insightface glint360k 训练问题解决
1.解压缩数据按照ReadMe 采用命令 cat glint360k* | tar -xzvf - 来解压缩,报如下错误gzip: stdin: not in gzip formattar: Child died with signal 13tar: Error is not recoverable: exiting now解决方法:注意一定要加最后的 “-”, 去掉xzvf中的z, 即采用命令 cat glint360k* | tar -xvf - 来解压...原创 2020-10-27 17:39:07 · 1772 阅读 · 2 评论 -
2021 计算视觉顶会日期
会议 投稿开始时间 截稿时间 录取时间 会议时间 网址 ICCV now 2021-03-17 2021-07-22 2021-10-10 to 2021-10-17 http://iccv2021.thecvf.com/home CVPR 2020-10-25 2020-11-16 2021-02-26 2021-06-21 to 2021-06-24 http://cvpr2021.thecvf.com/原创 2020-10-13 16:33:30 · 829 阅读 · 0 评论 -
吴恩达深度学习-第一课第三周编程作业
# GRADED FUNCTION: compute_costdef compute_cost(A2, Y, parameters): """ Computes the cross-entropy cost given in equation (13) Arguments: A2 -- The sigmoid output of the second...原创 2018-07-22 20:46:16 · 812 阅读 · 0 评论 -
深度学习基本流程(pytorch-pycharm)
头文件:import torch as timport torchvision as tvimport torchvision.transforms as transformsfrom torch.autograd import Variableimport torch.nn as nnimport torch.nn.functional as F1.数据加载及预处理1)主要函数:tv.d...原创 2018-04-28 09:45:06 · 5570 阅读 · 0 评论