1
0
Fork 0
mirror of https://github.com/Findus23/nn_evaluate.git synced 2024-09-19 14:53:44 +02:00

add readme

This commit is contained in:
Lukas Winkler 2021-03-21 19:13:43 +01:00
parent fbd789d92e
commit 0224eb0ff5
Signed by: lukas
GPG key ID: 54DE4D798D244853

23
typescript/README.md Normal file
View file

@ -0,0 +1,23 @@
# Toy implementation of Neural Network evaluation in multiple languages
Neural network trained with pytorch:
```python
class Network(nn.Module):
def __init__(self):
super().__init__()
self.hidden = nn.Linear(6, 50)
self.output = nn.Linear(50, 3)
self.sigmoid = nn.Sigmoid()
self.relu = nn.ReLU()
def forward(self, x):
x = self.hidden(x)
x = self.relu(x)
x = self.output(x)
x = self.sigmoid(x)
return x
```
Proper solution (typescript version): https://nn.lw1.at/