我正在使用在CPU上运行的传统caffe设置。
我切换了一行代码:
function enableInputonClick(element) {
var input = $('.form-control-optional');
$(element).on('ifClicked', function() {
if(input.length && input.attr("disabled", "disabled")) {
input.removeAttr("disabled");
}
});
$('input[type=radio]:not(element)').on('ifClicked', function() {
if(input.length && input.attr("disabled", "")) {
input.attr("disabled");
}
});
}
enableInputonClick("#myRadioEl");
为:
f1 <- function(x) {
log10(mean(10 ^ x))
}
stat_summary (fun.y = f1, geom="line", mapping = aes (group = 1))
但是我收到了错误:
caffe.set_mode_cpu()
我检查了Makefile.config,相关设置为:
caffe.set_mode_gpu()
我假设1为True,所以我改为
Cannot use GPU in CPU-only Caffe: check mode.
但它没有帮助。
任何线索?
答案 0 :(得分:1)
您需要更改:
#CPU-only switch (uncomment to build without GPU support)
CPU_only := 1
到此:
#CPU-only switch (uncomment to build without GPU support)
#CPU_only := 1
并重建。