From 707bdbc1070f97dab5efe4a0c8a20bf01044891d Mon Sep 17 00:00:00 2001 From: Mike Clark Date: Sat, 18 Nov 2017 10:10:24 +0800 Subject: [PATCH] clamp --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6668eef..a62cfae 100644 --- a/README.md +++ b/README.md @@ -118,7 +118,7 @@ | `x.argmin` | `mins, indices = torch.min(x, [dim])` | | `x.max` | `maxs, indices = torch.max(x, [dim])` | | `x.argmax` | `maxs, indices = torch.max(x, [dim])` | -| `x.clip` | | +| `x.clip` | `x.clamp` | | `x.round` | `x.round` | | `np.floor(x)` | `x.floor()` | | `np.ceil(x)` | `x.ceil()` |