Questions tagged [jetson-xavier]

34 questions
3
votes
0 answers

ScatterND Plugin not found while converting onnx into tensorrt model

Able to convert pytorch model into onnx and validated onnx output with pytorch. it's working fine. But when I try to convert onnx into tensorrt engine, it fails at onnx parser and return this error. [TensorRT] ERROR: INVALID_ARGUMENT:…
sp_713
  • 31
  • 2
1
vote
1 answer

Building Tensorflow on Jetson Xavier fails to find CUDA

I'm trying to compile the tensorflow 2.3 C API for Xavier in a docker image. I'm using this as the base docker image which seems to have the correct version of CUDA installed, but the build fails with the following message: ERROR: no such package…
Hugo Burd
  • 188
  • 3
  • 12
1
vote
1 answer

Cannot capture video using OpenCV in python in Jetson Xavier

I am trying to read the camera image on Jetson Xavier (ubuntu 18). I am facing a problem. When I run the following code it gives a warning and gives a black (full) image. [ WARN:0] global…
Imran
  • 583
  • 2
  • 11
1
vote
0 answers

tensorflow segmentation fault in Nvidia Xavier Jetson when trying to load model with memory growth enabled

I have a segmentation fault with a very specific code sequence and only on Xavier Jetson: import os import requests import tensorflow as tf # 1 print('SET MEMORY GROWTH') physical_devices =…
1
vote
0 answers

Jetson xavier NX with buzzer

I'm trying to connect a buzzer to jetson xavier NX through Jetson.GPIO library in python, I tried a lot and I couldn't seem to get it right, I also made a lot of research about this and couldn't find any useful information. Can you help me? I'm…
1
vote
0 answers

Memory issue while trying to convert it to tensorrt or tflite

I succesfull converted the .weight file to .tf file, then i used the convert_trt.py scirpt which indeed is getting killed after a 2 mins wait. I use a Jetson Xavier nx, Cuda 10.2. Error log: .. .. . 2020-08-22 15:31:22.362558: I…
Sai Krishnadas
  • 843
  • 1
  • 9
  • 32
1
vote
0 answers

Is there a way to cross-compile tensorflow-2 for nvidia jetson boards (AGX, TX2)

I found a guide for compiling tensorflow-1.5 with CUDA support for TX1, https://jany.st/post/2018-02-05-cross-compiling-tensorflow-for-jetson-tx1-with-bazel.html Is there a way to do the same for tf-2? I want to install a fork of tf-2 on my AGX…
0
votes
0 answers

Connecting Jetson Xavier remotely through windows using same mobile internet

I have jetson and latte panda. I want to access jetson remotely using VNC through latte panda windows. I tried to use two scenarios Make latte panda as a gateway to the internet. Sharing the latte panda internet as a mobile hotspot and connecting…
Imran
  • 583
  • 2
  • 11
0
votes
1 answer

Is there a way to know the options with which OpenCV was installed?

I read that when installing OpenCV you can specify a series of options (use of CUDA, TBB, NEON, etc). My question is, suppose I have access to a (ARM) machine, in which OpenCV is already installed. Is there a way to learn which options was OpenCV…
KansaiRobot
  • 3,881
  • 3
  • 33
  • 74
0
votes
0 answers

YOLOv4 on tensorRT INVALID_ARGUMENT: Cannot find binding of given name: nmsed_classes

I have an issue while trying to run my code based on yolov4.engine that I generated from my onnx file, and I get this error: [E] [TRT] INVALID_ARGUMENT: Cannot find binding of given name: num_detections [E] [TRT] INVALID_ARGUMENT: Cannot find…
0
votes
1 answer

Power on/off jetson xavier nx in a proper way

It seems to me like power on and off have two different behaviours: if I shutdown jetson xavier nx through the operating system and after that turns off the power, jetson xavier wont start when I turn the power back on. First I have to remove the…
acroscene
  • 615
  • 2
  • 11
  • 29
0
votes
0 answers

MXNetError: ImageRec need opencv to process

I'm trying to run to train a deep learning model using Nvidia Xavier NX script on Mxnet and keep encountering the following error and I'm not sure what the issue is: $ python3 fine_tune_cars.py --vgg vgg16/vgg16 --checkpoints data/checkpoints…
0
votes
0 answers

Accessing Jetson device (at lab) from home remotely, giving time out error

The Jetson Xavier is placed at the lab and I want to access it from home different LAN. Using VNC I tried to access but it gives the error “access time out”. I did the same thing with Latte panda and it is working perfectly. How I can access Jetson…
Imran
  • 583
  • 2
  • 11
0
votes
0 answers

How to get ssh to work without plugging in to a monitor once powered on for Jetson Xavier/TX2?

I flashed my Xavier NX and TX2 with the respective image and setup everything successfully. I also enabled ssh but found out that for ssh to work, I need to plug in the Xavier/TX2 to a monitor once it is powered on. After it is powered on I can use…
V. M.
  • 53
  • 5
0
votes
0 answers

per_process_gpu_memory_fraction with no consequence?

I'm running a basic object detection model using tensorflow 1.14 on my jetson xavier nx. I'm trying to optimize my memory usage on this model. I have 8 gb shared memory between cpu and gpu. Before I do any optimization, bare model runs on ~6gb…
1
2 3