GithubHelp home page GithubHelp logo

Comments (7)

hoaquocphan avatar hoaquocphan commented on May 22, 2024 1

hi @pranavsharma @snnn
after building onnx successfully, I still can not import onnxruntime as below error:
ImportError: No module named 'onnxruntime'

could you check and give me your comment

from onnxruntime.

rayeh5 avatar rayeh5 commented on May 22, 2024

It seems that "CTRL-C" will break the build process, cause incomplete build.
I modify the test program to pass the "long" test, and can build to complete.
Will try again to learn how to run the onnx_runtime.

from onnxruntime.

rayeh5 avatar rayeh5 commented on May 22, 2024

Under the build/Linux/RelWithDebInfo/dist, there are two whl files: onnxruntime-0.1.5-cp35-cp35m-linux_x86_64.whl and onnxruntime-0.1.5-cp35-cp35m-manylinuxlinux1_x86_64.whl.
I use the command: pip3 install xxx.whl

After type python3

import onnxruntime.backend as backend
I got error message:
ImportError: No module named 'onnx'

Is something wrong for the building or install process?

Thanks for your time.

from onnxruntime.

snnn avatar snnn commented on May 22, 2024

In order to use onnxruntime python package, you need to install onnx python package first.

from onnxruntime.

rayeh5 avatar rayeh5 commented on May 22, 2024

Thanks!
Now "import onnxruntime.backend as backend" is successful.
I also download the mnist model.

But I can't find any useful python code to run this model.
Could someone help to let me know where I can find the example code to run a model via python or C, etc.

Thanks for your time.

from onnxruntime.

pranavsharma avatar pranavsharma commented on May 22, 2024

Here's one example from this page

# Compute the prediction with ONNX Runtime
import onnxruntime as rt
import numpy
sess = rt.InferenceSession("rf_iris.onnx")
input_name = sess.get_inputs()[0].name
label_name = sess.get_outputs()[0].name
pred_onx = sess.run([label_name], {input_name: X_test.astype(numpy.float32)})[0]

from onnxruntime.

normandyr avatar normandyr commented on May 22, 2024

I did pip3 install onnxruntime (if you are on a different OS it might be different i.e. linux flavor). Then I get an error "cannot import name 'get_all_providers' from 'onnxruntime.capi._pybind_state"

Which will take you to here: #4196

I have not completed the steps to see if it will solve the issue or not yet but putting this here in case others end up here eventually. In the issue template the user mentions System Information as: OS Platform and Distribution (e.g., Linux Ubuntu 16.04): Windows 10. So if you are in those OS you might look into the above link if your issue is as mine.

I have same issue as @hoaquocphan

from onnxruntime.

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.