Vaibhav Kumar

Results 6 comments of Vaibhav Kumar

Please make sure you're pasting url to a **public youtube playlist**. This project does not support playing individual videos or private playlists/videos.

Yes, I noticed it a while ago. I tried get_playlist2() but it was crashing for some reason. It was a long while ago though. I guess we have to wait...

I was getting the exact same error for `torch==1.1.0` Changing ``` self.emb_dropout = nn.Dropout(0.50, inplace=True) self.lstm_dropout = nn.Dropout(0.20, inplace=True) ``` to ``` self.emb_dropout = nn.Dropout(0.50) self.lstm_dropout = nn.Dropout(0.20) ``` fixed...

working on analytics rn... you make the dashboard.

yeah openaieval is so clunky...

hmm I should've seen this coming. Breaking the input into chunks of max_len and running entropy optim on all them separately and then combining them is the way to go.