Skip to content

Commit

Permalink
Merge pull request #200 from Bihaqo/troubleshooting_docs
Browse files Browse the repository at this point in the history
Troubleshooting docs
  • Loading branch information
Bihaqo authored Dec 9, 2019
2 parents a7c25c1 + fc987e8 commit 0361b80
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 3 deletions.
1 change: 1 addition & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ t3f is implemented on top of TensorFlow which gives it a few nice properties:
api
comparison
benchmark
troubleshooting

.. toctree::
:maxdepth: 1
Expand Down
3 changes: 0 additions & 3 deletions docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,3 @@ To install the latest version, run
git clone https://github.com/Bihaqo/t3f.git
cd t3f
pip install .
Note that using the neural module (`t3f.nn`) may require additional dependencies
such as Keras.
22 changes: 22 additions & 0 deletions docs/troubleshooting.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
.. _TroubleshootingInstructions:

Troubleshooting
===============

If something does not work, try

* Installing the latest version of the library (see :ref:`InstallationInstructions`)

* Importing TensorFlow in the following way:

.. code-block:: python
import tensorflow.compat.v1 as tf
tf.disable_v2_behavior()
tf.enable_resource_variables()
tf.enable_eager_execution()
* Creating an issue_ on GitHub

.. _issue: https://github.com/Bihaqo/t3f/issues/new

0 comments on commit 0361b80

Please sign in to comment.