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