問題タブ [tensorflow2.0]
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.
tensorflow2.0 - TensorFlow 2.0 で global_step に代わるものはありますか?
TensorFlow 2.0 には global_step がないようです。
現在のトレーニングの進行状況に関心のあるコールバックがいくつかありますが、独自のステップ カウンターを実装する必要があるのか、代わりにエポック カウントに依存する必要があるのか わかりません...
交換の推奨事項はありますか?
python - TF 2.0 の tf.GradientTape は tf.gradients と同等ですか?
トレーニング ループをTensorflow 2.0 APIに移行しています。熱心な実行モードでは、 をtf.GradientTape
置き換えtf.gradients
ます。問題は、それらが同じ機能を持っているかどうかです。具体的には:
関数内
gradient()
:- パラメータは古い API
output_gradients
と同等ですか?grad_ys
- パラメータについてはどうですか
colocate_gradients_with_ops
。aggregation_method
、gate_gradients
のtf.gradients
? 使用されていないために廃止されていますか?2.0 API の他のメソッドを使用してそれらを置き換えることはできますか? それらは Eager Execution でまったく必要ですか?
- パラメータは古い API
関数は
jacobian()
と同等tf.python.ops.parallel_for.gradients
ですか?