|
| 1 | +{ |
| 2 | + "PARAMETERS_SETS": { |
| 3 | + "common": { |
| 4 | + "bench": { "n_runs": 10, "time_limit": 60 } |
| 5 | + }, |
| 6 | + |
| 7 | + "covariance data": { |
| 8 | + "data": [ |
| 9 | + { |
| 10 | + "source": "make_blobs", |
| 11 | + "generation_kwargs": { |
| 12 | + "centers": 1, |
| 13 | + "n_samples": 1000, |
| 14 | + "n_features": [16, 64] |
| 15 | + }, |
| 16 | + "split_kwargs": { "ignore": true } |
| 17 | + }, |
| 18 | + { |
| 19 | + "dataset_sequence": [ |
| 20 | + { |
| 21 | + "source": "make_blobs", |
| 22 | + "generation_kwargs": { |
| 23 | + "centers": 1, |
| 24 | + "n_samples": 1000, |
| 25 | + "n_features": 16 |
| 26 | + }, |
| 27 | + "split_kwargs": { "ignore": true } |
| 28 | + }, |
| 29 | + { |
| 30 | + "source": "make_blobs", |
| 31 | + "generation_kwargs": { |
| 32 | + "centers": 1, |
| 33 | + "n_samples": 2000, |
| 34 | + "n_features": 16 |
| 35 | + }, |
| 36 | + "split_kwargs": { "ignore": true } |
| 37 | + } |
| 38 | + ] |
| 39 | + } |
| 40 | + ] |
| 41 | + }, |
| 42 | + |
| 43 | + "basic_statistics data": { |
| 44 | + "data": { |
| 45 | + "source": "make_blobs", |
| 46 | + "generation_kwargs": { |
| 47 | + "centers": 1, |
| 48 | + "n_samples": 10000, |
| 49 | + "n_features": [16, 64] |
| 50 | + }, |
| 51 | + "split_kwargs": { "ignore": true } |
| 52 | + } |
| 53 | + }, |
| 54 | + "linear_regression data": { |
| 55 | + "data": { |
| 56 | + "source": "make_regression", |
| 57 | + "split_kwargs": { "train_size": 0.2, "test_size": 0.8 }, |
| 58 | + "generation_kwargs": { |
| 59 | + "n_samples": 5000, |
| 60 | + "n_features": [40, 100], |
| 61 | + "n_informative": 5, |
| 62 | + "noise": 2.0 |
| 63 | + } |
| 64 | + } |
| 65 | + }, |
| 66 | + |
| 67 | + "pca data": { |
| 68 | + "data": { |
| 69 | + "source": "make_blobs", |
| 70 | + "generation_kwargs": { |
| 71 | + "centers": 1, |
| 72 | + "n_samples": 1000, |
| 73 | + "n_features": [16, 64] |
| 74 | + }, |
| 75 | + "split_kwargs": { "ignore": true } |
| 76 | + } |
| 77 | + }, |
| 78 | + |
| 79 | + "covariance": { |
| 80 | + "algorithm": |
| 81 | + [ |
| 82 | + { |
| 83 | + "estimator": "IncrementalEmpiricalCovariance", |
| 84 | + "library": "sklearnex.covariance", |
| 85 | + "estimator_methods": {"training": "partial_fit"}, |
| 86 | + "num_batches": { |
| 87 | + "training": 2 |
| 88 | + } |
| 89 | + } |
| 90 | + ] |
| 91 | + }, |
| 92 | + "basic_statistics": { |
| 93 | + "algorithm": |
| 94 | + [ |
| 95 | + { |
| 96 | + "estimator": "IncrementalBasicStatistics", |
| 97 | + "library": "sklearnex.basic_statistics", |
| 98 | + "num_batches": { |
| 99 | + "training": 2 |
| 100 | + } |
| 101 | + } |
| 102 | + ] |
| 103 | + }, |
| 104 | + "linear_regression": { |
| 105 | + "algorithm": |
| 106 | + [ |
| 107 | + { |
| 108 | + "estimator": "IncrementalLinearRegression", |
| 109 | + "library": "sklearnex.linear_model", |
| 110 | + "num_batches": { |
| 111 | + "training": 2 |
| 112 | + } |
| 113 | + } |
| 114 | + ] |
| 115 | + }, |
| 116 | + "pca": { |
| 117 | + "algorithm": |
| 118 | + [ |
| 119 | + { |
| 120 | + "estimator": "IncrementalPCA", |
| 121 | + "library": "sklearnex.preview.decomposition", |
| 122 | + "num_batches": { |
| 123 | + "training": 2 |
| 124 | + } |
| 125 | + } |
| 126 | + ] |
| 127 | + } |
| 128 | + |
| 129 | + }, |
| 130 | + "TEMPLATES": { |
| 131 | + "covariance": { |
| 132 | + "SETS": ["common", "covariance", "covariance data"] |
| 133 | + }, |
| 134 | + "basic_statistics": { |
| 135 | + "SETS": ["common", "basic_statistics", "basic_statistics data"] |
| 136 | + }, |
| 137 | + "linear_regression": { |
| 138 | + "SETS": ["common", "linear_regression", "linear_regression data"] |
| 139 | + }, |
| 140 | + "pca": { |
| 141 | + "SETS": ["common", "pca", "pca data"] |
| 142 | + } |
| 143 | + } |
| 144 | +} |
0 commit comments