{
  "name": "Core portable SNV + Savitzky-Golay + PLS",
  "description": "nirs4all-core portable baseline for provider/repository/core roundtrip gates.",
  "random_state": 42,
  "pipeline": [
    {
      "class": "nirs4all.operators.splitters.KennardStoneSplitter",
      "params": {
        "test_size": 0.25
      }
    },
    {
      "class": "nirs4all.operators.transforms.StandardNormalVariate"
    },
    {
      "class": "nirs4all.operators.transforms.SavitzkyGolay",
      "params": {
        "window_length": 11,
        "polyorder": 3,
        "deriv": 0,
        "mode": "interp",
        "cval": 0.0
      }
    },
    {
      "model": {
        "class": "sklearn.cross_decomposition.PLSRegression"
      },
      "param": "n_components",
      "_range_": [
        2,
        11,
        2
      ]
    }
  ]
}
