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 |
Tags
- 시각화
- 통계학
- 파이썬
- 독후감
- Google Analytics
- 한빛미디어서평단
- MySQL
- Pandas
- Tistory
- SQL
- 월간결산
- matplotlib
- 티스토리
- Blog
- 텐서플로
- 딥러닝
- MATLAB
- python visualization
- Python
- 리눅스
- 블로그
- 매틀랩
- 한빛미디어
- 서평단
- 서평
- Linux
- tensorflow
- 파이썬 시각화
- Visualization
- Ga
Archives
- Today
- Total
목록tensorflow.js model save (1)
pbj0812의 코딩 일기
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/b0tg1m/btqSQ5uttXu/E4hKiny0vl44rwChukkiRK/img.png)
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