---------------------------------------------------------------------------
RuntimeError Traceback (most recent call last)
<ipython-input-3-e9c5c4a6d032> in <module>
----> 1 (train_df, test_df) = catboost.datasets.titanic()
c:\users\user\appdata\local\programs\python\python37\lib\site-packages\catboost\
datasets.py in titanic()
116 md5 = '9c8bc61d545c6af244a1d37494df3fc3'
117 dataset_name, train_file, test_file = 'titanic', 'train.csv', 'test.csv'
--> 118 return _cached_dataset_load_pd(url, md5, dataset_name, train_file, test_file)
119
120
c:\users\user\appdata\local\programs\python\python37\lib\site-packages\catboost\
datasets.py in _cached_dataset_load_pd(url, md5, dataset_name, train_file, test_file, sep, header)
89
90 def _cached_dataset_load_pd(url, md5, dataset_name, train_file, test_file, sep=',', header='infer'):
---> 91 train_path, test_path = _cached_dataset_download(url, md5, dataset_name, train_file, test_file)
92 return pd.read_csv(train_path, header=header, sep=sep), pd.read_csv(test_path, header=header, sep=sep)
93
c:\users\user\appdata\local\programs\python\python37\lib\site-packages\catboost\
datasets.py in _cached_dataset_download(url, md5, dataset_name, train_file, test_file)
81 os.close(file_descriptor)
82 try:
---> 83 _cached_download(url, md5, file_path)
84 _extract(file_path, dir_path)
85 finally:
c:\users\user\appdata\local\programs\python\python37\lib\site-packages\catboost\
datasets.py in _cached_download(url, md5, dst)
56 logger.debug('failed to download from %s', u)
57 else:
---> 58 raise RuntimeError('failed to download from %s', urls)
59
60 dst_md5 = _calc_md5(dst)
RuntimeError: ('failed to download from %s', ('
https://storage.mds.yandex.net/get-devtools-opensource/233854/titanic.tar.gz',))