Environment Variables¶
You can control graph transpiler behavior by follow environment variables.
# ex)
$ DEBUG=1 OPTIMIZE=0 ./bin/convert_keras.py my_keras_model.h5 --backend webgpu --out ./output
-
DEBUG
¶ If
1
, debug log is printed out. Default is0
.
-
OPTIMIZE
¶ If
1
, all optimization rule is applied. Otherwise, no optimization rule is applied. Default is1
.