Skip to content

Instantly share code, notes, and snippets.

View andreipit's full-sized avatar

andreipit

View GitHub Profile
@atifaziz
atifaziz / BuildNeuralNetworkDemo.cs
Last active November 9, 2023 19:59
Neural Network Demo with C# by James McCaffrey, MSR and Build 2013 versions
// http://channel9.msdn.com/Events/Build/2013/2-401
// http://www.quaetrix.com/Build2013.html
using System;
// For 2013 Microsoft Build Conference attendees
// June 25-28, 2013
// San Francisco, CA
//
// This is source for a C# console application.
@damianavila
damianavila / remove_output.py
Created April 3, 2013 22:05
Remove output from IPython notebook from the command line (dev version 1.0)
"""
Usage: python remove_output.py notebook.ipynb [ > without_output.ipynb ]
Modified from remove_output by Minrk
"""
import sys
import io
import os
from IPython.nbformat.current import read, write