Skip to content

Instantly share code, notes, and snippets.

@greentec
greentec / chapter9-ipynb.ipynb
Created May 2, 2020 01:50
Chapter9.ipynb Copy2
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@greentec
greentec / chapter9-ipynb.ipynb
Last active May 1, 2020 13:02
Chapter9.ipynb Copy
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@greentec
greentec / save_csv.py
Last active November 20, 2018 13:40
save csv with row value
with open('sample.csv') as f:
prev = []
for line in f.readlines():
print(prev, line)
if len(prev) == 0:
prev.append(line)
elif prev[-1] != ','.join(line.split(',')):
file_name = ''.join(prev[-1].strip().split(',')) + '.csv'
with open(file_name, 'w') as new_file:
for prev_line in prev:
@greentec
greentec / PixelCNN_practice.ipynb
Created April 27, 2018 12:55
PixelCNN - MNIST
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.