Skip to content

Instantly share code, notes, and snippets.

View codertimo's full-sized avatar
😂
Crazy at NLP

Junseong Kim codertimo

😂
Crazy at NLP
View GitHub Profile
#!/usr/bin/env python
# coding=utf-8
# Copyright 2020 The HuggingFace Team All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
@codertimo
codertimo / train.py
Created February 23, 2018 08:15
Keras accuracy metric for sequence predicting with padding
"""
Description:
When we handle the word sequence predicting problem on Keras, we add paddings at the last of blank space.
But this makes wrong calculation at Keras default accuracy function. (It calculate the padding as correct too).
To solved that problem, I made new custom function for word sequence predicting problem.
It isn't calculate accuracy of the padding section, only calculate at actual word part
Junseong Kim, codertimo@gmail.com
"""
@codertimo
codertimo / encryption_algorithm.py
Created June 7, 2017 14:05
[KMU_SW_17] 시저 암호 알고리즘
def is_small(n):
if 97 <= n <= 122:
return True
else:
return False
def shift(c, shift_count):
if not (65 <= ord(c) <= 90 or 97 <= ord(c) <= 122):
return c
@codertimo
codertimo / encryption_algorithm.py
Created June 7, 2017 14:05
[KMU_SW_17] 시저 암호 알고리즘
def is_small(n):
if 97 <= n <= 122:
return True
else:
return False
def shift(c, shift_count):
if not (65 <= ord(c) <= 90 or 97 <= ord(c) <= 122):
return c
@codertimo
codertimo / cal_day.py
Last active April 12, 2017 09:12
KMU SW17 과학과소프트웨어적사고 lab2 / n년 n월 n일로부터 n일후의 날짜는???
from datetime import datetime, timedelta
import random
'''
국민대학교 소프트웨어학과 17학번 김준성
과학과소프트웨어적사고 과제2 : n년 n월 n일로부터 n일 후의 날짜를 구하라!
'''
'''
1년 1월 1일부터 입력한 연도까지의 날짜수를 계산하는 함수힙니다