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
In your compliment label function, you have used in Labelled LDA - there seems to be an error. Complement Label accepts a label from a list of labels, but it does a for loop in the function. This would get individual characters from a single label. Isn't this wrong ?
forxinlabel: vec[self.labelmap[x]] =1.0
The text was updated successfully, but these errors were encountered:
I think the label is a list of string, and each string represents one individual label, so the for loop will get each label string instead of character of one label.
the x in code for x in label: vec[self.labelmap[x]] = 1.0 is similar to
In your compliment label function, you have used in Labelled LDA - there seems to be an error. Complement Label accepts a label from a list of labels, but it does a for loop in the function. This would get individual characters from a single label. Isn't this wrong ?
The text was updated successfully, but these errors were encountered: