Skip to content

Commit

Permalink
Fix warning generated in SDV: Synthesizer Sequences (PAR) demo (#2319)
Browse files Browse the repository at this point in the history
  • Loading branch information
fealho authored Dec 12, 2024
1 parent faeef89 commit 47bc8d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdv/sequential/par.py
Original file line number Diff line number Diff line change
Expand Up @@ -478,7 +478,7 @@ def _sample_from_par(self, context, sequence_length=None):

output.append(sequence_df)

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

return output
Expand Down

0 comments on commit 47bc8d4

Please sign in to comment.