Skip to content

Commit 3f73535

Browse files
Initial commit of second version.
1 parent b8a1596 commit 3f73535

File tree

87 files changed

+13740
-11326
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

87 files changed

+13740
-11326
lines changed

.gitignore

+24-20
Original file line numberDiff line numberDiff line change
@@ -1,66 +1,70 @@
1-
# Explicit files:
2-
copyfile.ipynb
3-
4-
# Compiled:
1+
# Compiled
52
*.com
63
*.class
74
*.py[cod]
85
*.log
96
*$py.class
107
*.cache
118

12-
# Data:
9+
# Data
1310
*.core
1411
*.pkl
1512
*.mat
1613
*.h5
1714
*.dat
1815

19-
# Figures:
16+
# Figures, Note that some png will be commited.
2017
*.pdf
2118
*.mp4
22-
*.png
23-
*.jpg
24-
*.bmp
2519

2620
# Folders:
21+
*.egg-info/
22+
NeuroProbNum.egg-info/
23+
build/
24+
data/
25+
_data/
26+
_figures/
2727
__pycache__/
2828
__pypackages__/
29+
.idea/
2930
.ipynb_checkpoints
3031
*-logs
31-
_data
32-
_figures
33-
_backups
3432

35-
# C++ Prerequisites:
33+
34+
# Compiled Cython
35+
*.c
36+
*.so
37+
*.o
38+
39+
# C++
40+
# Prerequisites
3641
*.d
3742

38-
# Compiled Object files:
43+
# Compiled files
3944
*.slo
4045
*.lo
4146
*.o
4247
*.obj
4348

44-
# Precompiled Headers:
49+
# Precompiled Headers
4550
*.gch
4651
*.pch
4752

48-
# Compiled Dynamic libraries:
49-
*.so
53+
# Compiled Dynamic libraries
5054
*.dylib
5155
*.dll
5256

53-
# Fortran module files:
57+
# Fortran module files
5458
*.mod
5559
*.smod
5660

57-
# Compiled Static libraries:
61+
# Compiled Static libraries
5862
*.lai
5963
*.la
6064
*.a
6165
*.lib
6266

63-
# Executables:
67+
# Executables
6468
*.exe
6569
*.out
6670
*.app

README.md

+12-7
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,20 @@ Probabilistic numerics for common neuroscience models.
55
## experiments
66
Contains all the notebooks to create figures.
77

8-
## generator
9-
Contains python files to conventiently generate data for all the model with different solvers.
8+
## neuroprobnum
109

11-
## models
12-
Contains all implemented models in python and cython.
10+
Probabilistic solvers and neuroscience models, implemented in python and Cython.
11+
To be able to use it first install the requirements and then install neuroprobnum with pip.
1312

14-
## solver
15-
Contains the imlemented probabilistic and deterministic solvers.
13+
### neuroprobnum/generator
14+
Contains python files to conveniently generate data for all the model with different solvers.
1615

17-
## utils
16+
### neuroprobnum/models
17+
Contains all implemented models in python and Cython.
18+
19+
### neuroprobnum/solver
20+
Contains the implemented probabilistic and deterministic solvers.
21+
22+
### neuroprobnum/utils
1823
Contains several python files that are used across the different notebooks.
1924
The most used file is "plot_utils.py", which is used to create consistent figures across the notebooks.

experiments/addpaths.py

-27
This file was deleted.

experiments/figure1/figure1.ipynb

+712
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)