Skip to content

Commit

Permalink
init commit
Browse files Browse the repository at this point in the history
  • Loading branch information
xungeer29 committed Apr 2, 2019
0 parents commit 4a07951
Show file tree
Hide file tree
Showing 12 changed files with 2,500 additions and 0 deletions.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#

## RUN
* STEP1:
将所有的`.py`文件的`sys.path.append`中添加的路径改为自己的项目路径
* 划分训练集和本地验证集
```
python dataset/create_img_list.py
```
Empty file added __init__.py
Empty file.
15 changes: 15 additions & 0 deletions config.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
class DefaultConfigs(object):
data_root = '/media/gfx/data1/DATA/lida/UCMerced_LandUse/UCMerced_LandUse/Images'
model = 'ResNet152' # ResNet34

seed = 1000
num_workers = 12
num_classes = 21
num_epochs = 10
lr = 0.001
width = 256
height = 256



config = DefaultConfigs()
Binary file added config.pyc
Binary file not shown.
21 changes: 21 additions & 0 deletions data/label_list.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
mobilehomepark 0
baseballdiamond 1
overpass 2
parkinglot 3
tenniscourt 4
freeway 5
denseresidential 6
beach 7
mediumresidential 8
chaparral 9
airplane 10
harbor 11
runway 12
agricultural 13
intersection 14
golfcourse 15
storagetanks 16
buildings 17
forest 18
river 19
sparseresidential 20
Loading

0 comments on commit 4a07951

Please sign in to comment.