1234567891011121314151617181920212223242526 |
- ##########################################################################
- # This file serves as the dataset registry for SciPy Datasets SubModule.
- ##########################################################################
- # To generate the SHA256 hash, use the command
- # openssl sha256 <filename>
- registry = {
- "ascent.dat": "03ce124c1afc880f87b55f6b061110e2e1e939679184f5614e38dacc6c1957e2",
- "ecg.dat": "f20ad3365fb9b7f845d0e5c48b6fe67081377ee466c3a220b7f69f35c8958baf",
- "face.dat": "9d8b0b4d081313e2b485748c770472e5a95ed1738146883d84c7030493e82886"
- }
- registry_urls = {
- "ascent.dat": "https://raw.githubusercontent.com/scipy/dataset-ascent/main/ascent.dat",
- "ecg.dat": "https://raw.githubusercontent.com/scipy/dataset-ecg/main/ecg.dat",
- "face.dat": "https://raw.githubusercontent.com/scipy/dataset-face/main/face.dat"
- }
- # dataset method mapping with their associated filenames
- # <method_name> : ["filename1", "filename2", ...]
- method_files_map = {
- "ascent": ["ascent.dat"],
- "electrocardiogram": ["ecg.dat"],
- "face": ["face.dat"]
- }
|