Clément Dumas

Results 29 comments of Clément Dumas

Your website is down 😔

I have this ugly code: ```rust let mut mask = Tensor::ones(&[3,3], (tch::Kind::Float, device)); mask.index_put_( &[Some(Tensor::of_slice(&[1])), Some(Tensor::of_slice(&[2]))], &Tensor::zeros(&[1], (tch::Kind::Float, device)), false, ); ``` Which works as expected: ``` Mask: 1 1...

Actually you can do ```rust use tch::IndexOp; mask.i((0,1)).fill_(-1.); ```

This is indeed annoying, I would love to see this fixed

Does the package use cuda if it's available or is it CPU inference only @rom1504 ?

There a lot of extensions missing (e.g. copilot, live share etc.)

For the record, I wanted to have argument groups and ended up using the solution above with in place creation of the vector instead of multiple push_backs. But it would...

Seems like the API won't work for `@gmail.com` account now : https://issuetracker.google.com/issues/228826345?pli=1

Apparently the process changed and is described in this article https://developers.google.com/drive/api/guides/manage-sharing#transfer-consumer-account

> Any updates on this? I am in need of transferring every single file on one of my Google Drive accounts to another, and it's a pain. As it stands,...