{"id":28439852,"url":"https://github.com/0verread/minigrad","last_synced_at":"2025-08-12T00:03:29.368Z","repository":{"id":247113666,"uuid":"824408184","full_name":"0verread/minigrad","owner":"0verread","description":"Andrej Karpathy's Micrograd in Go","archived":false,"fork":false,"pushed_at":"2024-07-15T04:48:13.000Z","size":13,"stargazers_count":56,"open_issues_count":0,"forks_count":3,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-02T23:23:43.974Z","etag":null,"topics":["autograd","golang","neural-network"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/0verread.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2024-07-05T04:37:16.000Z","updated_at":"2025-07-27T21:37:53.000Z","dependencies_parsed_at":"2024-07-15T05:47:27.906Z","dependency_job_id":"d905a6d9-d873-46f8-898f-c636f64d2ddc","html_url":"https://github.com/0verread/minigrad","commit_stats":null,"previous_names":["0verread/minigrad"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/0verread/minigrad","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0verread%2Fminigrad","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0verread%2Fminigrad/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0verread%2Fminigrad/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0verread%2Fminigrad/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/0verread","download_url":"https://codeload.github.com/0verread/minigrad/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0verread%2Fminigrad/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269976736,"owners_count":24506463,"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","status":"online","status_checked_at":"2025-08-11T02:00:10.019Z","response_time":75,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["autograd","golang","neural-network"],"created_at":"2025-06-06T03:06:16.732Z","updated_at":"2025-08-12T00:03:29.308Z","avatar_url":"https://github.com/0verread.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# minigrad\nA neural network library in golang on an autograd engine. Faster and easy to use like PyTorch. ( This is Andrej Karpathy's [Micrograd](https://github.com/karpathy/micrograd) implementation in Go)\n\n\n## Usage\n```go\npackage main\n\nimport (\n  mg \"github.com/0verread/minigrad\"\n)\n\nfunc main() {\n  a := mg.NewValue(-4.0, nil, \"\")\n  b := mg.NewValue(2.0, nil, \"\")\n  c := a.Add(b)\n  d := a.Mul(b).Add(b.Pow(3))\n  c = c.Add(c.Add(mg.NewValue(1.0, nil, \"\")))\n  c = c.Add(mg.NewValue(1.0, nil, \"\").Add(c))\n  d = d.Add(d.Mul(2.0).Add(b.Add(a).Relu()))\n\n  d.Backward()\n\n}\n```\n\n## Contribution\n\nFeel free to raise a issue or PR to make enhancements or report a bug. I would \nlove to see more test cases.\n\n## License\n\nminigrad is under [MIT](https://github.com/0verread/LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F0verread%2Fminigrad","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F0verread%2Fminigrad","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F0verread%2Fminigrad/lists"}