Merge pull request #5 from boltomli/patch-1

Fix a typo and make pip install git work properly
This commit is contained in:
yang guo ye 2020-03-20 16:30:58 +08:00 committed by GitHub
commit bb16582683
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@
Jittor is a high-performance deep learning framework based on JIT compiling and meta-operators. The whole framework and meta-operators are compiled just-in-time. A powerful op compiler and tuner are integrated into Jittor. It allowed us to generate high-performance code with specialized for your model.
The front-end language is Python. Module Design is used in the front-end, like PyTorch and Keras. The back-end is implemented py high performance language, such as CUDA,C++.
The front-end language is Python. Module Design is used in the front-end, like PyTorch and Keras. The back-end is implemented with high performance languages, such as CUDA,C++.
The following example shows how to model a two-layer neural network step by step and train from scratch In a few lines of Python code.
@ -89,7 +89,7 @@ Jittor offers three ways to install: pip, script or manual.
```bash
sudo apt install python-dev libomp-dev
sudo pip install https://github.com/Jittor/jittor.git
sudo pip install git+https://github.com/Jittor/jittor.git
# if you cannot access github, please download code from our website:
# wget https://cg.cs.tsinghua.edu.cn/jittor/assets/build/jittor.tgz
# mkdir -p jittor && tar -xvf ./jittor.tgz -C jittor