Segmentation fault
See original GitHub issueHi,
Thank you so much for your work! I’d like to try it on a different dataset and I was wondering if you could guide me through the most important things that I have to prepare to be able to run your code?
I started with the most basic thing. I created a dataset
directory and downloaded the pre-created tfrecords for voc12 put them in dataset
.
I wanted to try the training on one GPU, so I ran python3 train_sup.py --num_clones 1 --train_logdir logs/ --dataset_dir dataset/
but I am getting segmentation fault
error. What do you think I am doing wrong?
Thank you so much in advance!
Issue Analytics
- State:
- Created 3 years ago
- Comments:17
Top Results From Across the Web
Segmentation fault - Wikipedia
Segmentation faults are a common class of error in programs written in languages like C that provide low-level memory access and few to...
Read more >c++ - What is a segmentation fault? - Stack Overflow
A segmentation fault occurs when a program attempts to access a memory location that it is not allowed to access, or attempts to...
Read more >Identify what's causing segmentation faults (segfaults)
A segmentation fault (aka segfault) is a common condition that causes programs to crash; they are often associated with a file named core...
Read more >Core Dump (Segmentation fault) in C/C++ - GeeksforGeeks
When a piece of code tries to do read and write operation in a read only location in memory or freed block of...
Read more >What Is a Segmentation Fault in Linux?
A segmentation fault, or segfault, is a memory error in which a program tries to access a memory address that does not exist...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Ah you are right. The one I referred to is for the overall accuracy. You should use the one you are referring to for per-class accuracy.
Yes. I think you can mainly follow the data generation of `pascal_voc_seg’. It should be straightforward to adapt to your use case.