Skip to content
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

can't find the data set #4

Open
Ebimsv opened this issue Mar 15, 2020 · 4 comments
Open

can't find the data set #4

Ebimsv opened this issue Mar 15, 2020 · 4 comments

Comments

@Ebimsv
Copy link

Ebimsv commented Mar 15, 2020

Hi
I can't find the file "vali_modified.csv"
Can anyone help?
@khanhnamle1994

@CodeAunt
Copy link

CodeAunt commented May 8, 2020

Looks like this repository is from this one and it may help you.
https://github.com/wenxinxu/deep-shopping

@young-yangb
Copy link

@CodeAunt
Hi, Thanks to your help and I found "vali.modified.csv" in the link that you supplied.
But this project seems still needs "train.modified2.csv". Do you know how to get this file?
Thank you in advance!

@young-yangb
Copy link

@CodeAunt
I haved sovled this problem...I manually split the "vali_modified.csv" into train/test/val and it works.

@allofapiece
Copy link

allofapiece commented Jun 20, 2021

Yes, for other people:
To split data to train/test/val
groups = df.groupby('split')
groups.get_group('test').to_csv('data/test_modified2.csv', index=False)
groups.get_group('val').to_csv('data/vali_modified2.csv', index=False)
groups.get_group('train').to_csv('data/train_modified2.csv', index=False)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants