• [논문 리딩] Donut: Document Understanding Transformer without OCR

    Donut: Document Understanding Transformer without OCR을 읽고 내용을 정리합니다. 내용 중 잘못 이해한 내용이 있다면 정정해주시면 감사하겠습니다. Abstract OCR 모듈에 의존적인 현행 VDU 시스템 → 연산 부하 증가 및 OCR 모듈로부터의 에러 전파 OCR 모듈을 기반으로 하지 않는 독립적인 end-to-end VDU 시스템을 제언 새로운 학습 태스크 학습시 요구되는 대단위 실제...


  • [논문 리딩] BROS: A Pre-trained Language Model Focusing on Text and Layout for Better Key Information Extraction from Documents

    BROS: A Pre-trained Language Model Focusing on Text and Layout for Better Key Information Extraction from Documents을 읽고 내용을 정리합니다. 내용 중 잘못 이해한 내용이 있다면 정정해주시면 감사하겠습니다. Abstract KIE from document requires understanding the contextual and spatial semantics in 2D space. going back to the basic: effective combination of...


  • [논문 리딩] One-shot Key Information Extraction from Document with Deep Partial Graph Matching

    One-shot Key Information Extraction from Document with Deep Partial Graph Matching을 읽고 내용을 정리합니다. 내용 중 잘못 이해한 내용이 있다면 정정해주시면 감사하겠습니다. Abstract One-shot KIE using partial graph matching DKIE dataset (2.5K, from mobile phones) Introduction 기존의 KIE 프로세스는 문자 인식 - 문자 분류 - 필드 라벨링 필드 라벨링에서의 one-shot...


  • Git SSH 설정하기

    매번 찾아보기 귀찮으니 Git SSH 설정하는 법을 정리한다. 리눅스 기준으로 정리함. SSH Key 생성 아래와 같이 서버에서 SSH Key를 생성 후 ssh-agent에 등록한다. # SSH Key 생성 > ssh-keygen Generating public/private rsa key pair. # 생성될 키의 경로를 입력 Enter file in which to save the key (/home/aicr/.ssh/id_rsa): id_rsa_test #...


  • AWS CLI를 활용한 s3 정적 웹사이트 배포 자동화

    다른 취미 등 필요한 일이 생길 때 서버리스 아키텍쳐로 정적 웹 어플리케이션을 코딩해 사용하는 편이다. 컴투스의 모바일 게임 원더택틱스 - 이젠 거진 망한듯; - 를 즐길 때 만들었던 WonderEquips라든지, 최근 말리폭스를 한창 즐길 때 유저 토너먼트나 마스터 가이드를 기록하기 위해 만들었던 사이트 같은게 있었다. 직업 어드밴티지인지 취미에 일정 이상 여력을...