Changelog#
All project's changes will be documented here.
[2.3.0]#
Changed#
- No more need to create
ìndex_xp_deep
Metadata Feature forSchemas
. categories
attribute of CategoricalFeature class becomes optional and should not be set in client side, so categories will be automatically inferred in server side.torch
'2.4' -> '2.5'- Instantiate projects using
Project.create
class method instead ofProject()
. IDs of projects are no more set by the client, but generated in server side. - Update projects using
project.update
instance method instead ofProject()
- Load projects using
Project.load
instance method instead ofProject()
- Project names are unique.
DictMetrics
constructor only takes as argumentsTorchGlobalMetric
andTorchLeafMetric
.Metric
objects oftorchmetrics
library are only indicated throughTorchGlobalMetric
andTorchLeafMetric
.UnivariateTimeSeries
andMultivariateTimeSeries
now have aasynchronous
boolean attribute to indicate they are synchronous or not (dynamic time warping required).
Added#
additional_attributes
keyword argument added toTorchPreprocessor
__init__
method.Project.load_all
class method replacesget_all_projects
function. Returns a Projects list.- Parameter
target_as_indexes
onMetric
. It computes target indexes from onehot vectors in classification. Especially useful fortorchmetrics
multiclass classification metrics which expects targets to be indexes. Metadata
is replaced byIndexMetadata
. It is automatically added to theSchema
and represents the "index_xp_deep" column.- Explainable Features have an optional
feature_augmentation
attribute. ParquetDataset
,AnalyzedParquetDataset
andFittedParquetDataset
optionalglobal_augmentation
attribute.ImageFeature
is now available to work on images, as an example the MNIST dataset is available within a tutorial.
Removed#
get_all_projects
function has been deleted and replaced by class methodProject.load_all
.