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
- Ga
- 파이썬 시각화
- 티스토리
- 서평
- SQL
- MATLAB
- Python
- Blog
- 한빛미디어서평단
- 월간결산
- 블로그
- 딥러닝
- 텐서플로
- 통계학
- 리눅스
- Tistory
- Visualization
- 서평단
- python visualization
- 시각화
- Google Analytics
- Linux
- tensorflow
- MySQL
- matplotlib
- 독후감
- 한빛미디어
- 파이썬
- 매틀랩
- Pandas
Archives
- Today
- Total
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.html
<!DOCTYPE html>
<html>
<head>
<title>TensorFlow.js Tutorial - lemon</title>
<!-- Import TensorFlow.js -->
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs@1.0.0/dist/tf.min.js"></script>
</head>
<body>
<script>
// 1. 데이터 준비합니다.
var xx = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
var yy = [2, 3, 4, 5, 6, 7, 8, 9, 10, 11];
var reason = tf.tensor(xx);
var result = tf.tensor(yy);
// 2. 모델의 모양을 만듭니다.
var X = tf.input({ shape: [1] });
var Y = tf.layers.dense({ units: 1 }).apply(X);
var model = tf.model({ inputs: X, outputs: Y });
var compileParam = { optimizer: tf.train.adam(), loss: tf.losses.meanSquaredError }
model.compile(compileParam);
// 3. 데이터로 모델을 학습시킵니다.
console.log('model run');
var fitParam = {
epochs: 100,
callbacks: {
onEpochEnd:
function(epoch, logs){
console.log('epoch', epoch, logs, 'RMSE : ', Math.sqrt(logs.loss));
}
}
}
console.log('model save');
model.fit(reason, result, fitParam).then(function (result) {
model.save('localstorage://my_model');
});
</script>
</body>
</html>
3. 실행
node main.js
4. 결과
- localhost:3001
- 검사
- 저장된 모델은 상단 Application -> 좌측 Storage -> Local Storage
5. load.html
<!DOCTYPE html>
<html>
<head>
<title>TensorFlow.js Tutorial - lemon</title>
<!-- Import TensorFlow.js -->
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs@1.0.0/dist/tf.min.js"></script>
</head>
<body>
<script>
console.log('model load');
tf.loadLayersModel('localstorage://my_model').then(function(model){
var weights = model.getWeights();
var weight = weights[0].arraySync()[0][0];
var bias = weights[1].arraySync()[0];
console.log(weight);
console.log(bias);
});
</script>
</body>
</html>
6. 실행
- main.js 에서 save.html -> load.html 로 변경
node main.js
7. 결과
- 페이지를 끄게 되면 데이터가 날아갈 수 있기에 새로고침
- localhost:3001
8. 참고
'인공지능 & 머신러닝 > TensorFlow' 카테고리의 다른 글
[Tensorflow] tensorflow.js 에서 학습 상황 모니터링하기 (1) | 2021.01.10 |
---|---|
[Tensorflow] tensorflow.js 로 모델 학습하기(1차 방정식) (0) | 2021.01.06 |
[Tensorflow] node.js & tensorflow.js 를 통한 이미지 판별기 튜토리얼 (0) | 2021.01.04 |
[TensorFlow] LSTM을 활용한 긍부정 판별기 (0) | 2020.08.11 |
[TensorFlow] sin 그래프 예측하기 (0) | 2020.07.25 |
Comments