-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add basic definition of models, Needs to be trained and tested
Trained a lenet1 model Add All Weights Add unzip utility function, fix linux build Completed everything Fix build, Style fixes next Use force local for windows while unzipping tar files Use force local for windows while unzipping tar files Added Utility Function Added Utility Function Style Fix Fix Typo causing build error in windows Fix Typo causing build error in windows Fix const issue for windows Extract in data folder Reposition force local This should work Print Path in windows for debugging Print Path in windows for debugging Print Path in windows for debugging Stip components of tar Stip components of tar strip componenets Initial Definition Add List Dir utility function Add List Dir utility function Squash this, annotation read Yay, we can read xml now
- Loading branch information
1 parent
e70d009
commit 3353e2e
Showing
12 changed files
with
445 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,5 +4,8 @@ xcode* | |
.idea | ||
cmake-build-* | ||
*.csv | ||
*.tar | ||
*.zip | ||
*.tar.gz | ||
.travis/configs.hpp | ||
Testing/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
<annotation> | ||
<folder>VOC2012</folder> | ||
<filename>2007_000027.jpg</filename> | ||
<source> | ||
<database>The VOC2007 Database</database> | ||
<annotation>PASCAL VOC2007</annotation> | ||
<image>flickr</image> | ||
</source> | ||
<size> | ||
<width>486</width> | ||
<height>500</height> | ||
<depth>3</depth> | ||
</size> | ||
<segmented>0</segmented> | ||
<object> | ||
<name>person</name> | ||
<pose>Unspecified</pose> | ||
<truncated>0</truncated> | ||
<difficult>0</difficult> | ||
<bndbox> | ||
<xmin>174</xmin> | ||
<ymin>101</ymin> | ||
<xmax>349</xmax> | ||
<ymax>351</ymax> | ||
</bndbox> | ||
<part> | ||
<name>head</name> | ||
<bndbox> | ||
<xmin>169</xmin> | ||
<ymin>104</ymin> | ||
<xmax>209</xmax> | ||
<ymax>146</ymax> | ||
</bndbox> | ||
</part> | ||
<part> | ||
<name>hand</name> | ||
<bndbox> | ||
<xmin>278</xmin> | ||
<ymin>210</ymin> | ||
<xmax>297</xmax> | ||
<ymax>233</ymax> | ||
</bndbox> | ||
</part> | ||
<part> | ||
<name>foot</name> | ||
<bndbox> | ||
<xmin>273</xmin> | ||
<ymin>333</ymin> | ||
<xmax>297</xmax> | ||
<ymax>354</ymax> | ||
</bndbox> | ||
</part> | ||
<part> | ||
<name>foot</name> | ||
<bndbox> | ||
<xmin>319</xmin> | ||
<ymin>307</ymin> | ||
<xmax>340</xmax> | ||
<ymax>326</ymax> | ||
</bndbox> | ||
</part> | ||
</object> | ||
</annotation> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
<annotation> | ||
<folder>VOC2012</folder> | ||
<filename>2007_000032.jpg</filename> | ||
<source> | ||
<database>The VOC2007 Database</database> | ||
<annotation>PASCAL VOC2007</annotation> | ||
<image>flickr</image> | ||
</source> | ||
<size> | ||
<width>500</width> | ||
<height>281</height> | ||
<depth>3</depth> | ||
</size> | ||
<segmented>1</segmented> | ||
<object> | ||
<name>aeroplane</name> | ||
<pose>Frontal</pose> | ||
<truncated>0</truncated> | ||
<difficult>0</difficult> | ||
<bndbox> | ||
<xmin>104</xmin> | ||
<ymin>78</ymin> | ||
<xmax>375</xmax> | ||
<ymax>183</ymax> | ||
</bndbox> | ||
</object> | ||
<object> | ||
<name>aeroplane</name> | ||
<pose>Left</pose> | ||
<truncated>0</truncated> | ||
<difficult>0</difficult> | ||
<bndbox> | ||
<xmin>133</xmin> | ||
<ymin>88</ymin> | ||
<xmax>197</xmax> | ||
<ymax>123</ymax> | ||
</bndbox> | ||
</object> | ||
<object> | ||
<name>person</name> | ||
<pose>Rear</pose> | ||
<truncated>0</truncated> | ||
<difficult>0</difficult> | ||
<bndbox> | ||
<xmin>195</xmin> | ||
<ymin>180</ymin> | ||
<xmax>213</xmax> | ||
<ymax>229</ymax> | ||
</bndbox> | ||
</object> | ||
<object> | ||
<name>person</name> | ||
<pose>Rear</pose> | ||
<truncated>0</truncated> | ||
<difficult>0</difficult> | ||
<bndbox> | ||
<xmin>26</xmin> | ||
<ymin>189</ymin> | ||
<xmax>44</xmax> | ||
<ymax>238</ymax> | ||
</bndbox> | ||
</object> | ||
</annotation> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.