일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- Multi Task Learning Objectives for Natural Language Processing
- TOD 논문리뷰
- Exploring the Limits of Transfer Learning with a Unified Text-to-Text Transformer
- RuntimeError: DataLoader worker (pid(s) ) exited unexpectedly
- Exploring the Limits of Transfer Learning with a Unified Text-to-Text Transformer 리뷰
- 길찾기
- BERT란
- NLP 논문 리뷰
- Attention Is All You Need
- hugging face tokenizer에서 special case 추가하기
- The Natural Language Decathlon:Multitask Learning as Question Answering
- BERT: Pre-training of Deep Bidirectional Transformers for Language Understanding 논문리뷰
- BERT: Pre-training of Deep Bidirectional Transformers for Language Understanding 리뷰
- CNN 논문리뷰
- Multi Task Learning Objectives for Natural Language Processing 리뷰
- 뉴텝스 400
- BART 논문리뷰
- T5 논문 리뷰
- attention 설명
- UBAR: Towards Fully End-to-End Task-Oriented Dialog System with GPT-2
- Evaluate Multiwoz
- Attention Is All You Need 리뷰
- A Neural Attention Model for Abstractive Sentence Summarization
- 다양한 모듈에서 log쓰기
- 바닥부터 배우는 강화 학습
- 정책기반 agent
- BERT 사용방법
- ImageNet Classification with Deep ConvolutionalNeural Networks 리뷰
- MMTOD
- Zero-shot Generalization in Dialog State Tracking through GenerativeQuestion Answering
- Today
- Total
목록길찾기 (3)
one by one ◼◻◼◻

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 import sys from collections import deque line = sys.stdin.readline().split() N, K =int(line[0]),int(line[1]) move = deque() move.append(N) visit = [0] * (100000+1) while move: loc= move.popleft() if loc == K: print(visit[loc]) break else: for nx in (loc-1, loc+1, loc*2): if 0

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 # 단지 번호붙이기 import sys from collections import deque dx = [-1,1,0,0] dy = [0,0,-1,1] N = int(sys.stdin.readline().split()[0]) x,y = N,N data = [[0] * y for _ in range(x)] visit = [[0] * y for _ in range(x)] for i in range(x): line = list(sys.stdin.readline().sp..

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 import sys from collections import deque dx = [-1,1,0,0] dy = [0,0,-1,1] x, y = (map(int, sys.stdin.readline().split())) data = [[0] * y for _ in range(x)] visit = [[0] * y for _ in range(x)] for i in range(x): line = list(sys.stdin.readline().split()[0]) for j, temp in enumerate(line): data[i][j] = int(temp) togo =..