gitextract_x7_6mxkx/ ├── .flake8 ├── .github/ │ └── workflows/ │ ├── gpu.yaml │ └── test.yaml ├── .gitignore ├── LICENSE ├── README.md ├── format.sh ├── requirements/ │ ├── lint-requirements.txt │ └── test-requirements.txt ├── run_ci_examples.sh ├── run_ci_tests.sh ├── setup.py └── xgboost_ray/ ├── __init__.py ├── callback.py ├── compat/ │ ├── __init__.py │ └── tracker.py ├── data_sources/ │ ├── __init__.py │ ├── _distributed.py │ ├── csv.py │ ├── dask.py │ ├── data_source.py │ ├── modin.py │ ├── numpy.py │ ├── object_store.py │ ├── pandas.py │ ├── parquet.py │ ├── partitioned.py │ ├── petastorm.py │ └── ray_dataset.py ├── elastic.py ├── examples/ │ ├── __init__.py │ ├── create_test_data.py │ ├── higgs.py │ ├── higgs_parquet.py │ ├── readme.py │ ├── readme_sklearn_api.py │ ├── simple.py │ ├── simple_dask.py │ ├── simple_modin.py │ ├── simple_objectstore.py │ ├── simple_partitioned.py │ ├── simple_predict.py │ ├── simple_ray_dataset.py │ ├── simple_tune.py │ ├── train_on_test_data.py │ └── train_with_ml_dataset.py ├── main.py ├── matrix.py ├── session.py ├── sklearn.py ├── tests/ │ ├── __init__.py │ ├── conftest.py │ ├── env_info.sh │ ├── fault_tolerance.py │ ├── release/ │ │ ├── benchmark_cpu_gpu.py │ │ ├── benchmark_ft.py │ │ ├── cluster_cpu.yaml │ │ ├── cluster_ft.yaml │ │ ├── cluster_gpu.yaml │ │ ├── create_learnable_data.py │ │ ├── create_test_data.py │ │ ├── custom_objective_metric.py │ │ ├── run_e2e_gpu.sh │ │ ├── setup_xgboost.sh │ │ ├── start_cpu_cluster.sh │ │ ├── start_ft_cluster.sh │ │ ├── start_gpu_cluster.sh │ │ ├── submit_cpu_gpu_benchmark.sh │ │ ├── submit_ft_benchmark.sh │ │ ├── tune_cluster.yaml │ │ └── tune_placement.py │ ├── test_client.py │ ├── test_colocation.py │ ├── test_data_source.py │ ├── test_end_to_end.py │ ├── test_fault_tolerance.py │ ├── test_matrix.py │ ├── test_sklearn.py │ ├── test_sklearn_matrix.py │ ├── test_tune.py │ ├── test_xgboost_api.py │ └── utils.py ├── tune.py ├── util.py └── xgb.py