問題タブ [binary-reproducibility]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票する
0 に答える
82 参照

python - keras.Model.save は、モデルが保存されるたびにバイナリを変更します

keras.Model.save()私の知る限り、結果とバイナリの完全な再現性のために必要なすべての手順を実行したのに、実行ごとに異なるバイナリが生成されるのはなぜですか?

これは、docker コンテナー内で次のスクリプトを実行するだけで確認できます。ディレクトリのsaved_model.pb内容はvariables常に変化します。以下を使用してコンテナーを作成します。
docker run --rm --volume=/host/dir/with/script:/workspace -it tensorflow/tensorflow:2.4.1 bash

ありがとう。