Skip to content

Commit

Permalink
Bump to v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lululxvi committed Jul 12, 2019
1 parent 825ca96 commit 943f75f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
# The short X.Y version
version = ""
# The full version, including alpha/beta/rc tags
release = "0.1.1"
release = "0.2.0"


# -- General configuration ---------------------------------------------------
Expand Down
13 changes: 7 additions & 6 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,28 +13,29 @@ Use DeepXDE if you need a deep learning library that
- approximates functions from a dataset with/without constraints,
- approximates functions from multi-fidelity data.

DeepXDE is extensible to solve other problems in scientific computing.
DeepXDE is extensible to solve other problems in Scientific Machine Learning.

**DeepXDE Paper**: `arXiv <https://arxiv.org/abs/1907.04502>`_

Features
--------

DeepXDE supports

- complex domain geometries without tyranny mesh generation. The basic geometries are interval, triangle, rectangle, polygon, disk, cuboid, and sphere. Other geometries can be constructed as constructive solid geometry (CSG) by operations: union, difference, and intersection;
- complex domain geometries without tyranny mesh generation. The primitive geometries are interval, triangle, rectangle, polygon, disk, cuboid, and sphere. Other geometries can be constructed as constructive solid geometry (CSG) using three boolean operations: union, difference, and intersection;
- multi-physics, i.e., coupled PDEs;
- 4 types of boundary conditions: Dirichlet, Neumann, Robin, and periodic;
- time-dependent PDEs are solved as easily as time-independent ones by only adding initial conditions;
- residue-based adaptive training points;
- residual-based adaptive refinement (RAR);
- uncertainty quantification using dropout;
- four domain geometries: interval, disk, hyercube and hypersphere;
- two types of neural networks: fully connected neural network, and residual neural network;
- many different losses, metrics, optimizers, learning rate schedules, initializations, regularizations, etc.;
- useful techniques, such as dropout and batch normalization;
- callbacks to monitor the internal states and statistics of the model during training;
- compact and nice code, very close to the mathematical formulation.
- enables the user code to be compact, resembling closely the mathematical formulation.

All the components of DeepXDE are loosely coupled, and thus DeepXDE is well-structured and highly configurable.
It is easy to add new functions to each modules to satisfy new requirements.
It is easy to customize DeepXDE to meet new demands.

User guide
------------
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@

setup(
name="DeepXDE",
version="0.1.1",
version="0.2.0",
description="Deep learning library for solving differential equations",
long_description=long_description,
long_description_content_type="text/markdown",
author="Lu Lu",
author_email="[email protected]",
url="https://github.com/lululxvi/deepxde",
download_url="https://github.com/lululxvi/deepxde/tarball/v0.1.1",
download_url="https://github.com/lululxvi/deepxde/tarball/v0.2.0",
license="Apache-2.0",
install_requires=install_requires,
classifiers=[
Expand Down

0 comments on commit 943f75f

Please sign in to comment.