Skip to content

Instantly share code, notes, and snippets.

View manbharae's full-sized avatar

Manio Bharae manbharae

View GitHub Profile
@manbharae
manbharae / live_loss_plot_keras.ipynb
Created February 27, 2018 21:00 — forked from stared/live_loss_plot_keras.ipynb
Live loss plot for training models in Keras
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@manbharae
manbharae / csv_splitter.py
Created February 12, 2018 22:57 — forked from jrivero/csv_splitter.py
A Python CSV splitter
import os
def split(filehandler, delimiter=',', row_limit=10000,
output_name_template='output_%s.csv', output_path='.', keep_headers=True):
"""
Splits a CSV file into multiple pieces.
A quick bastardization of the Python CSV library.
Arguments: