Brian Davis
Brian Davis
Are you seeing all 50 jsons, but only 10 images? `eval.py` has two loops for running `saveFunc`, one that passes the destination directory, the other doesn't (and thus doesn't save...
I coded up somethings badly in `eval.py` which causes weird behavoirs when the normal and validation batch sizes are different. I've updated the code so now it goes off of...
`ap_5 overall mean` is the mean average precision (mAP). the `class0_ap` and `class1_ap` are the mAP for the individual classes. The recall overall and prec overall are the recall and...
It could either be an artifact of the pretraining data (not having long relationships) or the Swin model having windowed attention. Have you tried fine-tuning on your data?
Sorry, ignore my prior response about the Swin model attention (I thought this was an issue on Dessurt). The graph should have links that far across, but it's failing to...
What is the config your using? And what is the exact error? (line number)
You should be able to replace the backbone without any issues as the output needed is just the class and bounding boxes (you could even replace it even with a...
It should be pretty easy. For the detector, just register a forward hook on the layer you want that saves the features in `detector.saved_features`. This happens in `setForGraphPairing()` in yolo_box_detector.py...
You just need to define a custom dataset, copy `datasets/author_hw_dataset.py` and fit it to your data. Now there is a problem in that the my method is focused around extracting...
--1. & 2. This is expecting the data to be cropped at the line level. (There are better handwriting sythesis methods than mine, but they all expect words.) You'll need...