You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can also install a triple backend cuda environment using `cuda.yaml`:
95
+
You can set an environment variable to choose the default backend. We recommend defaulting to jax:
75
96
76
97
```bash
77
-
conda env create --file cuda.yaml --name bf-cuda
98
+
conda env config vars set KERAS_BACKEND=jax
78
99
```
79
100
80
-
Note that we cannot guarantee that this environment file will always work,
81
-
as it is not tested frequently or across devices.
82
-
It is provided merely as a convenience. For reliability, install only a single backend.
101
+
Note that you will have to re-activate the environment for the changes to take effect.
83
102
84
103
### 3. Implement your changes
85
104
@@ -138,7 +157,8 @@ z = keras.ops.convert_to_numpy(x)
138
157
139
158
The documentation uses [sphinx](https://www.sphinx-doc.org/) and relies on [numpy style docstrings](https://numpydoc.readthedocs.io/en/latest/format.html) in classes and functions.
140
159
141
-
Run the following command to install all necessary packages for setting up documentation generation:
160
+
If you haven't done so earlier, run the following command to install all necessary packages for setting up
0 commit comments