%global _empty_manifest_terminate_build 0 Name: python-polyaxon Version: 1.20.0 Release: 1 Summary: Command Line Interface (CLI) and client to interact with Polyaxon API. License: Apache 2.0 URL: https://github.com/polyaxon/polyaxon Source0: https://mirrors.nju.edu.cn/pypi/web/packages/da/52/5a1a93910b20507bcbebbe266874ac77ec82767e5b8367faa12a7dc4a1d3/polyaxon-1.20.0.tar.gz BuildArch: noarch Requires: python3-click Requires: python3-Jinja2 Requires: python3-kubernetes Requires: python3-marshmallow Requires: python3-dateutil Requires: python3-pytz Requires: python3-PyYAML Requires: python3-ujson Requires: python3-psutil Requires: python3-requests Requires: python3-requests-toolbelt Requires: python3-rich Requires: python3-sentry-sdk Requires: python3-urllib3 Requires: python3-certifi Requires: python3-traceml Requires: python3-datatile Requires: python3-hypertune Requires: python3-polyaxon-sdk Requires: python3-aiohttp Requires: python3-adlfs Requires: python3-docker Requires: python3-GitPython Requires: python3-numpy Requires: python3-scipy Requires: python3-pandas Requires: python3-fsspec Requires: python3-moto Requires: python3-kubernetes-asyncio Requires: python3-aiofiles Requires: python3-starlette Requires: python3-docker Requires: python3-gcsfs Requires: python3-gitpython Requires: python3-numpy Requires: python3-s3fs Requires: python3-polyaxon-deploy %description [![License: Apache 2](https://img.shields.io/badge/License-apache2-blue.svg?style=flat&longCache=true)](LICENSE) [![Polyaxon API](https://img.shields.io/docker/pulls/polyaxon/polyaxon-api)](https://hub.docker.com/r/polyaxon/polyaxon-api) [![Slack](https://img.shields.io/badge/Slack-1.4k%20members-blue.svg?style=flat&logo=slack&longCache=true)](https://polyaxon.com/slack/) [![Docs](https://img.shields.io/badge/docs-stable-brightgreen.svg?style=flat&longCache=true)](https://polyaxon.com/docs/) [![Release](https://img.shields.io/badge/release-v1.20.0-brightgreen.svg?longCache=true)](https://polyaxon.com/docs/releases/1-20/) [![GitHub](https://img.shields.io/badge/issue_tracker-github-blue?style=flat&logo=github&longCache=true)](https://github.com/polyaxon/polyaxon/issues) [![GitHub](https://img.shields.io/badge/roadmap-github-blue?style=flat&logo=github&longCache=true)](https://github.com/orgs/polyaxon/projects/5) [![CLI](https://github.com/polyaxon/polyaxon/actions/workflows/core.yml/badge.svg)](https://github.com/polyaxon/polyaxon/actions/workflows/core.yml) [![Traceml](https://github.com/polyaxon/polyaxon/actions/workflows/traceml.yml/badge.svg)](https://github.com/polyaxon/polyaxon/actions/workflows/traceml.yml) [![Datatile](https://github.com/polyaxon/polyaxon/actions/workflows/datatile.yml/badge.svg)](https://github.com/polyaxon/polyaxon/actions/workflows/datatile.yml) [![Deploy](https://github.com/polyaxon/polyaxon/actions/workflows/deploy.yml/badge.svg)](https://github.com/polyaxon/polyaxon/actions/workflows/deploy.yml) [![Platform](https://github.com/polyaxon/polyaxon/actions/workflows/platform.yml/badge.svg)](https://github.com/polyaxon/polyaxon/actions/workflows/platform.yml) [![Codacy Badge](https://api.codacy.com/project/badge/Grade/90c05b6b112548c1a88b950beceacb69)](https://www.codacy.com/app/polyaxon/polyaxon?utm_source=github.com&utm_medium=referral&utm_content=polyaxon/polyaxon&utm_campaign=Badge_Grade)

polyaxon

Reproduce, Automate, Scale your data science.


Welcome to Polyaxon, a platform for building, training, and monitoring large scale deep learning applications. We are making a system to solve reproducibility, automation, and scalability for machine learning applications. Polyaxon deploys into any data center, cloud provider, or can be hosted and managed by Polyaxon, and it supports all the major deep learning frameworks such as Tensorflow, MXNet, Caffe, Torch, etc. Polyaxon makes it faster, easier, and more efficient to develop deep learning applications by managing workloads with smart container and node management. And it turns GPU servers into shared, self-service resources for your team or organization.

demo


# Install #### TL;DR; * Install CLI ```bash # Install Polyaxon CLI $ pip install -U polyaxon ``` * Create a deployment ```bash # Create a namespace $ kubectl create namespace polyaxon # Add Polyaxon charts repo $ helm repo add polyaxon https://charts.polyaxon.com # Deploy Polyaxon $ polyaxon admin deploy -f config.yaml # Access API $ polyaxon port-forward ``` Please check [polyaxon installation guide](https://polyaxon.com/docs/setup/) # Quick start #### TL;DR; * Start a project ```bash # Create a project $ polyaxon project create --name=quick-start --description='Polyaxon quick start.' ``` * Train and track logs & resources ```bash # Upload code and start experiments $ polyaxon run -f experiment.yaml -u -l ``` * Dashboard ```bash # Start Polyaxon dashboard $ polyaxon dashboard Dashboard page will now open in your browser. Continue? [Y/n]: y ```

compare dashboards


* Notebook ```bash # Start Jupyter notebook for your project $ polyaxon run --hub notebook ```

compare


* Tensorboard ```bash # Start TensorBoard for a run's output $ polyaxon run --hub tensorboard -P uuid=UUID ```

tensorboard


Please check our [quick start guide](https://polyaxon.com/docs/intro/quick-start/) to start training your first experiment. # Distributed job Polyaxon supports and simplifies distributed jobs. Depending on the framework you are using, you need to deploy the corresponding operator, adapt your code to enable the distributed training, and update your polyaxonfile. Here are some examples of using distributed training: * [Distributed Tensorflow](https://polyaxon.com/docs/experimentation/distributed/tf-jobs/) * [Distributed Pytorch](https://polyaxon.com/docs/experimentation/distributed/pytorch-jobs/) * [Distributed MPI](https://polyaxon.com/docs/experimentation/distributed/mpi-jobs/) * [Horovod](https://polyaxon.com/integrations/horovod/) * [Spark](https://polyaxon.com/docs/experimentation/distributed/spark-jobs/) * [Dask](https://polyaxon.com/docs/experimentation/distributed/dask-jobs/) # Hyperparameters tuning Polyaxon has a concept for suggesting hyperparameters and managing their results very similar to Google Vizier called experiment groups. An experiment group in Polyaxon defines a search algorithm, a search space, and a model to train. * [Grid search](https://polyaxon.com/docs/automation/optimization-engine/grid-search/) * [Random search](https://polyaxon.com/docs/automation/optimization-engine/random-search/) * [Hyperband](https://polyaxon.com/docs/automation/optimization-engine/hyperband/) * [Bayesian Optimization](https://polyaxon.com/docs/automation/optimization-engine/bayesian-optimization/) * [Hyperopt](https://polyaxon.com/docs/automation/optimization-engine/hyperopt/) * [Custom Iterative Optimization](https://polyaxon.com/docs/automation/optimization-engine/iterative/) # Parallel executions You can run your processing or model training jobs in parallel, Polyaxon provides a [mapping](https://polyaxon.com/docs/automation/mapping/) abstraction to manage concurrent jobs. # DAGs and workflows [Polyaxon DAGs](https://polyaxon.com/docs/automation/flow-engine/) is a tool that provides container-native engine for running machine learning pipelines. A DAG manages multiple operations with dependencies. Each operation is defined by a component runtime. This means that operations in a DAG can be jobs, services, distributed jobs, parallel executions, or nested DAGs. # Architecture ![Polyaxon architecture](artifacts/polyaxon_architecture.png) # Documentation Check out our [documentation](https://polyaxon.com/docs/) to learn more about Polyaxon. # Dashboard Polyaxon comes with a dashboard that shows the projects and experiments created by you and your team members. To start the dashboard, just run the following command in your terminal ```bash $ polyaxon dashboard -y ``` # Project status Polyaxon is stable and it's running in production mode at many startups and Fortune 500 companies. # Contributions Please follow the contribution guide line: *[Contribute to Polyaxon](CONTRIBUTING.md)*. # Research If you use Polyaxon in your academic research, we would be grateful if you could cite it. Feel free to [contact us](mailto:contact@polyaxon.com), we would love to learn about your project and see how we can support your custom need. %package -n python3-polyaxon Summary: Command Line Interface (CLI) and client to interact with Polyaxon API. Provides: python-polyaxon BuildRequires: python3-devel BuildRequires: python3-setuptools BuildRequires: python3-pip %description -n python3-polyaxon [![License: Apache 2](https://img.shields.io/badge/License-apache2-blue.svg?style=flat&longCache=true)](LICENSE) [![Polyaxon API](https://img.shields.io/docker/pulls/polyaxon/polyaxon-api)](https://hub.docker.com/r/polyaxon/polyaxon-api) [![Slack](https://img.shields.io/badge/Slack-1.4k%20members-blue.svg?style=flat&logo=slack&longCache=true)](https://polyaxon.com/slack/) [![Docs](https://img.shields.io/badge/docs-stable-brightgreen.svg?style=flat&longCache=true)](https://polyaxon.com/docs/) [![Release](https://img.shields.io/badge/release-v1.20.0-brightgreen.svg?longCache=true)](https://polyaxon.com/docs/releases/1-20/) [![GitHub](https://img.shields.io/badge/issue_tracker-github-blue?style=flat&logo=github&longCache=true)](https://github.com/polyaxon/polyaxon/issues) [![GitHub](https://img.shields.io/badge/roadmap-github-blue?style=flat&logo=github&longCache=true)](https://github.com/orgs/polyaxon/projects/5) [![CLI](https://github.com/polyaxon/polyaxon/actions/workflows/core.yml/badge.svg)](https://github.com/polyaxon/polyaxon/actions/workflows/core.yml) [![Traceml](https://github.com/polyaxon/polyaxon/actions/workflows/traceml.yml/badge.svg)](https://github.com/polyaxon/polyaxon/actions/workflows/traceml.yml) [![Datatile](https://github.com/polyaxon/polyaxon/actions/workflows/datatile.yml/badge.svg)](https://github.com/polyaxon/polyaxon/actions/workflows/datatile.yml) [![Deploy](https://github.com/polyaxon/polyaxon/actions/workflows/deploy.yml/badge.svg)](https://github.com/polyaxon/polyaxon/actions/workflows/deploy.yml) [![Platform](https://github.com/polyaxon/polyaxon/actions/workflows/platform.yml/badge.svg)](https://github.com/polyaxon/polyaxon/actions/workflows/platform.yml) [![Codacy Badge](https://api.codacy.com/project/badge/Grade/90c05b6b112548c1a88b950beceacb69)](https://www.codacy.com/app/polyaxon/polyaxon?utm_source=github.com&utm_medium=referral&utm_content=polyaxon/polyaxon&utm_campaign=Badge_Grade)

polyaxon

Reproduce, Automate, Scale your data science.


Welcome to Polyaxon, a platform for building, training, and monitoring large scale deep learning applications. We are making a system to solve reproducibility, automation, and scalability for machine learning applications. Polyaxon deploys into any data center, cloud provider, or can be hosted and managed by Polyaxon, and it supports all the major deep learning frameworks such as Tensorflow, MXNet, Caffe, Torch, etc. Polyaxon makes it faster, easier, and more efficient to develop deep learning applications by managing workloads with smart container and node management. And it turns GPU servers into shared, self-service resources for your team or organization.

demo


# Install #### TL;DR; * Install CLI ```bash # Install Polyaxon CLI $ pip install -U polyaxon ``` * Create a deployment ```bash # Create a namespace $ kubectl create namespace polyaxon # Add Polyaxon charts repo $ helm repo add polyaxon https://charts.polyaxon.com # Deploy Polyaxon $ polyaxon admin deploy -f config.yaml # Access API $ polyaxon port-forward ``` Please check [polyaxon installation guide](https://polyaxon.com/docs/setup/) # Quick start #### TL;DR; * Start a project ```bash # Create a project $ polyaxon project create --name=quick-start --description='Polyaxon quick start.' ``` * Train and track logs & resources ```bash # Upload code and start experiments $ polyaxon run -f experiment.yaml -u -l ``` * Dashboard ```bash # Start Polyaxon dashboard $ polyaxon dashboard Dashboard page will now open in your browser. Continue? [Y/n]: y ```

compare dashboards


* Notebook ```bash # Start Jupyter notebook for your project $ polyaxon run --hub notebook ```

compare


* Tensorboard ```bash # Start TensorBoard for a run's output $ polyaxon run --hub tensorboard -P uuid=UUID ```

tensorboard


Please check our [quick start guide](https://polyaxon.com/docs/intro/quick-start/) to start training your first experiment. # Distributed job Polyaxon supports and simplifies distributed jobs. Depending on the framework you are using, you need to deploy the corresponding operator, adapt your code to enable the distributed training, and update your polyaxonfile. Here are some examples of using distributed training: * [Distributed Tensorflow](https://polyaxon.com/docs/experimentation/distributed/tf-jobs/) * [Distributed Pytorch](https://polyaxon.com/docs/experimentation/distributed/pytorch-jobs/) * [Distributed MPI](https://polyaxon.com/docs/experimentation/distributed/mpi-jobs/) * [Horovod](https://polyaxon.com/integrations/horovod/) * [Spark](https://polyaxon.com/docs/experimentation/distributed/spark-jobs/) * [Dask](https://polyaxon.com/docs/experimentation/distributed/dask-jobs/) # Hyperparameters tuning Polyaxon has a concept for suggesting hyperparameters and managing their results very similar to Google Vizier called experiment groups. An experiment group in Polyaxon defines a search algorithm, a search space, and a model to train. * [Grid search](https://polyaxon.com/docs/automation/optimization-engine/grid-search/) * [Random search](https://polyaxon.com/docs/automation/optimization-engine/random-search/) * [Hyperband](https://polyaxon.com/docs/automation/optimization-engine/hyperband/) * [Bayesian Optimization](https://polyaxon.com/docs/automation/optimization-engine/bayesian-optimization/) * [Hyperopt](https://polyaxon.com/docs/automation/optimization-engine/hyperopt/) * [Custom Iterative Optimization](https://polyaxon.com/docs/automation/optimization-engine/iterative/) # Parallel executions You can run your processing or model training jobs in parallel, Polyaxon provides a [mapping](https://polyaxon.com/docs/automation/mapping/) abstraction to manage concurrent jobs. # DAGs and workflows [Polyaxon DAGs](https://polyaxon.com/docs/automation/flow-engine/) is a tool that provides container-native engine for running machine learning pipelines. A DAG manages multiple operations with dependencies. Each operation is defined by a component runtime. This means that operations in a DAG can be jobs, services, distributed jobs, parallel executions, or nested DAGs. # Architecture ![Polyaxon architecture](artifacts/polyaxon_architecture.png) # Documentation Check out our [documentation](https://polyaxon.com/docs/) to learn more about Polyaxon. # Dashboard Polyaxon comes with a dashboard that shows the projects and experiments created by you and your team members. To start the dashboard, just run the following command in your terminal ```bash $ polyaxon dashboard -y ``` # Project status Polyaxon is stable and it's running in production mode at many startups and Fortune 500 companies. # Contributions Please follow the contribution guide line: *[Contribute to Polyaxon](CONTRIBUTING.md)*. # Research If you use Polyaxon in your academic research, we would be grateful if you could cite it. Feel free to [contact us](mailto:contact@polyaxon.com), we would love to learn about your project and see how we can support your custom need. %package help Summary: Development documents and examples for polyaxon Provides: python3-polyaxon-doc %description help [![License: Apache 2](https://img.shields.io/badge/License-apache2-blue.svg?style=flat&longCache=true)](LICENSE) [![Polyaxon API](https://img.shields.io/docker/pulls/polyaxon/polyaxon-api)](https://hub.docker.com/r/polyaxon/polyaxon-api) [![Slack](https://img.shields.io/badge/Slack-1.4k%20members-blue.svg?style=flat&logo=slack&longCache=true)](https://polyaxon.com/slack/) [![Docs](https://img.shields.io/badge/docs-stable-brightgreen.svg?style=flat&longCache=true)](https://polyaxon.com/docs/) [![Release](https://img.shields.io/badge/release-v1.20.0-brightgreen.svg?longCache=true)](https://polyaxon.com/docs/releases/1-20/) [![GitHub](https://img.shields.io/badge/issue_tracker-github-blue?style=flat&logo=github&longCache=true)](https://github.com/polyaxon/polyaxon/issues) [![GitHub](https://img.shields.io/badge/roadmap-github-blue?style=flat&logo=github&longCache=true)](https://github.com/orgs/polyaxon/projects/5) [![CLI](https://github.com/polyaxon/polyaxon/actions/workflows/core.yml/badge.svg)](https://github.com/polyaxon/polyaxon/actions/workflows/core.yml) [![Traceml](https://github.com/polyaxon/polyaxon/actions/workflows/traceml.yml/badge.svg)](https://github.com/polyaxon/polyaxon/actions/workflows/traceml.yml) [![Datatile](https://github.com/polyaxon/polyaxon/actions/workflows/datatile.yml/badge.svg)](https://github.com/polyaxon/polyaxon/actions/workflows/datatile.yml) [![Deploy](https://github.com/polyaxon/polyaxon/actions/workflows/deploy.yml/badge.svg)](https://github.com/polyaxon/polyaxon/actions/workflows/deploy.yml) [![Platform](https://github.com/polyaxon/polyaxon/actions/workflows/platform.yml/badge.svg)](https://github.com/polyaxon/polyaxon/actions/workflows/platform.yml) [![Codacy Badge](https://api.codacy.com/project/badge/Grade/90c05b6b112548c1a88b950beceacb69)](https://www.codacy.com/app/polyaxon/polyaxon?utm_source=github.com&utm_medium=referral&utm_content=polyaxon/polyaxon&utm_campaign=Badge_Grade)

polyaxon

Reproduce, Automate, Scale your data science.


Welcome to Polyaxon, a platform for building, training, and monitoring large scale deep learning applications. We are making a system to solve reproducibility, automation, and scalability for machine learning applications. Polyaxon deploys into any data center, cloud provider, or can be hosted and managed by Polyaxon, and it supports all the major deep learning frameworks such as Tensorflow, MXNet, Caffe, Torch, etc. Polyaxon makes it faster, easier, and more efficient to develop deep learning applications by managing workloads with smart container and node management. And it turns GPU servers into shared, self-service resources for your team or organization.

demo


# Install #### TL;DR; * Install CLI ```bash # Install Polyaxon CLI $ pip install -U polyaxon ``` * Create a deployment ```bash # Create a namespace $ kubectl create namespace polyaxon # Add Polyaxon charts repo $ helm repo add polyaxon https://charts.polyaxon.com # Deploy Polyaxon $ polyaxon admin deploy -f config.yaml # Access API $ polyaxon port-forward ``` Please check [polyaxon installation guide](https://polyaxon.com/docs/setup/) # Quick start #### TL;DR; * Start a project ```bash # Create a project $ polyaxon project create --name=quick-start --description='Polyaxon quick start.' ``` * Train and track logs & resources ```bash # Upload code and start experiments $ polyaxon run -f experiment.yaml -u -l ``` * Dashboard ```bash # Start Polyaxon dashboard $ polyaxon dashboard Dashboard page will now open in your browser. Continue? [Y/n]: y ```

compare dashboards


* Notebook ```bash # Start Jupyter notebook for your project $ polyaxon run --hub notebook ```

compare


* Tensorboard ```bash # Start TensorBoard for a run's output $ polyaxon run --hub tensorboard -P uuid=UUID ```

tensorboard


Please check our [quick start guide](https://polyaxon.com/docs/intro/quick-start/) to start training your first experiment. # Distributed job Polyaxon supports and simplifies distributed jobs. Depending on the framework you are using, you need to deploy the corresponding operator, adapt your code to enable the distributed training, and update your polyaxonfile. Here are some examples of using distributed training: * [Distributed Tensorflow](https://polyaxon.com/docs/experimentation/distributed/tf-jobs/) * [Distributed Pytorch](https://polyaxon.com/docs/experimentation/distributed/pytorch-jobs/) * [Distributed MPI](https://polyaxon.com/docs/experimentation/distributed/mpi-jobs/) * [Horovod](https://polyaxon.com/integrations/horovod/) * [Spark](https://polyaxon.com/docs/experimentation/distributed/spark-jobs/) * [Dask](https://polyaxon.com/docs/experimentation/distributed/dask-jobs/) # Hyperparameters tuning Polyaxon has a concept for suggesting hyperparameters and managing their results very similar to Google Vizier called experiment groups. An experiment group in Polyaxon defines a search algorithm, a search space, and a model to train. * [Grid search](https://polyaxon.com/docs/automation/optimization-engine/grid-search/) * [Random search](https://polyaxon.com/docs/automation/optimization-engine/random-search/) * [Hyperband](https://polyaxon.com/docs/automation/optimization-engine/hyperband/) * [Bayesian Optimization](https://polyaxon.com/docs/automation/optimization-engine/bayesian-optimization/) * [Hyperopt](https://polyaxon.com/docs/automation/optimization-engine/hyperopt/) * [Custom Iterative Optimization](https://polyaxon.com/docs/automation/optimization-engine/iterative/) # Parallel executions You can run your processing or model training jobs in parallel, Polyaxon provides a [mapping](https://polyaxon.com/docs/automation/mapping/) abstraction to manage concurrent jobs. # DAGs and workflows [Polyaxon DAGs](https://polyaxon.com/docs/automation/flow-engine/) is a tool that provides container-native engine for running machine learning pipelines. A DAG manages multiple operations with dependencies. Each operation is defined by a component runtime. This means that operations in a DAG can be jobs, services, distributed jobs, parallel executions, or nested DAGs. # Architecture ![Polyaxon architecture](artifacts/polyaxon_architecture.png) # Documentation Check out our [documentation](https://polyaxon.com/docs/) to learn more about Polyaxon. # Dashboard Polyaxon comes with a dashboard that shows the projects and experiments created by you and your team members. To start the dashboard, just run the following command in your terminal ```bash $ polyaxon dashboard -y ``` # Project status Polyaxon is stable and it's running in production mode at many startups and Fortune 500 companies. # Contributions Please follow the contribution guide line: *[Contribute to Polyaxon](CONTRIBUTING.md)*. # Research If you use Polyaxon in your academic research, we would be grateful if you could cite it. Feel free to [contact us](mailto:contact@polyaxon.com), we would love to learn about your project and see how we can support your custom need. %prep %autosetup -n polyaxon-1.20.0 %build %py3_build %install %py3_install install -d -m755 %{buildroot}/%{_pkgdocdir} if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi pushd %{buildroot} if [ -d usr/lib ]; then find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst fi if [ -d usr/lib64 ]; then find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst fi if [ -d usr/bin ]; then find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst fi if [ -d usr/sbin ]; then find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst fi touch doclist.lst if [ -d usr/share/man ]; then find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst fi popd mv %{buildroot}/filelist.lst . mv %{buildroot}/doclist.lst . %files -n python3-polyaxon -f filelist.lst %dir %{python3_sitelib}/* %files help -f doclist.lst %{_docdir}/* %changelog * Sun Apr 23 2023 Python_Bot - 1.20.0-1 - Package Spec generated