{"id":41000959,"url":"https://github.com/themrsheldon/libdl","last_synced_at":"2026-01-22T08:23:33.913Z","repository":{"id":215324350,"uuid":"737329658","full_name":"TheMrSheldon/libdl","owner":"TheMrSheldon","description":"Simple yet powerful deep learning","archived":false,"fork":false,"pushed_at":"2025-09-18T17:32:08.000Z","size":4189,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-09-18T20:08:50.913Z","etag":null,"topics":["deeplearning"],"latest_commit_sha":null,"homepage":"https://themrsheldon.github.io/libdl/","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/TheMrSheldon.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":"CITATION.cff","codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2023-12-30T16:34:47.000Z","updated_at":"2025-09-18T17:32:12.000Z","dependencies_parsed_at":"2024-06-22T07:09:59.711Z","dependency_job_id":"915dfba3-5809-425d-ac52-1f03c71a330b","html_url":"https://github.com/TheMrSheldon/libdl","commit_stats":null,"previous_names":["themrsheldon/libdl"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/TheMrSheldon/libdl","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheMrSheldon%2Flibdl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheMrSheldon%2Flibdl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheMrSheldon%2Flibdl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheMrSheldon%2Flibdl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TheMrSheldon","download_url":"https://codeload.github.com/TheMrSheldon/libdl/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheMrSheldon%2Flibdl/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28659515,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-22T01:17:37.254Z","status":"online","status_checked_at":"2026-01-22T02:00:07.137Z","response_time":144,"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":["deeplearning"],"created_at":"2026-01-22T08:23:33.845Z","updated_at":"2026-01-22T08:23:33.905Z","avatar_url":"https://github.com/TheMrSheldon.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003elibdl\u003c/h1\u003e\n\u003ccenter\u003e\n\u003cp align=\"center\"\u003e\n    \u003cimg src=\"thirdparty/twemoji-brain.svg\" height=100pt style=\"filter: none;\"/\u003e\n    \u003ch3 align=\"center\"\u003eSimple yet powerful deep learning\u003c/h3\u003e\n\u003c/p\u003e\n\u003cp align=\"center\"\u003e\n    \u003ca\u003e\u003cimg alt=\"GPL 2.0 License\" src=\"https://img.shields.io/github/license/TheMrSheldon/libdl.svg\" style=\"filter: none;\"/\u003e\u003c/a\u003e\n    \u003ca\u003e\u003cimg alt=\"Current Release\" src=\"https://img.shields.io/github/release/TheMrSheldon/libdl.svg\" style=\"filter: none;\"/\u003e\u003c/a\u003e\n    \u003cbr\u003e\n    \u003ca href=\"https://themrsheldon.github.io/libdl\"\u003eDocumentation\u003c/a\u003e \u0026nbsp;|\u0026nbsp;\n    \u003ca href=\"https://themrsheldon.github.io/libdl/namespaces.html\"\u003eAPI\u003c/a\u003e \u0026nbsp;|\u0026nbsp;\n    \u003ca href=\"https://github.com/TheMrSheldon/libdl/tree/main/examples\"\u003eExamples\u003c/a\u003e \u0026nbsp;|\u0026nbsp;\n    \u003ca href=\"#citation\"\u003eCitation\u003c/a\u003e\n\u003c/p\u003e\n\u003c/center\u003e\n\n# Usage\n```cpp\nint main(int argc, char* argv[]) {\n\tMyModel model;\n\n\tauto conf = dl::TrainerConfBuilder\u003cMyModel\u003e()\n                .setDataset\u003cMyDataset\u003e()\n                .setOptimizer\u003cdl::optim::GradientDescent\u003e(model.parameters())\n                .addObserver(dl::observers::limitEpochs(10))\n                .addObserver(dl::observers::earlyStopping(3))\n                .addObserver(dl::observers::consoleUI())\n                .build();\n\tauto trainer = dl::Trainer(std::move(conf));\n\ttrainer.fit(model, dl::lossAdapter(dl::loss::mse));\n\ttrainer.test(model);\n\treturn 0;\n}\n```\n\n# Installation\n## CMake\n```cmake\nFetchContent_Declare(libdl GIT_REPOSITORY https://github.com/TheMrSheldon/libdl.git)\nFetchContent_MakeAvailable(libdl)\ntarget_link_libraries(\u003cmytarget\u003e PUBLIC libdl)\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthemrsheldon%2Flibdl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthemrsheldon%2Flibdl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthemrsheldon%2Flibdl/lists"}