Maxim Zhiltsov

Results 135 comments of Maxim Zhiltsov

Re: https://github.com/python-attrs/attrs/issues/655#issuecomment-888838139 Having read this thread I, personally, think that the idea from https://github.com/python-attrs/attrs/issues/146#issuecomment-462143779 is worth considering. It is also similar to what I was thinking of in https://github.com/python-attrs/attrs/issues/655#issuecomment-888193568. The...

Hi, we have tried to utilize `default_if_none` and found it is a bit verbose and clumsy - it does not have access to the attribute definition, so we might need...

It is a bit hard to recall all the details after a year, but I'll try :smile:. I'm pretty sure I tried to simulate the C++ struct member definition behaviour....

Hi, thanks for the response. Yes, I'm also thinking about this `del` call. The example: ``` mkdir -p test_git cd test_git mkdir -p a touch a/f.txt python import git rewriter...

In the first iteration (#238) the following features are added: General: - Added an option to record dataset operations and navigate over them - A project now contains several datasets,...

There are more things we can do: - utilize the new library API (https://www.attrs.org/en/stable/api.html#next-generation-apis): define, field, frozen - remove `repr_ns` in nested classes Maybe, we can refactor `Config` using attrs,...

Added point clouds in #245

- I guess, users typically would want more interactivity in such things, so maybe using TensorBoard is a good idea for this. - Consider using bits of the [diff command](https://github.com/openvinotoolkit/datumaro/blob/develop/datumaro/cli/contexts/project/diff.py)...

Hi! There is no such transformation yet, but you can easily create your own one. As far as I understand, you either need to use `cv2.threshold` or `cv2.cvtColor`. To make...