mirror of https://github.com/Jittor/Jittor
Fix a typo and make pip install git work properly
This commit is contained in:
parent
4b4ea7bf20
commit
a66c75e8c6
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue