minor update: change the default n for DihedralSampler
Browse files- automata.py +1 -1
automata.py
CHANGED
@@ -517,7 +517,7 @@ class DihedralSampler(AutomatonSampler):
|
|
517 |
super().__init__(data_config)
|
518 |
|
519 |
if 'n' not in data_config:
|
520 |
-
data_config['n'] =
|
521 |
self.n = data_config['n']
|
522 |
|
523 |
if 'label_type' not in data_config:
|
|
|
517 |
super().__init__(data_config)
|
518 |
|
519 |
if 'n' not in data_config:
|
520 |
+
data_config['n'] = 4
|
521 |
self.n = data_config['n']
|
522 |
|
523 |
if 'label_type' not in data_config:
|