Skip to content

Instantly share code, notes, and snippets.

View yunho0130's full-sized avatar
๐ŸŽฏ
Focusing

Yunho Maeng yunho0130

๐ŸŽฏ
Focusing
View GitHub Profile
PassengerId Survived Pclass Name Sex Age SibSp Parch Ticket Fare Cabin Embarked
1 0 3 Braund, Mr. Owen Harris male 22 1 0 A/5 21171 7.25 S
2 1 1 Cumings, Mrs. John Bradley (Florence Briggs Thayer) female 38 1 0 PC 17599 71.2833 C85 C
3 1 3 Heikkinen, Miss. Laina female 26 0 0 STON/O2. 3101282 7.925 S
4 1 1 Futrelle, Mrs. Jacques Heath (Lily May Peel) female 35 1 0 113803 53.1 C123 S
5 0 3 Allen, Mr. William Henry male 35 0 0 373450 8.05 S
6 0 3 Moran, Mr. James male 0 0 330877 8.4583 Q
7 0 1 McCarthy, Mr. Timothy J male 54 0 0 17463 51.8625 E46 S
8 0 3 Palsson, Master. Gosta Leonard male 2 3 1 349909 21.075 S
9 1 3 Johnson, Mrs. Oscar W (Elisabeth Vilhelmina Berg) female 27 0 2 347742 11.1333 S
์•ฝ์ž ํ•œ๊ตญ์ •๋ณด๊ณผํ•™ํšŒ (2020) BK21ํ”Œ๋Ÿฌ์Šค IF (2018) KAIST CS (2022) SNU CSE (2024.4) POSTECH CSE (2023.10) ํ‰๊ท  (์ •๊ทœํ™”) ํ•™ํšŒ๋ช… DBLP Key
AAAI ์ตœ์šฐ์ˆ˜ 4 O O ์ตœ์šฐ์ˆ˜ 1.00 AAAI Conference on Artificial Intelligence (AAAI) conf/aaai
AAMAS ์šฐ์ˆ˜ 2 0.20 International Joint Conference on Autonomous Agents & Multiagent Systems (AAMAS) conf/atal
ACCV ์šฐ์ˆ˜ 1 ์šฐ์ˆ˜ 0.25 Asian Conference on Computer Vision (ACCV) conf/accv
ACL ์ตœ์šฐ์ˆ˜ 4 O O ์ตœ์šฐ์ˆ˜ 1.00 Annual Meeting of the Association for Computational Linguistics (ACL) conf/acl
ACL Findings ์šฐ์ˆ˜ 0.10 Findings of ACL series/findacl
ACSAC ์šฐ์ˆ˜ 2 ์šฐ์ˆ˜ 0.30 Annual Computer Security Applications Conference (ACSAC) conf/acsac
AIED ์šฐ์ˆ˜ 0.10 International Conference on Artificial Intelligence in Education (AIED) conf/aied
AISTATS ์šฐ์ˆ˜ 1 ์šฐ์ˆ˜ 0.25 International Conference on Artificial Intelligence and Statistics (AISTATS) conf/aistats
ANCS ์šฐ์ˆ˜ 1 ์šฐ์ˆ˜ 0.25 Symposium on Architectures for Networking and Communications Systems (ANCS) conf/ancs
@yunho0130
yunho0130 / guide.md
Created February 23, 2021 13:13 — forked from rishubil/guide.md
SCE-TTS: ๋‚ด ๋ชฉ์†Œ๋ฆฌ๋กœ TTS ๋งŒ๋“ค๊ธฐ

๐Ÿ“— ๋ฌธ์„œ ์ฃผ์†Œ๊ฐ€ https://sce-tts.github.io/ ์œผ๋กœ ๋ณ€๊ฒฝ๋˜์—ˆ์Šต๋‹ˆ๋‹ค.

SCE-TTS์™€ ๊ด€๋ จํ•œ ์ตœ์‹  ์ •๋ณด๋Š” ์œ„ ์ฃผ์†Œ๋ฅผ ์ฐธ๊ณ ํ•ด์ฃผ์„ธ์š”!

์•„๋ž˜์˜ ๋‚ด์šฉ์€ ์ด์ „ ๋ฌธ์„œ ๋‚ด์šฉ์ž…๋‹ˆ๋‹ค.


SCE-TTS: ๋‚ด ๋ชฉ์†Œ๋ฆฌ๋กœ TTS ๋งŒ๋“ค๊ธฐ

##Download CSV file from Kaggle
# https://www.kaggle.com/ehallmar/daily-historical-stock-prices-1970-2018#historical_stock_prices.csv
##Hurst Exponent
simpleHurst <- function(y){
sd.y <- sd(y)
m <- mean(y)
y <- y - m
max.y <- max(cumsum(y))
min.y <- min(cumsum(y))
install.packages("kohonen")
require(kohonen)
data <- read_csv("mac_backup/# Ph_d/19-01/ํŒŒ์ด๋‚ธ์Šค์ธํ…”๋ฆฌ์ „์Šค(IIE7561-01)/week07/2LendingClub_data_preperation.csv")
data_matrix <- as.matrix(scale(data))
mygrid = somgrid(3, 4, "hexagonal")
som_model <- supersom(data_matrix, grid = mygrid)
som_model$unit.classif
@yunho0130
yunho0130 / 04_main_Hyperparameter_Tuning.ipynb
Created November 9, 2018 04:15
Adding Multiprocessing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
# -*- coding: utf-8 -*-
# Car Class
class Car:
def __init__(self, model_name):
self.model_name = model_name
# Stop
def stop(self):
# Engine Stop
print "์—”์ง„์„ ์ •์ง€ํ•ฉ๋‹ˆ๋‹ค."
@yunho0130
yunho0130 / Calculator2.py
Created October 16, 2018 08:06
2018-10-16
# -*- coding: utf-8 -*-
"""
Created on Tue Sep 18 16:25:52 2018
@author: HDC_USER
# -*- coding: utf-8 -*-
"""
Created on Tue Sep 18 16:25:52 2018
@author: HDC_USER
"""
# ํ•จ์ˆ˜๊ฐ€ ์‹คํ–‰๋˜๋ฉด ๋ฆฌํ„ด๊ฐ’์ด ์กด์žฌํ•˜๋ฏ€๋กœ
# ๊ฒฐ๊ณผ๊ฐ’์„ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค.
def mul(val1, val2):
return int(val1)*int(val2)
# -*- coding: utf-8 -*-
"""
Created on Tue Sep 18 16:25:52 2018
@author: HDC_USER
"""
print "Multiple Calculator"
num1 = raw_input("Input 1: ")