Skip to content

Commit 47bc8d4

Browse files
authored
Fix warning generated in SDV: Synthesizer Sequences (PAR) demo (#2319)
1 parent faeef89 commit 47bc8d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sdv/sequential/par.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -478,7 +478,7 @@ def _sample_from_par(self, context, sequence_length=None):
478478

479479
output.append(sequence_df)
480480

481-
output = pd.concat(output)
481+
output = pd.concat([df.dropna(axis=1, how='all') for df in output])
482482
output = output[self._output_columns].reset_index(drop=True)
483483

484484
return output

0 commit comments

Comments
 (0)