{"id":13805539,"url":"https://github.com/vlang/vtl","last_synced_at":"2026-01-28T16:02:24.149Z","repository":{"id":37513668,"uuid":"302385880","full_name":"vlang/vtl","owner":"vlang","description":"The V Tensor Library","archived":false,"fork":false,"pushed_at":"2025-12-28T12:07:13.000Z","size":4053,"stargazers_count":157,"open_issues_count":12,"forks_count":19,"subscribers_count":26,"default_branch":"main","last_synced_at":"2025-12-30T23:14:52.186Z","etag":null,"topics":["autograd","deep-learning","hacktoberfest","linear-algebra","machine-learning","matrix-library","multidimensional-arrays","ndarray","neural-networks","tensor","v"],"latest_commit_sha":null,"homepage":"https://vlang.github.io/vtl","language":"V","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/vlang.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":"ulises-jeremias","patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"lfx_crowdfunding":null,"custom":null}},"created_at":"2020-10-08T15:33:43.000Z","updated_at":"2025-12-28T07:32:25.000Z","dependencies_parsed_at":"2023-02-16T02:00:51.531Z","dependency_job_id":"0b2cd8cb-3ad2-421d-995b-6abe50ab3697","html_url":"https://github.com/vlang/vtl","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/vlang/vtl","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vlang%2Fvtl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vlang%2Fvtl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vlang%2Fvtl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vlang%2Fvtl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vlang","download_url":"https://codeload.github.com/vlang/vtl/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vlang%2Fvtl/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28846763,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-28T15:15:36.453Z","status":"ssl_error","status_checked_at":"2026-01-28T15:15:13.020Z","response_time":57,"last_error":"SSL_read: 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":["autograd","deep-learning","hacktoberfest","linear-algebra","machine-learning","matrix-library","multidimensional-arrays","ndarray","neural-networks","tensor","v"],"created_at":"2024-08-04T01:01:02.147Z","updated_at":"2026-01-28T16:02:24.115Z","avatar_url":"https://github.com/vlang.png","language":"V","readme":"\u003cdiv align=\"center\"\u003e\n  \u003cp\u003e\n    \u003cimg\n      style=\"width: 200px\"\n      width=\"200\"\n      src=\"https://github.com/vlang/vtl/blob/main/static/vtl-logo.png?sanitize=true\u0026raw=true\"\n    \u003e\n  \u003c/p\u003e\n  \u003ch1\u003eThe V Tensor Library\u003c/h1\u003e\n\n[vlang.io](https://vlang.io) |\n[Docs](https://vlang.github.io/vtl) |\n[Tutorials](https://github.com/vlang/vtl/blob/main/docs/TUTORIAL.md) |\n[Changelog](#) |\n[Contributing](https://github.com/vlang/vtl/blob/main/CONTRIBUTING.md)\n\n\u003c/div\u003e\n\u003cdiv align=\"center\"\u003e\n\n[![Mentioned in Awesome V][awesomevbadge]][awesomevurl]\n[![Continuous Integration][workflowbadge]][workflowurl]\n[![Deploy Documentation][deploydocsbadge]][deploydocsurl]\n[![License: MIT][licensebadge]][licenseurl]\n\n\u003c/div\u003e\n\n```v ignore\nimport vtl\nt := vtl.from_array([1.0, 2, 3, 4], [2, 2])!\nt.get([1, 1])\n// 4.0\n```\n\n## VTL Provides\n\n- An n-dimensional `Tensor` data structure\n- Sophisticated reduction, elementwise, and accumulation operations\n- Data Structures that can easily be passed to C libraries\n- Powerful linear algebra routines backed by VSL.\n\nIn the [docs](https://vlang.github.io/vtl) you can find more information about this module\n\n## Installation\n\n### Install dependencies (optional)\n\nWe use [VSL](https://github.com/vlang/vsl) as backend for some functionalities.\nVTL requires VSL's linear algebra module.\nIf you wish you to use vtl without these, the `vtl` module will still function as normal.\n\nFollow this [install instructions](https://github.com/vlang/vsl#install-vsl-locally)\nat VSL docs in order to install VSL with all needed dependencies.\n\n### Install VTL\n\n```sh\nv install vtl\n```\n\nDone. Installation completed.\n\n## Testing\n\nTo test the module, just type the following command:\n\n```sh\nv test .\n```\n\n## License\n\n[MIT](LICENSE)\n\n## Contributors\n\n\u003e This work was originally based on the work done by\n\u003e Christopher ([christopherzimmerman](https://github.com/christopherzimmerman)).\n\n\u003e The development of this library continues its course after having reimplemented its core\n\u003e and a large part of its interface. In the same way, we do not want to stop recognizing\n\u003e the work and inspiration that the library done by Christopher has given.\n\n\u003ca href=\"https://github.com/vlang/vtl/contributors\"\u003e\n  \u003cimg src=\"https://contrib.rocks/image?repo=vlang/vtl\"/\u003e\n\u003c/a\u003e\n\nMade with [contributors-img](https://contrib.rocks).\n\n[awesomevbadge]: https://awesome.re/mentioned-badge.svg\n[workflowbadge]: https://github.com/vlang/vtl/actions/workflows/ci.yml/badge.svg\n[deploydocsbadge]: https://github.com/vlang/vtl/actions/workflows/deploy-docs.yml/badge.svg\n[licensebadge]: https://img.shields.io/badge/License-MIT-blue.svg\n[awesomevurl]: https://github.com/vlang/awesome-v/blob/master/README.md#scientific-computing\n[workflowurl]: https://github.com/vlang/vtl/actions/workflows/ci.yml\n[deploydocsurl]: https://github.com/vlang/vtl/actions/workflows/deploy-docs.yml\n[licenseurl]: https://github.com/vlang/vtl/blob/main/LICENSE\n","funding_links":["https://github.com/sponsors/ulises-jeremias"],"categories":["Libraries"],"sub_categories":["Scientific computing"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvlang%2Fvtl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvlang%2Fvtl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvlang%2Fvtl/lists"}