-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 4a07951
Showing
12 changed files
with
2,500 additions
and
0 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
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.
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,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 not shown.
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,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 |
Oops, something went wrong.