squirrel-core


Namesquirrel-core JSON
Version 0.19.7 PyPI version JSON
download
home_pagehttps://merantix-momentum.com/technology/squirrel/
SummarySquirrel is a Python library that enables ML teams to share, load, and transform data in a collaborative, flexible and efficient way.
upload_time2024-01-10 10:23:00
maintainer
docs_urlNone
authorMerantix Momentum
requires_python>=3.8,<4.0
licenseApache 2.0
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            <div align="center">

# <img src="https://raw.githubusercontent.com/merantix-momentum/squirrel-core/main/docs/_static/logo.png" width="150px"> Squirrel Core

**Share, load, and transform data in a collaborative, flexible, and efficient way**

[![Python](https://img.shields.io/pypi/pyversions/squirrel-core.svg?style=plastic)](https://badge.fury.io/py/squirrel-core)
[![PyPI](https://img.shields.io/pypi/v/squirrel-core?label=pypi%20package)](https://pypi.org/project/squirrel-core/)
[![Conda](https://img.shields.io/conda/vn/conda-forge/squirrel-core)](https://anaconda.org/conda-forge/squirrel-core)
[![Documentation Status](https://readthedocs.org/projects/squirrel-core/badge/?version=latest)](https://squirrel-core.readthedocs.io/en/latest)
[![Downloads](https://static.pepy.tech/personalized-badge/squirrel-core?period=total&units=international_system&left_color=grey&right_color=blue&left_text=Downloads)](https://pepy.tech/project/squirrel-core)
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://raw.githubusercontent.com/merantix-momentum/squirrel-core/main/LICENSE)
[![DOI](https://zenodo.org/badge/458099869.svg)](https://zenodo.org/badge/latestdoi/458099869)
[![Generic badge](https://img.shields.io/badge/Website-Merantix%20Momentum-blue)](https://merantix-momentum.com)
[![Slack](https://img.shields.io/badge/slack-chat-green.svg?logo=slack)](https://join.slack.com/t/squirrel-core/shared_invite/zt-14k6sk6sw-zQPHfqAI8Xq5WYd~UqgNFw)

</div>

---

## What is Squirrel?

Squirrel is a Python library that enables ML teams to share, load, and transform data in a collaborative, flexible, and efficient way.

1. **SPEED:** Avoid data stall, i.e. the expensive GPU will not be idle while waiting for the data.

2. **COSTS:** First, avoid GPU stalling, and second allow to shard & cluster your data and store & load it in bundles, decreasing the cost for your data bucket cloud storage.

3. **FLEXIBILITY:** Work with a flexible standard data scheme which is adaptable to any setting, including multimodal data.

4. **COLLABORATION:** Make it easier to share data & code between teams and projects in a self-service model.

Stream data from anywhere to your machine learning model as easy as:
```python
it = (
    Catalog.from_plugins()["imagenet"]
    .get_driver()
    .get_iter("train")
    .map(lambda r: (augment(r["image"]), r["label"]))
    .batched(100)
)
```

Check out our full [getting started](https://github.com/merantix-momentum/squirrel-datasets-core/blob/main/examples/01.Getting_Started.ipynb) tutorial notebook. If you have any questions or would like to contribute, join our [Slack community](https://join.slack.com/t/squirrel-core/shared_invite/zt-14k6sk6sw-zQPHfqAI8Xq5WYd~UqgNFw).

## Installation
You can install `squirrel-core` by
```shell
pip install squirrel-core
```

To install all features and functionalities:

```shell
pip install "squirrel-core[all]"
```

Or select the dependencies you need:

```shell
pip install "squirrel-core[gcs,torch]"
```

Please refer to the [installation](https://squirrel-core.readthedocs.io/en/latest/getting_started/installation.html) 
section of the documentation for a complete list of supported dependencies.

## Documentation

Read our documentation at [ReadTheDocs](https://squirrel-core.readthedocs.io/en/latest)

## Squirrel Datasets

[Squirrel-datasets-core](https://github.com/merantix-momentum/squirrel-datasets-core) is an accompanying Python package that does three things.
1. It extends the Squirrel platform for data transform, access, and discovery through custom drivers for public datasets. 
2. It also allows you to tap into the vast amounts of open-source datasets from [Huggingface](https://huggingface.co/), [Activeloop Hub](https://www.activeloop.ai/) and [Torchvision](https://pytorch.org/vision/stable/datasets.html), and you'll get all of Squirrel's functionality on top!
3. It provides open-source and community-contributed [tutorials and example notebooks](https://github.com/merantix-momentum/squirrel-datasets-core/tree/main/examples) for using Squirrel.

## Contributing
Squirrel is open source and community contributions are welcome!

Check out the [contribution guide](https://squirrel-core.readthedocs.io/en/latest/developer/contribute.html) to learn how to get involved.

## The Humans Behind Squirrel
We are [Merantix Momentum](https://merantix-momentum.com/), a team of ~30 machine learning engineers, developing machine learning solutions for industry and research. Each project comes with its own challenges, data types and learnings, but one issue we always faced was scalable data loading, transforming and sharing. We were looking for a solution that would allow us to load the data in a fast and cost-efficient way, while keeping the flexibility to work with any possible dataset and integrate with any API. That's why we build Squirrel – and we hope you'll find it as useful as we do! By the way, [we are hiring](https://merantix-momentum.com/about#jobs)!


## Citation

If you use Squirrel in your research, please cite it using:
```bibtex
@article{2022squirrelcore,
  title={Squirrel: A Python library that enables ML teams to share, load, and transform data in a collaborative, flexible, and efficient way.},
  author={Squirrel Developer Team},
  journal={GitHub. Note: https://github.com/merantix-momentum/squirrel-core},
  doi={10.5281/zenodo.6418280},
  year={2022}
}
```


            

Raw data

            {
    "_id": null,
    "home_page": "https://merantix-momentum.com/technology/squirrel/",
    "name": "squirrel-core",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8,<4.0",
    "maintainer_email": "",
    "keywords": "",
    "author": "Merantix Momentum",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/78/63/4e2d872e712afdcb801f92d3b771bafaf40a261ecf7b927d84b33743eba7/squirrel_core-0.19.7.tar.gz",
    "platform": null,
    "description": "<div align=\"center\">\n\n# <img src=\"https://raw.githubusercontent.com/merantix-momentum/squirrel-core/main/docs/_static/logo.png\" width=\"150px\"> Squirrel Core\n\n**Share, load, and transform data in a collaborative, flexible, and efficient way**\n\n[![Python](https://img.shields.io/pypi/pyversions/squirrel-core.svg?style=plastic)](https://badge.fury.io/py/squirrel-core)\n[![PyPI](https://img.shields.io/pypi/v/squirrel-core?label=pypi%20package)](https://pypi.org/project/squirrel-core/)\n[![Conda](https://img.shields.io/conda/vn/conda-forge/squirrel-core)](https://anaconda.org/conda-forge/squirrel-core)\n[![Documentation Status](https://readthedocs.org/projects/squirrel-core/badge/?version=latest)](https://squirrel-core.readthedocs.io/en/latest)\n[![Downloads](https://static.pepy.tech/personalized-badge/squirrel-core?period=total&units=international_system&left_color=grey&right_color=blue&left_text=Downloads)](https://pepy.tech/project/squirrel-core)\n[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://raw.githubusercontent.com/merantix-momentum/squirrel-core/main/LICENSE)\n[![DOI](https://zenodo.org/badge/458099869.svg)](https://zenodo.org/badge/latestdoi/458099869)\n[![Generic badge](https://img.shields.io/badge/Website-Merantix%20Momentum-blue)](https://merantix-momentum.com)\n[![Slack](https://img.shields.io/badge/slack-chat-green.svg?logo=slack)](https://join.slack.com/t/squirrel-core/shared_invite/zt-14k6sk6sw-zQPHfqAI8Xq5WYd~UqgNFw)\n\n</div>\n\n---\n\n## What is Squirrel?\n\nSquirrel is a Python library that enables ML teams to share, load, and transform data in a collaborative, flexible, and efficient way.\n\n1. **SPEED:** Avoid data stall, i.e. the expensive GPU will not be idle while waiting for the data.\n\n2. **COSTS:** First, avoid GPU stalling, and second allow to shard & cluster your data and store & load it in bundles, decreasing the cost for your data bucket cloud storage.\n\n3. **FLEXIBILITY:** Work with a flexible standard data scheme which is adaptable to any setting, including multimodal data.\n\n4. **COLLABORATION:** Make it easier to share data & code between teams and projects in a self-service model.\n\nStream data from anywhere to your machine learning model as easy as:\n```python\nit = (\n    Catalog.from_plugins()[\"imagenet\"]\n    .get_driver()\n    .get_iter(\"train\")\n    .map(lambda r: (augment(r[\"image\"]), r[\"label\"]))\n    .batched(100)\n)\n```\n\nCheck out our full [getting started](https://github.com/merantix-momentum/squirrel-datasets-core/blob/main/examples/01.Getting_Started.ipynb) tutorial notebook. If you have any questions or would like to contribute, join our [Slack community](https://join.slack.com/t/squirrel-core/shared_invite/zt-14k6sk6sw-zQPHfqAI8Xq5WYd~UqgNFw).\n\n## Installation\nYou can install `squirrel-core` by\n```shell\npip install squirrel-core\n```\n\nTo install all features and functionalities:\n\n```shell\npip install \"squirrel-core[all]\"\n```\n\nOr select the dependencies you need:\n\n```shell\npip install \"squirrel-core[gcs,torch]\"\n```\n\nPlease refer to the [installation](https://squirrel-core.readthedocs.io/en/latest/getting_started/installation.html) \nsection of the documentation for a complete list of supported dependencies.\n\n## Documentation\n\nRead our documentation at [ReadTheDocs](https://squirrel-core.readthedocs.io/en/latest)\n\n## Squirrel Datasets\n\n[Squirrel-datasets-core](https://github.com/merantix-momentum/squirrel-datasets-core) is an accompanying Python package that does three things.\n1. It extends the Squirrel platform for data transform, access, and discovery through custom drivers for public datasets. \n2. It also allows you to tap into the vast amounts of open-source datasets from [Huggingface](https://huggingface.co/), [Activeloop Hub](https://www.activeloop.ai/) and [Torchvision](https://pytorch.org/vision/stable/datasets.html), and you'll get all of Squirrel's functionality on top!\n3. It provides open-source and community-contributed [tutorials and example notebooks](https://github.com/merantix-momentum/squirrel-datasets-core/tree/main/examples) for using Squirrel.\n\n## Contributing\nSquirrel is open source and community contributions are welcome!\n\nCheck out the [contribution guide](https://squirrel-core.readthedocs.io/en/latest/developer/contribute.html) to learn how to get involved.\n\n## The Humans Behind Squirrel\nWe are [Merantix Momentum](https://merantix-momentum.com/), a team of ~30 machine learning engineers, developing machine learning solutions for industry and research. Each project comes with its own challenges, data types and learnings, but one issue we always faced was scalable data loading, transforming and sharing. We were looking for a solution that would allow us to load the data in a fast and cost-efficient way, while keeping the flexibility to work with any possible dataset and integrate with any API. That's why we build Squirrel \u2013 and we hope you'll find it as useful as we do! By the way, [we are hiring](https://merantix-momentum.com/about#jobs)!\n\n\n## Citation\n\nIf you use Squirrel in your research, please cite it using:\n```bibtex\n@article{2022squirrelcore,\n  title={Squirrel: A Python library that enables ML teams to share, load, and transform data in a collaborative, flexible, and efficient way.},\n  author={Squirrel Developer Team},\n  journal={GitHub. Note: https://github.com/merantix-momentum/squirrel-core},\n  doi={10.5281/zenodo.6418280},\n  year={2022}\n}\n```\n\n",
    "bugtrack_url": null,
    "license": "Apache 2.0",
    "summary": "Squirrel is a Python library that enables ML teams to share, load, and transform data in a collaborative, flexible and efficient way.",
    "version": "0.19.7",
    "project_urls": {
        "Documentation": "https://squirrel-core.readthedocs.io/en/latest/",
        "Homepage": "https://merantix-momentum.com/technology/squirrel/",
        "Repository": "https://github.com/merantix-momentum/squirrel-core"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6053b96f2a7ab31061693a562b661702fd45731c49367b5b3bc775270cd66183",
                "md5": "ea0206abed135c15118a19bfdc83eeec",
                "sha256": "0422bfb5f7eae01072f06978dd0cfac6b99d193e5cb140fa8d3853807c838c8a"
            },
            "downloads": -1,
            "filename": "squirrel_core-0.19.7-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "ea0206abed135c15118a19bfdc83eeec",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8,<4.0",
            "size": 84521,
            "upload_time": "2024-01-10T10:22:58",
            "upload_time_iso_8601": "2024-01-10T10:22:58.185980Z",
            "url": "https://files.pythonhosted.org/packages/60/53/b96f2a7ab31061693a562b661702fd45731c49367b5b3bc775270cd66183/squirrel_core-0.19.7-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "78634e2d872e712afdcb801f92d3b771bafaf40a261ecf7b927d84b33743eba7",
                "md5": "1c5c1b3b9fdda6424d01818635d5e7b6",
                "sha256": "d24af0d06ec8cb782df7751f29b965d08be7d85bb486b3a8b08e9e447b989a69"
            },
            "downloads": -1,
            "filename": "squirrel_core-0.19.7.tar.gz",
            "has_sig": false,
            "md5_digest": "1c5c1b3b9fdda6424d01818635d5e7b6",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8,<4.0",
            "size": 61755,
            "upload_time": "2024-01-10T10:23:00",
            "upload_time_iso_8601": "2024-01-10T10:23:00.256693Z",
            "url": "https://files.pythonhosted.org/packages/78/63/4e2d872e712afdcb801f92d3b771bafaf40a261ecf7b927d84b33743eba7/squirrel_core-0.19.7.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-10 10:23:00",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "merantix-momentum",
    "github_project": "squirrel-core",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "requirements": [],
    "lcname": "squirrel-core"
}
        
Elapsed time: 0.17660s