forked from mattloper/chumpy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request mattloper#15 from MPI-IS/master
Fix broken Chumpy installation
- Loading branch information
Showing
3 changed files
with
20 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,23 @@ | ||
chumpy | ||
====== | ||
|
||
Chumpy is a Python-based framework designed to handle the auto-differentiation problem, | ||
which is to evalute an expression and its derivatives with respect to its inputs, with | ||
the use of the chain rule. Chumpy is intended to make construction and local | ||
minimization of objectives easier. Specifically, it provides: | ||
Chumpy is a Python-based framework designed to handle the **auto-differentiation** problem, | ||
which is to evaluate an expression and its derivatives with respect to its inputs, by use of the chain rule. | ||
|
||
Chumpy is intended to make construction and local | ||
minimization of objectives easier. | ||
|
||
Specifically, it provides: | ||
|
||
- Easy problem construction by using Numpy’s application interface | ||
- Easy access to derivatives via auto differentiation | ||
- Easy local optimization methods (12 of them: most of which use the derivatives) | ||
- Easy local optimization methods (12 of them: most of which use the derivatives) | ||
|
||
Chumpy comes with its own demos, which can be seen by typing the following:: | ||
Chumpy comes with its own demos, which can be seen by typing the following: | ||
|
||
>> import chumpy | ||
>> chumpy.demo() # prints out a list of possible demos | ||
```python | ||
import chumpy | ||
chumpy.demo() # prints out a list of possible demos | ||
``` | ||
|
||
Licensing is specified in the attached LICENSE.txt. | ||
|
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,3 +1,3 @@ | ||
version = '0.67.4' | ||
version = '0.67.5' | ||
short_version = version | ||
full_version = version |
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