教小白精通编程

面向小白的编程教学博客

The implementation of LSTM from scratch(LSTM的实现代码)

The implementation of LSTM from scratch(LSTM的实现代码)

The Equations for LSTM I deleted the code which will be put here after the publishing of my book on deep learning

人脸相关论文

Face related papers

SC-FEGAN : Face Editing Generative Adversarial Network with User’s Sketch and Color code Generating custom photo-realistic faces using AI code deepfake code Generate human faces with neural n...

1小时学会Python-深度学习原理与实现的1.4节

Python tutorial:Learning Python in an hour

1小时学会Python ( Learning Python in an hour ) Python是一个动态类型的高级语言,所谓“动态类型”是指Python能自动从变量值推断其类型。可以用Python内置函数type()查询一个值的类型。如 type(2) int type(3.14) float Python的print()函数可以输出一系列用逗号’,’隔开的对象,如: p...

知乎封号:知乎垃圾,垃圾知乎

知乎封号:知乎垃圾,垃圾知乎

知乎垃圾,垃圾知乎 用2个不同手机号,注册过知乎,每个只发过几篇编程文章,就被莫名封号了。 知乎里充斥了大量“知乎精英”们的高谈阔论和谩骂。知乎通过设置一些无聊的引导性的文章或话题,吸引大批学生(包括留学精英们)、文青们来炫耀、装逼、围攻、谩骂。令人恶心的是,知乎的文章毕竟是知乎精英们的无私奉献,但大部分文章非注册用户却无法浏览,知乎利用这些文青们的文章、回答来逼得要看文章的人必须注册,...

课程促销活动

课程促销活动

为了方便同学找到各种课程促销活动(优惠码、团购、砍价)信息,今后在此博客文章和微信公众号“hwdong编程”发布促销信息。 2019-08-03 数据结构等课程的促销

生成对抗网络 generative adversarial network (GAN)

generative adversarial network (GAN)

From GAN to WGAN The story about WGAN Read-through: Wasserstein GAN GAN Objective Functions: GANs and Their Variations GAN — GAN Series (from the beginning to the end) 训练不稳定、调参难度大,这里有 7 大法则带你规避...

奇异值分解Singular Value Decomposition (SVD)

Singular Value Decomposition (SVD)

初等变换 对矩阵的行初等变换可以分为以下三类: -1)对调矩阵的两行,记为$ E_{i,j} = r_i \leftrightarrow r_j $ -2)将某一行的元素乘以非零常数,记为 $ E_{s} =r_i\times s $ -3)将某一行的元素乘以非零常数后,加到另一行上,记为$ E_{i,j(s)}r_i+r_j\times s$ 定理1: 对一个矩阵$ A_{...

      Python的虚拟环境(Virtualenv)

    Python的虚拟环境(Virtualenv)

Python分为python 2和python 3,它们各自又有多个不同版本(如python3.4,python3.5.6),如果系统直接使用不同的python版本,会引起冲突。另外即使同一个版本的python,其中的 各个包package或库也有会有不同的版本,而python中一个包或库只能由一个版本,如果想根据需要使用同一个包的不同版本,怎么办? 上述这些情况,都需要使用python虚...

      Intellij IDEA安装创建JavaFX程序

    install intellij IDEA and create JavaFX Application

install intellij IDEA how to install intellij IDEA and create JavaFX Application download openjdk (jdk12) at http://jdk.java.net/12/ javaFX SDK 11 at https://gluonhq...

      Linux常用命令

    Often used Linux commands

Basic Linux command line tutorial to start developing in Ubuntu Linux Linux常用命令 clear 清空屏幕 pwd 显示当前目录(工作目录) ls 显示当前目录中内容 ls ls -a 显示所有文件(包括隐藏文件) ls -l 显示详细信息 cd 进入某个目录 cd / ...