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
| processor : 0 | |
| vendor_id : GenuineIntel | |
| cpu family : 6 | |
| model : 60 | |
| model name : Intel(R) Core(TM) i7-4770 CPU @ 3.40GHz | |
| stepping : 3 | |
| microcode : 0x9 | |
| cpu MHz : 800.000 | |
| cache size : 8192 KB | |
| physical id : 0 |
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
| execve("/home/chris/julia/usr/bin/julia-debug-readline", ["/home/chris/julia/usr/bin/julia-"..., "-bf", "sysimg.jl"], [/* 24 vars */]) = 0 | |
| brk(0) = 0x1e1a000 | |
| access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) | |
| mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f38696c6000 | |
| readlink("/proc/self/exe", "/home/chris/julia/usr/bin/julia-debug-readline", 4096) = 46 | |
| access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory) | |
| open("/home/chris/julia/usr/bin/../lib/julia/tls/x86_64/libtinfo.so.5", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) | |
| stat("/home/chris/julia/usr/bin/../lib/julia/tls/x86_64", 0x7fffcd562cd0) = -1 ENOENT (No such file or directory) | |
| open("/home/chris/julia/usr/bin/../lib/julia/tls/libtinfo.so.5", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) | |
| stat("/home/chris/julia/usr/bin/../lib/julia/tls", 0x7fffcd562cd0) = -1 ENOENT (No such file or directory) |
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
| import graphlab as gl | |
| # Load the data | |
| train = gl.SFrame.read_csv('data/train.csv') | |
| test = gl.SFrame.read_csv('data/test.csv') | |
| sample = gl.SFrame.read_csv('data/sampleSubmission.csv') | |
| del train['id'] | |
| # Train a model |
OlderNewer