
深度学习
LeYOUNGER
UESTC CS PhD Candidate
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
[医学图像处理] 使用pyvips对WSI svs文件进行读取并自定义patch输出大小
摘要 最近需要对WSI图像进行处理,以前没弄过,所以整理下方法。 环境:Ubuntu 18.04 LTS, Python 3.7, pyvips 数据: [TCGA-GBM (Survival Prediction)] 本文主要参考以下两个博客: https://blog.youkuaiyun.com/weixin_41594007/article/details/81810231 https://blog.youkuaiyun.com/songyu0120/article/details/85087529 安装pyvip原创 2021-02-09 20:55:33 · 3553 阅读 · 1 评论 -
[Metrics] 用于医学图像目标分割的评价标准 Segmentation Metrics for Medical Imaging in Python (Updating)
一些用于医学图像的分割指标,用PyTorch实现,如果对您的研究起到帮助,请不要吝啬Star~ Some criteria used for segmentation on Medical Imaging, with PyTorch implementations. If it helps your research, please don’t hesitate to give a star to...原创 2020-03-13 17:03:21 · 911 阅读 · 0 评论 -
[GNN] Collections of Latest Papers and Implementations for Graph Neural Network (updating)
Review Some Papers with Codes DeepGCNs: Making GCNs Go as Deep as CNNs Paper: https://arxiv.org/pdf/1910.06849.pdf Code: github.com/lightaime/deep_gcns_torch原创 2020-03-10 10:28:25 · 336 阅读 · 0 评论 -
[Deep Learning] Contextual Attention with Keras & Pytorch
Abstract 今天介绍一种十分基本的Attention应用,suppose我们现在有n个完全一样的entity,而我们已经知道这n个entity服从一种重要性分布,那么我们如何让深度网络能够自己知道哪些entity是比较重要的呢,两种十分常见的场景是NLP中sentence-level context的获取和CV中spatial-wise或channel-wise的加权,那么就是接下来要介绍的...原创 2019-04-18 19:59:55 · 972 阅读 · 1 评论 -
[ROUGE] Ubuntu+ROUGE
Abstract Data could be downloaded from Ref.2 PS: Have to Chmod 777 for db folder Ref: [1] https://blog.youkuaiyun.com/MerryCao/article/details/49174283 [2] https://blog.youkuaiyun.com/wr339988/article/details/701...原创 2019-01-09 15:53:33 · 518 阅读 · 0 评论 -
[Pytorch] Transformer+Siamese进行文本相似度分析
摘要 使用Transformer 代替RNN进行sentence-level context的encode Requirements Pytorch >= 0.4.1 Python >= 3.5 General Usage Transformer 用于进行encode的transformer我已经写好放在Git上了,小伙伴随意取用,别忘记点星星哟~ https://githu...原创 2019-01-08 21:13:35 · 7165 阅读 · 2 评论 -
Pytorch_VAE_MNIST
import torch import torch.nn as nn import torch.utils.data as Data import torchvision from torch.autograd import Variable import matplotlib.pyplot as plt from mpl_toolkits.mplot3d import Axes3D from m...原创 2018-11-09 16:11:48 · 1800 阅读 · 0 评论 -
Ubuntu18.04安装Cuda、Cudnn、Tensorflow-gpu
https://blog.youkuaiyun.com/qq_34296627/article/details/82833172转载 2018-09-26 20:57:10 · 1555 阅读 · 0 评论 -
[Keras] 用于Keras的Metrics(包括Pearson系数,Mean Relative Error,Jaccard距离等)
Keras_Metrics -[Github Link]- Some Metric Implementation in Keras (Such as Pearsons Correlation Coefficient, MRE) Now Including: - Pearsons Correlation Coefficient - Mean Relative Error - Jaccard...原创 2018-05-31 19:20:46 · 6206 阅读 · 2 评论 -
[GAN] 一个基于Keras的GAN进行图像去模糊
https://cloud.tencent.com/developer/article/1103271转载 2018-05-23 22:19:41 · 5954 阅读 · 0 评论 -
[深度学习] 使用Adam无法收敛到最优解
疑问来源: 比赛实践中,往往都是先用Adam实现快速收敛后,再使用SGD达到最优解,为什么Adam无法直接达到最优解呢? 强烈推荐: 关于这个问题的综述:https://www.jiqizhixin.com/articles/2017-12-06 ICLR 2018 的一篇论文认为是因为使用了指数滑动平均: < On the Convergence of Ad...原创 2018-04-20 10:11:03 · 9204 阅读 · 6 评论 -
[深度学习] (1): 实现一个简单的XOR
摘要开始学习DL,各种代价函数,各种分布,这里分享一个用NN实现XOR的例子转载 2017-09-21 17:03:25 · 5980 阅读 · 0 评论 -
[生成对抗网络] GAN
GAN原创 2017-11-08 12:26:23 · 497 阅读 · 0 评论