Skip to content

Commit

Permalink
Update Common_Gotchas_in_JAX.ipynb (jax-ml#3189)
Browse files Browse the repository at this point in the history
typo fix
  • Loading branch information
Sohl-Dickstein authored and NeilGirdhar committed Jun 11, 2020
1 parent 3f38570 commit 80a7fe7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/notebooks/Common_Gotchas_in_JAX.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
"colab_type": "text"
},
"source": [
"JAX transformation and compilation are designed to work only on Python functions that are functionally pure: all the input data is passed through the function parameters, all the results are output through the function results. A pure function will always return the same result if involved with the same inputs. \n",
"JAX transformation and compilation are designed to work only on Python functions that are functionally pure: all the input data is passed through the function parameters, all the results are output through the function results. A pure function will always return the same result if invoked with the same inputs. \n",
"\n",
"Here are some examples of functions that are not functially pure for which JAX behaves differently than the Python interpreter. Note that these behaviors are not guaranteed by the JAX system; the proper way to use JAX is to use it only on functionally pure Python functions.\n"
]
Expand Down Expand Up @@ -2626,4 +2626,4 @@
]
}
]
}
}

0 comments on commit 80a7fe7

Please sign in to comment.