Skip to content

Commit 6cd22b0

Browse files
author
guozhen3
committed
2021盘点
1 parent 3357afd commit 6cd22b0

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

md/1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
@date 2019/2/10
55
```
66

7-
#### 2 实现 relu
7+
#### 1 实现 relu
88

99
在神经网络中,`relu`作为神经元的激活函数:
1010

md/2.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,21 @@
88

99
十进制转换为二进制:
1010
```python
11-
In [2]: bin(10)
12-
Out[2]: '0b1010'
11+
In [1]: bin(10)
12+
Out[1]: '0b1010'
1313
```
1414

1515
十进制转换为八进制:
1616
```python
17-
In [3]: oct(9)
18-
Out[3]: '0o11'
17+
In [2]: oct(9)
18+
Out[2]: '0o11'
1919
```
2020

2121
十进制转换为十六进制:
2222
```python
23-
In [4]: hex(15)
24-
Out[4]: '0xf'
23+
In [3]: hex(15)
24+
Out[3]: '0xf'
2525
```
26-
27-
26+
27+
2828
<center>[上一个例子](1.md) [下一个例子](3.md)</center>

0 commit comments

Comments
 (0)