Skip to content

Commit

Permalink
added CeLU to list of ops
Browse files Browse the repository at this point in the history
  • Loading branch information
brightening-eyes committed Sep 9, 2023
1 parent acfccad commit 69e9ee3
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions docs/developer-guide/operators.md
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,18 @@ Element type:
- 3 = int8
- 4 = bfloat16

# CeLU
```
y = max(0,x) + min(0,alpha*(exp(x/alpha)-1))
```

* one_blob_only
* support_inplace

| param id | name | type | default | description |
| --------- | ------------- | ----- | --------- | ----------------- |
| 0 | alpha | float | 0 | |

# Clip
```
y = clamp(x, min, max)
Expand Down

0 comments on commit 69e9ee3

Please sign in to comment.