Guillaume COTER
Guillaume COTER
Hi there 🙂 Any news on this subject? I searched for solutions on GitHub and on the community forum and basically two solutions are always proposed: 1. Set `overwriteprotocol` to...
After some more digging, I think that I managed to solve the issue by just... recreating the container 😅 I have been making manual updates inside the same container for...
By the way, don't hesitate to tell me if I shoud rather post this issue to the catboost project 🙂
Hi @JayDi85, thank you so much for this detailed answer! I will give it some thoughts and take a look at `ComputerPlayer7` as it is apparently the current reference for...
Why is it called `ComputerPlayer7`? Is it like the 7th version? What about the other classes? Are they deprecated?
Hi @JayDi85, thank you very much for the information, I think I understand now :slightly_smiling_face:
Ideally, I would like to take a base class which implements the basic logic (which is necessary for the AI to work with the game) and override a subset of...
Ok, thank you very much :slightly_smiling_face: Here is some context about what I would like to do. I am wondering whether we could introduce Machine Learning to develop more powerful...
Indeed, everything seems to be already there, thanks again :slightly_smiling_face: I guess I will start by running `test_TwoAIPlayGame_Multiple` to see how it works and then adapt it so collect data....
I think I have the same issue with the Isolation Forest from sklearn. Here is the pseudo code of what I do: ``` model = IsolationForest() explainer = KernelExplainer( model=model.decision_function,...