LICENSE governs the whole project so strip file headers

This commit is contained in:
Evan Shelhamer 2014-08-06 00:43:17 -07:00
Родитель 9410e93480
Коммит b97b88f0c2
165 изменённых файлов: 3 добавлений и 318 удалений

Просмотреть файл

@ -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>

Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше