码迷,mamicode.com
首页 >  
搜索关键字:deep learning    ( 5395个结果
小样本学习(Few-Shot Learning)
1. 样本量极少可以训练机器学习模型吗? 在训练样本极少的情况下(几百个、几十个甚至几个样本),现有的机器学习和深度学习模型普遍无法取得良好的样本外表现,用小样本训练的模型很容易陷入对小样本的过拟合以及对目标任务的欠拟合。但基于小样本的模型训练又在工业界有着广泛的需求(单用户人脸和声纹识别、药物研发 ...
分类:其他好文   时间:2021-02-01 12:24:44    阅读次数:0
02.image recognition,logistic regression
Working with Images & Logistic Regression in PyTorch Part 3 of "Deep Learning with Pytorch: Zero to GANs" This tutorial series is a hands-on beginner- ...
分类:其他好文   时间:2021-01-30 12:20:31    阅读次数:0
01. linear regression正文
Gradient Descent and Linear Regression with PyTorch Part 2 of "Deep Learning with Pytorch: Zero to GANs" This tutorial series is a hands-on beginner-f ...
分类:其他好文   时间:2021-01-30 12:07:44    阅读次数:0
Mybatis【15】-- Mybatis一对一多表关联查询
注:代码已托管在GitHub上,地址是:https://github.com/Damaer/Mybatis-Learning ,项目是mybatis-11-one2one,需要自取,需要配置maven环境以及mysql环境(sql语句在resource下的test.sql中),觉得有用可以点个小星星 ...
分类:其他好文   时间:2021-01-27 13:19:34    阅读次数:0
Python for Data Science - A neural network with a Perceptron
Chapter 6 - Other Popular Machine Learning Methods Segment 2 - A neural network with a Perceptron Perceptron A perceptron is a neural network with jus ...
分类:编程语言   时间:2021-01-27 13:05:55    阅读次数:0
Learning Deep Interleaved Networks with Asymmetric Co-Attention for Image Restoration
论文:https://arxiv.org/abs/2010.15689 代码:https://github.com/lifengshiwo/DIN 1. Introduction 作者提出当前图像修复方法中非常关键的问题是:Hierarchical features under different ...
分类:Web程序   时间:2021-01-26 12:25:13    阅读次数:0
2021论文阅读索引
1、图像修复 【ARXIV 2020.10】Learning Deep Interleaved Networks with Asymmetric Co-Attention for Image Restoration ...
分类:其他好文   时间:2021-01-26 12:24:32    阅读次数:0
Java实现Repeat方法
最近在看java核心技术,里面有实现repeat方法的代码,用到lambda表达式和Runable接口。 lambda表达式实际上就是传入函数,这样就不用自己写一个实例来实现接口,挺有意思的。 public class learning { public static void main(Strin ...
分类:编程语言   时间:2021-01-26 12:01:37    阅读次数:0
TPU 深入学习1
#参考链接 https://cloud.google.com/blog/products/ai-machine-learning/what-makes-tpus-fine-tuned-for-deep-learning #CPU、GPU、TPU区别 ##CPU CPU的最大好处是它的灵活性。凭借其冯 ...
分类:其他好文   时间:2021-01-25 11:32:10    阅读次数:0
二叉树的最大深度
dfs 题解前递归 根节点是0,变量保存最大深度,如果当前深度大于最大深度就更新,返回最大深度 var maxDepth = function(root) { let maxDeep = 0 //最大深度 let dg = (root,deep = 0) => { //deep当前深度 if(roo ...
分类:其他好文   时间:2021-01-20 12:06:48    阅读次数:0
5395条   上一页 1 ... 4 5 6 7 8 ... 540 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!