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
can you explain how the online testing works?
I did this:
y = 1
sent = "This is bad"
batch = style_transfer.get_batch([sent,], [y,], vocab.word2id)
ori, tsf = decoder.rewrite(batch)
print 'original:', ' '.join(w for w in ori[0])
print 'transfer:', ' '.join(w for w in tsf[0])
what do you expect for y and sent. seems like its not using the sentence.
Appreciate it!
The text was updated successfully, but these errors were encountered:
The online testing function is not working properly. Whenever I enter a sentence it decodes it incorrectly. For example entering the sentence "The food was tasty and very good" yields the following output:
can you explain how the online testing works?
I did this:
what do you expect for y and sent. seems like its not using the sentence.
Appreciate it!
The text was updated successfully, but these errors were encountered: