Skip to content

Commit 933c465

Browse files
authored
Merge pull request #137 from CSAILVision/hang-dev
fix max number of iterations
2 parents f8db057 + 0100431 commit 933c465

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,16 @@ IMPORTANT: We use our self-trained base model on ImageNet. The model takes the i
7171
<td>Yes</td><td>33.75</td><td>76.75</td><td>55.25</td>
7272
<td>10.3</td>
7373
</tr>
74+
<tr>
75+
<td rowspan="2">MobileNetV2dilated + PPM_deepsup</td>
76+
<td>No</td><td>35.76</td><td>77.77</td><td>56.27</td>
77+
<td>14.9</td>
78+
<td rowspan="2">0.9 * 20 = 18.0</td>
79+
</tr>
80+
<tr>
81+
<td>Yes</td><td>36.28</td><td>78.26</td><td>57.27</td>
82+
<td>6.7</td>
83+
</tr>
7484
<tr>
7585
<td rowspan="2">ResNet18dilated + C1_deepsup</td>
7686
<td>No</td><td>33.82</td><td>76.05</td><td>54.94</td>

dataset.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ def __getitem__(self, index):
153153
return output
154154

155155
def __len__(self):
156-
return int(1e6) # It's a fake length due to the trick that every loader maintains its own list
156+
return int(1e10) # It's a fake length due to the trick that every loader maintains its own list
157157
#return self.num_sampleclass
158158

159159

0 commit comments

Comments
 (0)