Replies: 1 comment 1 reply
-
Aesara is a fork of Theano, and Theano was commonly referred to as a "deep learning" (DL) library, but Aesara is not a DL library. Designations like "deep learning library" reflect the priorities/goals of a library; specifically, that the library serves the purposes of DL and its computational needs. Aesara is not explicitly intended to serve the purpose of constructing and evaluating DL models, but that doesn't mean it can't serve that purpose well. As far as designations or labels are concerned, instead of describing our project's priorities/goals based on an area of study or application (e.g. DL, machine learning, statistical modeling, etc.), we prefer to focus on the functionality that Aesara is expected to provide, and that's primarily symbolic tensor computations. The designation "tensor library" is more apt, but, unlike most other tensor libraries (e.g. TensorFlow, PyTorch, etc.), Aesara is more focused on what one might call the symbolic functionality. As a library, Aesara focuses on and advocates the extension of its core offerings, which are as follows:
Most tensor libraries perform these operations to some extent, but many do not expose the underlying operations for use at any level other than internal library development. Furthermore, when they do, many libraries cross a large language barrier that unnecessarily hampers rapid development (e.g. moving from Python to C++ and back). For most tensor libraries, a NumPy-like interface to compiled tensor computations is the primary/only offering of the library. Aesara takes the opposite approach and views all the aforementioned operations as part of the core offerings of the library, but it also stitches them together so that the library can be used like other tensor libraries. There are some concrete reasons for taking this approach, and one is the representation and construction of efficient domain-specific symbolic computations. If you follow the history of this project, you can see that it grew out of work on PyMC, and PyMC is a library for domain-specific (i.e. probabilistic modeling) computations. Likewise, the other The PyMC/probabilistic programming connection is similar to the DL connection Theano had, but—unlike Theano—we don't want Aesara to be conflated with one of its domains of application—like probabilistic modeling. Those primary domains of application will always have some influence on the development of Aesara, but that's also why we need to avoid labels/designations like "deep learning library" and focus on the functionality, so that we don't unnecessarily compromise Aesara's general applicability, relative simplicity, and/or prevent useful input/collaboration from other domains. |
Beta Was this translation helpful? Give feedback.
-
Question
I was wandering what Aerasa is and if it is a form of Machine- or Deep Learning. On the machinelearnigmastery and geeksforgeeks websites I red the the predecessor of Aerasa, Theano, was more like Deep Learning. Does Aerasa have Neural Networks or did they mention it completely wrong?
I was searching on the GitHub of Theano and Aerasa and saw that you can execute mathamatical expressions on both the CPU and GPU. But not much is mentioned about Machine- or Deep Learning, is it even one of these methods?
Beta Was this translation helpful? Give feedback.
All reactions