Skip to content

Instantly share code, notes, and snippets.

@LaurentBerger
Created February 14, 2018 18:25
Show Gist options
  • Save LaurentBerger/1de4b75aab61dd57d9493a4a97ede777 to your computer and use it in GitHub Desktop.
Save LaurentBerger/1de4b75aab61dd57d9493a4a97ede777 to your computer and use it in GitHub Desktop.
runnning cpp_xor windows 10 msvc 2017
WARNING: Logging before InitGoogleLogging() is written to STDERR
I0214 19:15:50.821849 7128 solver.cpp:44] Initializing solver from parameters:
test_iter: 1
test_interval: 2000
base_lr: 0.02
display: 2000
max_iter: 5000000
lr_policy: "step"
gamma: 0.5
stepsize: 500000
snapshot: 1000000
snapshot_prefix: "XOR"
solver_mode: CPU
net: "xor.prototxt"
I0214 19:15:50.825850 7128 solver.cpp:87] Creating training net from net file: xor.prototxt
I0214 19:15:50.833853 7128 net.cpp:294] The NetState phase (0) differed from the phase (1) specified by a rule in layer test_inputdata
I0214 19:15:50.834853 7128 net.cpp:294] The NetState phase (0) differed from the phase (1) specified by a rule in layer output
I0214 19:15:50.835853 7128 net.cpp:51] Initializing net from parameters:
name: "XOR"
state {
phase: TRAIN
}
layer {
name: "inputdata"
type: "MemoryData"
top: "fulldata"
top: "label"
include {
phase: TRAIN
}
memory_data_param {
batch_size: 64
channels: 1
height: 1
width: 2
}
}
layer {
name: "fc6"
type: "InnerProduct"
bottom: "fulldata"
top: "fc6"
inner_product_param {
num_output: 2
weight_filler {
type: "xavier"
}
bias_filler {
type: "constant"
}
}
}
layer {
name: "fc6sig"
type: "Sigmoid"
bottom: "fc6"
top: "fc6"
}
layer {
name: "fc7"
type: "InnerProduct"
bottom: "fc6"
top: "fc7"
inner_product_param {
num_output: 1
weight_filler {
type: "xavier"
}
bias_filler {
type: "constant"
}
}
}
layer {
name: "loss"
type: "SigmoidCrossEntropyLoss"
bottom: "fc7"
bottom: "label"
top: "loss"
}
I0214 19:15:50.835853 7128 layer_factory.cpp:58] Creating layer inputdata
I0214 19:15:50.836853 7128 net.cpp:84] Creating Layer inputdata
I0214 19:15:50.836853 7128 net.cpp:380] inputdata -> fulldata
I0214 19:15:50.837854 7128 net.cpp:380] inputdata -> label
Intel MKL FATAL ERROR: Cannot load mkl_intel_thread.dll.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment