_registry.py 1.0 KB

1234567891011121314151617181920212223242526
  1. ##########################################################################
  2. # This file serves as the dataset registry for SciPy Datasets SubModule.
  3. ##########################################################################
  4. # To generate the SHA256 hash, use the command
  5. # openssl sha256 <filename>
  6. registry = {
  7. "ascent.dat": "03ce124c1afc880f87b55f6b061110e2e1e939679184f5614e38dacc6c1957e2",
  8. "ecg.dat": "f20ad3365fb9b7f845d0e5c48b6fe67081377ee466c3a220b7f69f35c8958baf",
  9. "face.dat": "9d8b0b4d081313e2b485748c770472e5a95ed1738146883d84c7030493e82886"
  10. }
  11. registry_urls = {
  12. "ascent.dat": "https://raw.githubusercontent.com/scipy/dataset-ascent/main/ascent.dat",
  13. "ecg.dat": "https://raw.githubusercontent.com/scipy/dataset-ecg/main/ecg.dat",
  14. "face.dat": "https://raw.githubusercontent.com/scipy/dataset-face/main/face.dat"
  15. }
  16. # dataset method mapping with their associated filenames
  17. # <method_name> : ["filename1", "filename2", ...]
  18. method_files_map = {
  19. "ascent": ["ascent.dat"],
  20. "electrocardiogram": ["ecg.dat"],
  21. "face": ["face.dat"]
  22. }