Code Monkey home page Code Monkey logo

Comments (7)

PaulX1029 avatar PaulX1029 commented on June 15, 2024

image

from onnx2tflite.

MPolaris avatar MPolaris commented on June 15, 2024

It's seem a new pattern of PRelu. Your onnx model version is 16, can you provide model file to me or fix it by yourself.

from onnx2tflite.

PaulX1029 avatar PaulX1029 commented on June 15, 2024

It's seem a new pattern of PRelu. Your onnx model version is 16, can you provide model file to me or fix it by yourself.

我可以将onnx模型提供给您,我也可以先将onnx版本降低到多少再试试呢?

from onnx2tflite.

PaulX1029 avatar PaulX1029 commented on June 15, 2024

链接: https://pan.baidu.com/s/1ksZcbMwm5v8N5JqVGgmdvQ?pwd=t7jw 提取码: t7jw
--来自百度网盘超级会员v3的分享

from onnx2tflite.

PaulX1029 avatar PaulX1029 commented on June 15, 2024

链接: https://pan.baidu.com/s/1ksZcbMwm5v8N5JqVGgmdvQ?pwd=t7jw 提取码: t7jw --来自百度网盘超级会员v3的分享

onnx模型链接地址在这里,我先从mxnet转换为onnx的,转换脚本如下:

import mxnet as mx
import numpy as np
import onnx

print('mxnet version:', mx.__version__)
print('onnx version:', onnx.__version__)
from mxnet.contrib import onnx as onnx_mxnet
from onnx import checker
syms = './mxnet_models/arcface/model-symbol.json'
params = './mxnet_models/arcface/model-0000.params'
input_shape = (1, 3, 112, 112)
onnx_file = './models/arcface_onnx131.onnx'

converted_model_path = onnx_mxnet.export_model(syms, params, [input_shape], np.float32, onnx_file)

model_proto = onnx.load_model(converted_model_path)

checker.check_graph(model_proto.graph)

from onnx2tflite.

MPolaris avatar MPolaris commented on June 15, 2024

It's fixed, please pull latest code.

from onnx2tflite.

PaulX1029 avatar PaulX1029 commented on June 15, 2024

@MPolaris Thank you!

from onnx2tflite.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.