29374819
29374819

Reputation: 117

Create dataset for LeNet?

I'm working on a project for which I'd like to create a dataset of drawn faces (similar in concept to the CUFS dataset). Hand-drawing the faces aside, how would I go from "I have uploaded these image files to my computer and have ensured that they all have identical dimensions" to having a ready-to-use dataset? (I'd like to train/test LeNet with this dataset.) I've never created my own dataset before so am pretty unsure as to how to start.

Thanks!

Upvotes: -2

Views: 147

Answers (1)

Liang Xiao
Liang Xiao

Reputation: 1516

You should convert the images into levelDB or LMDB. You can follow the exsample of convert_mnist_data.cpp.

Upvotes: 0

Related Questions