Publicly accessible method for determining the current backend. Only exists for API compatibility with multi-backend Keras. Returns: The string "tensorflow".
()
| 137 | |
| 138 | @keras_export('keras.backend.backend') |
| 139 | def backend(): |
| 140 | """Publicly accessible method for determining the current backend. |
| 141 | |
| 142 | Only exists for API compatibility with multi-backend Keras. |
| 143 | |
| 144 | Returns: |
| 145 | The string "tensorflow". |
| 146 | """ |
| 147 | return 'tensorflow' |
| 148 | |
| 149 | |
| 150 | @keras_export('keras.backend.cast_to_floatx') |
no outgoing calls