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
The implementation of some converters can't reuse.
The example shows the following.
input1 = np.array([
'Tom',
'Becky',
'Tom',
'Becky',
'Ann',
])
converter = prepnet.OrdinalConverter()
result = converter.encode(input1)
print(result) # Display text should be "[0, 1, 0, 1, 2]"
input2 = np.array([
'Tom',
'Tom',
'Ann',
])
result = converter.encode(inputs)
print(result) # Display text should be "[0, 0, 2]" but actual "[0, 0, 1]"
The text was updated successfully, but these errors were encountered:
The implementation of some converters can't reuse.
The example shows the following.
The text was updated successfully, but these errors were encountered: