일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 자연어처리 논문 리뷰
- 다이나믹 프로그래밍
- few shot dst
- Python
- DST zeroshot learning
- 백준
- 2020정보처리기사필기
- 정보처리기사전공자
- classification text
- fasttext text classification 한글
- 딥러닝기초
- 정보처리기사 책 추천
- 검색엔진
- nlp논문리뷰
- 데이터 합성
- 프로그래머스
- 모두의딥러닝
- DST fewshot learning
- Zero-shot transfer learning with synthesized data for multi-domain dialogue state tracking
- dialogue state tracking
- 정보처리기사 수제비
- 파이썬을 파이썬답게
- From Machine Reading Comprehension to Dialogue State Tracking: Bridging the Gap
- SUMBT:Slot-Utterance Matching for Universal and Scalable Belief Tracking
- til
- Few Shot Dialogue State Tracking using Meta-learning
- Leveraging Slot Descriptions for Zero-Shot Cross-Domain Dialogue State Tracking
- How Much Knowledge Can You Pack Into the Parameters of a Language Model?
- MySQL
- 정보처리기사전공자합격후기
Archives
- Today
- Total
목록데이터 분석 (1)
🌲자라나는청년
matplotlib사용하기
matplotlib은 그래프를 그려주는 라이브러리이다. 그래프를 그리려면 matplotlib의 pyplot 모듈을 이용하면 된다. 123456789101112import numpy as npimport matplotlib.pyplot as plt #x축을 0부터 6까지 0.1간격으로 생성(배열형태)x= np.arange(0,6,0.1) #y의 값 정의(배열의 형태, sin(x)값)y = np.sin(x) #그래프 그리기plt.plot(x,y)plt.show()cs 넘파이와, pyplot 을 이용해서 x와 y값을 numpy배열로 만들어 주고, plot과 show 함수를 이용하니 결과값으로 sin 함수가 그려졌다. 조금더 기능을 추가해서 cos 함수와 sin 둘다 그려 보았다. 1234567891011121..
데이터 분석
2019. 2. 22. 14:25