Manoj Acharya

Results 10 comments of Manoj Acharya

change seq2seq model line 173 if argmax: _, cur_output = probs.max(1) else: to if argmax: _, cur_output = probs.max(1) cur_output = cur_output.unsqueeze(0) else:

Hi, Its in the file https://github.com/facebookresearch/clevr-iep/blob/master/scripts/run_model.py in line 276 .. The preds variable is the answers. _, preds = scores.data.cpu().max(1) all_programs.append(programs_pred.data.cpu().clone()) all_scores.append(scores.data.cpu().clone()) all_probs.append(probs.data.cpu().clone()) ......... Best, Manoj On Fri, Oct 20,...

Hi, Its in the file https://github.com/facebookresearch/clevr-iep/ blob/master/scripts/run_model.py in line 276 .. The preds variable is the answers. _, preds = scores.data.cpu().max(1) all_programs.append(programs_pred.data.cpu().clone()) all_scores.append(scores.data.cpu().clone()) all_probs.append(probs.data.cpu().clone()) ......... Best, Manoj On Fri, Oct...

yeah that would be good if i could see anything on the screen . Everything just freezes even the monitor go dark and i have to restart the machine. Could...

Yes thats correct. At the time I didnot have a good logic to do it but essententially if you just images use the forward and if using pq features use...

Thanks for your feedback, I will try to improve over time.

Hi, Sorry to say that I have never run this under windows platform so i am unaware what could go wrong. Could you be more specific about which package are...