Tictactoe3d final submission #269
Conversation
📁 Previous CI results (run #23819407224)Test ReportThis comment was generated automatically by a GitHub Action. It summarizes the test results for this pull request. The GitHub Action run can be found here: Base Branch ✅The PR's base branch is Changed Files ❌The PR changes files that should not be changed:
Please ensure that only allowed files are modified. Any changes in the Framework Tests ❌Some framework tests failed. Please check the details below: bankheist ❌skiing ✅frostbite ✅This log was automatically created at 2026-03-31 20:48:14 UTC. |
|
Hey there the automatic test for tictactoe3d isn't running here. I don't know why but all the framework tests have passed. Thank you. |
📁 Previous CI results (run #23819503511)Test ReportThis comment was generated automatically by a GitHub Action. It summarizes the test results for this pull request. The GitHub Action run can be found here: Base Branch ✅The PR's base branch is Changed Files ❌The PR changes files that should not be changed:
Please ensure that only allowed files are modified. Any changes in the Framework Tests ❌Some framework tests failed. Please check the details below: bankheist ❌skiing ✅frostbite ✅This log was automatically created at 2026-03-31 21:17:45 UTC. |
Test ReportThis comment was generated automatically by a GitHub Action. It summarizes the test results for this pull request. The GitHub Action run can be found here: Base Branch ✅The PR's base branch is Changed Files ❌The PR changes files that should not be changed:
Please ensure that only allowed files are modified. Any changes in the Framework Tests ❌Some framework tests failed. Please check the details below: bankheist ❌ |
Hello there,
here is the final version of implemented tictactoe3d from Nikit Kattel and Tenzing sherpa. We needed to change some things in our project as given by the instructor since i have a intel mac which just wouldn't support jax and jaxlib 0.7.0. Here are the changes we had to make: pyproject.toml:
dependencies = [
"absl-py>=2.3",
"ale-py>=0.11.1",
"chex>=0.1.87",
"flax>=0.10.2,<0.11.0", <- changed
"gymnasium>=1.2.0",
"gymnax>=0.0.8",
"jax>=0.4.38,<0.5.0", <- changed (insert what works for you)
"ml-dtypes>=0.4.0,<0.5.0", <- changed
"numpy>=1.26.0,<2.0.0", <- changed
"opt-einsum>=3.4.0",
"scipy>=1.15.3",
"toolz>=1.0.0",
"typing-extensions>=4.14.0",
]
We will be happy to get any feedbacks and suggestions. Thank you.