Skip to content

Commit b486e87

Browse files
committed
README WIp
1 parent fcdc2a0 commit b486e87

File tree

1 file changed

+43
-0
lines changed
  • models/experimental/panoptic_deeplab

1 file changed

+43
-0
lines changed
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# Panoptic Deeplab
2+
3+
## Platforms:
4+
Wormhole (n150)
5+
6+
## Introduction
7+
Panoptic-DeepLab is a state-of-the-art bottom-up method for panoptic segmentation, where the goal is to assign semantic labels (e.g., person, dog, cat and so on) to every pixel in the input image as well as instance labels (e.g. an id of 1, 2, 3, etc) to pixels belonging to thing classes.
8+
9+
## Prerequisites
10+
- Cloned [tt-metal repository](https://github.com/tenstorrent/tt-metal) for source code
11+
- Installed: [TT-Metalium™ / TT-NN™](https://github.com/tenstorrent/tt-metal/blob/main/INSTALLING.md)
12+
- To obtain the perf reports through profiler, please build with: `./build_metal.sh -p`
13+
14+
## How to Run
15+
```
16+
pytest models/experimental/panoptic_deeplab/tests/test_panoptic_deeplab.py
17+
```
18+
19+
### Model performant running with Trace+2CQ
20+
#### Single Device (BS=1):
21+
- end-2-end perf is `_` FPS
22+
```
23+
pytest
24+
```
25+
26+
### Demo
27+
**Note:** Output images will be saved in the `panoptic_deeplab_predictions/` folder.
28+
29+
#### Single Device (BS=1):
30+
##### Custom Images:
31+
- Use the following command to run demo :
32+
```
33+
pytest models/experimental/panoptic_deeplab/tests/test_panoptic_deeplab.py
34+
```
35+
36+
- To use a different image(s) for demo, replace your image(s) in the image path `models/experimental/panoptic_deeplab/resources/` and run:
37+
```
38+
pytest models/experimental/panoptic_deeplab/tests/test_panoptic_deeplab.py
39+
```
40+
41+
## Details
42+
- The entry point to the `Panoptic Deeplab` is located at:`models/experimental/panoptic_deeplab/tt/panoptic_deeplab.py`..
43+
- Supported Input Resolution - `(512, 1024)` - (Height, Width).

0 commit comments

Comments
 (0)