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
- 블로그
- SQL
- Google Analytics
- 텐서플로
- 티스토리
- 시각화
- matplotlib
- 월간결산
- Python
- Linux
- Blog
- tensorflow
- Tistory
- MATLAB
- 한빛미디어서평단
- 서평단
- 통계학
- python visualization
- MySQL
- Visualization
- Pandas
- 독후감
- 리눅스
- Ga
- 파이썬 시각화
- 파이썬
- 매틀랩
- 한빛미디어
- 딥러닝
- 서평
Archives
- Today
- Total
목록텐서플로 모델 저장 (1)
pbj0812의 코딩 일기
[TensorFlow] tensorflow.js 로 학습한 모델 저장하기
0. 목표 - tensorflow.js 로 학습한 모델 저장하기 1. main.js var http = require('http'); var fs = require('fs'); var app = http.createServer(function(request,response){ var url = request.url; if(request.url == '/'){ url = '/save.html'; } if(request.url == '/favicon.ico'){ return response.writeHead(404); } response.writeHead(200); response.end(fs.readFileSync(__dirname + url)); }); app.listen(3001); 2. save.ht..
인공지능 & 머신러닝/TensorFlow
2021. 1. 7. 04:29