1. Introduce
It is the single operator model derivation with different frames.

2. Folder
├── onnx
├── tesnorflow
├── torch
├── tflite
├── README

2.1 - onnx
    ├── model
    ├── onnx_ops.py
    It is used to export onnx single operator model.
    The model folder contains the exported onnx model files

2.2 - tensorflow
    ├── onnx.py
    It is used to export tensorflow single operator model.

3. How to run it
Example:
cd model_src/onnx
python onnx_ops.py onnx_add

    "onnx_abs": onnx_abs,
    "onnx_acos": onnx_acos,
    "onnx_acosh": onnx_acosh,
    "onnx_add": onnx_add,
    "onnx_and": onnx_and,
    "onnx_argmax": onnx_argmax,
    "onnx_argmin": onnx_argmin,
    "onnx_asin": onnx_asin,
    "onnx_asinh": onnx_asinh,
    "onnx_atan": onnx_atan,
    "onnx_conv2d": onnx_conv2d
    
cd model_src/tensorflow 
python tf_add.py


