일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Zero-shot Generalization in Dialog State Tracking through GenerativeQuestion Answering
- NLP 논문 리뷰
- BART 논문리뷰
- attention 설명
- 바닥부터 배우는 강화 학습
- 길찾기
- MMTOD
- BERT 사용방법
- Exploring the Limits of Transfer Learning with a Unified Text-to-Text Transformer
- The Natural Language Decathlon:Multitask Learning as Question Answering
- BERT: Pre-training of Deep Bidirectional Transformers for Language Understanding 리뷰
- 다양한 모듈에서 log쓰기
- RuntimeError: DataLoader worker (pid(s) ) exited unexpectedly
- Multi Task Learning Objectives for Natural Language Processing
- Attention Is All You Need
- Multi Task Learning Objectives for Natural Language Processing 리뷰
- A Neural Attention Model for Abstractive Sentence Summarization
- TOD 논문리뷰
- BERT: Pre-training of Deep Bidirectional Transformers for Language Understanding 논문리뷰
- Attention Is All You Need 리뷰
- T5 논문 리뷰
- BERT란
- Exploring the Limits of Transfer Learning with a Unified Text-to-Text Transformer 리뷰
- UBAR: Towards Fully End-to-End Task-Oriented Dialog System with GPT-2
- ImageNet Classification with Deep ConvolutionalNeural Networks 리뷰
- CNN 논문리뷰
- Evaluate Multiwoz
- hugging face tokenizer에서 special case 추가하기
- 정책기반 agent
- 뉴텝스 400
- Today
- Total
목록전체 글 (40)
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 import sys N = int(sys.stdin.readline()) for _ in range(N): items = list(map(int, sys.stdin.readline().split())) a,b = items[0]%10, items[1] temp = a last_part = [a] if a == 0: print(10) continue while True: temp*= a if len(last_part)!=1 and temp%10 == a: break else: last_part.append(temp%10) loop_len = len(last_part) print(last_part[b%..

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 def solution(triangle): d = [[] for _ in range(len(triangle))] for i,item in enumerate(triangle): if i==0: d[i] = [item[0]] else: for j,num in enumerate(item): if j==0: d[i].append(d[i-1][j] + num) elif j == len(item)-1: d[i].append(d[i-1][j-1] + num) else: d[i].append(max(d[i-1][j] + num,d[i-1][j-1] + num)) answer = max(d[-1]) return answer Colored by Colo..

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 from collections import defaultdict def solution(genres, plays): answer = [] genres_count = defaultdict(int) genres_song = defaultdict(list) for i, (g,p) in enumerate(zip(genres, plays)): genres_count[g] += p genres_song[g].append([p,i]) G = len(genres_count) for _ in range(G): count_nums = list(genres_count.values()) gen..