ode
Here are 220 public repositories matching this topic...
-
Updated
Jan 17, 2021 - Julia
-
Updated
Feb 28, 2021 - Julia
-
Updated
Feb 13, 2021
-
Updated
Feb 26, 2021 - HTML
-
Updated
Feb 27, 2021 - Julia
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
Feb 17, 2021 - Python
-
Updated
Feb 23, 2021 - Julia
-
Updated
Feb 26, 2021 - Julia
-
Updated
Dec 15, 2020 - Python
-
Updated
Feb 8, 2021 - Julia
-
Updated
Feb 24, 2021 - TeX
-
Updated
Jan 28, 2021 - Jupyter Notebook
-
Updated
Feb 7, 2021 - Java
-
Updated
Feb 26, 2021 - HTML
-
Updated
Feb 22, 2021 - Julia
-
Updated
Feb 24, 2021 - Julia
-
Updated
Feb 28, 2021 - C++
-
Updated
Nov 11, 2020 - Fortran
-
Updated
Feb 12, 2021 - R
-
Updated
Feb 11, 2021 - Julia
-
Updated
Feb 6, 2021 - Julia
-
Updated
Feb 15, 2021 - Julia
-
Updated
Feb 27, 2021 - Julia
-
Updated
Feb 10, 2017 - Fortran
-
Updated
Jun 25, 2020 - Julia
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
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)))