Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aventer-ug/tensorflow-mesos
Tensorflow python module for Apache Mesos
https://github.com/aventer-ug/tensorflow-mesos
clusterd machine-learning mesos python tensorflow
Last synced: about 1 month ago
JSON representation
Tensorflow python module for Apache Mesos
- Host: GitHub
- URL: https://github.com/aventer-ug/tensorflow-mesos
- Owner: AVENTER-UG
- Created: 2023-10-12T14:51:35.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-11-10T13:54:52.000Z (about 1 year ago)
- Last Synced: 2024-12-24T18:14:37.778Z (about 1 month ago)
- Topics: clusterd, machine-learning, mesos, python, tensorflow
- Language: Python
- Homepage:
- Size: 476 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGES.txt
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
# Tensorflow V2 for Mesos
[![Docs](https://img.shields.io/static/v1?label=&message=Issues&color=brightgreen)](https://github.com/AVENTER-UG/tensorflow-mesos/issues)
[![Chat](https://img.shields.io/static/v1?label=&message=Chat&color=brightgreen)](https://matrix.to/#/#mesos:matrix.aventer.biz?via=matrix.aventer.biz)With these python module it's possible to run Tensorflow scripts against a Mesos cluster. For
detailed examples, please have a look into the examples directory.## Issues
To open an issue, please use this place: https://github.com/AVENTER-UG/tensorflow-mesos/issues
## Requirements
- Apache Mesos minimum 1.6.x
## How to install
To install tensorflow-mesos and all required packages, execute the following command.
```bash
pip install tfmesos2
```
## How to use?
Tensorflow for Mesos need some environment variables to know how and which Mesos it should use.
```bash
export MESOS_SSL=true
export MESOS_MASTER=localhost:5050
export MESOS_USERNAME=
export MESOS_PASSWORD=python examples/plus.py
```