Skip to content

Commit 043afd8

Browse files
committed
LICENSE info
1 parent 05094d2 commit 043afd8

File tree

12 files changed

+84
-0
lines changed

12 files changed

+84
-0
lines changed

include/ShkyeraTensor.hpp

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/**
2+
* Copyright © 2023 Franciszek Szewczyk. None of the rights reserved.
3+
* This code is released under the Beerware License. If you find this code useful or you appreciate the work, you are
4+
* encouraged to buy the author a beer in return.
5+
* Contact the author at szewczyk.franciszek02@gmail.com for inquiries and support.
6+
*/
7+
18
#pragma once
29

310
#include "src/core/Type.hpp"

include/src/core/Type.hpp

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/**
2+
* Copyright © 2023 Franciszek Szewczyk. None of the rights reserved.
3+
* This code is released under the Beerware License. If you find this code useful or you appreciate the work, you are
4+
* encouraged to buy the author a beer in return.
5+
* Contact the author at szewczyk.franciszek02@gmail.com for inquiries and support.
6+
*/
7+
18
#pragma once
29

310
namespace shkyera::Type {

include/src/core/Utils.hpp

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/**
2+
* Copyright © 2023 Franciszek Szewczyk. None of the rights reserved.
3+
* This code is released under the Beerware License. If you find this code useful or you appreciate the work, you are
4+
* encouraged to buy the author a beer in return.
5+
* Contact the author at szewczyk.franciszek02@gmail.com for inquiries and support.
6+
*/
7+
18
#pragma once
29

310
#include <random>

include/src/core/Value.hpp

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/**
2+
* Copyright © 2023 Franciszek Szewczyk. None of the rights reserved.
3+
* This code is released under the Beerware License. If you find this code useful or you appreciate the work, you are
4+
* encouraged to buy the author a beer in return.
5+
* Contact the author at szewczyk.franciszek02@gmail.com for inquiries and support.
6+
*/
7+
18
#pragma once
29

310
#include <cmath>

include/src/core/Vector.hpp

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/**
2+
* Copyright © 2023 Franciszek Szewczyk. None of the rights reserved.
3+
* This code is released under the Beerware License. If you find this code useful or you appreciate the work, you are
4+
* encouraged to buy the author a beer in return.
5+
* Contact the author at szewczyk.franciszek02@gmail.com for inquiries and support.
6+
*/
7+
18
#pragma once
29

310
#include <exception>

include/src/nn/Activation.hpp

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/**
2+
* Copyright © 2023 Franciszek Szewczyk. None of the rights reserved.
3+
* This code is released under the Beerware License. If you find this code useful or you appreciate the work, you are
4+
* encouraged to buy the author a beer in return.
5+
* Contact the author at szewczyk.franciszek02@gmail.com for inquiries and support.
6+
*/
7+
18
#pragma once
29

310
#include "../core/Type.hpp"

include/src/nn/Layer.hpp

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/**
2+
* Copyright © 2023 Franciszek Szewczyk. None of the rights reserved.
3+
* This code is released under the Beerware License. If you find this code useful or you appreciate the work, you are
4+
* encouraged to buy the author a beer in return.
5+
* Contact the author at szewczyk.franciszek02@gmail.com for inquiries and support.
6+
*/
7+
18
#pragma once
29

310
#include "../core/Type.hpp"

include/src/nn/Loss.hpp

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/**
2+
* Copyright © 2023 Franciszek Szewczyk. None of the rights reserved.
3+
* This code is released under the Beerware License. If you find this code useful or you appreciate the work, you are
4+
* encouraged to buy the author a beer in return.
5+
* Contact the author at szewczyk.franciszek02@gmail.com for inquiries and support.
6+
*/
7+
18
#pragma once
29

310
#include "../core/Value.hpp"

include/src/nn/Module.hpp

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/**
2+
* Copyright © 2023 Franciszek Szewczyk. None of the rights reserved.
3+
* This code is released under the Beerware License. If you find this code useful or you appreciate the work, you are
4+
* encouraged to buy the author a beer in return.
5+
* Contact the author at szewczyk.franciszek02@gmail.com for inquiries and support.
6+
*/
7+
18
#pragma once
29

310
#include "../core/Vector.hpp"

include/src/nn/Neuron.hpp

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/**
2+
* Copyright © 2023 Franciszek Szewczyk. None of the rights reserved.
3+
* This code is released under the Beerware License. If you find this code useful or you appreciate the work, you are
4+
* encouraged to buy the author a beer in return.
5+
* Contact the author at szewczyk.franciszek02@gmail.com for inquiries and support.
6+
*/
7+
18
#pragma once
29

310
#include "../core/Type.hpp"

include/src/nn/Optimizer.hpp

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/**
2+
* Copyright © 2023 Franciszek Szewczyk. None of the rights reserved.
3+
* This code is released under the Beerware License. If you find this code useful or you appreciate the work, you are
4+
* encouraged to buy the author a beer in return.
5+
* Contact the author at szewczyk.franciszek02@gmail.com for inquiries and support.
6+
*/
7+
18
#pragma once
29

310
#include <vector>

include/src/nn/Sequential.hpp

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/**
2+
* Copyright © 2023 Franciszek Szewczyk. None of the rights reserved.
3+
* This code is released under the Beerware License. If you find this code useful or you appreciate the work, you are
4+
* encouraged to buy the author a beer in return.
5+
* Contact the author at szewczyk.franciszek02@gmail.com for inquiries and support.
6+
*/
7+
18
#pragma once
29

310
#include "../core/Type.hpp"

0 commit comments

Comments
 (0)