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
- C#
- LIST
- 컨테이너
- pip
- 기타 연주
- OpenCV
- C
- 채보
- 핑거스타일
- ubuntu
- pandas
- pytorch
- 프로그래머스
- paramiko
- Visual Studio
- VS Code
- Numpy
- SSH
- YOLO
- 오류
- Selenium
- windows forms
- Docker
- error
- Linux
- Python
- label
- C++
- mysql
- JSON
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