Skip to content

Commit

Permalink
Added AlexNet logs.
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexey Kamenev committed Dec 12, 2015
1 parent f14e599 commit 6bf9dd1
Show file tree
Hide file tree
Showing 10 changed files with 5,490 additions and 4 deletions.
7 changes: 4 additions & 3 deletions CNTK/AlexNet.config
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Train=[
]

SGD=[
epochSize=2048
epochSize=8192
minibatchSize=256
learningRatesPerMB=0.01
momentumPerMB=0
Expand All @@ -44,12 +44,13 @@ Train=[
]
]

numMBsToShowResult=4
numMBsToShowResult=8
]

reader=[
readerType=UCIFastReader
file=$WorkDir$/imagenet_data.txt
randomize=None
features=[
dim=150528
start=1
Expand All @@ -58,7 +59,7 @@ reader=[
dim=1
start=0
labelDim=1000
labelMappingFile=$WorkDir$/labelmap.txt
labelMappingFile=$WorkDir$/labelmap.1K.txt
]
]

Expand Down
2 changes: 1 addition & 1 deletion CNTK/createFakeImageNetData.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

featDim = 224 * 224 * 3
labDim = 1000
totalCount = 256 * 8
totalCount = 256 * 32

def createFakeData(count):
features = np.random.randn(count, featDim)
Expand Down
Loading

0 comments on commit 6bf9dd1

Please sign in to comment.