Update README.md
Browse files
README.md
CHANGED
|
@@ -1,4 +1,12 @@
|
|
| 1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
def __init__(self, input_size, hidden_size, output_size):
|
| 3 |
# Inisialisasi bobot dan bias secara acak
|
| 4 |
self.weights1 = np.random.randn(input_size, hidden_size)
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
metrics:
|
| 4 |
+
- accuracy
|
| 5 |
+
---
|
| 6 |
+
Priyo_Neuralnetwork
|
| 7 |
+
|
| 8 |
+
class Priyo_NeuralNetwork:
|
| 9 |
+
|
| 10 |
def __init__(self, input_size, hidden_size, output_size):
|
| 11 |
# Inisialisasi bobot dan bias secara acak
|
| 12 |
self.weights1 = np.random.randn(input_size, hidden_size)
|