MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / cos

Function cos

tensorflow/python/keras/backend.py:2356–2365  ·  view source on GitHub ↗

Computes cos of x element-wise. Arguments: x: Tensor or variable. Returns: A tensor.

(x)

Source from the content-addressed store, hash-verified

2354
2355@keras_export('keras.backend.cos')
2356def cos(x):
2357 """Computes cos of x element-wise.
2358
2359 Arguments:
2360 x: Tensor or variable.
2361
2362 Returns:
2363 A tensor.
2364 """
2365 return math_ops.cos(x)
2366
2367
2368def _regular_normalize_batch_in_training(x,

Callers 8

GetPeriodicHannFunction · 0.50
InitializeMethod · 0.50
WindowPopulateStateFunction · 0.50
CalculatePeriodicHannFunction · 0.50
CalculatePeriodicHannFunction · 0.50
WindowPopulateStateFunction · 0.50

Calls

no outgoing calls

Tested by 1

GetPeriodicHannFunction · 0.40