This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
If gazebo crashes/ or not able to load model | |
perfor rosdep init and update again | |
sudo rm /home/username/.ros/rosdep/sources.cache/index | |
sudo rm /etc/ros/rosdep/sources.list.d/20-default.list | |
sudo rosdep init | |
rosdep update |
./darknet detector train 'net.data' 'net.cfg' 'net.conv.14' -map -gpus 1,0
- if more than one gpu, then select how many/which gpu to use
- to disable Loss-Window use
-dont_show
flag - to see the mAP & Loss-chart during training on remote server without GUI add
-dont_show -mjpeg_port 8090 -map
flags then open URLhttp://ip-address:8090
in browser
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <vector> | |
#include <algorithm> | |
#pragma once | |
#define MATRIX_SIZE 5 | |
struct location { | |
int row ; | |
int col ; |