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 |
Tags
- windows forms
- C++
- Selenium
- 오류
- ubuntu
- C
- pip
- Numpy
- 기타 연주
- pandas
- OpenCV
- label
- Python
- SSH
- 컨테이너
- 핑거스타일
- JSON
- mysql
- 채보
- pytorch
- Docker
- 프로그래머스
- Linux
- YOLO
- nvidia-smi
- VS Code
- error
- C#
- paramiko
- Visual Studio
Archives
- Today
- Total
목록Multiclass (1)
기계는 거짓말하지 않는다

PyTorch를 이용한 Multiclass ClassificationCustom Datafeature 5개, label 종류 6개로 이루어진 데이터.각 label마다 기본 base 값을 토대로 무작위로 생성 (Total 1200개)import pandas as pddataFrame = pd.read_csv("custom_random_data.csv", delimiter=",");# label 종류 별 feature 표준편차 확인print(dataFrame.groupby("Name").std())표준편차가 큰 F3 feature를 제외한 나머지로 학습을 진행Custom Dataset, Custom Modelclass CustomDataset(Dataset): def __init__(self, data..
AI
2021. 10. 11. 19:27