{"id":19785388,"url":"https://github.com/michaelfeil/skyjo_rl","last_synced_at":"2025-04-30T23:30:29.310Z","repository":{"id":37683798,"uuid":"452364407","full_name":"michaelfeil/skyjo_rl","owner":"michaelfeil","description":"Multi-Agent Reinforcement Learning Environment for the card game SkyJo, compatible with PettingZoo and RLLIB","archived":false,"fork":false,"pushed_at":"2025-03-06T22:34:42.000Z","size":3822,"stargazers_count":13,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-26T02:30:26.232Z","etag":null,"topics":["mutli-agent","pettingzoo","reinforcement-learning","rllib"],"latest_commit_sha":null,"homepage":"https://michaelfeil.eu/skyjo_rl/","language":"Jupyter Notebook","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/michaelfeil.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2022-01-26T17:02:59.000Z","updated_at":"2025-03-06T08:08:53.000Z","dependencies_parsed_at":"2023-12-17T18:45:53.283Z","dependency_job_id":null,"html_url":"https://github.com/michaelfeil/skyjo_rl","commit_stats":{"total_commits":64,"total_committers":2,"mean_commits":32.0,"dds":0.0625,"last_synced_commit":"e194d03729a7823891f4f913d0ba7b17f547be60"},"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/michaelfeil%2Fskyjo_rl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/michaelfeil%2Fskyjo_rl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/michaelfeil%2Fskyjo_rl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/michaelfeil%2Fskyjo_rl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/michaelfeil","download_url":"https://codeload.github.com/michaelfeil/skyjo_rl/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251799187,"owners_count":21645752,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["mutli-agent","pettingzoo","reinforcement-learning","rllib"],"created_at":"2024-11-12T06:14:31.383Z","updated_at":"2025-04-30T23:30:28.990Z","avatar_url":"https://github.com/michaelfeil.png","language":"Jupyter Notebook","funding_links":[],"categories":[],"sub_categories":[],"readme":"skyjo_rl\n==============================\n\nMulti-Agent Reinforcement Learning Environment for the card game SkyJo, compatible with PettingZoo and RLLIB\n\n[![codecov](https://codecov.io/gh/michaelfeil/skyjo_rl/branch/master/graph/badge.svg?token=56TSLUCER8)](https://codecov.io/gh/michaelfeil/skyjo_rl)![CI pytest](https://github.com/michaelfeil/skyjo_rl/actions/workflows/test_release.yml/badge.svg)\n\n[Read the docs](https://michaelfeil.github.io/skyjo_rl/)\n\n\u003c!-- PROJECT SHIELDS --\u003e\n[![Contributors][contributors-shield]][contributors-url]\n[![Forks][forks-shield]][forks-url]\n[![Stargazers][stars-shield]][stars-url]\n[![Issues][issues-shield]][issues-url]\n[![MIT License][license-shield]][license-url]\n[![LinkedIn][linkedin-shield]][linkedin-url]\n\nProject Organization\n------------\n[Github Repository](https://github.com/michaelfeil/skyjo_rl)\n\n    ├── LICENSE\n    ├── Makefile                \u003c- Makefile with commands like `make data` or `make train`\n    ├── README.md               \u003c- The top-level README for developers using this project.\n    │\n    ├── docs                    \u003c- Docs HTMLs, see Sphinx [docs](https:/michaelfeil.github.io/skyjo_rl)\n    │\n    ├── models                  \u003c- Trained and serialized models, model predictions, or model summaries\n    │\n    ├── notebooks               \u003c- Jupyter notebooks. \n    ├── requirements.txt                        \u003c- requirements for the rlskyjo\n    ├── requirements_dev.txt                    \u003c- requirements for developers\n    ├── rlskyjo                                    \n    │   ├── environment\n    │   │   ├── skyjo_env.py\n    │   │   └── vanilla_env_example.py\n    │   ├── game\n    │   │   ├── sample_game.py\n    │   │   └── skyjo.py\n    │   ├── models\n    │   │   ├── action_mask_model.py\n    │   │   ├── random_admissible_policy.py\n    │   │   └── train_model_simple_rllib.py\n    │   └── utils.py\n    ├── setup.py                                \u003c- makes project pip installable (pip install -e .) so skyjo_rl can be imported\n    ├── test_environment.py\n    ├── tests                                   \u003c- Unittests\n    └── tox.ini                                 \u003c- tox file with settings for running tox; see tox.readthedocs.io\n\n--------\n## PYPI Install\n```\nconda create --name skyjo python=3.8 pip\nconda activate skyjo\npip install rlskyjo\n```\n--------\n## Developer Install\n```\ngit clone https://github.com/michaelfeil/skyjo_rl.git\nconda create --name skyjo python=3.8 pip\nconda activate skyjo\npip install -r requirements.txt\npip install -r requirements_dev.txt\npip install -e .\npre-commit install\ncoverage run -m --source=./rlskyjo pytest tests\n```\n\n## Tutorials\n[Vanilla SkyJo PettingZoo Env example](https://github.com/michaelfeil/skyjo_rl/blob/master/rlskyjo/environment/vanilla_env_example.py)\n\n[SkyJo game example](https://github.com/michaelfeil/skyjo_rl/blob/master/rlskyjo/game/sample_game.py)\n\n[Train PPO MultiAgent with SkyJo PettingZoo Env, Pytorch and RLLib](https://github.com/michaelfeil/skyjo_rl/blob/master/rlskyjo/models/train_model_simple_rllib.py)\n\n\u003c!-- MARKDOWN LINKS \u0026 IMAGES --\u003e\n\u003c!-- https://www.markdownguide.org/basic-syntax/#reference-style-links --\u003e\n[contributors-shield]: https://img.shields.io/github/contributors/michaelfeil/skyjo_rl.svg?style=for-the-badge\n[contributors-url]: https://github.com/michaelfeil/skyjo_rl/graphs/contributors\n[forks-shield]: https://img.shields.io/github/forks/michaelfeil/skyjo_rl.svg?style=for-the-badge\n[forks-url]: https://github.com/michaelfeil/skyjo_rl/network/members\n[stars-shield]: https://img.shields.io/github/stars/michaelfeil/skyjo_rl.svg?style=for-the-badge\n[stars-url]: https://github.com/michaelfeil/skyjo_rl/stargazers\n[issues-shield]: https://img.shields.io/github/issues/michaelfeil/skyjo_rl.svg?style=for-the-badge\n[issues-url]: https://github.com/michaelfeil/skyjo_rl/issues\n[license-shield]: https://img.shields.io/github/license/michaelfeil/skyjo_rl.svg?style=for-the-badge\n[license-url]: https://github.com/michaelfeil/skyjo_rl/blob/master/LICENSE.txt\n[linkedin-shield]: https://img.shields.io/badge/-LinkedIn-black.svg?style=for-the-badge\u0026logo=linkedin\u0026colorB=555\n[linkedin-url]: https://linkedin.com/in/michael-feil\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmichaelfeil%2Fskyjo_rl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmichaelfeil%2Fskyjo_rl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmichaelfeil%2Fskyjo_rl/lists"}