()
| 142 | |
| 143 | |
| 144 | def titanic(): |
| 145 | url = 'https://storage.mds.yandex.net/get-devtools-opensource/233854/titanic.tar.gz' |
| 146 | md5 = '9c8bc61d545c6af244a1d37494df3fc3' |
| 147 | dataset_name, train_file, test_file = 'titanic', 'train.csv', 'test.csv' |
| 148 | return _load_dataset_pd(url, md5, dataset_name, train_file, test_file) |
| 149 | |
| 150 | |
| 151 | def amazon(): |
nothing calls this directly
no test coverage detected