Skip to content

Instantly share code, notes, and snippets.

View jeethu's full-sized avatar

Jeethu Rao jeethu

View GitHub Profile
@robertmeta
robertmeta / gist:7f03d181f9b33eb4c074
Last active March 18, 2022 13:48
All the songs from compilations on Pandora Journey
https://www.youtube.com/channel/UCmVGp8jfZ0VLg_i8TuCaBQw
1 revolution music - epic expedition
1 revolution music - leader of men
1 revolution music - pursuit of justice - tom dimartino
1 revolution music - righteous fall
1 revolution music - salute to the brave
1 revolution music - united we stand
8dawn music - blades of destiny
8dawn music - buried power
from keras.models import Sequential
from keras.layers.core import Dense, Dropout, Activation, Flatten
from keras.layers.convolutional import Convolution2D, MaxPooling2D
from keras.layers.normalization import BatchNormalization
#AlexNet with batch normalization in Keras
#input image is 224x224
model = Sequential()
model.add(Convolution2D(64, 3, 11, 11, border_mode='full'))
@adeekshith
adeekshith / .git-commit-template.txt
Last active October 20, 2024 21:10 — forked from Linell/.git-commit-template.txt
This commit message template helps you write great commit messages and enforce it across teams.
# <type>: (If applied, this commit will...) <subject> (Max 50 char)
# |<---- Using a Maximum Of 50 Characters ---->|
# Explain why this change is being made
# |<---- Try To Limit Each Line to a Maximum Of 72 Characters ---->|
# Provide links or keys to any relevant tickets, articles or other resources
# Example: Github issue #23
@egmontkob
egmontkob / Hyperlinks_in_Terminal_Emulators.md
Last active July 5, 2025 17:24
Hyperlinks in Terminal Emulators
@smpanaro
smpanaro / README.md
Created June 24, 2024 03:27
CoreML Model Introspection Script

This script lets you expose a CoreML model's intermediate tensors as outputs.

Why?

If your CoreML model is spitting out garbage and the inputs look correct it can be painful to find where things are failing in the middle of your model.

How?

Download the script, grab your .mlpackage and fire up https://netron.app to find an interesting tensor.

netron-example