-
Notifications
You must be signed in to change notification settings - Fork 125
New issue
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
Shape Mismatch error for new data set #32
Comments
Seems it's mixing the data and labels. Did you use the exactly same pre-process function in the notebook? |
Thanks for your response. This is my preprocessing function:
` This is the new problem dictionary: Please let me know if I am missing something very simple. |
Could you please try changing the input data to |
I tried that, but the error does not change. |
Hmm, maybe it's a bug. I'll check it out once I get back from traveling.
…On Wed, Oct 23, 2019, 2:48 PM rudra0713 ***@***.***> wrote:
I tried that, but the error does not change.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#32>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ADS2OTANQKBYCU4ANZBVBFLQQDBELANCNFSM4JC2JSZQ>
.
|
Thanks. Please, let me know if you find anything. |
Hey, I have been trying to use a sentiment analysis dataset with the imdb class (mentioned in the notebook) as a multitask.
This is the sample format of the sentiment data:
train_data = [['I', 'am', 'going', 'to', 'school', '.'], ['I', 'am', 'not', 'feeling', 'good', '.']] train_labels = [0, 1] test_data = [['I', 'wass', 'so', 'sick', 'yesterday', '.']] test_labels = [1]
Unfortunately, this runs to the error
Can you kindly help me solve this issue?
The text was updated successfully, but these errors were encountered: