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
- 주식연습
- 파이썬
- CLI
- 프로그래머스
- 게임
- 기초
- 코딩테스트
- 가격맞히기
- 재귀함수
- DeepLearning
- 회귀
- 알고리즘
- 선형회귀
- 주식매매
- 흐름도
- 코딩
- 주가예측
- 머신러닝
- 딥러닝
- python
- 크롤링
- 추천시스템
- API
- 템플릿
- tensorflow
- 주식
- Regression
- Linear
- 연습
- PyTorch
Archives
- Today
- Total
목록모델 불러오기 (1)
코딩걸음마
[딥러닝] TensorFlow 모델 save / Load (+Keras Callback )
Titanic 데이터를 활용하여 TensorFlow 의 모델 save와 load 방법을 알아봅시다. save와 load 방법을 알아보기 위해 기본적인 딥러닝 모델 플로우를 작성하겠습니다. import pandas as pd import numpy as np import matplotlib.pyplot as plt from sklearn import model_selection, preprocessing import seaborn as sns 데이터 불러오기 titanic_df = pd.read_csv("titanic_modified.csv") titanic_target = titanic_df[['Survived']].copy() titanic_data = titanic_df.copy() del titan..
딥러닝_TensorFlow
2022. 7. 1. 04:56