uTensor / utensor_cgen

C++ code generator for uTensor https://utensor-cgen.readthedocs.io/en/latest/
Apache License 2.0
50 stars 40 forks source link

[Refactoring] Shared configuration within frontend parser, graph/ops lower and backend #121

Open dboyliao opened 4 years ago

dboyliao commented 4 years ago

Shared configuration such as padding and activation. ex: TF 1.x pb file: padding is raw string such as 'VALID', 'SAME', ...etc TF 2.x tflite file: padding is int index such as '0' ('UNKNOWN'), '1' ('VALID'), ...etc

Need a better way to share such configurations