verderog

Results 22 comments of verderog

@MartyG-RealSense Thanks for the comments! I compiled the SDK from source with CUDA so I'm good there. When I last ran `ros2 topic hz /camera/color/image_raw`, I was seeing 29fps being...

@MartyG-RealSense No new updates. I'll go ahead and close this issue out.

I ran into this exact problem with MobileNet-v1 and tried your REPO_COMMIT fix from PR #41. That got me past the `attr` error, but unfortunately lead to a different problem:...

@giop98 Much thanks for the response! This is an out-of-the-box example -- I am just trying to rebuild things from scratch to understand more about how FINN works to eventually...

It appears that it might be related to the numpy version inside the docker container. I can launch an interactive docker container via `./run-docker.sh`. If I then launch `python3` and...

I can progress a little further if I comment out part of line 80 from `docker/Dockerfile.finn`: from: RUN pip install matplotlib==3.3.1 --ignore-installed to: RUN pip install matplotlib==3.3.1 # --ignore-installed After...

I decided to take a step back and checked out the v0.0.5 tag of this repo. The build fails with the original "attr" error reported above: ``` AttributeError: module 'attr'...

SUCCESS! I'm finally able to build finn-examples hash 7123fa53b73fcba0f80be009de2e83e0d48995f0. I have no clue if it works, but I was at least able to get through the build without error. Here...

Update-- I'm able to successfully run the rebuilt MobileNet-v1 model against the ImageNet validation data set and get identical accuracy results to the pre-built version. Observations: - The `FINNExampleOverlay` class...

@jsantiago-eProsima Thank you for the reply! I've read (and re-read) the section you linked, along with the ROS2 info on QoS. Even so, I still don't quite have a conceptual...