Nvidia Tegra X2

Hello,

I am new to Digits and TX2. I am using the tutorial from: GitHub - dusty-nv/jetson-inference: Hello AI World guide to deploying deep-learning inference networks and deep vision primitives with TensorRT and NVIDIA Jetson.

While creating a model, I am getting the following error.

Memory required for data: 3268934784
Creating layer bbox_loss
Creating Layer bbox_loss
bbox_loss ← bboxes-obj-masked-norm
bbox_loss ← bbox-obj-label-norm
bbox_loss → loss_bbox
Setting up bbox_loss
Top shape: (1)
with loss weight 2
Memory required for data: 3268934788
Creating layer coverage_loss
Creating Layer coverage_loss
coverage_loss ← coverage_coverage/sig_0_split_0
coverage_loss ← coverage-label_slice-label_4_split_0
coverage_loss → loss_coverage
Setting up coverage_loss
Top shape: (1)
with loss weight 1
Memory required for data: 3268934792
Creating layer cluster

The job directory information on the left is:

Job Directory
/home/nvidia/DIGITS/digits/jobs/20180816-161051-e67a
Disk Size
0 B
Network (train/val)
train_val.prototxt
Network (deploy)
deploy.prototxt
Network (original)
original.prototxt
Solver
solver.prototxt
Raw caffe output
caffe_output.log
Pretrained Model
/home/nvidia/bvlc_googlenet.caffemodel.4
Visualizations
Tensorboard

The error on the server is

2018-08-16 16:10:53 [20180816-161051-e67a] [INFO ] Task subprocess args: “/home/nvidia/Caffe/caffe/build/tools/caffe train --solver=/home/nvidia/DIGITS/digits/jobs/20180816-161051-e67a/solver.prototxt --gpu=0 --weights=/home/nvidia/bvlc_googlenet.caffemodel.4”
2018-08-16 16:11:00 [20180816-161051-e67a] [ERROR] Train Caffe Model task failed with error code 1

I have no idea on how to free up memory as I have more than 2 gb available in the job directory.
Please help me. Thanks in advance.

Hi

From this log:

Disk Size
0 B

This issue is caused by lack of storage rather than memory.
Could you check your storage resource with this command first?

df -h

Thanks.