Thomas Dybdahl Ahle

Results 50 issues of Thomas Dybdahl Ahle

* Chess Tuning Tools version: 0.9.3 * Python version: 3.9 * Operating System: Linux ### Description Cutechess-cli supports a json argument "stderrFile" which allows saving any errors output from the...

enhancement
good first issue
Priority: Medium

* Chess Tuning Tools version: 0.9.3 * Python version: 3.9 * Operating System: Linux ### Description I had some really strange errors (see trace below) which turned out to be...

bug
Priority: High

### Description It seems like `tune` supports a server/client mode, in addition to `local`. However, I can't find anything about how it works on github, https://chess-tuning-tools.readthedocs.io/en/latest/ or using `tune --help`.

documentation

* Chess Tuning Tools version: 0.9.3 * Python version: 3.9 * Operating System: Linux ### Description I'm sorry this is not a very good issue report; but I've noticed that...

bug
Priority: Medium

* Chess Tuning Tools version: 0.9.3 * Python version: 3.9 * Operating System: Linux ### Description I ran a simple tune job with some categorical parameter ranges. After a few...

bug
Priority: Medium

From the path http://ann-benchmarks.com/lastfm-64-dot_10_angular.html it seems that this dataset is actually angular. But the name indicates dot-product, which many of the algorithms don't natively support.

As the number of ANN libraries grow, the qps vs recall curves are getting harder to read. On top of that, each curve only represents one dataset. Could there possibly...

In the forward method you currently say `nbatches = query.size(0)`, but this appears to actually be the batch size, not the total number of batches the network is trained for....

I have this code: ```python from dspy.primitives.python_interpreter import CodePrompt, PythonInterpreter def execute_code(code): if not code: return code, None, "Error: Empty code before execution." code_prompt = CodePrompt(code, code_type="python") interpreter = PythonInterpreter(action_space={"print":...