The Effect of Using an Auto-Generated Anime Avatar on Player-Avatar Identification

The Effect of Using an Auto-Generated Anime Avatar on Player-Avatar Identification ABSTRACT Game avatars are a way to represent players...

Daily codewars

1. Find the odd int Given an array of integers, find the one that appears an odd number of times....

Paper Review

What Have We Achieved on Text Summarization? Aiming to gain more understanding of summarization systems with respect to their strengths...

Dictionary의 'Get' 메소드 사용!

Dictionary의 ‘Get’ 메소드 사용해보기 from collections import defaultdict sample_dict = defaultdict() sorted(sample_dict, key=sample_dict.get, reverse=True) sorted(sample_dict.items(), key=lambda x:x[1], reverse=True) # 위...

TensorFlow Callback Function

딥러닝 모델을 학습시킬때 콜백함수를 활용하면 목표성능에 도달했을 때 학습을 정상적으로 완료시킬 수 있다. tf.keras.callbacks.Callback 모듈을 상속하는 클래스를 만들고, 학습 완료...

MathJax Sample Post

수식은 이렇게 통상적으로 피타고라스 정리라고 하면 $a^2 + b^2=c^2$를 의미하는데, 이 때 $a$와 $b$는 각각 직각삼각형의 밑변의 길이와 높이를 의미하며,...