Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chunxutang/ai-reference-architecture
AI reference architecture with Alluxio
https://github.com/chunxutang/ai-reference-architecture
Last synced: 29 days ago
JSON representation
AI reference architecture with Alluxio
- Host: GitHub
- URL: https://github.com/chunxutang/ai-reference-architecture
- Owner: ChunxuTang
- License: apache-2.0
- Created: 2023-06-02T18:02:23.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-16T22:14:47.000Z (12 months ago)
- Last Synced: 2024-11-10T22:42:31.254Z (3 months ago)
- Language: Python
- Size: 257 KB
- Stars: 1
- Watchers: 2
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AI-Reference-Architecture
AI reference architecture with AlluxioThis repository contains the code and examples for an AI reference architecture
with Alluxio, including machine learning training and serving.## Development Guide
The project leverages [Black](https://github.com/psf/black) as the code formatter and
[reorder-python-imports](https://github.com/asottile/reorder_python_imports) to format imports.
Black defaults to 88 characters per line (10% over 80), while this project still uses 80 characters
per line. We recommend running the following commands before submitting pull requests.```bash
black [changed-file].py --line-length 79
reorder-python-imports [changed-file].py
```