Skip to content

Instantly share code, notes, and snippets.

View indraforyou's full-sized avatar

Indranil Sur indraforyou

View GitHub Profile
@stared
stared / live_loss_plot_keras.ipynb
Last active February 25, 2023 10:20
Live loss plot for training models in Keras (see: https://github.com/stared/livelossplot/ for a library)
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@RichardBronosky
RichardBronosky / README.MD
Last active April 26, 2024 08:21
cb - A leak-proof tee to the clipboard - Unify the copy and paste commands into one intelligent chainable command.

cb

A leak-proof tee to the clipboard

This script is modeled after tee (see [man tee][2]) and works on Linux, macOS, Cygwin, WSL/WSL2

It's like your normal copy and paste commands, but unified and able to sense when you want it to be chainable.

This project started as an answer to the StackOverflow question: [How can I copy the output of a command directly into my clipboard?][3]

@indraforyou
indraforyou / backend_updated.py
Created November 21, 2016 00:46
Keras 3d Deconvolution
from keras.backend import *
from keras.backend.tensorflow_backend import _preprocess_conv3d_input, _preprocess_conv3d_kernel, _preprocess_border_mode, _postprocess_conv3d_output
def _preprocess_deconv3d_output_shape(shape, dim_ordering):
if dim_ordering == 'th':
shape = (shape[0], shape[2], shape[3], shape[4], shape[1])
return shape
def deconv3d(x, kernel, output_shape, strides=(1, 1, 1),
border_mode='valid',
@chetan
chetan / mesos_isolators.md
Last active January 18, 2019 21:55
Description of available Apache Mesos isolators