Alex Driedger

Results 13 issues of Alex Driedger

After running the getting started code, the pose data does not change, even when moving the controller. The pose is always ``` [[1.0, 0.0, 0.0, 0.0], [0.0, 1.0, 0.0, 0.0299999999329447746],...

Non-combat relics (eg. black star) should have no impact on damage taken in the fight. Therefore, these features should be removed. This could either be done during the run history...

Set up a better way to store the transformed run files than committing the files to GitHub. S3 is probably a good choice

Most of the best players play the game on a high a difficulty and only using their data may lead to a more accurate model

Pre-processing takes way too long because each training example is processed by itself. This should be vectorized and this will significantly improve pre-processing speed. This is probably a necessary step...

- `ModPanel.addButton(//params)` is no longer a function - `ModPanel.addLabel(//params)` is no longer a function - There is no documentation on how to use `addUIElement(IUIElement element)` As a side note, `registerModBadge`...

```java @Override public void receiveCustomModeMods(List list) { CustomMod cm = new CustomMod("MyCoolCustomModID", "p", true); // also if last param is false list.add(cm); } ``` ### Expected Behavior ``` // any...

Documentation website for modding Slay the Spire, which will be able to be found at `https://daviscook477.github.io/Basemod` ### Features - BaseMod wiki is fully moved to the website - Key pieces...

When following the instructions for the Get Started page, I get the following error ``` 2019-12-21 22:47:55.524927: I tensorflow/core/platform/cpu_feature_guard.cc:141] Your CPU supports instructions that this TensorFlow binary was not compiled...

I built an OpenAI Gym Environment on top of `sapai` that can be used for reinforcement learning. I thought I would link it here since most people here are probably...