Skip to content

Commit 6e91157

Browse files
committed
update readme
1 parent f572acd commit 6e91157

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

README.md

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,22 +20,18 @@ building, and someone who don't want to rewrite the standard layers in tensorflo
2020
constantly. Also for enterprise users who want to share deep learning models
2121
easily between teams.
2222

23-
## Documentation
24-
25-
You can check out the documentation [https://skymed.ai/pages/AI-Platform/TensorGraph/](https://skymed.ai/pages/AI-Platform/TensorGraph/)
26-
2723
-----
2824
## Install
2925

3026
First you need to install [tensorflow](https://www.tensorflow.org/versions/r0.9/get_started/os_setup.html)
3127

3228
To install tensorgraph for bleeding edge version via pip
3329
```bash
34-
sudo pip install --upgrade git+https://skymed.ai/AI-Platform/TensorGraph.git@master
30+
sudo pip install --upgrade git+https://github.com/hycis/TensorGraph.git@master
3531
```
3632
or simply clone and add to `PYTHONPATH`.
3733
```bash
38-
git clone https://skymed.ai/AI-Platform/TensorGraph.git
34+
git clone https://github.com/hycis/TensorGraph.git
3935
export PYTHONPATH=/path/to/TensorGraph:$PYTHONPATH
4036
```
4137
in order for the install to persist via export `PYTHONPATH`. Add `PYTHONPATH=/path/to/TensorGraph:$PYTHONPATH` to your `.bashrc` for linux or
@@ -400,7 +396,6 @@ o2_mse = tf.reduce_mean((y2 - o2)**2)
400396
mse = o1_mse + o2_mse
401397
optimizer = tf.train.AdamOptimizer(learning_rate).minimize(mse)
402398
```
403-
<<<<<<< HEAD
404399

405400
-----
406401
## TensorGraph on Multiple GPUS

0 commit comments

Comments
 (0)