Michael Haas
Michael Haas
Very stupid workaround: ``` voron@voron-02:~/klippain_shaketune$ git diff diff --git a/src/is_workflow.py b/src/is_workflow.py index 5ae1370..c037828 100755 --- a/src/is_workflow.py +++ b/src/is_workflow.py @@ -371,6 +371,9 @@ class AxesMapFinder: with result_filename.open('w') as f: f.write(results) +...
FWIW, my patch above makes the actual error go away, but I still don't get any output because the CSV files in /tmp cannot be found - which doesn't make...
Hi, adding me `me too` here - hoping it adds value and not just noise :) I'm also seeing this issue in the following setup: * CUDA 11.7 installed on...
Hi @DBusAI, this is very cool! Can you open a PR with this change? You can also install `pip install pre-commit` and run `pre-commit -a` to automatically format your code...
Thinking about this a bit more, I also like the following, very simply approach: ``` features = [Category("foo"), Text("bar")] labels = [Category("MyLabel")] schema = Schema(features, labels, "bestbuy-category-prediction") ```
Hi @DBusAI, thanks for bringing some great ideas. I have been thinking about some of the same things, such as the API simplification. That should be easily doable. Regarding your...
This is actually not so easy to implement. The requests library strongly prefers that a binary stream (or data) is passed: https://requests.readthedocs.io/en/latest/user/advanced/#streaming-uploads The naive solution is to read the entire...