时间 2016-01-27 05:40:46  Raymond Camden's Blog 原文  http://www.raymondcamden.com/2016/01/25/survey-results-learning-javascript/ 主题 JavaScript A few weeks back, Rebecca Murphey tweeted out a link to a survey she was running involving how people learn Ja…
该笔记基于:Multimodal Machine Learning:A Survey and Taxonomy 该论文是一篇对多模态机器学习领域的总结和分类,且发表于2017年,算是相当新的综述了.老师在课上推荐阅读,我花了三天大体看了一边,其中有很多实际的方法或者技术对我来说是全新的领域,也是未来学习的方向,但是对这个领域和其想解决的问题有了大致的了解.记录如下: 关键名词解释: Modality:A particular mode in which something exists or i…
论文信息 论文标题:Data Augmentation for Deep Graph Learning: A Survey论文作者:Kaize Ding, Zhe Xu, Hanghang Tong, Huan Liu论文来源:2022, arXiv论文地址:download 1 介绍 本文主要总结图数据增强,并对该领域的代表性方法做出归类分析. DGL 存在的两个问题: 次优图问题:图中包含不确定.冗余.错误和缺失的节点特征或图结构边. 有限标签问题:标签数据成本高,目前大部分 DGL 方法是…
AMD - Learning JavaScript Design Patterns [Book] - O'Reilly The overall goal for the Asynchronous Module Definition (AMD) format is to provide a solution for modular JavaScript that developers can use today. It was born out of Dojo’s real world exper…
Learning JavaScript with MDN & 使用 MDN 学习 JavaScript Learn JavaScript with MDN 和 MDN 一起学习 JavaScript https://learning-javascript-with-mdn.xgqfrms.xyz https://github.com/xgqfrms/learning-javascript-with-mdn/blob/master/src/references/standard-built-in-…
Learning JavaScript with MDN (call, apply, bind) call, apply, bind Object.prototype.toString() 检测 js 数据类型 https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/toString Object.prototype.toString({}) // "[object Objec…
概观 今年,超过64,000名开发人员告诉我们他们学习和升级的方式,他们使用的工具和他们想要的东西. 自2011年以来,Stack Overflow每年都会向开发者询问他们最喜爱的技术,编码习惯,工作偏好,以及他们如何学习,分享和升级.今年是我们历史上最大的受访者群体:一月有64,000名开发者参加了我们的年度调查. 作为全球最大,最值得信赖的软件开发者社区,我们进行这项调查并分享这些成果,以改善开发人员的生活:我们希望通过为开发者提供关于他们自己,他们的行业和同行的丰富信息来增强开发者的能力.…
The Module Pattern Modules Modules are an integral piece of any robust application's architecture and typically help in keeping the units of code for a project both cleanly separated and organized. In JavaScript, there are several options for impleme…
The Observer Pattern The Observer is a design pattern where an object (known as a subject) maintains a list of objects depending on it (observers), automatically notifying them of any changes to state. When a subject needs to notify observers about s…
The Singleton Pattern The Singleton pattern is thus known because it restricts instantiation of a class to a single object. Classically, the Singleton pattern can be implemented by creating a class with a method that creates a new instance of the cla…