Veith Röthlingshöfer

Results 13 comments of Veith Röthlingshöfer

I switched it to ` gpu_id_array=[0:0]` that does the trick. However, the indexing does not work if you pass in a list of images to segment that is not as...

I think this is the expected behavior. Let me explain why: - typing.Optional indicates that something may be None, not that a parameter is actually optional in the sense that...

I think the confusion here is the name "Optional" in python. Please see the description in the 3rd "Note" in [this section](https://mypy.readthedocs.io/en/stable/kinds_of_types.html#optional-types-and-the-none-type) about types in python. If you want to...

Can you provide more details what you need? Are you aware of `DataClassJson.schema().loads()`?

This works: ```python def resnet50(weights_path=None, **kwargs): """Constructs a ResNet-50 model. """ model = ResNet(Bottleneck, [3, 4, 6, 3], **kwargs) if weights_path: import pickle with open(weights_path, 'rb') as f: obj =...

Sorry for responding so late, I'll try to reproduce this in the next week.

This should only happen if the folder you are downloading to already contains all the images in the board.

Same for me, I renamed the project root folder and then it broke. Even if I deleted the .idea folder it does not work again. Edit: Got it to work...

I assume this is also caused by this issue: ```python from typing import List, Optional from dataclasses import field, dataclass @dataclass class Foo: x: Optional[List[str]] = field(default_factory=list) ``` which gives...

I implemented a pull request that goes into the direction of making this more customizable