Rename dim2d to shape2d

This commit is contained in:
2024-05-27 21:14:51 +02:00
parent 07d505a0e5
commit df47a31f36
22 changed files with 120 additions and 120 deletions

View File

@@ -26,7 +26,7 @@ struct TensorInfo {
class Model {
public:
Model(const dim2d inputSize, const int inputChannels, const int outputSize);
Model(const shape2d inputSize, const int inputChannels, const int outputSize);
Model(const Model& other);
~Model();
@@ -43,7 +43,7 @@ class Model {
Layers::Input* inputLayer;
Layers::Output* outputLayer;
dim2d inputSize;
shape2d inputSize;
int inputChannels;
int outputSize;