Kim
Bert sentiment analysis(imdb)
IMDB bert keras 홈페이지 튜토리얼에 있는 bert는 질문에 대한 답변을 예상하는 모델이라 구글링으로 여러 colab에 있는 내용과 튜토리얼을 섞어서 data는 imdb를 사용하는 sentiment analysis 만듬...

Deep Learning, 최근 공부한 것들
책과 유튜브로 딥러닝 공부를 하고 있다. 목표는 Django + 간단한 모델 테스트 모두를 위한 딥러닝. 한강의당 평균 10~20분 사이고, 쉽게 설명해 주신다. 예제도 github에 올라와...

keras Cudnn failed to initialize
실패 상황 딥러닝 강의를 공부하던중에 https://github.com/hunkim/DeepLearningZeroToAll/blob/master/tf2/tf2-11-1-mnist_cnn.py https://github.com/hunkim/DeepLearningZeroToAll/blob/master/tf2/tf2-12-4-rnn_long_char.py 두 예제를 로컬에서 테스트 했을때 각각 cnn fail Failed to get convolution algorithm. This is probably because cuDNN...

Zeroformatter in Unity
작업 UnityEngine을 사용하면서 GameData를 binary로 저장, 읽는 부분을 개선하고 싶음 GameData의 내용을 읽어 들일때 값 하나 하나 파싱 하면서 읽는부분을 간편하게 변경! 변경전 구조: GameData...

C# MakeGenericMethod
사용 목적 void Func() { object objClass = MakeClass(); // object를 받는다 var classType = objClass.GetType(); GenericClass gClass = new GenericClass(); // 문제 발생 gClass.GenericFunc<classType>()...