Luca Simonetto

Results 77 comments of Luca Simonetto

I had the same problem with mutmut on PyCharm. Turns out that mutmut is actually using the coverage file but the filenames in .coverage are not pointing to the right...

I can try and make a PR if you want

file `test.py` ```python from flask_restful import Resource class Test(Resource): @staticmethod def delete(): pass ``` `vulture test.py` `test.py:5: unused function 'delete' (60% confidence)`

@jendrikseipp how would you go with adding an external package into your whitelist without having to import it? That would define an external dependency which I don't think you would...

Makes sense, thank you. I'll write something down for flask when I have the time

@Oeil2L since I see this project is pretty stale, when I've completed this project I plan on forking the repo and add the necessary diagrams for the H-bridge version. I'll...

@FaradaysInfinity you can add the seed-related lines [here](https://github.com/nerdyrodent/VQGAN-CLIP/blob/ca7eee16fd9685a677acf2c7da79b3bd1c2269a9/predict.py#L196), and the cudnn-related lines [here](https://github.com/nerdyrodent/VQGAN-CLIP/blob/ca7eee16fd9685a677acf2c7da79b3bd1c2269a9/predict.py#L32). I rewritten most of this project from scratch, so I have everything in the same place but...

The weird thing is that even after searching online I couldn't figure out what other randomness source could be at play here

Sure, I don't feel very confident that I can implement that feature by myself as I don't know mongodb enough to understand its inner workings, but I will see what...