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