Tflite model maker set seed

Is there a way to set seed in tflite modelmaker to get repetable resuts please?

I tried this:

    tf.random.set_seed(0)
    random.seed(0)
    np.random.seed(0)

But I still get different results each time I run my training on tflite image classifier…

Maybe try these?

tf.keras.utils.set_random_seed(1)
tf.config.experimental.enable_op_determinism()

The first call there should have a similar effect to the combination of three calls that you mentioned, but the second one might help?