Created
June 18, 2019 07:01
-
-
Save yilmazerhakan/7f2751ed448577f1d3d7881453cc8cfc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Create test training data (%80) from ML-100K | |
CREATE TABLE ratings2 | |
as | |
select | |
rand() as rnd, | |
userid, | |
movieid, | |
rating | |
from | |
ratings; | |
CREATE TABLE training | |
as | |
select * from ratings2 | |
order by rnd DESC | |
limit 80000; | |
CREATE TABLE testing | |
as | |
select * from ratings2 | |
order by rnd ASC | |
limit 80000, 100000; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment