ode
Here are 239 public repositories matching this topic...
-
Updated
Oct 18, 2021 - Julia
The basics of DiscreteSystem exists now, but the little details around it need to be finished.
-
Updated
Oct 3, 2021
-
Updated
Oct 16, 2021 - CSS
add in docs and in testset a Low-level API example with GPU
We really should be testing each and every feature of Latexify and currently we are not.
Test generation is made easy by a macro that we supply:
using Latexify
@Latexify.generate_test latexify("x/y")generates a test and puts it in your clipboard to be pasted:
@test latexify("x/y") ==
raw"$\frac{x}{y}$"One just have to make sure that the test does ac
-
Updated
May 20, 2021 - Python
-
Updated
Oct 26, 2021 - Julia
The package currently exports these function names:
mm , mmr , hill , hillr , hillar.
To avoid these potentially overwriting other stuff people have decalred, they could be moved to some other sub package. They would then be imported using e.g.
using Catalyst.Functions
-
Updated
Dec 15, 2020 - Python
Hi,
I am pretty new to neurodiffeq, thank you very much for the excellent library.
I am interested in the way, and the computational speed, of computing partial derivatives w.r.t. the inputs.
Take forward ODE (1D, 1 unknown variable) solver for example, the input is x, a batch of coordinates, and the output of the neural network is y, the approximated solution of the PDE at these coo
-
Updated
Oct 22, 2021 - Julia
-
Updated
Oct 24, 2021 - Julia
-
Updated
Oct 14, 2021 - Julia
-
Updated
Oct 27, 2021 - C++
-
Updated
Oct 4, 2021 - Julia
-
Updated
Jul 20, 2021 - Jupyter Notebook
-
Updated
Oct 26, 2021 - Julia
-
Updated
Aug 13, 2021 - Julia
-
Updated
Oct 27, 2021 - Julia
-
Updated
May 3, 2021 - Java
-
Updated
Aug 10, 2021 - R
-
Updated
Nov 11, 2020 - Fortran
-
Updated
Aug 31, 2021 - Julia
-
Updated
Mar 8, 2021 - Julia
-
Updated
Mar 25, 2021 - Fortran
Currently, values for the llh, gradient, the computed trajectories of states and observables, or the sensitivities are checked in unit tests.
Unfortunately, some bugs, such as incorrect Jacobians or switched minus signs in the Newton solver, will not necessarily affect those quantities. However, they will substantially impact solver performance, by causing way too many steps to be taken. Hence, w
-
Updated
Sep 24, 2021 - Julia
Improve this page
Add a description, image, and links to the ode topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the ode topic, visit your repo's landing page and select "manage topics."


Hi I would like to propose a better implementation for 'test_indices':
We can remove the unneeded np.array casting:
Cleaner/New:
test_indices = list(set(range(len(texts))) - set(train_indices))
Old:
test_indices = np.array(list(set(range(len(texts))) - set(train_indices)))