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. text_benchmark_config = BenchmarkConfig(
  3. name="20-Newsgroups",
  4. user_num=10,
  5. learnware_ids=[
  6. "00002193",
  7. "00002192",
  8. "00002191",
  9. "00002190",
  10. "00002189",
  11. "00002188",
  12. "00002187",
  13. "00002186",
  14. "00002185",
  15. "00002184",
  16. "00002183",
  17. "00002182",
  18. "00002181",
  19. "00002180",
  20. "00002179",
  21. "00002178",
  22. "00002177",
  23. "00002176",
  24. "00002175",
  25. "00002174",
  26. "00002173",
  27. "00002172",
  28. "00002171",
  29. "00002170",
  30. "00002169",
  31. "00002168",
  32. "00002167",
  33. "00002166",
  34. "00002165",
  35. "00002164",
  36. "00002163",
  37. "00002162",
  38. "00002161",
  39. "00002160",
  40. "00002159",
  41. "00002158",
  42. "00002157",
  43. "00002156",
  44. "00002155",
  45. "00002154",
  46. "00002153",
  47. "00002152",
  48. "00002151",
  49. "00002150",
  50. "00002149",
  51. "00002148",
  52. "00002147",
  53. "00002146",
  54. "00002145",
  55. "00002144",
  56. ],
  57. test_data_path="20-Newsgroups/test_data.zip",
  58. train_data_path="20-Newsgroups/train_data.zip",
  59. extra_info_path="20-Newsgroup/extra_info.zip",
  60. )