Bruno

Results 15 comments of Bruno

Is there a solution to build on ARM systems that you have not documented here @fwilliams ?

From my understanding the problem comes from geogram, which (as you mentioned) has the -m64 tag that breaks the ARM build. In the geogram repo they mention a way to...

I'm actually working on a Khadas Vim3 board (https://www.khadas.com/vim3). I will see what i can do to make it work. Any initial hints what I should look out for?

Hey @zhiltsov-max so the distribution of my dataset is the following: ``` Label distribution: * bench: 418366 -- 2.5% * bicycle: 215504 -- 1.3% * bus: 144856 -- 0.9% *...

Thanks for the extensive reply. I'm trying to integrate your code but I'm having some problems with the python version of datumaro. Due to some previous operations I have a...

And my second question was if there is an easy way to pass variables to the `Sampler` class from your example?

```python class Sampler(Transform): def __init__(self, extractor, label=None, number=None): super().__init__(extractor) self._label = label self._number = number def __iter__(self): anns = 0 label_idx = self._extractor.categories()[AnnotationType.label].find(self._label)[0] items = random.sample(list(self._extractor), len(list(self._extractor))) for item in...

Hey @kenjdavidson, thanks for the quick answer. I'm just parsing the message and then passing it to redux. ```JavaScript const onDataReceived = async (data: any) => { await data; let...

Hey @kenjdavidson, thanks for the tips. I will spent some time in this direction and will let you know if it is successful or there are open questions.