|
9 | 9 | "This is a notebook for running the benchmark semantic segmentation network from the the [ADE20K MIT Scene Parsing Benchchmark](http://sceneparsing.csail.mit.edu/).\n", |
10 | 10 | "\n", |
11 | 11 | "The code for this notebook is available here\n", |
12 | | - "https://github.com/davidbau/semantic-segmentation-pytorch/tree/tutorial/notebooks\n", |
| 12 | + "https://github.com/CSAILVision/semantic-segmentation-pytorch/tree/master/notebooks\n", |
13 | 13 | "\n", |
14 | | - "It can be run on Colab at this URL https://colab.research.google.com/github/davidbau/semantic-segmentation-pytorch/blob/tutorial/notebooks/DemoSegmenter.ipynb" |
| 14 | + "It can be run on Colab at this URL https://colab.research.google.com/github/CSAILVision/semantic-segmentation-pytorch/blob/master/notebooks/DemoSegmenter.ipynb" |
15 | 15 | ] |
16 | 16 | }, |
17 | 17 | { |
|
34 | 34 | "!(stat -t /usr/local/lib/*/dist-packages/google/colab > /dev/null 2>&1) && exit \n", |
35 | 35 | "pip install yacs 2>&1 >> install.log\n", |
36 | 36 | "git init 2>&1 >> install.log\n", |
37 | | - "git remote add origin https://github.com/davidbau/semantic-segmentation-pytorch.git 2>> install.log\n", |
38 | | - "git pull origin tutorial 2>&1 >> install.log\n", |
| 37 | + "git remote add origin https://github.com/CSAILVision/semantic-segmentation-pytorch.git 2>> install.log\n", |
| 38 | + "git pull origin master 2>&1 >> install.log\n", |
39 | 39 | "DOWNLOAD_ONLY=1 ./demo_test.sh 2>> install.log" |
40 | 40 | ] |
41 | 41 | }, |
|
157 | 157 | "\n", |
158 | 158 | "The segmentation model is coded as a function that takes a dictionary as input, because it wants to know both the input batch image data as well as the desired output segmentation resolution. We ask for full resolution output.\n", |
159 | 159 | "\n", |
160 | | - "Then we use the previously-defined visualize_result function to render the semgnatioon map." |
| 160 | + "Then we use the previously-defined visualize_result function to render the segmentation map." |
161 | 161 | ] |
162 | 162 | }, |
163 | 163 | { |
|
0 commit comments