Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Local IO #28

Merged
merged 65 commits into from
Aug 28, 2015
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
Show all changes
65 commits
Select commit Hold shift + click to select a range
74c41d7
finish merge remote master
sneakerkg Aug 23, 2015
63ff6d0
built in python, start polishing new feature required
sneakerkg Aug 22, 2015
065b061
finish old version registry in C
sneakerkg Aug 23, 2015
03f05d4
modify to dmlc registry
sneakerkg Aug 23, 2015
7144cb4
pass python mnist test, begin cleaning
sneakerkg Aug 23, 2015
4f6ef5d
clean io interface
sneakerkg Aug 23, 2015
12b3d22
finish merge remote master
sneakerkg Aug 23, 2015
f673f7d
built in python, start polishing new feature required
sneakerkg Aug 22, 2015
a8dcbd1
finish old version registry in C
sneakerkg Aug 23, 2015
7f36bbb
modify to dmlc registry
sneakerkg Aug 23, 2015
299e1d8
pass python mnist test, begin cleaning
sneakerkg Aug 23, 2015
7cf5506
clean io interface
sneakerkg Aug 23, 2015
994bc41
modify to pass travis
sneakerkg Aug 23, 2015
819e5f8
merging latest master
sneakerkg Aug 23, 2015
3e406ff
finish merge remote master
sneakerkg Aug 23, 2015
c81b60b
built in python, start polishing new feature required
sneakerkg Aug 22, 2015
0ebf6aa
finish old version registry in C
sneakerkg Aug 23, 2015
7511c12
modify to dmlc registry
sneakerkg Aug 23, 2015
c03d62b
pass python mnist test, begin cleaning
sneakerkg Aug 23, 2015
08dcaf7
clean io interface
sneakerkg Aug 23, 2015
bcd2652
finish merge remote master
sneakerkg Aug 23, 2015
97a88cb
built in python, start polishing new feature required
sneakerkg Aug 22, 2015
6915299
finish old version registry in C
sneakerkg Aug 23, 2015
305d2af
modify to dmlc registry
sneakerkg Aug 23, 2015
04f9888
pass python mnist test, begin cleaning
sneakerkg Aug 23, 2015
c6ae534
clean io interface
sneakerkg Aug 23, 2015
3da4ac0
modify to pass travis
sneakerkg Aug 23, 2015
f4fd400
finish refactoring io code
sneakerkg Aug 26, 2015
b6ebf94
add io.md in doc
sneakerkg Aug 26, 2015
6e1b7dd
merged latest master
sneakerkg Aug 26, 2015
8021478
resolve rebase problem
sneakerkg Aug 26, 2015
2ad67a3
Merge pull request #34 from antinucleon/master
antinucleon Aug 26, 2015
1b19f9d
finish merge remote master
sneakerkg Aug 23, 2015
0c24dbf
built in python, start polishing new feature required
sneakerkg Aug 22, 2015
a2f03a7
finish old version registry in C
sneakerkg Aug 23, 2015
9d4d98e
modify to dmlc registry
sneakerkg Aug 23, 2015
1544258
pass python mnist test, begin cleaning
sneakerkg Aug 23, 2015
36cff22
clean io interface
sneakerkg Aug 23, 2015
3ee7f24
finish merge remote master
sneakerkg Aug 23, 2015
88d2db7
built in python, start polishing new feature required
sneakerkg Aug 22, 2015
2ff4ff0
finish old version registry in C
sneakerkg Aug 23, 2015
9b002de
modify to dmlc registry
sneakerkg Aug 23, 2015
c29793f
pass python mnist test, begin cleaning
sneakerkg Aug 23, 2015
56b4129
clean io interface
sneakerkg Aug 23, 2015
e48e400
modify to pass travis
sneakerkg Aug 23, 2015
49728eb
finish merge remote master
sneakerkg Aug 23, 2015
cb99a1e
built in python, start polishing new feature required
sneakerkg Aug 22, 2015
24ad6f5
finish old version registry in C
sneakerkg Aug 23, 2015
3931343
modify to dmlc registry
sneakerkg Aug 23, 2015
b1e2bd9
pass python mnist test, begin cleaning
sneakerkg Aug 23, 2015
0e99411
clean io interface
sneakerkg Aug 23, 2015
51b7208
finish merge remote master
sneakerkg Aug 23, 2015
358a623
finish old version registry in C
sneakerkg Aug 23, 2015
94c6872
modify to dmlc registry
sneakerkg Aug 23, 2015
8caa4ac
pass python mnist test, begin cleaning
sneakerkg Aug 23, 2015
3fc60b1
clean io interface
sneakerkg Aug 23, 2015
af12892
finish refactoring io code
sneakerkg Aug 26, 2015
08f12b8
add io.md in doc
sneakerkg Aug 26, 2015
9bdcebd
merged latest master
sneakerkg Aug 26, 2015
e68452f
add local io into test
sneakerkg Aug 27, 2015
32d10ae
use local io in test
sneakerkg Aug 27, 2015
a4e70b2
merge master
sneakerkg Aug 27, 2015
f1b9764
meet python3 strict
sneakerkg Aug 27, 2015
982f18d
can not train in python3
sneakerkg Aug 27, 2015
25e3363
list zip for py3, no reset in iter
sneakerkg Aug 28, 2015
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ endif
#BIN = test/test_threaded_engine test/api_registry_test
OBJ = narray_function_cpu.o
# add threaded engine after it is done
OBJCXX11 = engine.o narray.o c_api.o operator.o symbol.o storage.o fully_connected_cpu.o static_graph.o activation_cpu.o graph_executor.o softmax_cpu.o elementwise_sum_cpu.o pooling_cpu.o
OBJCXX11 = engine.o narray.o c_api.o operator.o symbol.o storage.o fully_connected_cpu.o static_graph.o activation_cpu.o graph_executor.o softmax_cpu.o elementwise_sum_cpu.o pooling_cpu.o io.o iter_mnist.o
CUOBJ =
SLIB = lib/libmxnet.so
ALIB = lib/libmxnet.a
Expand Down Expand Up @@ -94,11 +94,14 @@ pooling_cpu.o: src/operator/pooling.cc
pooling_gpu.o: src/operator/pooling.cu
softmax_cpu.o: src/operator/softmax.cc
softmax_gpu.o: src/operator/softmax.cu
io.o: src/io/io.cc
iter_mnist.o: src/io/iter_mnist.cc

lib/libmxnet.a: $(OBJ) $(OBJCXX11) $(CUOBJ)
lib/libmxnet.so: $(OBJ) $(OBJCXX11) $(CUOBJ)
lib/libmxnet.a: $(OBJ) $(OBJCXX11) $(CUOBJ) $(LIB_DEP)
lib/libmxnet.so: $(OBJ) $(OBJCXX11) $(CUOBJ) $(LIB_DEP)

test/test_storage: test/test_storage.cc lib/libmxnet.a
#test/io_mnist_test: test/io_mnist_test.cc lib/libmxnet.a $(DMLC_CORE)/libdmlc.a
#test/test_threaded_engine: test/test_threaded_engine.cc api/libmxnet.a

$(BIN) :
Expand Down
75 changes: 59 additions & 16 deletions include/mxnet/c_api.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ typedef void *SymbolHandle;
typedef void *AtomicSymbolHandle;
/*! \brief handle to an Executor */
typedef void *ExecutorHandle;
/*! \brief handle a dataiter creator */
typedef void *DataIterCreator;
/*! \brief handle to a DataIterator */
typedef void *DataIterHandle;
/*!
Expand Down Expand Up @@ -439,49 +441,90 @@ MXNET_DLL int MXExecutorBind(SymbolHandle symbol_handle,
// Part 5: IO Interface
//--------------------------------------------
/*!
* \brief create an data iterator from configs string
* \param cfg config string that contains the
* configuration about the iterator
* \param out the handle to the iterator
* \brief list all the available iterator entries
* \param out_size the size of returned iterators
* \param out_array the output iteratos entries
* \return 0 when success, -1 when failure happens
*/
MXNET_DLL int MXIOCreateFromConfig(const char *cfg,
DataIterHandle *out);
MXNET_DLL int MXListDataIters(mx_uint *out_size,
DataIterCreator **out_array);
/*!
* \brief get the name of iterator entry
* \param iter iterator entry
* \param out_name the name of the iterator
* \return 0 when success, -1 when failure happens
*/
MXNET_DLL int MXDataIterGetName(DataIterCreator iter,
const char **out_name);
/*!
* \brief init an iterator, init with parameters
* the array size of passed in arguments
* \param handle of the iterator creator
* \param num_param number of parameter
* \param keys parameter keys
* \param vals parameter values
* \param out resulting iterator
* \return 0 when success, -1 when failure happens
*/
MXNET_DLL int MXDataIterCreateIter(DataIterCreator handle,
int num_param,
const char **keys,
const char **vals,
DataIterHandle *out);
/*!
* \brief Get the detailed information about data iterator.
* \param creator the DataIterCreator.
* \param name The returned name of the creator.
* \param description The returned description of the symbol.
* \param num_args Number of arguments.
* \param arg_names Name of the arguments.
* \param arg_type_infos Type informations about the arguments.
* \param arg_descriptions Description information about the arguments.
* \return 0 when success, -1 when failure happens
*/
MXNET_DLL int MXDataIterGetIterInfo(AtomicSymbolCreator creator,
const char **name,
const char **description,
mx_uint *num_args,
const char ***arg_names,
const char ***arg_type_infos,
const char ***arg_descriptions);
/*!
* \brief free the handle to the IO module
* \param handle the handle pointer to the data iterator
* \return 0 when success, -1 when failure happens
*/
MXNET_DLL int MXDataIterFree(DataIterHandle handle);
/*!
* \brief move iterator to next position
* \param handle the handle to iterator
* \param out return value of next
* \return 0 when success, -1 when failure happens
*/
MXNET_DLL int MXIONext(DataIterHandle handle,
MXNET_DLL int MXDataIterNext(DataIterHandle handle,
int *out);
/*!
* \brief call iterator.BeforeFirst
* \param handle the handle to iterator
* \return 0 when success, -1 when failure happens
*/
MXNET_DLL int MXIOBeforeFirst(DataIterHandle handle);
/*!
* \brief free the handle to the IO module
* \param handle the handle pointer to the data iterator
* \return 0 when success, -1 when failure happens
*/
MXNET_DLL int MXIOFree(DataIterHandle handle);
MXNET_DLL int MXDataIterBeforeFirst(DataIterHandle handle);

/*!
* \brief get the handle to the NArray of underlying data
* \param handle the handle pointer to the data iterator
* \param out handle to underlying data NArray
* \return 0 when success, -1 when failure happens
*/
MXNET_DLL int MXIOGetData(DataIterHandle handle,
MXNET_DLL int MXDataIterGetData(DataIterHandle handle,
NArrayHandle *out);
/*!
* \brief get the handle to the NArray of underlying label
* \param handle the handle pointer to the data iterator
* \param out the handle to underlying label NArray
* \return 0 when success, -1 when failure happens
*/
MXNET_DLL int MXIOGetLabel(DataIterHandle handle,
MXNET_DLL int MXDataIterGetLabel(DataIterHandle handle,
NArrayHandle *out);

#endif // MXNET_C_API_H_
115 changes: 115 additions & 0 deletions include/mxnet/io.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,115 @@
/*!
* Copyright (c) 2015 by Contributors
* \file io.h
* \brief mxnet io data structure and data iterator
*/
#ifndef MXNET_IO_H_
#define MXNET_IO_H_
#include <dmlc/data.h>
#include <dmlc/registry.h>
#include <vector>
#include <string>
#include <utility>
#include "./base.h"

namespace mxnet {
/*!
* \brief iterator type
* \tparam DType data type
*/
template<typename DType>
class IIterator : public dmlc::DataIter<DType> {
public:
/*!
* \brief set the parameters and init iter
* \param kwargs key-value pairs
*/
virtual void SetInit(const std::vector<std::pair<std::string, std::string> >& kwargs) = 0;
/*! \brief initalize the iterator so that we can use the iterator */
virtual void Init(void) = 0;
/*! \brief set before first of the item */
virtual void BeforeFirst(void) = 0;
/*! \brief move to next item */
virtual bool Next(void) = 0;
/*! \brief get current data */
virtual const DType &Value(void) const = 0;
/*! \brief constructor */
virtual ~IIterator(void) {}
/*! \brief store the name of each data, it could be used for making NArrays */
std::vector<std::string> data_names;
/*! \brief set data name to each attribute of data */
inline void SetDataName(const std::string data_name){
data_names.push_back(data_name);
}
}; // class IIterator

/*! \brief a single data instance */
struct DataInst {
/*! \brief unique id for instance */
unsigned index;
/*! \brief content of data */
std::vector<TBlob> data;
/*! \brief extra data to be fed to the network */
std::string extra_data;
}; // struct DataInst

/*!
* \brief a standard batch of data commonly used by iterator
* a databatch contains multiple TBlobs. Each Tblobs has
* a name stored in a map. There's no different between
* data and label, how we use them is to see the DNN implementation.
*/
struct DataBatch {
public:
/*! \brief unique id for instance, can be NULL, sometimes is useful */
unsigned *inst_index;
/*! \brief number of instance */
mshadow::index_t batch_size;
/*! \brief number of padding elements in this batch,
this is used to indicate the last elements in the batch are only padded up to match the batch, and should be discarded */
mshadow::index_t num_batch_padd;
public:
/*! \brief content of dense data, if this DataBatch is dense */
std::vector<TBlob> data;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

variable name, should be like data_

/*! \brief extra data to be fed to the network */
std::string extra_data;
public:
/*! \brief constructor */
DataBatch(void) {
inst_index = NULL;
batch_size = 0; num_batch_padd = 0;
}
/*! \brief giving name to the data */
void Naming(std::vector<std::string> names);
}; // struct DataBatch

/*! \brief typedef the factory function of data iterator */
typedef IIterator<DataBatch> *(*DataIteratorFactory)();
/*!
* \brief Registry entry for DataIterator factory functions.
*/
struct DataIteratorReg
: public dmlc::FunctionRegEntryBase<DataIteratorReg,
DataIteratorFactory> {
};
//--------------------------------------------------------------
// The following part are API Registration of Iterators
//--------------------------------------------------------------
/*!
* \brief Macro to register Iterators
*
* \code
* // example of registering a mnist iterator
* REGISTER_IO_ITERATOR(MNIST, MNISTIterator)
* .describe("Mnist data iterator");
*
* \endcode
*/
#define MXNET_REGISTER_IO_ITER(name, DataIteratorType) \
static ::mxnet::IIterator<DataBatch>* __create__ ## DataIteratorType ## __() { \
return new DataIteratorType; \
} \
DMLC_REGISTRY_REGISTER(::mxnet::DataIteratorReg, DataIteratorReg, name) \
.set_body(__create__ ## DataIteratorType ## __)
} // namespace mxnet
#endif // MXNET_IO_H_
1 change: 1 addition & 0 deletions python/mxnet/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
from .context import Context, current_context
from . import narray
from . import symbol
from . import io

__version__ = "0.1.0"

Expand Down
3 changes: 2 additions & 1 deletion python/mxnet/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@ def _load_lib():
SymbolCreatorHandle = ctypes.c_void_p
SymbolHandle = ctypes.c_void_p
ExecutorHandle = ctypes.c_void_p

DataIterCreatorHandle = ctypes.c_void_p
DataIterHandle = ctypes.c_void_p
#----------------------------
# helper function definition
#----------------------------
Expand Down
Loading