Skip to content

Commit

Permalink
Format changes
Browse files Browse the repository at this point in the history
  • Loading branch information
John Staib Matilla committed Jan 13, 2025
1 parent b57eb67 commit c64710a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class BinaryFileWrapper : public FileWrapper {
std::vector<unsigned char> get_sample(uint64_t index) override;
std::vector<std::vector<unsigned char>> get_samples(uint64_t start, uint64_t end) override;
std::vector<std::vector<unsigned char>> get_samples_from_indices(const std::vector<uint64_t>& indices,
bool include_labels ) override;
bool include_labels) override;
void validate_file_extension() override;
void delete_samples(const std::vector<uint64_t>& indices) override;
void set_file_path(const std::string& path) override;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class CsvFileWrapper : public FileWrapper {
std::vector<unsigned char> get_sample(uint64_t index) override;
std::vector<std::vector<unsigned char>> get_samples(uint64_t start, uint64_t end) override;
std::vector<std::vector<unsigned char>> get_samples_from_indices(const std::vector<uint64_t>& indices,
bool include_labels ) override;
bool include_labels) override;
void validate_file_extension() override;
void delete_samples(const std::vector<uint64_t>& indices) override;
void set_file_path(const std::string& path) override;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class SingleSampleFileWrapper : public FileWrapper {
std::vector<unsigned char> get_sample(uint64_t index) override;
std::vector<std::vector<unsigned char>> get_samples(uint64_t start, uint64_t end) override;
std::vector<std::vector<unsigned char>> get_samples_from_indices(const std::vector<uint64_t>& indices,
bool include_labels ) override;
bool include_labels) override;
void validate_file_extension() override;
void delete_samples(const std::vector<uint64_t>& indices) override;
void set_file_path(const std::string& path) override { file_path_ = path; }
Expand Down

0 comments on commit c64710a

Please sign in to comment.