Mikhail Sveshnikov

Results 120 comments of Mikhail Sveshnikov

We have `mlem -v` that enables `DEBUG` logging and `mlem --tb` that prints exception if there is any. We can add `--tb` effect into `-v` option, but I suggest keep...

If the resulting output is the same, I'd say let's change it. Don't forget to set exit code to 1 since you not re-raising. If output somehow different, let's see...

Sorry for long delay, I was on vacation :) I reviewed your code. Unfortunately I forgot that it's very convenient to have original exception raised (for tests or if somebody...

I guess we don't support it now and it will take some time to implement it for general case. We probably can add checks for number of arguments for torch...

Basically, when you use celery tasks, instead of direct call, it serializes them and puts into queue (external broker like rabbitmq or redis). Then you start your celery worker, which...

As I mentioned, the actual order of panels in help text is the order of keys in some dict inside formatting function. So probably there is no way to influence...

We can wrap all the `Location` methods in try/except. But that's not enough, since we use `fs` methods internally all the time and any one of those calls can fail...

It's not the problem to raise some specific exception. It's a problem to catch errors from fsspec because there is no specific exception that we can catch. Generally fs implementations...

So the only way is to narrow try/except blocks to every fsspec call so we can be sure that it's fsspec call that broke. And that brings us to my...

In the next release we will improve report update logic? you will also be able to remove or update reports/projects without service restart, not only add new stuff. As for...