diff --git a/README.md b/README.md index 83ef659d112..a0f06114045 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ Tutorial | Last Updated | [Python Interoperability](https://colab.sandbox.google.com/github/tensorflow/swift/blob/master/docs/site/tutorials/python_interoperability.ipynb) | March 2019 [Custom Differentiation](https://colab.sandbox.google.com/github/tensorflow/swift/blob/master/docs/site/tutorials/custom_differentiation.ipynb) | March 2019 [Model Training Walkthrough](https://colab.sandbox.google.com/github/tensorflow/swift/blob/master/docs/site/tutorials/model_training_walkthrough.ipynb) | March 2019 -[Using Raw TensorFlow Operators](https://colab.sandbox.google.com/github/tensorflow/swift/blob/master/docs/site/tutorials/using_raw_tensorflow_operators.ipynb) | March 2019 +[Raw TensorFlow Operators](https://colab.sandbox.google.com/github/tensorflow/swift/blob/master/docs/site/tutorials/raw_tensorflow_operators.ipynb) | March 2019 ### Resources diff --git a/docs/site/_book.yaml b/docs/site/_book.yaml index 7f3869de709..bd25d928553 100644 --- a/docs/site/_book.yaml +++ b/docs/site/_book.yaml @@ -23,7 +23,7 @@ upper_tabs: - title: "Custom differentiation" path: /swift/tutorials/custom_differentiation - title: "Using raw tensorFlow operators" - path: /swift/tutorials/using_raw_tensorflow_operators + path: /swift/tutorials/raw_tensorflow_operators - name: API skip_translation: true contents: diff --git a/docs/site/tutorials/using_raw_tensorflow_operators.ipynb b/docs/site/tutorials/raw_tensorflow_operators.ipynb similarity index 94% rename from docs/site/tutorials/using_raw_tensorflow_operators.ipynb rename to docs/site/tutorials/raw_tensorflow_operators.ipynb index cf095d70e2f..6b004943e24 100644 --- a/docs/site/tutorials/using_raw_tensorflow_operators.ipynb +++ b/docs/site/tutorials/raw_tensorflow_operators.ipynb @@ -3,7 +3,7 @@ "nbformat_minor": 0, "metadata": { "colab": { - "name": "Using raw TensorFlow operators.ipynb", + "name": "Raw TensorFlow operators.ipynb", "version": "0.3.2", "provenance": [], "collapsed_sections": [], @@ -58,13 +58,13 @@ "source": [ "\n", " \n", " \n", " \n", "
\n", - " View on TensorFlow.org\n", + " View on TensorFlow.org\n", " \n", - " Run in Google Colab\n", + " Run in Google Colab\n", " \n", - " View source on GitHub\n", + " View source on GitHub\n", "
" ] @@ -76,7 +76,7 @@ }, "cell_type": "markdown", "source": [ - "# Using raw TensorFlow operators\n", + "# Raw TensorFlow operators\n", "\n", "Building on TensorFlow, Swift for TensorFlow takes a fresh approach to API design. APIs are carefully curated from established libraries and combined with new language idioms. This means that not all TensorFlow APIs will be directly available as Swift APIs, and our API curation needs time and dedicated effort to evolve. However, do not worry if your favorite TensorFlow operator is not available in Swift -- the TensorFlow Swift library gives you transparent access to most TensorFlow operators, under the `Raw` namespace.\n" ]