Skip to content

Instantly share code, notes, and snippets.

View reinzor's full-sized avatar
🤖

Rein Appeldoorn reinzor

🤖
View GitHub Profile
@bogger
bogger / deploy.prototxt
Last active May 28, 2022 21:55
GoogLeNet_cars
name: "GoogleNet"
input: "data"
input_dim: 10
input_dim: 3
input_dim: 224
input_dim: 224
# hierarchy 1
# conv -> relu -> pool -> lrn
@ruffsl
ruffsl / Dockerfile
Last active February 28, 2024 23:49
Small ROS Network Example
FROM ros:indigo-ros-base
# install ros tutorials packages
RUN apt-get update && apt-get install -y \
ros-indigo-ros-tutorials \
ros-indigo-common-tutorials \
&& rm -rf /var/lib/apt/lists/
@l1va
l1va / install_cartographer_proto_locally.sh
Last active July 2, 2020 15:41
Custom cartographer installation to not update system protobuf
cd ~/catkin_ws
# Install wstool and rosdep.
sudo apt-get update
sudo apt-get install -y python-wstool python-rosdep ninja-build
# Build sources with old protobuf firstly
catkin_make_isolated --install --use-ninja -DCATKIN_ENABLE_TESTING=false
wstool init src