文章浏览阅读4.5k次。本文叙述Collections里最常见的三种操作map, flatMap, filter,与For表达式的关系。List对三种方法的实现map在List的实现:abstract class List[+T] { def map[U](f: T => U): List[U] = this match { case x :: xs => f(x) :: xs.map(f) cas......
文章浏览阅读4.1k次,点赞9次,收藏62次。Multi-view learning methods with codePart A: general multi-view methods with code1. NMF (non-negative matrix factorization) based methods NMF factorizes the non-negative data matrix into two non-negative matrices.1.1 AAAI17 Multi-View Clustering......
文章浏览阅读4.5k次,点赞12次,收藏36次。1.题目Learning from Noisy Labels with Deep Neural Networks: A Survey作者团队:韩国科学技术院(KAIST)Song H , Kim M , Park D , et al. Learning from Noisy Labels with Deep Neural Networks: A Survey. 2020.2. 摘要重述问题......
文章浏览阅读4.9k次,点赞21次,收藏64次。本文对汪徳亮于 2017 年在 IEEE/ACM Transactions on Audio, Speech, and Language Processing 上发表的论文进行简单地翻译,如有表述不当之处欢迎批评指正。欢迎任何形式的转载,但请务必注明出处。_s......
文章浏览阅读3.8k次。Must-read papers on NRL/NE.NRL: network representation learning. NE: network embedding.DeepWalk: Online Learning of Social Representations.Bryan Perozzi, Rami Al-Rfou, Steven Skiena. KDD 2014. paper_variation autoencoder based network representation learning for classifi......