2024-07-12
한어Русский языкEnglishFrançaisIndonesianSanskrit日本語DeutschPortuguêsΕλληνικάespañolItalianoSuomalainenLatina
PyTorch is an open source Python machine learning library based on Torch for applications such as natural language processing. It is a Python-based continuable computing package that provides two advanced features: 1. Tensor computing with powerful GPU acceleration (such as NumPy); 2. Deep neural networks with automatic differentiation systems.
PyTorch is an open source Python machine learning library based on Torch for applications such as natural language processing;
Provide functionality | introduce |
---|---|
1 | Tensor computation with powerful GPU acceleration (like NumPy) |
2 | Deep Neural Networks with Automatic Differentiation |
Many open source frameworks (such as TensorFlow, Caffe2, CNTK, and Theano) use static computational graphs, while PyTorch uses dynamic computational graphs. In static computational graphs, the network model must be defined first, then run, once defined and run multiple times. Dynamic computational graphs can be defined on the fly, built at runtime, built multiple times and run;
Advantage | introduce |
---|---|
1 | PyTorch is a very concise, efficient and fast framework |
2 | Designed to minimize packaging |