-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updates (#315)
- Loading branch information
Showing
158 changed files
with
5,468 additions
and
3,834 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,14 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
""" | ||
The ``base`` module for whole BrainPy ecosystem. | ||
- This module provides the most fundamental class ``BrainPyObject``, | ||
and its associated helper class ``Collector`` and ``ArrayCollector``. | ||
- For each instance of "BrainPyObject" class, users can retrieve all | ||
the variables (or trainable variables), integrators, and nodes. | ||
- This module also provides a ``FunAsObject`` class to wrap user-defined | ||
functions. In each function, maybe several nodes are used, and | ||
users can initialize a ``FunAsObject`` by providing the nodes used | ||
in the function. Unfortunately, ``FunAsObject`` class does not have | ||
the ability to gather nodes automatically. | ||
- This module provides ``io`` helper functions to help users save/load | ||
model states, or share user's customized model with others. | ||
- This module provides ``naming`` tools to guarantee the unique nameing | ||
for each BrainPyObject object. | ||
Details please see the following. | ||
This module is deprecated since version 2.3.1. | ||
Please use ``brainpy.math.*`` instead. | ||
""" | ||
|
||
from brainpy.base.base import * | ||
from brainpy.base.collector import * | ||
from brainpy.base.function import * | ||
from brainpy.base.io import * | ||
from brainpy.base.naming import * | ||
|
||
from .base import * | ||
from .collector import * | ||
from .function import * | ||
from .io import * | ||
from .naming import * | ||
|
Oops, something went wrong.