Skip to content
Snippets Groups Projects
Commit 15db022f authored by Thibault Allenet's avatar Thibault Allenet
Browse files

Update Database.hpp comments to have links

parent 3fd21015
No related branches found
No related tags found
2 merge requests!105version 0.2.0,!4Dataloader
......@@ -8,8 +8,8 @@
namespace Aidge{
/**
* @brief Database. An abstract class representing a database. All databases should inherit from this class. All subclasses should overwrite ```get_item()``` to fetch data from a given index.
* @todo Make the dataset generic. Currently supprting only tensor. Always ground truth.
* @brief Database. An abstract class representing a database. All databases should inherit from this class. All subclasses should overwrite :cpp:function:`Database::get_item` to fetch data from a given index.
* @todo Make the dataset generic. Always ground truth.
*/
class Database {
......@@ -29,8 +29,6 @@ public:
*/
virtual unsigned int get_len() = 0;
// void load(const std::string& /*dataPath*/, const std::string& labelPath = "");
protected:
std::vector<std::shared_ptr<Tensor>> mData;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment