{"id":26199045,"url":"https://github.com/null-none/pyignite","last_synced_at":"2026-05-06T00:02:19.430Z","repository":{"id":270555971,"uuid":"910739313","full_name":"null-none/pyIgnite","owner":"null-none","description":"Simple deep learning library","archived":false,"fork":false,"pushed_at":"2025-01-01T09:23:20.000Z","size":6,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-02-13T10:26:15.890Z","etag":null,"topics":["deep-learning","machine-learning","ml","numpy","python"],"latest_commit_sha":null,"homepage":"","language":"Python","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/null-none.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":"2025-01-01T09:03:07.000Z","updated_at":"2025-01-01T09:23:58.000Z","dependencies_parsed_at":"2025-01-01T10:29:37.190Z","dependency_job_id":"839ba4dd-c173-4b6b-ad03-32d5e3e1ac87","html_url":"https://github.com/null-none/pyIgnite","commit_stats":null,"previous_names":["null-none/pyignite"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/null-none/pyIgnite","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/null-none%2FpyIgnite","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/null-none%2FpyIgnite/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/null-none%2FpyIgnite/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/null-none%2FpyIgnite/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/null-none","download_url":"https://codeload.github.com/null-none/pyIgnite/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/null-none%2FpyIgnite/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32672682,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-05T11:29:49.557Z","status":"ssl_error","status_checked_at":"2026-05-05T11:29:48.587Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["deep-learning","machine-learning","ml","numpy","python"],"created_at":"2025-03-12T02:56:12.101Z","updated_at":"2026-05-06T00:02:19.380Z","avatar_url":"https://github.com/null-none.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# pyIgnite\nSimple deep learning library\n\n### Install\n\n```bash\npip install numpy\n```\n\n\n### Example\n\n```python\nimport numpy as np\n\nfrom src.loss import CrossEntropyLoss\nfrom src.optimizer import SGD\nfrom src.simple_net import SimpleNet\n\n\ninput = np.array(\n    [\n        [0.99197708, -0.77980023, -0.8391331, -0.41970686, 0.72636492],\n        [0.85901409, -0.22374584, -1.95850625, -0.81685145, 0.96359871],\n        [-0.42707937, -0.50053309, 0.34049477, 0.62106931, -0.76039365],\n        [0.34206742, 2.15131285, 0.80851759, 0.28673013, 0.84706839],\n        [-1.70231094, 0.36473216, 0.33631525, -0.92515589, -2.57602677],\n    ]\n)\n\ntarget = np.array([[1, 0]])\n\nloss_fn = CrossEntropyLoss()\nmodel = SimpleNet()\noptim = SGD(model.parameters(), learning_rate=0.01)\n\nfor i in range(100):\n    output = model(input)\n    loss = loss_fn(output, target)\n    loss.backward()\n    lr = 0.01\n    optim.step()\n    if (i % 20) == 0:\n        print(loss.loss, i)\n\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnull-none%2Fpyignite","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnull-none%2Fpyignite","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnull-none%2Fpyignite/lists"}