Open rohit12 opened 6 years ago
@rohit12 the reason your model file not generated is you may have not set --snapshot-interval argument. By default it is set to 20000. so when your script reaches total of 20000 iteration a snapshot will be generated.
Hi,
bboxes
folder in your log_dir
. Those images show the predictions of the network on a test image and if that improves over time, it seems to workHi Christian,
We are facing a few other problems for the Born Digital dataset.
1) While creating the the video, we are facing the following error
/src/datasets/BornDigital/logs_new/2018-04-17T02:31:56.662657_training/boxes$ python3 ../../../../../see/utils/create_video.py ./ ./video.mp
4
loading images
sort and cut images
creating temp file
convert -quality 100 @/tmp/tmpp5m2rc0n /tmp/tmp65e4ijjz/1000.mpeg
^BdKilled
Traceback (most recent call last):
File "../../../../../see/utils/create_video.py", line 109, in <module>
make_video(args.image_dir, args.dest_file, batch_size=args.batch_size, start=args.start, end=args.end, pattern=args.pattern)
File "../../../../../see/utils/create_video.py", line 56, in make_video
temp_file = create_video(i, temp_file, video_dir)
File "../../../../../see/utils/create_video.py", line 92, in create_video
subprocess.run(' '.join(process_args), shell=True, check=True)
File "/usr/lib/python3.5/subprocess.py", line 708, in run
output=stdout, stderr=stderr)
subprocess.CalledProcessError: Command 'convert -quality 100 @/tmp/tmpp5m2rc0n /tmp/tmp65e4ijjz/1000.mpeg' returned non-zero exit status 137
2) How to interpret the images stored in the boxes folder in the logs. For the Born Digital dataset, the following are a few of the examples over training.
1.png
10.png
100.png
500.png
1250.png
Are these images the visualization of what region on the input image, the current layer is being focused on with the first being the focus of the output layer?
3) Do you have any suggestions for some other ground truth format? We want to look into the google 1000 dataset but converting them to the format that you have used in the code seems to be a bit of time consuming task.
alright:
render_extracted_rois
to False
in the part of the code that creates the BBOXPlotter
object (in the train_..
file you are using). This will create smaller images. See the next bullet point for an explanation of what I mean with that.render_extracted_rois
to False
these images will not be rendered anymore.The images you posted seem to show that your network is hardly learning anything right now. I'd advise you to take a curriculum approach and start with easy samples (sampes with few words) first and the increase difficulty, otherwise it might not converge.
I have a few queries while training SEE on the Born Digital dataset. It is basically flyers and digitally made advertisements.
logs/
folder, the model is not generated. Do you have any idea why? I have 410 images for training and my batch size is 32.