일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Python
- 정보처리기사 책 추천
- 프로그래머스
- Zero-shot transfer learning with synthesized data for multi-domain dialogue state tracking
- 정보처리기사 수제비
- DST zeroshot learning
- 파이썬을 파이썬답게
- 다이나믹 프로그래밍
- few shot dst
- 백준
- 데이터 합성
- til
- classification text
- How Much Knowledge Can You Pack Into the Parameters of a Language Model?
- Leveraging Slot Descriptions for Zero-Shot Cross-Domain Dialogue State Tracking
- 정보처리기사전공자
- 검색엔진
- dialogue state tracking
- nlp논문리뷰
- DST fewshot learning
- 모두의딥러닝
- 딥러닝기초
- fasttext text classification 한글
- SUMBT:Slot-Utterance Matching for Universal and Scalable Belief Tracking
- From Machine Reading Comprehension to Dialogue State Tracking: Bridging the Gap
- 자연어처리 논문 리뷰
- Few Shot Dialogue State Tracking using Meta-learning
- MySQL
- 정보처리기사전공자합격후기
- 2020정보처리기사필기
Archives
- Today
- Total
목록모의고사 (1)
🌲자라나는청년
[프로그래머스] 모의고사, python
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 def solution(answers): score = [0,0,0] s1 = list("12345") s2 = list("21232425") s3 = list("3311224455") for i,answer in enumerate(answers): if s1[i%len(s1)] == str(answer): score[0] +=1 if s2[i%len(s2)] == str(answer): score[1] +=1 if s3[i%len(s3)] == str(answer): score[2] +=1 max_score = max(score) answer = [] for i, s in enumerate(score): i..
알고리즘 문제풀이
2021. 1. 31. 13:01