From 77be755cb127609b5785c55e6cce66e54683f6b2 Mon Sep 17 00:00:00 2001 From: Nico Hofmann Date: Sat, 13 Dec 2025 18:40:46 +0100 Subject: [PATCH] Update docstring for HighDimEncodingCircuit --- .../circuit_library/highdim_encoding_circuit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/squlearn/encoding_circuit/circuit_library/highdim_encoding_circuit.py b/src/squlearn/encoding_circuit/circuit_library/highdim_encoding_circuit.py index 50376597..5114d790 100644 --- a/src/squlearn/encoding_circuit/circuit_library/highdim_encoding_circuit.py +++ b/src/squlearn/encoding_circuit/circuit_library/highdim_encoding_circuit.py @@ -36,7 +36,7 @@ class HighDimEncodingCircuit(EncodingCircuitBase): cycling_type (str): Defines, how the indices are cycled.\n ``saw``: restarts by 0, e.g. 0,1,2,3,0,1,2,3 (recommended); ``hat``: goes up and then down, e.g. 0,1,2,3,2,1,0,1,2,3 - number_of_layers (int): Sets the number of layer repetitions. If not given, the number of + num_layers (Union[None, int]): Sets the number of layer repetitions. If not given, the number of layers is determined automatically by the number of features and qubits. If the given number of layers is to low, a error is thrown. layer_type (str): Defines in which directions the features are assigned to the gates.