48
Solving Partial Differential Equations with TensorFlow A.V.S.D.S.Mahesh (Final year B.Tech.) IIT Kanpur February 27, 2019 A.V.S.D.S.Mahesh (IIT Kanpur) PDE with TensorFlow February 27, 2019 1 / 29

Solving Partial Differential Equations with TensorFlow · Solving Partial Di erential Equations with TensorFlow A.V.S.D.S.Mahesh (Final year B.Tech.) IIT Kanpur February 27, 2019

  • Upload
    others

  • View
    14

  • Download
    0

Embed Size (px)

Citation preview

Page 1: Solving Partial Differential Equations with TensorFlow · Solving Partial Di erential Equations with TensorFlow A.V.S.D.S.Mahesh (Final year B.Tech.) IIT Kanpur February 27, 2019

Solving Partial Differential Equations with TensorFlow

A.V.S.D.S.Mahesh (Final year B.Tech.)

IIT Kanpur

February 27, 2019

A.V.S.D.S.Mahesh (IIT Kanpur) PDE with TensorFlow February 27, 2019 1 / 29

Page 2: Solving Partial Differential Equations with TensorFlow · Solving Partial Di erential Equations with TensorFlow A.V.S.D.S.Mahesh (Final year B.Tech.) IIT Kanpur February 27, 2019

Introduction

Today we shall see how to solve basic partial differential equations usingPython’s TensorFlow library. At the end of this day you will be able towrite basic PDE solvers in TensorFlow. For this purpose, 2Dwave-equation solver is demonstrated in this module.

A.V.S.D.S.Mahesh (IIT Kanpur) PDE with TensorFlow February 27, 2019 2 / 29

Page 3: Solving Partial Differential Equations with TensorFlow · Solving Partial Di erential Equations with TensorFlow A.V.S.D.S.Mahesh (Final year B.Tech.) IIT Kanpur February 27, 2019

Table of Contents

1 Getting started

2 TensorFlow and Numpy

3 TensorFlow objectsSession objectComputation graphVariablesMiscellaneous objects

4 2D wave equation solver

5 Conclusion

A.V.S.D.S.Mahesh (IIT Kanpur) PDE with TensorFlow February 27, 2019 3 / 29

Page 4: Solving Partial Differential Equations with TensorFlow · Solving Partial Di erential Equations with TensorFlow A.V.S.D.S.Mahesh (Final year B.Tech.) IIT Kanpur February 27, 2019

Table of Contents

1 Getting started

2 TensorFlow and Numpy

3 TensorFlow objectsSession objectComputation graphVariablesMiscellaneous objects

4 2D wave equation solver

5 Conclusion

A.V.S.D.S.Mahesh (IIT Kanpur) PDE with TensorFlow February 27, 2019 4 / 29

Page 5: Solving Partial Differential Equations with TensorFlow · Solving Partial Di erential Equations with TensorFlow A.V.S.D.S.Mahesh (Final year B.Tech.) IIT Kanpur February 27, 2019

What is TensorFlow?

TensorFlow is an open-source deep learning library by Google

Although originally intended for machine learning and deep neuralnetworks, can be applied in many other domains as solving PDEs.

TensorFlow allows to define functions on tensors and simplifies manyoperations on them.1

1url: https://cs224d.stanford.edu/lectures/CS224d-Lecture7.pdf.

A.V.S.D.S.Mahesh (IIT Kanpur) PDE with TensorFlow February 27, 2019 5 / 29

Page 6: Solving Partial Differential Equations with TensorFlow · Solving Partial Di erential Equations with TensorFlow A.V.S.D.S.Mahesh (Final year B.Tech.) IIT Kanpur February 27, 2019

What is TensorFlow?

TensorFlow is an open-source deep learning library by Google

Although originally intended for machine learning and deep neuralnetworks, can be applied in many other domains as solving PDEs.

TensorFlow allows to define functions on tensors and simplifies manyoperations on them.1

1url: https://cs224d.stanford.edu/lectures/CS224d-Lecture7.pdf.

A.V.S.D.S.Mahesh (IIT Kanpur) PDE with TensorFlow February 27, 2019 5 / 29

Page 7: Solving Partial Differential Equations with TensorFlow · Solving Partial Di erential Equations with TensorFlow A.V.S.D.S.Mahesh (Final year B.Tech.) IIT Kanpur February 27, 2019

What is TensorFlow?

TensorFlow is an open-source deep learning library by Google

Although originally intended for machine learning and deep neuralnetworks, can be applied in many other domains as solving PDEs.

TensorFlow allows to define functions on tensors and simplifies manyoperations on them.1

1url: https://cs224d.stanford.edu/lectures/CS224d-Lecture7.pdf.

A.V.S.D.S.Mahesh (IIT Kanpur) PDE with TensorFlow February 27, 2019 5 / 29

Page 8: Solving Partial Differential Equations with TensorFlow · Solving Partial Di erential Equations with TensorFlow A.V.S.D.S.Mahesh (Final year B.Tech.) IIT Kanpur February 27, 2019

Setting up TensorFlow

TensorFlow can be installed easily using Anaconda package manager.

A.V.S.D.S.Mahesh (IIT Kanpur) PDE with TensorFlow February 27, 2019 6 / 29

Page 9: Solving Partial Differential Equations with TensorFlow · Solving Partial Di erential Equations with TensorFlow A.V.S.D.S.Mahesh (Final year B.Tech.) IIT Kanpur February 27, 2019

What is a Tensor?

A scalar is a tensor (of rank 0)

A vector is a tensor (of rank 1)

A matrix can represent tensor of rank 2.

Given fixed basis, a tensor can be represented as a multidimensionalarray of numbers.

A.V.S.D.S.Mahesh (IIT Kanpur) PDE with TensorFlow February 27, 2019 7 / 29

Page 10: Solving Partial Differential Equations with TensorFlow · Solving Partial Di erential Equations with TensorFlow A.V.S.D.S.Mahesh (Final year B.Tech.) IIT Kanpur February 27, 2019

What is a Tensor?

A scalar is a tensor (of rank 0)

A vector is a tensor (of rank 1)

A matrix can represent tensor of rank 2.

Given fixed basis, a tensor can be represented as a multidimensionalarray of numbers.

A.V.S.D.S.Mahesh (IIT Kanpur) PDE with TensorFlow February 27, 2019 7 / 29

Page 11: Solving Partial Differential Equations with TensorFlow · Solving Partial Di erential Equations with TensorFlow A.V.S.D.S.Mahesh (Final year B.Tech.) IIT Kanpur February 27, 2019

What is a Tensor?

A scalar is a tensor (of rank 0)

A vector is a tensor (of rank 1)

A matrix can represent tensor of rank 2.

Given fixed basis, a tensor can be represented as a multidimensionalarray of numbers.

A.V.S.D.S.Mahesh (IIT Kanpur) PDE with TensorFlow February 27, 2019 7 / 29

Page 12: Solving Partial Differential Equations with TensorFlow · Solving Partial Di erential Equations with TensorFlow A.V.S.D.S.Mahesh (Final year B.Tech.) IIT Kanpur February 27, 2019

What is a Tensor?

A scalar is a tensor (of rank 0)

A vector is a tensor (of rank 1)

A matrix can represent tensor of rank 2.

Given fixed basis, a tensor can be represented as a multidimensionalarray of numbers.

A.V.S.D.S.Mahesh (IIT Kanpur) PDE with TensorFlow February 27, 2019 7 / 29

Page 13: Solving Partial Differential Equations with TensorFlow · Solving Partial Di erential Equations with TensorFlow A.V.S.D.S.Mahesh (Final year B.Tech.) IIT Kanpur February 27, 2019

Table of Contents

1 Getting started

2 TensorFlow and Numpy

3 TensorFlow objectsSession objectComputation graphVariablesMiscellaneous objects

4 2D wave equation solver

5 Conclusion

A.V.S.D.S.Mahesh (IIT Kanpur) PDE with TensorFlow February 27, 2019 8 / 29

Page 14: Solving Partial Differential Equations with TensorFlow · Solving Partial Di erential Equations with TensorFlow A.V.S.D.S.Mahesh (Final year B.Tech.) IIT Kanpur February 27, 2019

TensorFlow vs. Numpy

TensorFlow and Numpy are very much similar (Both are N-d arraylibraries)

Numpy additionally doesn’t have method to create functions ontensors and more importantly no GPU support.

A.V.S.D.S.Mahesh (IIT Kanpur) PDE with TensorFlow February 27, 2019 9 / 29

Page 15: Solving Partial Differential Equations with TensorFlow · Solving Partial Di erential Equations with TensorFlow A.V.S.D.S.Mahesh (Final year B.Tech.) IIT Kanpur February 27, 2019

TensorFlow vs. Numpy

TensorFlow and Numpy are very much similar (Both are N-d arraylibraries)

Numpy additionally doesn’t have method to create functions ontensors and more importantly no GPU support.

A.V.S.D.S.Mahesh (IIT Kanpur) PDE with TensorFlow February 27, 2019 9 / 29

Page 16: Solving Partial Differential Equations with TensorFlow · Solving Partial Di erential Equations with TensorFlow A.V.S.D.S.Mahesh (Final year B.Tech.) IIT Kanpur February 27, 2019

TensorFlow vs. Numpy

Figure: Comparison of performances of TensorFlow with other libraries 2

2Work done under Dr. M. K. Verma of dept. of Physics at IITK

A.V.S.D.S.Mahesh (IIT Kanpur) PDE with TensorFlow February 27, 2019 10 / 29

Page 17: Solving Partial Differential Equations with TensorFlow · Solving Partial Di erential Equations with TensorFlow A.V.S.D.S.Mahesh (Final year B.Tech.) IIT Kanpur February 27, 2019

Numpy quick review

A.V.S.D.S.Mahesh (IIT Kanpur) PDE with TensorFlow February 27, 2019 11 / 29

Page 18: Solving Partial Differential Equations with TensorFlow · Solving Partial Di erential Equations with TensorFlow A.V.S.D.S.Mahesh (Final year B.Tech.) IIT Kanpur February 27, 2019

Same in TensorFlow

A.V.S.D.S.Mahesh (IIT Kanpur) PDE with TensorFlow February 27, 2019 12 / 29

Page 19: Solving Partial Differential Equations with TensorFlow · Solving Partial Di erential Equations with TensorFlow A.V.S.D.S.Mahesh (Final year B.Tech.) IIT Kanpur February 27, 2019

Where is the difference?

3

3url: https://cs224d.stanford.edu/lectures/CS224d-Lecture7.pdf.

A.V.S.D.S.Mahesh (IIT Kanpur) PDE with TensorFlow February 27, 2019 13 / 29

Page 20: Solving Partial Differential Equations with TensorFlow · Solving Partial Di erential Equations with TensorFlow A.V.S.D.S.Mahesh (Final year B.Tech.) IIT Kanpur February 27, 2019

TensorFlow requires explicit evaluation

TensorFlow computes using a computation graph which needs to beevaluated to get a value.

A.V.S.D.S.Mahesh (IIT Kanpur) PDE with TensorFlow February 27, 2019 14 / 29

Page 21: Solving Partial Differential Equations with TensorFlow · Solving Partial Di erential Equations with TensorFlow A.V.S.D.S.Mahesh (Final year B.Tech.) IIT Kanpur February 27, 2019

TensorFlow requires explicit evaluation

TensorFlow computes using a computation graph which needs to beevaluated to get a value.

A.V.S.D.S.Mahesh (IIT Kanpur) PDE with TensorFlow February 27, 2019 14 / 29

Page 22: Solving Partial Differential Equations with TensorFlow · Solving Partial Di erential Equations with TensorFlow A.V.S.D.S.Mahesh (Final year B.Tech.) IIT Kanpur February 27, 2019

Table of Contents

1 Getting started

2 TensorFlow and Numpy

3 TensorFlow objectsSession objectComputation graphVariablesMiscellaneous objects

4 2D wave equation solver

5 Conclusion

A.V.S.D.S.Mahesh (IIT Kanpur) PDE with TensorFlow February 27, 2019 15 / 29

Page 23: Solving Partial Differential Equations with TensorFlow · Solving Partial Di erential Equations with TensorFlow A.V.S.D.S.Mahesh (Final year B.Tech.) IIT Kanpur February 27, 2019

TensorFlow Session object

“A Session object encapsulates the environment in which Tensor objectsare evaluated.” (from docs)

tf.InteractiveSession() is to keep a default session open in ipython.

A.V.S.D.S.Mahesh (IIT Kanpur) PDE with TensorFlow February 27, 2019 16 / 29

Page 24: Solving Partial Differential Equations with TensorFlow · Solving Partial Di erential Equations with TensorFlow A.V.S.D.S.Mahesh (Final year B.Tech.) IIT Kanpur February 27, 2019

TensorFlow Session object

“A Session object encapsulates the environment in which Tensor objectsare evaluated.” (from docs)

tf.InteractiveSession() is to keep a default session open in ipython.

A.V.S.D.S.Mahesh (IIT Kanpur) PDE with TensorFlow February 27, 2019 16 / 29

Page 25: Solving Partial Differential Equations with TensorFlow · Solving Partial Di erential Equations with TensorFlow A.V.S.D.S.Mahesh (Final year B.Tech.) IIT Kanpur February 27, 2019

TensorFlow Session object

“A Session object encapsulates the environment in which Tensor objectsare evaluated.” (from docs)

tf.InteractiveSession() is to keep a default session open in ipython.

A.V.S.D.S.Mahesh (IIT Kanpur) PDE with TensorFlow February 27, 2019 16 / 29

Page 26: Solving Partial Differential Equations with TensorFlow · Solving Partial Di erential Equations with TensorFlow A.V.S.D.S.Mahesh (Final year B.Tech.) IIT Kanpur February 27, 2019

Computation graph

“TensorFlow programs are usually structured into a constructionphase, that assembles a graph, and an execution phase that uses asession to execute ops in the graph.” (docs)

All computations add nodes to global default graph. (docs)

A.V.S.D.S.Mahesh (IIT Kanpur) PDE with TensorFlow February 27, 2019 17 / 29

Page 27: Solving Partial Differential Equations with TensorFlow · Solving Partial Di erential Equations with TensorFlow A.V.S.D.S.Mahesh (Final year B.Tech.) IIT Kanpur February 27, 2019

Computation graph

“TensorFlow programs are usually structured into a constructionphase, that assembles a graph, and an execution phase that uses asession to execute ops in the graph.” (docs)

All computations add nodes to global default graph. (docs)

A.V.S.D.S.Mahesh (IIT Kanpur) PDE with TensorFlow February 27, 2019 17 / 29

Page 28: Solving Partial Differential Equations with TensorFlow · Solving Partial Di erential Equations with TensorFlow A.V.S.D.S.Mahesh (Final year B.Tech.) IIT Kanpur February 27, 2019

Variables

“When you train a model you use variables to hold and updateparameters. Variables are in-memory buffers containing tensors.”(docs)

We have so far used constants. Now we shall see usage of variables.

Note that variables must be initialized before they have values, unlikewith constant tensors.

A.V.S.D.S.Mahesh (IIT Kanpur) PDE with TensorFlow February 27, 2019 18 / 29

Page 29: Solving Partial Differential Equations with TensorFlow · Solving Partial Di erential Equations with TensorFlow A.V.S.D.S.Mahesh (Final year B.Tech.) IIT Kanpur February 27, 2019

Variables

“When you train a model you use variables to hold and updateparameters. Variables are in-memory buffers containing tensors.”(docs)

We have so far used constants. Now we shall see usage of variables.

Note that variables must be initialized before they have values, unlikewith constant tensors.

A.V.S.D.S.Mahesh (IIT Kanpur) PDE with TensorFlow February 27, 2019 18 / 29

Page 30: Solving Partial Differential Equations with TensorFlow · Solving Partial Di erential Equations with TensorFlow A.V.S.D.S.Mahesh (Final year B.Tech.) IIT Kanpur February 27, 2019

Variables

“When you train a model you use variables to hold and updateparameters. Variables are in-memory buffers containing tensors.”(docs)

We have so far used constants. Now we shall see usage of variables.

Note that variables must be initialized before they have values, unlikewith constant tensors.

A.V.S.D.S.Mahesh (IIT Kanpur) PDE with TensorFlow February 27, 2019 18 / 29

Page 31: Solving Partial Differential Equations with TensorFlow · Solving Partial Di erential Equations with TensorFlow A.V.S.D.S.Mahesh (Final year B.Tech.) IIT Kanpur February 27, 2019

Updating and Fetching Variables

Calling sess.run(var) on a tf.Session() object retrieves its value.Can retrieve multiple variables simultaneously with sess.run([var1,

var2])4

4url: https://cs224d.stanford.edu/lectures/CS224d-Lecture7.pdf.

A.V.S.D.S.Mahesh (IIT Kanpur) PDE with TensorFlow February 27, 2019 19 / 29

Page 32: Solving Partial Differential Equations with TensorFlow · Solving Partial Di erential Equations with TensorFlow A.V.S.D.S.Mahesh (Final year B.Tech.) IIT Kanpur February 27, 2019

Updating and Fetching Variables

Calling sess.run(var) on a tf.Session() object retrieves its value.Can retrieve multiple variables simultaneously with sess.run([var1,

var2])4

4url: https://cs224d.stanford.edu/lectures/CS224d-Lecture7.pdf.

A.V.S.D.S.Mahesh (IIT Kanpur) PDE with TensorFlow February 27, 2019 19 / 29

Page 33: Solving Partial Differential Equations with TensorFlow · Solving Partial Di erential Equations with TensorFlow A.V.S.D.S.Mahesh (Final year B.Tech.) IIT Kanpur February 27, 2019

Import from Numpy

External data can be imported from Numpy using convert to tensor:

A.V.S.D.S.Mahesh (IIT Kanpur) PDE with TensorFlow February 27, 2019 20 / 29

Page 34: Solving Partial Differential Equations with TensorFlow · Solving Partial Di erential Equations with TensorFlow A.V.S.D.S.Mahesh (Final year B.Tech.) IIT Kanpur February 27, 2019

Placeholders and Feed Dictionaries

Inputting data with tf.convert to tensor() is convenient, but it isnot scalable.

Use tf.placeholder variables (dummy nodes that provide entrypoints for data to computational graph).

A feed dict is a python dictionary mapping from tf.placeholder

vars (or their names) to data (numpy arrays, lists, etc.).5

5url: https://cs224d.stanford.edu/lectures/CS224d-Lecture7.pdf.

A.V.S.D.S.Mahesh (IIT Kanpur) PDE with TensorFlow February 27, 2019 21 / 29

Page 35: Solving Partial Differential Equations with TensorFlow · Solving Partial Di erential Equations with TensorFlow A.V.S.D.S.Mahesh (Final year B.Tech.) IIT Kanpur February 27, 2019

Placeholders and Feed Dictionaries

Inputting data with tf.convert to tensor() is convenient, but it isnot scalable.

Use tf.placeholder variables (dummy nodes that provide entrypoints for data to computational graph).

A feed dict is a python dictionary mapping from tf.placeholder

vars (or their names) to data (numpy arrays, lists, etc.).5

5url: https://cs224d.stanford.edu/lectures/CS224d-Lecture7.pdf.

A.V.S.D.S.Mahesh (IIT Kanpur) PDE with TensorFlow February 27, 2019 21 / 29

Page 36: Solving Partial Differential Equations with TensorFlow · Solving Partial Di erential Equations with TensorFlow A.V.S.D.S.Mahesh (Final year B.Tech.) IIT Kanpur February 27, 2019

Placeholders and Feed Dictionaries

Inputting data with tf.convert to tensor() is convenient, but it isnot scalable.

Use tf.placeholder variables (dummy nodes that provide entrypoints for data to computational graph).

A feed dict is a python dictionary mapping from tf.placeholder

vars (or their names) to data (numpy arrays, lists, etc.).5

5url: https://cs224d.stanford.edu/lectures/CS224d-Lecture7.pdf.

A.V.S.D.S.Mahesh (IIT Kanpur) PDE with TensorFlow February 27, 2019 21 / 29

Page 37: Solving Partial Differential Equations with TensorFlow · Solving Partial Di erential Equations with TensorFlow A.V.S.D.S.Mahesh (Final year B.Tech.) IIT Kanpur February 27, 2019

Placeholders and Feed Dictionaries: Example

A.V.S.D.S.Mahesh (IIT Kanpur) PDE with TensorFlow February 27, 2019 22 / 29

Page 38: Solving Partial Differential Equations with TensorFlow · Solving Partial Di erential Equations with TensorFlow A.V.S.D.S.Mahesh (Final year B.Tech.) IIT Kanpur February 27, 2019

Table of Contents

1 Getting started

2 TensorFlow and Numpy

3 TensorFlow objectsSession objectComputation graphVariablesMiscellaneous objects

4 2D wave equation solver

5 Conclusion

A.V.S.D.S.Mahesh (IIT Kanpur) PDE with TensorFlow February 27, 2019 23 / 29

Page 39: Solving Partial Differential Equations with TensorFlow · Solving Partial Di erential Equations with TensorFlow A.V.S.D.S.Mahesh (Final year B.Tech.) IIT Kanpur February 27, 2019

2D wave equation solver

This is a small demonstration of a pde solver6. Initializations:

6url: https://www.tensorflow.org/tutorials/non-ml/pdes.

A.V.S.D.S.Mahesh (IIT Kanpur) PDE with TensorFlow February 27, 2019 24 / 29

Page 40: Solving Partial Differential Equations with TensorFlow · Solving Partial Di erential Equations with TensorFlow A.V.S.D.S.Mahesh (Final year B.Tech.) IIT Kanpur February 27, 2019

2D wave equation solver

This is a small demonstration of a pde solver6. Initializations:

6url: https://www.tensorflow.org/tutorials/non-ml/pdes.

A.V.S.D.S.Mahesh (IIT Kanpur) PDE with TensorFlow February 27, 2019 24 / 29

Page 41: Solving Partial Differential Equations with TensorFlow · Solving Partial Di erential Equations with TensorFlow A.V.S.D.S.Mahesh (Final year B.Tech.) IIT Kanpur February 27, 2019

2D wave equation solver

Main code:

A.V.S.D.S.Mahesh (IIT Kanpur) PDE with TensorFlow February 27, 2019 25 / 29

Page 42: Solving Partial Differential Equations with TensorFlow · Solving Partial Di erential Equations with TensorFlow A.V.S.D.S.Mahesh (Final year B.Tech.) IIT Kanpur February 27, 2019

2D wave equation solver

Main code:

A.V.S.D.S.Mahesh (IIT Kanpur) PDE with TensorFlow February 27, 2019 25 / 29

Page 43: Solving Partial Differential Equations with TensorFlow · Solving Partial Di erential Equations with TensorFlow A.V.S.D.S.Mahesh (Final year B.Tech.) IIT Kanpur February 27, 2019

2D wave equation solver

What is inside laplace(U):

A.V.S.D.S.Mahesh (IIT Kanpur) PDE with TensorFlow February 27, 2019 26 / 29

Page 44: Solving Partial Differential Equations with TensorFlow · Solving Partial Di erential Equations with TensorFlow A.V.S.D.S.Mahesh (Final year B.Tech.) IIT Kanpur February 27, 2019

2D wave equation solver

What is inside laplace(U):

A.V.S.D.S.Mahesh (IIT Kanpur) PDE with TensorFlow February 27, 2019 26 / 29

Page 45: Solving Partial Differential Equations with TensorFlow · Solving Partial Di erential Equations with TensorFlow A.V.S.D.S.Mahesh (Final year B.Tech.) IIT Kanpur February 27, 2019

2D wave equation solver: Visualization

A.V.S.D.S.Mahesh (IIT Kanpur) PDE with TensorFlow February 27, 2019 27 / 29

Page 46: Solving Partial Differential Equations with TensorFlow · Solving Partial Di erential Equations with TensorFlow A.V.S.D.S.Mahesh (Final year B.Tech.) IIT Kanpur February 27, 2019

Table of Contents

1 Getting started

2 TensorFlow and Numpy

3 TensorFlow objectsSession objectComputation graphVariablesMiscellaneous objects

4 2D wave equation solver

5 Conclusion

A.V.S.D.S.Mahesh (IIT Kanpur) PDE with TensorFlow February 27, 2019 28 / 29

Page 47: Solving Partial Differential Equations with TensorFlow · Solving Partial Di erential Equations with TensorFlow A.V.S.D.S.Mahesh (Final year B.Tech.) IIT Kanpur February 27, 2019

What from here?

TensorFlow uses underlying gpu and cpu for parallelizing operations likeconvolution. If it is to be done not multiple gpu’s then the data has to bedivided and planned so for this purpose. A small demonstration:7

7url: https://www.tensorflow.org/guide/using_gpu.

A.V.S.D.S.Mahesh (IIT Kanpur) PDE with TensorFlow February 27, 2019 29 / 29

Page 48: Solving Partial Differential Equations with TensorFlow · Solving Partial Di erential Equations with TensorFlow A.V.S.D.S.Mahesh (Final year B.Tech.) IIT Kanpur February 27, 2019

Thank You

A.V.S.D.S.Mahesh (IIT Kanpur) PDE with TensorFlow February 27, 2019 30 / 29