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.

index.tsx 299 B

12345678910111213
  1. /*
  2. * @Author: 赵伟
  3. * @Date: 2024-04-16 13:58:08
  4. * @Description: 自动机器学习列表
  5. */
  6. import ExperimentList, { ExperimentListType } from '../components/ExperimentList';
  7. function AutoMLList() {
  8. return <ExperimentList type={ExperimentListType.AutoML} />;
  9. }
  10. export default AutoMLList;