Jansen
Results
1
issues of
Jansen
# TFLite模型转换失败,段错误 模型构建如下 ```python # pyrhon版本:3.8.19 # tensorflow版本:2.10.1 import tensorflow as tf from tensorflow.keras.models import Model from tensorflow.keras.layers import Input, Conv2D, MaxPooling2D, Flatten, Dense def SIMONet(num_classes=10, regression_output_size=4): input = Input(shape=(64,...