MaximeSongIdris

Results 7 comments of MaximeSongIdris

Yes, running `python -m asyncio my_script.py` will open an interactive session without executing `my_script.py` So the base implementation of Future doesn't require pairing it with asyncio ? Is there anyting...

It's not working, I need asyncio, but I don't know if it is due to the Future object, or due to StarPU

Found this https://stackoverflow.com/questions/29902908/what-is-the-difference-between-concurrent-futures-and-asyncio-futures Seems like StarPU use asyncio.Future which need asyncio to work, while concurrent.Future works without it

![image](https://github.com/user-attachments/assets/30620a5b-ac20-4f71-bb61-a5751ea5d7e0) yes, you are actually using all of the disk space

https://github.com/deepinv/deepinv/blob/main/deepinv/datasets/flickr2k.py for an example of not using doctest (>>>) but instead, a simple paragraph of codes

Yes, like in https://github.com/deepinv/deepinv/blob/main/deepinv/datasets/flickr2k.py, we can add a verification of the data integrity at self.root to determine whether or not to re-download the dataset, but it takes some times to...

in Flickr2k, I check that the file structure is correct and the content of image files are correct But in case of FMD, we can maybe just add a very...