dsipts 1.1.21__tar.gz → 1.1.23__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of dsipts might be problematic. Click here for more details.
- {dsipts-1.1.21 → dsipts-1.1.23}/LONG_DESCRIPTION.md +5 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/PKG-INFO +7 -3
- {dsipts-1.1.21 → dsipts-1.1.23}/pyproject.toml +4 -4
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/data_structure/data_structure.py +24 -16
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/data_structure/utils.py +47 -13
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/base_v2.py +5 -1
- dsipts-1.1.23/src/dsipts/version.py +1 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts.egg-info/PKG-INFO +7 -3
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts.egg-info/requires.txt +1 -2
- dsipts-1.1.21/src/dsipts/version.py +0 -1
- {dsipts-1.1.21 → dsipts-1.1.23}/README.md +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/setup.cfg +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/__init__.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/data_management/__init__.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/data_management/monash.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/data_management/public_datasets.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/data_structure/__init__.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/data_structure/modifiers.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/Autoformer.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/CrossFormer.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/D3VAE.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/Diffusion.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/DilatedConv.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/DilatedConvED.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/Duet.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/ITransformer.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/Informer.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/LinearTS.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/PatchTST.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/Persistent.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/RNN.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/Samformer.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/Simple.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/TFT.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/TIDE.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/TTM.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/TimeKAN.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/TimeXER.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/TimesNet.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/VQVAEA.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/VVA.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/__init__.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/autoformer/__init__.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/autoformer/layers.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/base.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/crossformer/__init__.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/crossformer/attn.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/crossformer/cross_decoder.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/crossformer/cross_embed.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/crossformer/cross_encoder.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/d3vae/__init__.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/d3vae/diffusion_process.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/d3vae/embedding.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/d3vae/encoder.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/d3vae/model.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/d3vae/neural_operations.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/d3vae/resnet.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/d3vae/utils.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/duet/__init__.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/duet/layers.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/duet/masked.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/informer/__init__.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/informer/attn.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/informer/decoder.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/informer/embed.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/informer/encoder.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/itransformer/Embed.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/itransformer/SelfAttention_Family.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/itransformer/Transformer_EncDec.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/itransformer/__init__.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/patchtst/__init__.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/patchtst/layers.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/samformer/__init__.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/samformer/utils.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/tft/__init__.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/tft/sub_nn.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/timekan/Layers.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/timekan/__init__.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/timesnet/Layers.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/timesnet/__init__.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/timexer/Layers.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/timexer/__init__.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/ttm/__init__.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/ttm/configuration_tinytimemixer.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/ttm/consts.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/ttm/modeling_tinytimemixer.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/ttm/utils.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/utils.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/vva/__init__.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/vva/minigpt.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/vva/vqvae.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/xlstm/__init__.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts/models/xlstm/xLSTM.py +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts.egg-info/SOURCES.txt +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts.egg-info/dependency_links.txt +0 -0
- {dsipts-1.1.21 → dsipts-1.1.23}/src/dsipts.egg-info/top_level.txt +0 -0
|
@@ -398,6 +398,11 @@ and then open the url (http://127.0.0.1:43800)[http://127.0.0.1:43800]. It will
|
|
|
398
398
|
|
|
399
399
|
|
|
400
400
|
|
|
401
|
+
## 1.1.21-22-23 (2026-02-02)
|
|
402
|
+
- fixing lightening version support (not yet solved for version >2.6)
|
|
403
|
+
- removed aim (compatibility)
|
|
404
|
+
- logger
|
|
405
|
+
|
|
401
406
|
## 1.1.20 (2026-02-01)
|
|
402
407
|
- automation of tags, version etc using only the makefile
|
|
403
408
|
- update newer version of python
|
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: dsipts
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.23
|
|
4
4
|
Summary: Unified library for timeseries modelling
|
|
5
5
|
Author-email: Andrea Gobbi <agobbi@fbk.eu>
|
|
6
6
|
Project-URL: Homepage, https://github.com/DSIP-FBK/DSIPTS
|
|
7
7
|
Project-URL: Docs, https://dsip-fbk.github.io/DSIPTS/
|
|
8
8
|
Requires-Python: >=3.12
|
|
9
9
|
Description-Content-Type: text/markdown
|
|
10
|
-
Requires-Dist: aim
|
|
11
10
|
Requires-Dist: beautifulsoup4==4.12.0
|
|
12
11
|
Requires-Dist: bumpver>=2025.1131
|
|
13
12
|
Requires-Dist: einops>=0.8.1
|
|
@@ -18,7 +17,7 @@ Requires-Dist: hydra-joblib-launcher>=1.2.0
|
|
|
18
17
|
Requires-Dist: hydra-optuna-sweeper>=1.2.0
|
|
19
18
|
Requires-Dist: hydra-submitit-launcher>=1.2.0
|
|
20
19
|
Requires-Dist: ipykernel>=6.30.1
|
|
21
|
-
Requires-Dist: lightning
|
|
20
|
+
Requires-Dist: lightning==2.5.5
|
|
22
21
|
Requires-Dist: matplotlib>=3.10.6
|
|
23
22
|
Requires-Dist: nbformat>=5.10.4
|
|
24
23
|
Requires-Dist: numba>=0.61.2
|
|
@@ -431,6 +430,11 @@ and then open the url (http://127.0.0.1:43800)[http://127.0.0.1:43800]. It will
|
|
|
431
430
|
|
|
432
431
|
|
|
433
432
|
|
|
433
|
+
## 1.1.21-22-23 (2026-02-02)
|
|
434
|
+
- fixing lightening version support (not yet solved for version >2.6)
|
|
435
|
+
- removed aim (compatibility)
|
|
436
|
+
- logger
|
|
437
|
+
|
|
434
438
|
## 1.1.20 (2026-02-01)
|
|
435
439
|
- automation of tags, version etc using only the makefile
|
|
436
440
|
- update newer version of python
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
|
|
2
2
|
[project]
|
|
3
3
|
name = "dsipts"
|
|
4
|
-
version = "1.1.
|
|
4
|
+
version = "1.1.23"
|
|
5
5
|
description = "Unified library for timeseries modelling"
|
|
6
6
|
readme = { file = "LONG_DESCRIPTION.md", content-type = "text/markdown" }
|
|
7
7
|
requires-python = ">=3.12"
|
|
8
8
|
dependencies = [
|
|
9
|
-
"aim",
|
|
9
|
+
#"aim",
|
|
10
10
|
"beautifulsoup4==4.12.0",
|
|
11
11
|
"bumpver>=2025.1131",
|
|
12
12
|
"einops>=0.8.1",
|
|
@@ -17,7 +17,7 @@ dependencies = [
|
|
|
17
17
|
"hydra-optuna-sweeper>=1.2.0",
|
|
18
18
|
"hydra-submitit-launcher>=1.2.0",
|
|
19
19
|
"ipykernel>=6.30.1",
|
|
20
|
-
"lightning
|
|
20
|
+
"lightning==2.5.5",
|
|
21
21
|
"matplotlib>=3.10.6",
|
|
22
22
|
"nbformat>=5.10.4",
|
|
23
23
|
"numba>=0.61.2",
|
|
@@ -40,7 +40,7 @@ Homepage = "https://github.com/DSIP-FBK/DSIPTS"
|
|
|
40
40
|
Docs = "https://dsip-fbk.github.io/DSIPTS/"
|
|
41
41
|
|
|
42
42
|
[tool.bumpver]
|
|
43
|
-
current_version = "1.1.
|
|
43
|
+
current_version = "1.1.23"
|
|
44
44
|
version_pattern = "MAJOR.MINOR.PATCH"
|
|
45
45
|
commit = false
|
|
46
46
|
tag = false
|
|
@@ -32,7 +32,10 @@ from datetime import datetime
|
|
|
32
32
|
from ..models.utils import weight_init_zeros,weight_init
|
|
33
33
|
import logging
|
|
34
34
|
from .modifiers import *
|
|
35
|
-
|
|
35
|
+
disable_aim = True
|
|
36
|
+
|
|
37
|
+
if disable_aim is False:
|
|
38
|
+
from aim.pytorch_lightning import AimLogger
|
|
36
39
|
import time
|
|
37
40
|
debug_prediction = False
|
|
38
41
|
class DummyScaler():
|
|
@@ -804,11 +807,6 @@ class TimeSeries():
|
|
|
804
807
|
#logger = CSVLogger("logs", name=dirpath)
|
|
805
808
|
beauty_string(f'Init aim','section',self.verbose)
|
|
806
809
|
|
|
807
|
-
aim_logger = AimLogger(
|
|
808
|
-
experiment=self.name,
|
|
809
|
-
train_metric_prefix='train_',
|
|
810
|
-
val_metric_prefix='val_',
|
|
811
|
-
)
|
|
812
810
|
|
|
813
811
|
#https://stackoverflow.com/questions/49201236/check-the-total-number-of-parameters-in-a-pytorch-model
|
|
814
812
|
n_params = sum(dict((p.data_ptr(), p.numel()) for p in self.model.parameters()).values())
|
|
@@ -822,17 +820,25 @@ class TimeSeries():
|
|
|
822
820
|
buffer_size += buffer.nelement() * buffer.element_size()
|
|
823
821
|
|
|
824
822
|
size_all_mb = (param_size + buffer_size) / 1024**2
|
|
825
|
-
#aim_logger.experiment.track(self.model.name,name='model_name')
|
|
826
|
-
|
|
827
|
-
aim_logger.experiment.track(n_params,name='N-parameters')
|
|
828
|
-
aim_logger.experiment.track(size_all_mb,name='dim-model-MB')
|
|
829
|
-
aim_logger.experiment.track(len(train_dl.dataset),name='len-train')
|
|
830
|
-
aim_logger.experiment.track(len(valid_dl.dataset),name='len-valid')
|
|
831
|
-
#aim_logger.experiment.track(self.config,name=None)
|
|
832
823
|
tmp = self.config.copy()
|
|
833
824
|
tmp['model_name'] = self.model.name
|
|
834
|
-
aim_logger._run['hyperparameters'] = tmp
|
|
835
825
|
|
|
826
|
+
#aim_logger.experiment.track(self.model.name,name='model_name')
|
|
827
|
+
if disable_aim is False:
|
|
828
|
+
aim_logger = AimLogger(
|
|
829
|
+
experiment=self.name,
|
|
830
|
+
train_metric_prefix='train_',
|
|
831
|
+
val_metric_prefix='val_',
|
|
832
|
+
)
|
|
833
|
+
aim_logger.experiment.track(n_params,name='N-parameters')
|
|
834
|
+
aim_logger.experiment.track(size_all_mb,name='dim-model-MB')
|
|
835
|
+
aim_logger.experiment.track(len(train_dl.dataset),name='len-train')
|
|
836
|
+
aim_logger.experiment.track(len(valid_dl.dataset),name='len-valid')
|
|
837
|
+
#aim_logger.experiment.track(self.config,name=None)
|
|
838
|
+
|
|
839
|
+
aim_logger._run['hyperparameters'] = tmp
|
|
840
|
+
else:
|
|
841
|
+
aim_logger = None
|
|
836
842
|
mc = MetricsCallback(dirpath)
|
|
837
843
|
## TODO se ci sono 2 o piu gpu MetricsCallback non funziona (secondo me fa una istanza per ogni dataparallel che lancia e poi non riesce a recuperare info)
|
|
838
844
|
pl.seed_everything(seed, workers=True)
|
|
@@ -999,8 +1005,10 @@ class TimeSeries():
|
|
|
999
1005
|
|
|
1000
1006
|
beauty_string('END of the training process','block',self.verbose)
|
|
1001
1007
|
|
|
1002
|
-
|
|
1003
|
-
|
|
1008
|
+
|
|
1009
|
+
if disable_aim is False:
|
|
1010
|
+
aim_logger.experiment.track((time.time()-tot_seconds),name='seconds-training')
|
|
1011
|
+
aim_logger.experiment.track(val_loss,name='val-loss-end-train')
|
|
1004
1012
|
|
|
1005
1013
|
|
|
1006
1014
|
|
|
@@ -12,28 +12,62 @@ import torch
|
|
|
12
12
|
import os
|
|
13
13
|
import logging
|
|
14
14
|
from typing import Union
|
|
15
|
-
def
|
|
15
|
+
def get_logger(name: str = __name__):
|
|
16
|
+
# Crea la cartella logs se non esiste
|
|
17
|
+
logger = logging.getLogger(name)
|
|
18
|
+
logger.setLevel(logging.DEBUG)
|
|
19
|
+
|
|
20
|
+
# Evita duplicazione degli handler se il logger viene importato più volte
|
|
21
|
+
if logger.handlers:
|
|
22
|
+
return logger
|
|
16
23
|
|
|
24
|
+
logger.propagate = False
|
|
25
|
+
|
|
26
|
+
# === Formatter===
|
|
27
|
+
formatter = logging.Formatter(
|
|
28
|
+
"[%(asctime)s] [%(levelname)s] [%(name)s] %(message)s",
|
|
29
|
+
datefmt="%Y-%m-%d %H:%M:%S",
|
|
30
|
+
)
|
|
31
|
+
|
|
32
|
+
# === Handler per il terminale ===
|
|
33
|
+
console_handler = logging.StreamHandler()
|
|
34
|
+
console_handler.setLevel(logging.DEBUG)
|
|
35
|
+
console_handler.setFormatter(formatter)
|
|
36
|
+
logger.addHandler(console_handler)
|
|
37
|
+
|
|
38
|
+
# === Handler per i file log ===
|
|
39
|
+
#os.makedirs("logs", exist_ok=True)
|
|
40
|
+
|
|
41
|
+
# file_handler = logging.FileHandler("logs/app.log")
|
|
42
|
+
# file_handler.setLevel(logging.DEBUG)
|
|
43
|
+
# file_handler.setFormatter(formatter)
|
|
44
|
+
# logger.addHandler(file_handler)
|
|
45
|
+
|
|
46
|
+
return logger
|
|
47
|
+
logger = get_logger('main')
|
|
48
|
+
|
|
49
|
+
def beauty_string(message:str,type:str,verbose:bool):
|
|
50
|
+
logger=get_logger()
|
|
17
51
|
size = 150
|
|
18
52
|
if verbose is True:
|
|
19
53
|
if type=='block':
|
|
20
54
|
characters = len(message)
|
|
21
55
|
border = max((100-characters)//2-5,0)
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
56
|
+
logger.info('\n')
|
|
57
|
+
logger.info(f"{'#'*size}")
|
|
58
|
+
logger.info(f"{'#'*border}{' '*(size-border*2)}{'#'*border}")
|
|
59
|
+
logger.info(f"{ message:^{size}}")
|
|
60
|
+
logger.info(f"{'#'*border}{' '*(size-border*2)}{'#'*border}")
|
|
61
|
+
logger.info(f"{'#'*size}")
|
|
28
62
|
elif type=='section':
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
63
|
+
logger.info('\n')
|
|
64
|
+
logger.info(f"{'#'*size}")
|
|
65
|
+
logger.info(f"{ message:^{size}}")
|
|
66
|
+
logger.info(f"{'#'*size}")
|
|
33
67
|
elif type=='info':
|
|
34
|
-
|
|
68
|
+
logger.info(f"{ message:^{size}}")
|
|
35
69
|
else:
|
|
36
|
-
|
|
70
|
+
logger.info(message)
|
|
37
71
|
|
|
38
72
|
|
|
39
73
|
|
|
@@ -360,7 +360,11 @@ class Base(pl.LightningModule):
|
|
|
360
360
|
ax.plot(pred,'o-',label='pred')
|
|
361
361
|
ax.legend()
|
|
362
362
|
ax.set_title(f'Channel {i} first element first batch validation {int(100*self.count_epoch/self.trainer.max_epochs)}%')
|
|
363
|
-
|
|
363
|
+
try:
|
|
364
|
+
self.logger.experiment.track(Image(fig), name='cm_training_end')
|
|
365
|
+
except:
|
|
366
|
+
beauty_string('AIM NOT USED','info',self.verbose)
|
|
367
|
+
pass ##no aim probably
|
|
364
368
|
#self.log(f"example_{i}", np.stack([real, pred]).T,sync_dist=True)
|
|
365
369
|
plt.close(fig)
|
|
366
370
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "1.1.23"
|
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: dsipts
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.23
|
|
4
4
|
Summary: Unified library for timeseries modelling
|
|
5
5
|
Author-email: Andrea Gobbi <agobbi@fbk.eu>
|
|
6
6
|
Project-URL: Homepage, https://github.com/DSIP-FBK/DSIPTS
|
|
7
7
|
Project-URL: Docs, https://dsip-fbk.github.io/DSIPTS/
|
|
8
8
|
Requires-Python: >=3.12
|
|
9
9
|
Description-Content-Type: text/markdown
|
|
10
|
-
Requires-Dist: aim
|
|
11
10
|
Requires-Dist: beautifulsoup4==4.12.0
|
|
12
11
|
Requires-Dist: bumpver>=2025.1131
|
|
13
12
|
Requires-Dist: einops>=0.8.1
|
|
@@ -18,7 +17,7 @@ Requires-Dist: hydra-joblib-launcher>=1.2.0
|
|
|
18
17
|
Requires-Dist: hydra-optuna-sweeper>=1.2.0
|
|
19
18
|
Requires-Dist: hydra-submitit-launcher>=1.2.0
|
|
20
19
|
Requires-Dist: ipykernel>=6.30.1
|
|
21
|
-
Requires-Dist: lightning
|
|
20
|
+
Requires-Dist: lightning==2.5.5
|
|
22
21
|
Requires-Dist: matplotlib>=3.10.6
|
|
23
22
|
Requires-Dist: nbformat>=5.10.4
|
|
24
23
|
Requires-Dist: numba>=0.61.2
|
|
@@ -431,6 +430,11 @@ and then open the url (http://127.0.0.1:43800)[http://127.0.0.1:43800]. It will
|
|
|
431
430
|
|
|
432
431
|
|
|
433
432
|
|
|
433
|
+
## 1.1.21-22-23 (2026-02-02)
|
|
434
|
+
- fixing lightening version support (not yet solved for version >2.6)
|
|
435
|
+
- removed aim (compatibility)
|
|
436
|
+
- logger
|
|
437
|
+
|
|
434
438
|
## 1.1.20 (2026-02-01)
|
|
435
439
|
- automation of tags, version etc using only the makefile
|
|
436
440
|
- update newer version of python
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
aim
|
|
2
1
|
beautifulsoup4==4.12.0
|
|
3
2
|
bumpver>=2025.1131
|
|
4
3
|
einops>=0.8.1
|
|
@@ -9,7 +8,7 @@ hydra-joblib-launcher>=1.2.0
|
|
|
9
8
|
hydra-optuna-sweeper>=1.2.0
|
|
10
9
|
hydra-submitit-launcher>=1.2.0
|
|
11
10
|
ipykernel>=6.30.1
|
|
12
|
-
lightning
|
|
11
|
+
lightning==2.5.5
|
|
13
12
|
matplotlib>=3.10.6
|
|
14
13
|
nbformat>=5.10.4
|
|
15
14
|
numba>=0.61.2
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "1.1.21"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|