make_arima.hpp
Go to the documentation of this file.
1 /*
2  * SPDX-FileCopyrightText: Copyright (c) 2020-2021, NVIDIA CORPORATION.
3  * SPDX-License-Identifier: Apache-2.0
4  */
5 
6 #pragma once
7 
9 
10 namespace raft {
11 class handle_t;
12 }
13 
14 namespace ML {
15 namespace Datasets {
16 
32 void make_arima(const raft::handle_t& handle,
33  float* out,
34  int batch_size,
35  int n_obs,
36  ARIMAOrder order,
37  float scale = 1.0f,
38  float noise_scale = 0.2f,
39  float intercept_scale = 1.0f,
40  uint64_t seed = 0ULL);
41 
42 void make_arima(const raft::handle_t& handle,
43  double* out,
44  int batch_size,
45  int n_obs,
46  ARIMAOrder order,
47  double scale = 1.0,
48  double noise_scale = 0.2,
49  double intercept_scale = 1.0,
50  uint64_t seed = 0ULL);
53 } // namespace Datasets
54 } // namespace ML
void make_arima(const raft::handle_t &handle, float *out, int batch_size, int n_obs, ARIMAOrder order, float scale=1.0f, float noise_scale=0.2f, float intercept_scale=1.0f, uint64_t seed=0ULL)
Definition: dbscan.hpp:18
Definition: dbscan.hpp:14
Definition: arima_common.h:26