KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
gmls-nets
★ 9
Open GitHub ↗
GMLS-Nets - a Tensorflow implementation
Download README (.md)
Explore Similar Repositories
alfred-detoxit
:
Типограф для Alfred
StoneAgeAI
:
Repo for Stone Age App/AI
mortgage
:
Deep learning analysis of mortgage prepayment and default and their effects on portfolio value
melt
:
a visual cat-like file viewer with syntax highlighting supporting 2-file views
bisection
:
Very simple to use and robust method that takes array inputs, so it even has advantages over fzero.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
gmls-nets
?
Download (.md)
# GMLS-Nets This code is the Tensorflow implementation of N. Trask, R. G. Patel, B. J. Gross, and P. J. Atzberger, "GMLS-Nets: A Framework for Learning from Unstructured Data," arXiv:1909.05371, (2019). #### Installation `pip install gmlsnets-tensorflow` #### Requirements `Python >= 3.5` `numpy` `scipy` `matplotlib` `scikit-learn` `toolz` `tensorflow` #### Usage The three classes in `gmlsnets_tensorflow/__init__.py` provide Keras layers used to construct GMLS-Nets architectures. `MFLayer` creates layers that compute GMLS coefficients from functions sampled on a point cloud. `MFConvLayer` and `MFPoolLayer` create for point cloud data the equivalent to (strided) convolutional layers and pool layers, respectively. These classes use the weighting functions in `gmlsnets_tensorflow/weightfuncs.py` and the polynomial bases in `gmlsnets_tensorflow/bases.py`. See the examples folder for MNIST and PDE discovery examples. #### Additional information For the PyTorch implementation, see https://github.com/atzberg/gmls-nets.