You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

config.py 1.3 kB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. from learnware.tests.benchmarks import BenchmarkConfig
  2. image_benchmark_config = BenchmarkConfig(
  3. name="CIFAR-10",
  4. user_num=100,
  5. learnware_ids=[
  6. "00002207",
  7. "00002208",
  8. "00002209",
  9. "00002210",
  10. "00002211",
  11. "00002212",
  12. "00002213",
  13. "00002214",
  14. "00002215",
  15. "00002216",
  16. "00002217",
  17. "00002218",
  18. "00002219",
  19. "00002220",
  20. "00002221",
  21. "00002222",
  22. "00002223",
  23. "00002224",
  24. "00002225",
  25. "00002226",
  26. "00002227",
  27. "00002228",
  28. "00002229",
  29. "00002230",
  30. "00002231",
  31. "00002232",
  32. "00002233",
  33. "00002234",
  34. "00002235",
  35. "00002236",
  36. "00002237",
  37. "00002238",
  38. "00002239",
  39. "00002240",
  40. "00002241",
  41. "00002242",
  42. "00002243",
  43. "00002244",
  44. "00002245",
  45. "00002246",
  46. "00002247",
  47. "00002248",
  48. "00002249",
  49. "00002250",
  50. "00002251",
  51. "00002252",
  52. "00002253",
  53. "00002254",
  54. "00002255",
  55. "00002256",
  56. ],
  57. test_data_path="CIFAR-10/test_data.zip",
  58. train_data_path="CIFAR-10/train_data.zip",
  59. extra_info_path="CIFAR-10/extra_info.zip",
  60. )