torchx-applovin


Nametorchx-applovin JSON
Version 0.6.0.dev12 PyPI version JSON
download
home_pagehttps://github.com/pytorch/torchx
SummaryTorchX SDK and Components
upload_time2023-10-02 17:29:52
maintainer
docs_urlNone
authorTorchX Devs
requires_python>=3.7
licenseBSD-3
keywords pytorch machine learning applovin
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            # to install fork
pip install torchx-applovin

# to update
rm dist/* &&  && python3.9 setup.py sdist bdist_wheel && twine upload dist/* --verbose 



[![PyPI](https://img.shields.io/pypi/v/torchx)](https://pypi.org/project/torchx/)
[![License](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](LICENSE)
![Tests](https://github.com/pytorch/torchx/actions/workflows/python-unittests.yaml/badge.svg)
![Lint](https://github.com/pytorch/torchx/actions/workflows/lint.yaml/badge.svg)
[![codecov](https://codecov.io/gh/pytorch/torchx/branch/main/graph/badge.svg?token=ceHHIm0hXy)](https://codecov.io/gh/pytorch/torchx)


# TorchX


TorchX is a universal job launcher for PyTorch applications.
TorchX is designed to have fast iteration time for training/research and support
for E2E production ML pipelines when you're ready.

TorchX currently supports:

* Kubernetes (EKS, GKE, AKS, etc)
* Slurm
* AWS Batch
* Docker
* Local
* Ray (prototype)
* GCP Batch (prototype)

Need a scheduler not listed? [Let us know!](https://github.com/pytorch/torchx/issues?q=is%3Aopen+is%3Aissue+label%3Ascheduler-request)

## Quickstart

See the [quickstart guide](https://pytorch.org/torchx/latest/quickstart.html).

## Documentation

* [Stable Documentation](https://pytorch.org/torchx/latest/)
* [Nightly Documentation](https://pytorch.org/torchx/main/)

## Requirements

torchx:

* python3 (3.8+)
* [PyTorch](https://pytorch.org/get-started/locally/)
* optional: [Docker](https://docs.docker.com/get-docker/) (needed for docker based schedulers)

Certain schedulers may require scheduler specific requirements. See installation
for info.

## Installation

### Stable

```bash
# install torchx sdk and CLI -- minimum dependencies
pip install torchx

# install torchx sdk and CLI -- all dependencies
pip install "torchx[dev]"

# install torchx kubeflow pipelines (kfp) support
pip install "torchx[kfp]"

# install torchx Kubernetes / Volcano support
pip install "torchx[kubernetes]"

# install torchx Ray support
pip install "torchx[ray]"

# install torchx GCP Batch support
pip install "torchx[gcp_batch]"
```

### Nightly

```bash
# install torchx sdk and CLI
pip install torchx-nightly[dev]
```

### Source

```bash
# install torchx sdk and CLI from source
$ pip install -e git+https://github.com/pytorch/torchx.git#egg=torchx

# install extra dependencies
$ pip install -e git+https://github.com/pytorch/torchx.git#egg=torchx[dev]
```

### Docker

TorchX provides a docker container for using as as part of a TorchX role.

See: https://github.com/pytorch/torchx/pkgs/container/torchx

## Contributing

We welcome PRs! See the [CONTRIBUTING](CONTRIBUTING.md) file.

## License

TorchX is BSD licensed, as found in the [LICENSE](LICENSE) file.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/pytorch/torchx",
    "name": "torchx-applovin",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "pytorch,machine learning,applovin",
    "author": "TorchX Devs",
    "author_email": "torchx@fb.com",
    "download_url": "https://files.pythonhosted.org/packages/b0/d5/3912f970b7b7990cc626f1557ca3e2b2be6e0278d3b7b2ae30750fe768b1/torchx-applovin-0.6.0.dev12.tar.gz",
    "platform": null,
    "description": "# to install fork\npip install torchx-applovin\n\n# to update\nrm dist/* &&  && python3.9 setup.py sdist bdist_wheel && twine upload dist/* --verbose \n\n\n\n[![PyPI](https://img.shields.io/pypi/v/torchx)](https://pypi.org/project/torchx/)\n[![License](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](LICENSE)\n![Tests](https://github.com/pytorch/torchx/actions/workflows/python-unittests.yaml/badge.svg)\n![Lint](https://github.com/pytorch/torchx/actions/workflows/lint.yaml/badge.svg)\n[![codecov](https://codecov.io/gh/pytorch/torchx/branch/main/graph/badge.svg?token=ceHHIm0hXy)](https://codecov.io/gh/pytorch/torchx)\n\n\n# TorchX\n\n\nTorchX is a universal job launcher for PyTorch applications.\nTorchX is designed to have fast iteration time for training/research and support\nfor E2E production ML pipelines when you're ready.\n\nTorchX currently supports:\n\n* Kubernetes (EKS, GKE, AKS, etc)\n* Slurm\n* AWS Batch\n* Docker\n* Local\n* Ray (prototype)\n* GCP Batch (prototype)\n\nNeed a scheduler not listed? [Let us know!](https://github.com/pytorch/torchx/issues?q=is%3Aopen+is%3Aissue+label%3Ascheduler-request)\n\n## Quickstart\n\nSee the [quickstart guide](https://pytorch.org/torchx/latest/quickstart.html).\n\n## Documentation\n\n* [Stable Documentation](https://pytorch.org/torchx/latest/)\n* [Nightly Documentation](https://pytorch.org/torchx/main/)\n\n## Requirements\n\ntorchx:\n\n* python3 (3.8+)\n* [PyTorch](https://pytorch.org/get-started/locally/)\n* optional: [Docker](https://docs.docker.com/get-docker/) (needed for docker based schedulers)\n\nCertain schedulers may require scheduler specific requirements. See installation\nfor info.\n\n## Installation\n\n### Stable\n\n```bash\n# install torchx sdk and CLI -- minimum dependencies\npip install torchx\n\n# install torchx sdk and CLI -- all dependencies\npip install \"torchx[dev]\"\n\n# install torchx kubeflow pipelines (kfp) support\npip install \"torchx[kfp]\"\n\n# install torchx Kubernetes / Volcano support\npip install \"torchx[kubernetes]\"\n\n# install torchx Ray support\npip install \"torchx[ray]\"\n\n# install torchx GCP Batch support\npip install \"torchx[gcp_batch]\"\n```\n\n### Nightly\n\n```bash\n# install torchx sdk and CLI\npip install torchx-nightly[dev]\n```\n\n### Source\n\n```bash\n# install torchx sdk and CLI from source\n$ pip install -e git+https://github.com/pytorch/torchx.git#egg=torchx\n\n# install extra dependencies\n$ pip install -e git+https://github.com/pytorch/torchx.git#egg=torchx[dev]\n```\n\n### Docker\n\nTorchX provides a docker container for using as as part of a TorchX role.\n\nSee: https://github.com/pytorch/torchx/pkgs/container/torchx\n\n## Contributing\n\nWe welcome PRs! See the [CONTRIBUTING](CONTRIBUTING.md) file.\n\n## License\n\nTorchX is BSD licensed, as found in the [LICENSE](LICENSE) file.\n",
    "bugtrack_url": null,
    "license": "BSD-3",
    "summary": "TorchX SDK and Components",
    "version": "0.6.0.dev12",
    "project_urls": {
        "Homepage": "https://github.com/pytorch/torchx"
    },
    "split_keywords": [
        "pytorch",
        "machine learning",
        "applovin"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "48a6a2667af87795be71a0b0d2c9e74840b99922f7c9a8ffee16b8d5419a1987",
                "md5": "a2d56180a3582365f6b1735edf09fad3",
                "sha256": "9f64bf90fd9a3fcbdc0e76080acd1de9e415baa824a7c4e6d8d7d0c4535e537b"
            },
            "downloads": -1,
            "filename": "torchx_applovin-0.6.0.dev12-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "a2d56180a3582365f6b1735edf09fad3",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 262807,
            "upload_time": "2023-10-02T17:29:51",
            "upload_time_iso_8601": "2023-10-02T17:29:51.457779Z",
            "url": "https://files.pythonhosted.org/packages/48/a6/a2667af87795be71a0b0d2c9e74840b99922f7c9a8ffee16b8d5419a1987/torchx_applovin-0.6.0.dev12-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b0d53912f970b7b7990cc626f1557ca3e2b2be6e0278d3b7b2ae30750fe768b1",
                "md5": "7b884f0b7a490ae3637a184e328e3d5c",
                "sha256": "016dadb01266fbdc21f7a736c9c0a0d4eea8241ff7fb5e5d077f6dc471fd196e"
            },
            "downloads": -1,
            "filename": "torchx-applovin-0.6.0.dev12.tar.gz",
            "has_sig": false,
            "md5_digest": "7b884f0b7a490ae3637a184e328e3d5c",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 195616,
            "upload_time": "2023-10-02T17:29:52",
            "upload_time_iso_8601": "2023-10-02T17:29:52.838491Z",
            "url": "https://files.pythonhosted.org/packages/b0/d5/3912f970b7b7990cc626f1557ca3e2b2be6e0278d3b7b2ae30750fe768b1/torchx-applovin-0.6.0.dev12.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-10-02 17:29:52",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "pytorch",
    "github_project": "torchx",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "requirements": [],
    "lcname": "torchx-applovin"
}
        
Elapsed time: 0.13105s