일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- BERT: Pre-training of Deep Bidirectional Transformers for Language Understanding 논문리뷰
- 뉴텝스 400
- Evaluate Multiwoz
- BERT 사용방법
- CNN 논문리뷰
- Attention Is All You Need
- T5 논문 리뷰
- Multi Task Learning Objectives for Natural Language Processing
- hugging face tokenizer에서 special case 추가하기
- UBAR: Towards Fully End-to-End Task-Oriented Dialog System with GPT-2
- 바닥부터 배우는 강화 학습
- NLP 논문 리뷰
- ImageNet Classification with Deep ConvolutionalNeural Networks 리뷰
- 정책기반 agent
- BERT란
- A Neural Attention Model for Abstractive Sentence Summarization
- Multi Task Learning Objectives for Natural Language Processing 리뷰
- 길찾기
- 다양한 모듈에서 log쓰기
- RuntimeError: DataLoader worker (pid(s) ) exited unexpectedly
- Exploring the Limits of Transfer Learning with a Unified Text-to-Text Transformer
- BERT: Pre-training of Deep Bidirectional Transformers for Language Understanding 리뷰
- MMTOD
- TOD 논문리뷰
- Exploring the Limits of Transfer Learning with a Unified Text-to-Text Transformer 리뷰
- Zero-shot Generalization in Dialog State Tracking through GenerativeQuestion Answering
- BART 논문리뷰
- Attention Is All You Need 리뷰
- attention 설명
- The Natural Language Decathlon:Multitask Learning as Question Answering
- Today
- Total
목록코딩문제 (12)
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 from collections import defaultdict def solution(id_list, report, k): singoed = set() answer = [] singoed_cnt = defaultdict(int) # 신고당한 횟수 mail_cnt = defaultdict(int) # 받은 메일의 수 report = list(set(report)) for item in report: person_A, person_B = item.split(" ")[0],item.split(" ")[1] singoed_cnt[person_B] +=1 if singoed_cnt[person_B] >= ..

프로그래머스에서 문제를 풀어보았다. queue를 이용해서 풀어보았다. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 from collections import deque def solution(progresses, speeds): jobque = deque(progresses) speedque = deque(speeds) time =0 answer = [] go = 0 while jobque: job = jobque.popleft() speed = speedque.popleft() while True: if job + speed*time >= 100: go+=1 break else: if go != 0: answer.append(go) go =0 t..