data-driven-advection
data-driven-advection copied to clipboard
For any discretization stencil size , k > 3 (In above case k = 7), I get the following error. I am trying to analyze the solution accuracy for larger...
I think you should tell us which version of TensorFlow is good for your work. Maybe TensorFlow1.8 or older? Excelent work by the way!
Hello! How can I use it for a system of equations?
Error message: /data-driven-pdes-master/datadrivenpdes/core/equations.py in _validate_keys(self) 77 """Validate the key_definitions, evolving_keys and constant_keys attributes. 78 """ ---> 79 repeated_keys = self.evolving_keys & self.constant_keys 80 if repeated_keys: 81 raise ValueError('overlapping entries between...
When installing this package in Colab via `!pip install git+https://github.com/google-research/data-driven-pdes.git`, I got ``` ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command...
Hello. I am able to run the Tutorial example with the Turing equation correctly. Now I am trying to extend that example by developing a neural network (nn) for the...
To streamline the development without the need to install all of the tools on the local machine.
Hi, When trying to run the tutorial code, I get an error in the line: results = pde.core.integrate.integrate_times( model=pde.core.models.FiniteDifferenceModel(equation,grid), state=initial_state, times=times, axis=0) The error that I get is (I will...
I think this works, but I can't run the test suite locally. [https://github.com/googleprivate/pde-superresolution-2d/issues/5]
https://github.com/googleprivate/pde-superresolution-2d/blob/6981ff1ee8a1bc99275d34d5f835213d02b174f8/pde_superresolution_2d/core/equations.py#L159-L161 @shoyer @JiaweiZhuang I think we might want to change the signature of `equation.time_derivative` to include the time: ```python def time_derivative( self, time, grid: grids.Grid, **inputs: tf.Tensor ) -> Dict[str,...