Skip to content

Commit 21b44ab

Browse files
committed
tether additions
1 parent f399414 commit 21b44ab

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.tether/man/keras.ops.txt

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@ categorical_crossentropy(
110110
axis=-1
111111
)
112112
ceil(x)
113+
celu(x, alpha=1.0)
113114
cholesky(x)
114115
clip(
115116
x,
@@ -223,7 +224,8 @@ dot_product_attention(
223224
bias=None,
224225
mask=None,
225226
scale=None,
226-
is_causal=False
227+
is_causal=False,
228+
flash_attention=None
227229
)
228230
dtype(x)
229231
eig(x)
@@ -235,6 +237,7 @@ equal(x1, x2)
235237
erf(x)
236238
erfinv(x)
237239
exp(x)
240+
exp2(x)
238241
expand_dims(x, axis)
239242
expm1(x)
240243
extract_sequences(
@@ -271,11 +274,14 @@ full_like(
271274
)
272275
gelu(x, approximate=True)
273276
get_item(x, key)
277+
glu(x, axis=-1)
274278
greater(x1, x2)
275279
greater_equal(x1, x2)
280+
hard_shrink(x, threshold=0.5)
276281
hard_sigmoid(x)
277282
hard_silu(x)
278283
hard_swish(x)
284+
hard_tanh(x)
279285
histogram(
280286
x,
281287
bins=10,
@@ -290,6 +296,7 @@ in_top_k(
290296
predictions,
291297
k
292298
)
299+
inner(x1, x2)
293300
inv(x)
294301
irfft(x, fft_length=None)
295302
is_tensor(x)
@@ -562,6 +569,7 @@ slice_update(
562569
updates
563570
)
564571
slogdet(x)
572+
soft_shrink(x, threshold=0.5)
565573
softmax(x, axis=-1)
566574
softplus(x)
567575
softsign(x)
@@ -585,6 +593,7 @@ split(
585593
)
586594
sqrt(x)
587595
square(x)
596+
squareplus(x, b=4)
588597
squeeze(x, axis=None)
589598
stack(x, axis=0)
590599
std(
@@ -635,6 +644,7 @@ take_along_axis(
635644
)
636645
tan(x)
637646
tanh(x)
647+
tanh_shrink(x)
638648
tensordot(
639649
x1,
640650
x2,

0 commit comments

Comments
 (0)