Skip to content

Commit

Permalink
Changes in 3 files are not needed anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
Lenny Shleymovich committed Dec 6, 2024
1 parent bb675ed commit e9d0000
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion opennn/batch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ void Batch::fill(const vector<Index>& sample_indices,
{
/*
// @TODO
const Tensor<type, 2>& augmented_data = perform_augmentation(data);
Tensor<type, 2>& augmented_data = perform_augmentation(data);
fill_tensor_data(augmented_data, sample_indices, input_indices, input_data);
*/
Expand Down
2 changes: 1 addition & 1 deletion opennn/probabilistic_layer_3d.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class ProbabilisticLayer3D : public Layer

ProbabilisticLayer3D(const Index& = 0, const Index& = 0, const Index& = 0);

enum class ActivationFunction{Softmax, Competitive, Binary, Logistic};
enum class ActivationFunction{Softmax, Competitive};

Index get_inputs_number_xxx() const;
Index get_inputs_depth() const;
Expand Down
2 changes: 1 addition & 1 deletion opennn/strings_utilities.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1436,7 +1436,7 @@ void delete_short_long_words(vector<vector<string>>& documents_words,

#pragma omp parallel for

for(size_t i = 0; i < documents_number; i++)
for(Index i = 0; i < Index(documents_number); i++)
{
for(size_t j = 0; j < documents_words[i].size(); j++)
{
Expand Down

0 comments on commit e9d0000

Please sign in to comment.