Ignore .bin files

This commit is contained in:
2024-04-20 15:51:02 +02:00
parent 0807a0f2b8
commit dbaab5652e
2 changed files with 4 additions and 2 deletions

4
.gitignore vendored
View File

@@ -38,4 +38,6 @@ build/
venv venv
docs docs
__pycache__ __pycache__
*.bin

View File

@@ -36,7 +36,7 @@ CUDANet::Model* createModel(const int inputSize, const int inputChannels, const
); );
model->addLayer("conv1", conv1); model->addLayer("conv1", conv1);
CUDANet::Layers::MaxPooling *pool1 = new CUDANet::Layers::MaxPooling( CUDANet::Layers::MaxPooling *pool1 = new CUDANet::Layers::MaxPooling(
3, 2 3, 3, 2
) )