250x250
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
- 딥러닝
- 추천시스템
- 가격맞히기
- 주가예측
- 주식매매
- 코딩테스트
- 선형회귀
- Regression
- 머신러닝
- 알고리즘
- API
- 연습
- 주식
- python
- 기초
- 템플릿
- 파이썬
- 흐름도
- PyTorch
- 코딩
- 회귀
- Linear
- 게임
- DeepLearning
- 크롤링
- 주식연습
- CLI
- tensorflow
- 프로그래머스
- 재귀함수
Archives
- Today
- Total
목록딥러닝 템플릿 (13)
코딩걸음마

import pandas as pd import numpy as np import matplotlib.pyplot as plt from sklearn import datasets, preprocessing # Scikit-learn (sklearn) df = pd.read_csv("경로/경로/파일명.csv") df target = df[['']].copy() data = df.copy() del data[''] from sklearn import model_selection train_data, test_data, train_label, test_label = model_selection.train_test_split(data, target, test_size=0.3, random_state=0) pri..
딥러닝 템플릿
2022. 7. 1. 08:45