irmo322

Results 6 issues of irmo322

How does ScriptableObject-Architecture differ from [unity-atoms](https://github.com/AdamRamberg/unity-atoms) ? What should be considered before choosing between the two ? After watching Ryan Hipple's talk, I searched the web for implementations of the...

question

I'm trying to extend cerberus behavior as it is done with custom coercers in documentation: https://docs.python-cerberus.org/en/stable/customize.html#custom-coercers The example given in documentation fails if the schema contains a list. Here is...

Hi, I'm having trouble with following code: ``` import wordsegment wordsegment.load() text = "The article went on to say, “For in the pizza shops rich and poor harmoniously congregate; they...

### Actions before raising this issue - [X] I searched the existing issues and did not find anything similar. - [X] I read/searched [the docs](https://docs.cvat.ai/docs/) ### Steps to Reproduce 1....

bug

Hi, `Visualizer` class has a method named `get_random_items(n_samples)` in which dataset items are chosen using `random.choices`. I expect `get_random_items` to not choose the same item multiple times, which can occur...

Hi, Executing this simple `test_dm.py` with pytest shows a `DeprecationWarning`: ```python import datumaro as dm def test_dm_bbox(): bbox = dm.Bbox(1, 2, 3, 4) ``` ``` $ pytest test_dm.py ============================================================================================================================= test...