Skip to content

Instantly share code, notes, and snippets.

View manangandhi7's full-sized avatar
🎯
Focusing

Manan Gandhi manangandhi7

🎯
Focusing
  • Planet Earth
View GitHub Profile
@manangandhi7
manangandhi7 / TileTest.cpp
Last active March 18, 2018 13:58
HackerRank Brick tiling problem solution (https://www.hackerrank.com/challenges/brick-tiling) with caching
// TileTest.cpp : Defines the entry point for the console application.
//Manan Gandhi
#include <iostream>
#include <unordered_map>
#include <string>
#include <sstream>
using namespace std;
# This example shows how to use keras TensorBoard callback
# with model.train_on_batch
import tensorflow.keras as keras
# Setup the model
model = keras.models.Sequential()
model.add(...) # Add your layers
model.compile(...) # Compile as usual