You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks a lot for this wonderful post and code for audio classification. For multi-label I am changing
# transform the class_id into a one-hot encoded vector
response <- tf$one_hot(obs$class_id, 30L)
to
response <- as.matrix(obs[3:82])
as I have one hot encoded the labels and appended them to the dataframe. What else needs to be changed? I am getting the following error...
Error in py_call_impl(callable, dots$args, dots$keywords) :
DataLossError: Attempted to pad to a smaller size than the input element.
[[node IteratorGetNext_4 (defined at
Hi,
Thanks a lot for this wonderful post and code for audio classification. For multi-label I am changing
to
as I have one hot encoded the labels and appended them to the dataframe. What else needs to be changed? I am getting the following error...
padding function in data generator
The text was updated successfully, but these errors were encountered: