mohan@user:~/git/thesis/TensorRT/build$ colormake -j$(nproc)
[ 1%] Creating directories for 'third_party.protobuf'
[ 1%] Performing download step (download, verify and extract) for 'third_party.protobuf'
-- Downloading...
dst='/home/mohan/git/thesis/TensorRT/build/third_party.protobuf/src/protobuf-cpp-3.0.0.tar.gz'
timeout='none'
inactivity timeout='none'
-- Using src='https://github.com/google/protobuf/releases/download/v3.0.0/protobuf-cpp-3.0.0.tar.gz'
[ 2%] Building CXX object plugin/CMakeFiles/nvinfer_plugin_static.dir/batchTilePlugin/batchTilePlugin.cpp.o
This file contains 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
<head> | |
<link rel="stylesheet" href="styles.css"> | |
</head> |
This file contains 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
conda create --name py2 python=2.7 | |
conda activate py2 | |
conda create --name py3 python=3.5 | |
This file contains 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
$ sudo apt-get install ros-kinetic-catkin python-catkin-tools |
This file contains 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
ldconfig -p | grep python |
This file contains 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
virtualenv -p /usr/bin/python3 segmappyenv | |
source segmappyenv/bin/activate |
This file contains 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
npm install -g @angular/cli | |
ng --version //tells you if ng is properly installed | |
ng new <name of the project> //creates new project | |
ng serve --open //opens it in the browser | |
ng generate component/NodeGraphs //creates a new folder called NodeGraphs in Angular |
This file contains 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
sudo apt-get install cmake-curses-gui |
This file contains 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
This is an example, do not try to run this | |
catkin_create_pkg <package_name> [depend1] [depend2] [depend3] |
This file contains 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
import tensorflow as tf | |
from tensorflow.keras.optimizers import Adam | |
from tensorflow.keras.models import load_model | |
from keras_loss_function.keras_ssd_loss_tf2 import SSDLoss # added for TF2.0 | |
from keras_layers.keras_layer_AnchorBoxes import AnchorBoxes | |
from ssd_encoder_decoder.ssd_output_decoder import decode_detections, decode_detections_fast | |
## imports used for pruning | |
import tensorflow_model_optimization as tfmot | |
import numpy as np | |
import cv2 |
OlderNewer