You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9-13Lines changed: 9 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -20,15 +20,19 @@ DeepView.Profile works with *GPU-based* neural networks that are implemented in
20
20
To run DeepView.Profile, you need:
21
21
- A system equipped with an NVIDIA GPU
22
22
- Python 3.7+
23
-
-[Poetry](https://python-poetry.org/)
24
23
- PyTorch 1.1.0+ with CUDA
25
24
-**NOTE:** We assume you have the correct version of PyTorch installed for their GPU. Default PyTorch installation on Linux distros might not have CUDA support. If you see error similar to below, your PyTorch version is incompatible with your version of CUDA. You can download the appropriate version from the [PyTorch site](https://pytorch.org/get-started/locally/)
26
25
```NVIDIA GeForce RTX 3060 Ti with CUDA capability sm_86 is not compatible with the current PyTorch installation.
27
26
The current PyTorch install supports CUDA capabilities sm_37 sm_50 sm_60 sm_70.
28
27
If you want to use the NVIDIA GeForce RTX 3060 Ti GPU with PyTorch, please check the instructions at https://pytorch.org/get-started/locally/
29
28
```
30
-
- Python 3.6+ or Python 3.7+ on OSX
31
29
30
+
### Installation from PyPi
31
+
32
+
Installing with [Pip](https://packaging.python.org/en/latest/tutorials/installing-packages/#use-pip-for-installing)
33
+
```zsh
34
+
pip install deepview-profile
35
+
```
32
36
33
37
### Installation from source
34
38
```bash
@@ -38,14 +42,6 @@ poetry install
38
42
poetry run deepview --help
39
43
```
40
44
41
-
### Installation from PyPi
42
-
43
-
Installing with [Pip](https://packaging.python.org/en/latest/tutorials/installing-packages/#use-pip-for-installing)
44
-
```zsh
45
-
python3 -m pip install deepview-profiler
46
-
python3 -m deepview -h
47
-
```
48
-
49
45
<h2id="getting-started">Usage example</h2>
50
46
51
47
To use DeepView.Profile in your project, you need to first write an entry point file, which is a regular Python file that describes how your model is created and trained. See the [Entry Point](docs/providers.md) for more information.
@@ -54,7 +50,7 @@ Once your entry point file is ready, there are two ways to profile interactive p
54
50
55
51
### Interactive Profiling
56
52
```zsh
57
-
poetry run deepview interactive
53
+
python3 -m deepview_profile interactive
58
54
```
59
55
60
56
### Standalone Profiling
@@ -66,14 +62,14 @@ file where you want DeepView.Profile to save the run time profiling report using
0 commit comments