part_to_inputs() requires four arguments, but it is called with only three arguments at line 125-126 in deepBach.py
The length argument seems to be missing, see data_utils.py line 142.
I tried to insert len(melody) as a second argument to part_to_inputs(), and deepBach.py then ran without errors, but the resulting xml-file was not correct.
part_to_inputs()
requires four arguments, but it is called with only three arguments at line 125-126 indeepBach.py
The length argument seems to be missing, see
data_utils.py
line 142.I tried to insert
len(melody)
as a second argument topart_to_inputs()
, anddeepBach.py
then ran without errors, but the resulting xml-file was not correct.