We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DeepEcho 0.2.0 cannot handle NaN's. This means that if SDV passes a NaN value to DeepEcho, the current code crashes.
DeepEcho 0.2.0
SDV
DeepEcho
The snippet below reproduces this issue:
sequences = [ { 'context': [], 'data': [ [0.0, np.nan, 1.0], [0.5, 0.4, 1.0], ] } ] context_types = [] data_types = ['continuous', 'continuous'] model = PARModel() model.fit_sequences(sequences, context_types, data_types) model.sample_sequence([])
The text was updated successfully, but these errors were encountered:
fealho
Successfully merging a pull request may close this issue.
DeepEcho 0.2.0
cannot handle NaN's. This means that ifSDV
passes a NaN value toDeepEcho
, the current code crashes.The snippet below reproduces this issue:
The text was updated successfully, but these errors were encountered: