https://github.com/yaacov/rose-ml-talk
Slides and demo files for ROSE ml talk
https://github.com/yaacov/rose-ml-talk
Last synced: about 1 month ago
JSON representation
Slides and demo files for ROSE ml talk
- Host: GitHub
- URL: https://github.com/yaacov/rose-ml-talk
- Owner: yaacov
- License: gpl-3.0
- Created: 2023-11-18T23:05:26.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-03T08:17:02.000Z (almost 2 years ago)
- Last Synced: 2025-03-16T23:42:14.550Z (7 months ago)
- Language: JavaScript
- Size: 16.7 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ROSE ML Talk
[slides](https://yaacov.github.io/rose-ml-talk/slides/)
## Serve slides:
```bash
python -m http.server -d ./slides/
```## Demo - ROSE Game
```bash
cd demo1# run game engine
podman run --rm --network host -it quay.io/rose/rose-server# run driver logic
podman run -it --rm --network host \
-v $(pwd)/good_driver.py:/driver.py:z \
quay.io/rose/rose-client \
--driver /driver.py \
--port 8081
```## Demo - Perceptron
```bash
cd demo2python perceptron.py
```## Demo - ROSE ML Driver
https://github.com/yaacov/rose-ml-driver