How to get the values of the quantized weights or get quantization aware weights after quantization aware training (QAT) of TensorFlow. I want to use integer quantized weights on NumPy for an application. I used as follows so far, which gives float32 values.
import tensorflow.keras.backend as K
for layer in q_aware_model.trainable_weights:
weights_temp.append(K.get_value(layer))