We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 722883a commit 4c90dfbCopy full SHA for 4c90dfb
keras/src/backend/mlx/math.py
@@ -102,6 +102,11 @@ def erf(x):
102
return mx.erf(x)
103
104
105
+def erfinv(x):
106
+ x = convert_to_tensor(x)
107
+ return mx.erfinv(x)
108
+
109
110
def solve(a, b):
111
raise NotImplementedError(
112
"Linear system solving not yet implemented in mlx"
keras/src/backend/mlx/trainer.py
@@ -3,7 +3,6 @@
3
4
from keras.src import backend
5
from keras.src import callbacks as callbacks_module
6
-from keras.src import ops
7
from keras.src import optimizers as optimizers_module
8
from keras.src import tree
9
from keras.src.backend.common import standardize_dtype
0 commit comments