Viewing a single comment thread. View all comments

SirPandkok t1_iyt63wk wrote

Normally I build my model with TF, so I don't have a deep understanding of PyTorch, so I don't understand why this .compile thing is important. Can someone explain to me?

1

mankav t1_iywpn6o wrote

Basically, pytorch is like writing tensorflow 2 eager execution code. Now with compile maybe they create a static computational graph like tensorflow 1.x or tf.function?

2