Contains version 1.0 of Intel(R) Data Analytics Acceleration Library (Intel(R) DAAL) interface.
Type that represents index of the feature in the data set
FeatureIdCollectionIfacePtr daal::data_management::features::interface1::all |
( |
| ) |
|
|
inline |
Creates a plain range of feature ids that contains all possible features in the data set
- Returns
- Shared pointer to the collection of feature ids that contains all feature ids in the data set
FeatureIdCollectionIfacePtr daal::data_management::features::interface1::allReverse |
( |
| ) |
|
|
inline |
Creates a plain range of feature ids that contains all possible features in the data set. This function is similar to all() but stores ids in reversed order.
- Returns
- Shared pointer to the collection of feature ids that contains all feature ids in revered order
FeatureIdCollectionIfacePtr daal::data_management::features::interface1::list |
( |
const IdFactory & |
id | ) |
|
|
inline |
Defines list of the feature identifiers. Intended for fast feature identifiers creation
- Parameters
-
[in] | id | The factory of identifier |
- Returns
- Shared pointer to feature identifiers collection
FeatureIdCollectionIfacePtr daal::data_management::features::interface1::list |
( |
const IdFactory & |
id1, |
|
|
const IdFactory & |
id2 |
|
) |
| |
|
inline |
Defines list of the feature identifiers. Intended for fast feature identifiers creation
- Parameters
-
[in] | id1 | The factory of identifier |
[in] | id2 | The factory of identifier |
- Returns
- Shared pointer to feature identifiers collection
FeatureIdCollectionIfacePtr daal::data_management::features::interface1::list |
( |
const IdFactory & |
id1, |
|
|
const IdFactory & |
id2, |
|
|
const IdFactory & |
id3 |
|
) |
| |
|
inline |
Defines list of the feature identifiers. Intended for fast feature identifiers creation
- Parameters
-
[in] | id1 | The factory of identifier |
[in] | id2 | The factory of identifier |
[in] | id3 | The factory of identifier |
- Returns
- Shared pointer to feature identifiers collection
FeatureIdCollectionIfacePtr daal::data_management::features::interface1::list |
( |
const std::vector< IdFactory > & |
ids | ) |
|
|
inline |
Defines list of the feature identifiers. Intended for fast feature identifiers creation
- Parameters
-
[in] | ids | The collection of feature identifier factories |
- Returns
- Shared pointer to feature identifiers collection
FeatureIdCollectionIfacePtr daal::data_management::features::interface1::range |
( |
const IdFactory & |
begin, |
|
|
const IdFactory & |
end |
|
) |
| |
|
inline |
Creates a plain range of feature ids
- Parameters
-
[in] | begin | The factory for the first feature id |
[in] | end | The factory for the last feature id |
- Returns
- Shared pointer to the collection of feature ids that contains all feature ids between the
begin
and the end