Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- pytorch
- OpenCV
- C++
- 핑거스타일
- Visual Studio
- pandas
- mysql
- Numpy
- 기타 연주
- SSH
- windows forms
- Docker
- paramiko
- label
- Python
- Selenium
- C#
- error
- JSON
- VS Code
- LIST
- pip
- C
- ubuntu
- Linux
- 프로그래머스
- 채보
- 오류
- 컨테이너
- YOLO
Archives
- Today
- Total
목록Multiclass (1)
기계는 거짓말하지 않는다
Pytorch Multiclass Classification
Pytorch를 이용한 Multiclass Classification Custom Data feature 5개, label 종류 6개로 이루어진 데이터. 각 label마다 기본 base 값을 토대로 무작위로 생성 (Total 1200개) import pandas as pd dataFrame = pd.read_csv("custom_random_data.csv", delimiter=","); # label 종류 별 feature 표준편차 확인 print(dataFrame.groupby("Name").std()) 표준편차가 큰 F3 feature를 제외한 나머지로 학습을 진행 Custom Dataset, Custom Model class CustomDataset(Dataset): def __init__(sel..
AI
2021. 10. 11. 19:27