зеркало из https://github.com/microsoft/caffe.git
LICENSE governs the whole project so strip file headers
This commit is contained in:
Родитель
9410e93480
Коммит
b97b88f0c2
|
@ -1,4 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
//
|
||||
// This script converts the CIFAR dataset to the leveldb format used
|
||||
// by caffe to perform classification.
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
//
|
||||
// This script converts the MNIST dataset to the leveldb format used
|
||||
// by caffe to perform classification.
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#ifndef CAFFE_BLOB_HPP_
|
||||
#define CAFFE_BLOB_HPP_
|
||||
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
// caffe.hpp is the header file that you need to include in your code. It wraps
|
||||
// all the internal caffe header files into one for simpler inclusion.
|
||||
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#ifndef CAFFE_COMMON_HPP_
|
||||
#define CAFFE_COMMON_HPP_
|
||||
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#ifndef CAFFE_COMMON_LAYERS_HPP_
|
||||
#define CAFFE_COMMON_LAYERS_HPP_
|
||||
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#ifndef CAFFE_DATA_LAYERS_HPP_
|
||||
#define CAFFE_DATA_LAYERS_HPP_
|
||||
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
// Fillers are random number generators that fills a blob using the specified
|
||||
// algorithm. The expectation is that they are only going to be used during
|
||||
// initialization time and will not involve any GPUs.
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#ifndef CAFFE_INTERNAL_THREAD_HPP_
|
||||
#define CAFFE_INTERNAL_THREAD_HPP_
|
||||
|
||||
|
@ -28,7 +26,7 @@ class InternalThread {
|
|||
}
|
||||
|
||||
protected:
|
||||
/* Implement this method in your subclass
|
||||
/* Implement this method in your subclass
|
||||
with the code you want your thread to run. */
|
||||
virtual void InternalThreadEntry() = 0;
|
||||
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#ifndef CAFFE_LAYER_H_
|
||||
#define CAFFE_LAYER_H_
|
||||
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#ifndef CAFFE_LOSS_LAYERS_HPP_
|
||||
#define CAFFE_LOSS_LAYERS_HPP_
|
||||
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#ifndef CAFFE_NET_HPP_
|
||||
#define CAFFE_NET_HPP_
|
||||
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#ifndef CAFFE_NEURON_LAYERS_HPP_
|
||||
#define CAFFE_NEURON_LAYERS_HPP_
|
||||
|
||||
|
@ -233,12 +231,12 @@ class TanHLayer : public NeuronLayer<Dtype> {
|
|||
|
||||
/* ThresholdLayer
|
||||
Outputs 1 if value in input is above threshold, 0 otherwise.
|
||||
The defult threshold = 0, which means positive values would become 1 and
|
||||
The defult threshold = 0, which means positive values would become 1 and
|
||||
negative or 0, would become 0
|
||||
|
||||
y = 1 if x > threshold
|
||||
y = 0 if x <= threshold
|
||||
|
||||
|
||||
y' = don't differenciable
|
||||
*/
|
||||
template <typename Dtype>
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#ifndef CAFFE_OPTIMIZATION_SOLVER_HPP_
|
||||
#define CAFFE_OPTIMIZATION_SOLVER_HPP_
|
||||
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#ifndef CAFFE_SYNCEDMEM_HPP_
|
||||
#define CAFFE_SYNCEDMEM_HPP_
|
||||
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
// The main caffe test code. Your test cpp code should include this hpp
|
||||
// to allow a main function to be compiled into the binary.
|
||||
#ifndef CAFFE_TEST_TEST_CAFFE_MAIN_HPP_
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#ifndef CAFFE_TEST_GRADIENT_CHECK_UTIL_H_
|
||||
#define CAFFE_TEST_GRADIENT_CHECK_UTIL_H_
|
||||
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#ifndef CAFFE_UTIL_BENCHMARK_H_
|
||||
#define CAFFE_UTIL_BENCHMARK_H_
|
||||
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#ifndef CAFFE_UTIL_DEVICE_ALTERNATE_H_
|
||||
#define CAFFE_UTIL_DEVICE_ALTERNATE_H_
|
||||
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#ifndef _CAFFE_UTIL_IM2COL_HPP_
|
||||
#define _CAFFE_UTIL_IM2COL_HPP_
|
||||
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#ifndef _CAFFE_UTIL_INSERT_SPLITS_HPP_
|
||||
#define _CAFFE_UTIL_INSERT_SPLITS_HPP_
|
||||
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#ifndef CAFFE_UTIL_IO_H_
|
||||
#define CAFFE_UTIL_IO_H_
|
||||
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#ifndef CAFFE_UTIL_MATH_FUNCTIONS_H_
|
||||
#define CAFFE_UTIL_MATH_FUNCTIONS_H_
|
||||
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#ifndef CAFFE_UTIL_MKL_ALTERNATE_H_
|
||||
#define CAFFE_UTIL_MKL_ALTERNATE_H_
|
||||
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#ifndef CAFFE_RNG_CPP_HPP_
|
||||
#define CAFFE_RNG_CPP_HPP_
|
||||
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#ifndef CAFFE_UTIL_UPGRADE_PROTO_H_
|
||||
#define CAFFE_UTIL_UPGRADE_PROTO_H_
|
||||
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#ifndef CAFFE_VISION_LAYERS_HPP_
|
||||
#define CAFFE_VISION_LAYERS_HPP_
|
||||
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
//
|
||||
// matcaffe.cpp provides a wrapper of the caffe::Net class as well as some
|
||||
// caffe::Caffe functions so that one could easily call it from matlab.
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
// pycaffe provides a wrapper of the caffe::Net class as well as some
|
||||
// caffe::Caffe functions so that one could easily call it from Python.
|
||||
// Note that for Python, we will simply use float as the data type.
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#include "caffe/blob.hpp"
|
||||
#include "caffe/common.hpp"
|
||||
#include "caffe/syncedmem.hpp"
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#include <gflags/gflags.h>
|
||||
#include <glog/logging.h>
|
||||
#include <cstdio>
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#ifndef CAFFE_LAYER_FACTORY_HPP_
|
||||
#define CAFFE_LAYER_FACTORY_HPP_
|
||||
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#include <algorithm>
|
||||
#include <functional>
|
||||
#include <utility>
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#include <algorithm>
|
||||
#include <functional>
|
||||
#include <utility>
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#include <algorithm>
|
||||
#include <vector>
|
||||
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#include <algorithm>
|
||||
#include <vector>
|
||||
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#include <vector>
|
||||
|
||||
#include "caffe/layer.hpp"
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#include <vector>
|
||||
|
||||
#include "caffe/layer.hpp"
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#include <vector>
|
||||
|
||||
#include "caffe/filler.hpp"
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#include <vector>
|
||||
|
||||
#include "caffe/filler.hpp"
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#include <leveldb/db.h>
|
||||
#include <stdint.h>
|
||||
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
// TODO (sergeyk): effect should not be dependent on phase. wasted memcpy.
|
||||
|
||||
#include <vector>
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#include <algorithm>
|
||||
#include <limits>
|
||||
#include <vector>
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#include <vector>
|
||||
|
||||
#include "caffe/filler.hpp"
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#include <vector>
|
||||
|
||||
#include "caffe/layer.hpp"
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#include <vector>
|
||||
|
||||
#include "caffe/layer.hpp"
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#include <vector>
|
||||
|
||||
#include "caffe/layer.hpp"
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#include <vector>
|
||||
|
||||
#include "caffe/layer.hpp"
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#include <vector>
|
||||
|
||||
#include "caffe/layer.hpp"
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#include <vector>
|
||||
|
||||
#include "caffe/layer.hpp"
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
/*
|
||||
TODO:
|
||||
- load file in a separate thread ("prefetch")
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
/*
|
||||
TODO:
|
||||
- only load parts of the file, in accordance with a prototxt param "max_mem"
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#include <vector>
|
||||
|
||||
#include "hdf5.h"
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#include <vector>
|
||||
|
||||
#include "hdf5.h"
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#include <algorithm>
|
||||
#include <cfloat>
|
||||
#include <cmath>
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#include <vector>
|
||||
|
||||
#include "caffe/common.hpp"
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#include <vector>
|
||||
|
||||
#include "caffe/common.hpp"
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#include <fstream> // NOLINT(readability/streams)
|
||||
#include <iostream> // NOLINT(readability/streams)
|
||||
#include <string>
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#include <vector>
|
||||
|
||||
#include "caffe/blob.hpp"
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#include <algorithm>
|
||||
#include <cfloat>
|
||||
#include <cmath>
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#include <vector>
|
||||
|
||||
#include "caffe/blob.hpp"
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#include <vector>
|
||||
|
||||
#include "caffe/blob.hpp"
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#include <algorithm>
|
||||
#include <cfloat>
|
||||
#include <cmath>
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#include <vector>
|
||||
|
||||
#include "caffe/layer.hpp"
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#include <vector>
|
||||
|
||||
#include "caffe/layer.hpp"
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#include <vector>
|
||||
|
||||
#include "caffe/layer.hpp"
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#include <algorithm>
|
||||
#include <cfloat>
|
||||
#include <cmath>
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#include <vector>
|
||||
|
||||
#include "caffe/layer.hpp"
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#include <algorithm>
|
||||
#include <cfloat>
|
||||
#include <vector>
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#include <algorithm>
|
||||
#include <cfloat>
|
||||
#include <vector>
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#include <algorithm>
|
||||
#include <vector>
|
||||
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#include <algorithm>
|
||||
#include <vector>
|
||||
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#include <algorithm>
|
||||
#include <vector>
|
||||
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#include <algorithm>
|
||||
#include <vector>
|
||||
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#include <algorithm>
|
||||
#include <cfloat>
|
||||
#include <vector>
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#include <algorithm>
|
||||
#include <cfloat>
|
||||
#include <vector>
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#include <algorithm>
|
||||
#include <cmath>
|
||||
#include <vector>
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#include <algorithm>
|
||||
#include <cmath>
|
||||
#include <vector>
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#include <algorithm>
|
||||
#include <vector>
|
||||
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#include <vector>
|
||||
|
||||
#include "caffe/layer.hpp"
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
//
|
||||
#include <algorithm>
|
||||
#include <vector>
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#include <algorithm>
|
||||
#include <cfloat>
|
||||
#include <vector>
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#include <algorithm>
|
||||
#include <cfloat>
|
||||
#include <vector>
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#include <algorithm>
|
||||
#include <cfloat>
|
||||
#include <vector>
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#include <vector>
|
||||
|
||||
#include "caffe/layer.hpp"
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#include <vector>
|
||||
|
||||
#include "caffe/layer.hpp"
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
// TanH neuron activation function layer.
|
||||
// Adapted from ReLU layer code written by Yangqing Jia
|
||||
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
// TanH neuron activation function layer.
|
||||
// Adapted from ReLU layer code written by Yangqing Jia
|
||||
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#include <vector>
|
||||
|
||||
#include "caffe/layer.hpp"
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#include <algorithm>
|
||||
#include <vector>
|
||||
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
//
|
||||
// Based on data_layer.cpp by Yangqing Jia.
|
||||
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
//
|
||||
// Based on data_layer.cpp by Yangqing Jia.
|
||||
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#include <map>
|
||||
#include <set>
|
||||
#include <string>
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
syntax = "proto2";
|
||||
|
||||
package caffe;
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
syntax = "proto2";
|
||||
|
||||
package caffe;
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#include <cstdio>
|
||||
|
||||
#include <algorithm>
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#include <cstring>
|
||||
|
||||
#include "caffe/common.hpp"
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#include <cfloat>
|
||||
#include <cmath>
|
||||
#include <cstring>
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
// Copyright 2014 BVLC and contributors.
|
||||
|
||||
#include <utility>
|
||||
#include <vector>
|
||||
|
||||
|
|
Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше
Загрузка…
Ссылка в новой задаче