DBleidorn
DBleidorn
Still investigating the legal and illegal actions.. (: I noticed that the following code in test_solutions.py does not check for illegal actions: ```python if no_op and not done: self.assertTrue(len(env.next_time_step) >...
Occasionally my environment (and thus my ray workers) crash at the beginning of training. I observed two cases so far: - IndexError: pop from empty list [next_time_step_to_pick = self.next_time_step.pop(0)] -...
It seems like the requirements and tests are no longer up to date and are now breaking.
A few fixes for bugs, which lead to crashes. Add functionality to set seed for random number generator Copied some changes from the latest commits, but in smaller steps. Ignored...
When trying the code from the Ray Summit I get the following error: AttributeError: 'MultiAgentArena' object has no attribute '_agent_ids'. Adding "self._agent_ids = ["agent1", "agent2"] manually resolves that error, but...
When running coverlet on Win10 on .NET 6, the resulting XML is saved with an encoding "UTF-8 BOM". This seems to break my Jenkins pipeline and I see no configuration...
I noticed that in the requirements.txt file ray 1.13.0 is given. But the code is not compatible with this version, notable during training here: ` ray.wait(workers, len(workers))` wait() only accepts...
For others who may encounter problems with the codecov requirement: It is defacto removed from pypi, see https://about.codecov.io/blog/message-regarding-the-pypi-package/. Version 2.1.13 was uploaded again, but generally the package is depricated.
Is it possible to connect tables via relationships when creating a hyper file? I couldn't find anything on that topic in the documentation (Or I'm looking for the wrong keywords..)...
See title. I think more and more (including PEP, see https://peps.python.org/pep-0517/) recommendations point toward the us of pyproject.toml. I think poetry is an easy way to be compliant with PEP-517.