Thomas Dybdahl Ahle
Thomas Dybdahl Ahle
The code ``` def my_func(arg1, arg2=0): pass my_func(12, arg2=13) ``` gets converted into ``` def C(arg1,arg2=0):0 C(12,arg2=13) ``` It seems `arg2` could have been replaced with something shorter? I have...
The code ``` class Test: def my_method(self, argument): return argument + argument ``` gets transformed into ``` class E: def my_method(B,argument):A=argument;return A+A ``` In other words, it seems method names...
Currently, you get an error if you call `opt.tell([], [])` or `opt.ask(0)`: ``` ValueError: n_points should be int > 0, got 0 ``` It seems natural to support these 0...
Many engines, such as Stockfish, support a non-standard UCI command `go perft `. This would be very useful to have in python-chess as a way to test engines. This could...
The LiChess version of sunfish might as well be pondering when not playing.
Using `pandas==2.1.4` I get the warning ``` dspy/evaluate/evaluate.py:143: FutureWarning: DataFrame.applymap has been deprecated. Use DataFrame.map instead. df = df.applymap(truncate_cell) ``` each time I use dspy.
I would like to use a multi argument command to start my engine: ``` "command": "python3.10 -u sunfish_nnue.py models/model" ``` However, the current documentation makes it unclear whether this is...
As per our discussions, I ran `ruff . --fix` on the entire code base. I had to change a few things to get the tests to still run: ``` [tool.ruff.lint.per-file-ignores]...
Currently, if you call a module without all the input fields it requires, you get a warning, e.g. `WARNING: Not all input fields were provided to module. Present: []. Missing:...
This also changes how `named_paramters()` works. Might require some notebook testing to make sure nothing has changed.