使用帮助

Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.

一级标题

文档题头

1
2
3
4
5
6
7
---
title: Learning PyTorch With Examples
date: 2017-10-11 19:22:56
categories: PyTorch
tags: [keras,神经网络,无监督学习]
comments: true
---

代码

1
$ hexo new "My New Post"

More info: Writing

python代码

1
2
3
4
5
6
import numpy as np
i=5
print(i)
# N is batch size; D_in is input dimension;
# H is hidden dimension; D_out is output dimension.
N, D_in, H, D_out = 64, 1000, 100, 10

粗体与斜体

这里是粗体
这里是斜体

1
2
**这里是粗体**
*这里是斜体*

分割线

分割线的语法只需要三个 * 号


引用

只需要在文本前加入 > 这种尖括号(大于号)即可

字体颜色

红色加黑字体

红色3号字

蓝色2号字

底色为红色的句子

1
2
3
4
<font color="#FF0000"><strong>红色加黑字体</strong></font> 
<font size="3" color="red">红色3号字</font>
<font size="2" color="blue">蓝色2号字</font>
<font style="background:yellow">底色为红色的句子</font>

插入图片

1
2
![img](./hello-world/001.JPG)
<center>图1 典型的自动编码器结构</center>

img

图1 典型的自动编码器结构