Skip to content

Instantly share code, notes, and snippets.

View sachinkmohan's full-sized avatar
🎯
Focusing

Sachin Mohan sachinkmohan

🎯
Focusing
View GitHub Profile
@sachinkmohan
sachinkmohan / npm_error.md
Created July 19, 2022 16:05
Error on starting the React Application

I am getting the folowing error when I am using npm start

sachin@Sachins-Mac voting_app % npm start

> voting_app@1.1.0 start
> npm run server


> voting_app@1.1.0 server
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
.idea/
# C extensions
*.so
# Distribution / packaging
@sachinkmohan
sachinkmohan / tfmot.md
Last active April 13, 2022 12:21
Tensorflow model optimization involving pruning and quantization

Pruning on the whole model

import tensorflow_model_optimization as tfmot 
from tensorflow_model_optimization.python.core.sparsity.keras import pruning_schedule as pruning_sched

prune_low_magnitude = tfmot.sparsity.keras.prune_low_magnitude

# Compute end step to finish pruning after 2 epochs.
batch_size = 8
epochs = 2
@sachinkmohan
sachinkmohan / make_error_tensorRT_x86_build.md
Created March 18, 2022 10:50
Make error in TensorRT x86 build
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
@sachinkmohan
sachinkmohan / SSD7_Inference.py
Last active March 3, 2022 13:21
Incorrect shape after inference in TF and TensorRT
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
This is an example, do not try to run this
catkin_create_pkg <package_name> [depend1] [depend2] [depend3]
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
virtualenv -p /usr/bin/python3 segmappyenv
source segmappyenv/bin/activate