{"id":16814649,"url":"https://github.com/findus23/nn_evaluate","last_synced_at":"2025-03-17T12:42:44.043Z","repository":{"id":76007596,"uuid":"350080783","full_name":"Findus23/nn_evaluate","owner":"Findus23","description":"Toy implementation of Neural Network evaluation in multiple languages","archived":false,"fork":false,"pushed_at":"2021-04-17T13:50:03.000Z","size":20,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-01-23T22:24:53.819Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://nn.lw1.at","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Findus23.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-03-21T18:12:48.000Z","updated_at":"2021-04-17T13:50:47.000Z","dependencies_parsed_at":null,"dependency_job_id":"35e9a3bb-1765-4bf8-b684-883c766e5d0f","html_url":"https://github.com/Findus23/nn_evaluate","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Findus23%2Fnn_evaluate","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Findus23%2Fnn_evaluate/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Findus23%2Fnn_evaluate/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Findus23%2Fnn_evaluate/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Findus23","download_url":"https://codeload.github.com/Findus23/nn_evaluate/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244036792,"owners_count":20387578,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-13T10:30:01.848Z","updated_at":"2025-03-17T12:42:44.014Z","avatar_url":"https://github.com/Findus23.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Toy implementation of Neural Network evaluation in multiple languages\n\nNeural network trained with pytorch:\n```python\nclass Network(nn.Module):\n    def __init__(self):\n        super().__init__()\n        self.hidden = nn.Linear(6, 50)\n        self.output = nn.Linear(50, 3)\n\n        self.sigmoid = nn.Sigmoid()\n        self.relu = nn.ReLU()\n\n    def forward(self, x):\n        x = self.hidden(x)\n        x = self.relu(x)\n        x = self.output(x)\n        x = self.sigmoid(x)\n\n        return x\n```\n\nProper solution (typescript version): https://nn.lw1.at/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffindus23%2Fnn_evaluate","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffindus23%2Fnn_evaluate","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffindus23%2Fnn_evaluate/lists"}