Narmin

Results 3 issues of Narmin

I am using the following script to train a fine-tune the coco model: ``` #!/bin/bash lrs=(1e-3 1e-4 1e-5) bzs=(128 64) for lr in "${lrs[@]}"; do for bz in "${bzs[@]}"; do...

Thank you for sharing this code. I am trying to implement this code. However, I have the main question regarding: `lbl_pred = model(graph, masked_cls)` In this line of code, the...