Skip to content

Instantly share code, notes, and snippets.

View pignuante's full-sized avatar
😭
I may be slow to respond.

Pignu pignuante

😭
I may be slow to respond.
View GitHub Profile
date value
2007-04-23 93.24
2007-04-24 95.35
2007-04-25 98.84
2007-04-26 99.92
2007-04-29 99.8
2007-05-01 99.47
2007-05-02 100.39
2007-05-03 100.4
2007-05-04 100.81
[
{
"연관키워드": "디저트",
"월간검색수_모바일": 30300
},
{
"연관키워드": "DESSERT",
"월간검색수_모바일": 10400
},
{
[
{
"연관키워드": "디저트",
"월간검색수_모바일": 30300
},
{
"연관키워드": "DESSERT",
"월간검색수_모바일": 10400
},
{
[
{
"year": 2011,
"value": 45
},
{
"year": 2012,
"value": 47
},
{
year value
2011 45
2012 47
2013 52
2014 70
2015 75
2016 78
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@pignuante
pignuante / model_summary.txt
Created August 16, 2018 06:53 — forked from bzamecnik/model_summary.txt
Residual LSTM in Keras
____________________________________________________________________________________________________
Layer (type) Output Shape Param # Connected to
====================================================================================================
input_1 (InputLayer) (None, 32, 10) 0
____________________________________________________________________________________________________
lstm_1 (LSTM) (None, 32, 10) 840 input_1[0][0]
____________________________________________________________________________________________________
add_1 (Add) (None, 32, 10) 0 input_1[0][0]
lstm_1[0][0]
____________________________________________________________________________________________________
@pignuante
pignuante / oop_ann.ipynb
Created August 14, 2018 11:07
keras_ann_dnn
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
import time
def bubbleSort(l):
startTime=time.time()
print("start : {}".format( l))
for s in range(len(l)-1):
for e in range(len(l)-1, s, -1):
if l[e] < l[e-1]:
l[e],l[e-1] = l[e-1],l[e]
print("changed : {}".format(l))