Skip to content

Instantly share code, notes, and snippets.

View samkugji's full-sized avatar
💭
I may be slow to respond.

DS samkugji

💭
I may be slow to respond.
  • Korea, Canada
View GitHub Profile
@FinanceData
FinanceData / 발틱운임지수(BDI)와 해양운송업(팬오션).ipynb
Last active November 8, 2017 12:49
발틱운임지수와 해양운송업(팬오션)
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@lexifdev
lexifdev / wik.py
Last active September 29, 2017 08:53
import json
import requests
from bs4 import BeautifulSoup as Soup
from googleapiclient.discovery import build
import config
def correct(text):
text = text.replace('\n', ' ')
@gbishop
gbishop / Args.ipynb
Last active July 18, 2022 11:43
Allow arguments to be passed to notebooks via URL or command line.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@haje01
haje01 / TensorFlow 시작하기.md
Last active May 3, 2024 07:30
TensorFlow 시작하기

텐서플로우 시작하기

글쓴이: 김정주(haje01@gmail.com)

이 문서는 텐서플로우 공식 페이지 내용을 바탕으로 만들어졌습니다.


소개

텐서플로우(TensorFlow)는 기계 학습과 딥러닝을 위해 구글에서 만든 오픈소스 라이브러리입니다. 데이터 플로우 그래프(Data Flow Graph) 방식을 사용하였습니다.

@chezou
chezou / visword2vec.py
Last active December 2, 2020 20:52
Visualizer word2vec data for ipython notebook
# -*- coding: utf-8 -*-
"""
given a word and visualize near words
original source code is https://github.com/nishio/mycorpus/blob/master/vis.py
"""
import word2vec_boostpython as w2v
from sklearn.decomposition import PCA
import matplotlib.pyplot as plt
import matplotlib.font_manager
@kevin-smets
kevin-smets / iterm2-solarized.md
Last active May 27, 2024 15:10
iTerm2 + Oh My Zsh + Solarized color scheme + Source Code Pro Powerline + Font Awesome + [Powerlevel10k] - (macOS)

Default

Default

Powerlevel10k

Powerlevel10k

@upepo
upepo / Data_Wrangling.md
Last active December 5, 2016 14:16
기본적인 데이터 전처리 스킬정리

Data Wrangling (데이터 전처리)

Text Processing

데이터마이닝에 필요한 텍스느 전처리 기술 소개. 리눅스 환경에서 bash와 python을 이용하여 텍스트 데이터를 필요한 형태로 처리하는데 중점을 둔다.