Home
libcuml
cucim
cudf-java
cudf
cugraph
cuml
cuproj
cuspatial
cuvs
cuxfilter
dask-cuda
dask-cudf
kvikio
libcudf
libcuml
libcuproj
libcuspatial
libkvikio
librapidsmpf
librmm
libucxx
raft
rapids-cmake
rapidsmpf
rmm
ucxx
stable (25.12)
nightly (26.02)
stable (25.12)
legacy (25.10)
include
cuml
datasets
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
8
#include <
cuml/tsa/arima_common.h
>
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
arima_common.h
ML::Datasets::make_arima
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)
ML
Definition:
dbscan.hpp:18
raft
Definition:
dbscan.hpp:14
ML::ARIMAOrder
Definition:
arima_common.h:26
Generated by
1.9.1