tree: 50b8af9e2bceb93409d8bd00fc032ea131d556ae [path history] [tgz]
  1. add_with_const_input.bin
  2. argmax.bin
  3. broadcast_to.bin
  4. concat.bin
  5. custom_op.bin
  6. fc.bin
  7. fc_qat.bin
  8. gather_nd.bin
  9. lstm_calibrated.bin
  10. lstm_calibrated2.bin
  11. lstm_quantized.bin
  12. lstm_quantized2.bin
  13. maximum.bin
  14. minimum.bin
  15. mixed.bin
  16. mixed16x8.bin
  17. multi_input_add_reshape.bin
  18. pack.bin
  19. quantized_with_gather.bin
  20. README.md
  21. resource_vars_calibrated.bin
  22. single_avg_pool_min_minus_5_max_plus_5.bin
  23. single_conv_no_bias.bin
  24. single_conv_weights_min_0_max_plus_10.bin
  25. single_conv_weights_min_minus_127_max_plus_127.bin
  26. single_softmax_min_minus_5_max_plus_5.bin
  27. split.bin
  28. svdf_calibrated.bin
  29. svdf_quantized.bin
  30. transpose.bin
  31. unidirectional_sequence_lstm_calibrated.bin
  32. unidirectional_sequence_lstm_quantized.bin
  33. unpack.bin
  34. weight_shared_between_convs.bin
  35. where.bin
tensorflow/lite/tools/optimize/testdata/README.md

Test models for testing quantization

This directory contains test models for testing quantization.

Models

  • single_conv_weights_min_0_max_plus_10.bin
    A floating point model with single convolution where all weights are integers between [0, 10] weights are randomly distributed. It is not guaranteed that min max for weights are going to appear in each channel. All activations have min maxes and activations are in range [0,10].
  • single_conv_weights_min_minus_127_max_plus_127.bin
    A floating point model with a single convolution where weights of the model are all integers that lie in range[-127, 127]. The weights have been put in such a way that each channel has at least one weight as -127 and one weight as 127. The activations are all in range: [-128, 127]. This means all bias computations should result in 1.0 scale.
  • single_softmax_min_minus_5_max_5.bin
    A floating point model with a single softmax. The input tensor has min and max in range [-5, 5], not necessarily -5 or +5.
  • single_avg_pool_input_min_minus_5_max_5.bin
    A floating point model with a single average pool. The input tensor has min and max in range [-5, 5], not necessarily -5 or +5.
  • weight_shared_between_convs.bin
    A floating point model with two convs that have a use the same weight tensor.
  • multi_input_add_reshape.bin
    A floating point model with two inputs with an add followed by a reshape.
  • quantized_with_gather.bin
    A floating point model with an input with a gather, modeling a situation of mapping categorical input to embeddings.