dsipts 1.1.19__py3-none-any.whl → 1.1.21__py3-none-any.whl
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.
- dsipts/data_structure/data_structure.py +7 -2
- dsipts/version.py +1 -1
- {dsipts-1.1.19.dist-info → dsipts-1.1.21.dist-info}/METADATA +6 -3
- {dsipts-1.1.19.dist-info → dsipts-1.1.21.dist-info}/RECORD +6 -6
- {dsipts-1.1.19.dist-info → dsipts-1.1.21.dist-info}/WHEEL +1 -1
- {dsipts-1.1.19.dist-info → dsipts-1.1.21.dist-info}/top_level.txt +0 -0
|
@@ -774,6 +774,7 @@ class TimeSeries():
|
|
|
774
774
|
train_dl = DataLoader(train, batch_size = batch_size , shuffle=True,drop_last=True,num_workers=num_workers,persistent_workers=persistent_workers)
|
|
775
775
|
valid_dl = DataLoader(validation, batch_size = batch_size , shuffle=False,drop_last=True,num_workers=num_workers,persistent_workers=persistent_workers)
|
|
776
776
|
|
|
777
|
+
beauty_string(f'train:{len(train_dl)}, validation:{len(valid_dl)}','section',self.verbose)
|
|
777
778
|
|
|
778
779
|
if debug_prediction:
|
|
779
780
|
dl = DataLoader(test, batch_size = batch_size , shuffle=False,drop_last=True,num_workers=num_workers,persistent_workers=persistent_workers)
|
|
@@ -801,6 +802,8 @@ class TimeSeries():
|
|
|
801
802
|
|
|
802
803
|
|
|
803
804
|
#logger = CSVLogger("logs", name=dirpath)
|
|
805
|
+
beauty_string(f'Init aim','section',self.verbose)
|
|
806
|
+
|
|
804
807
|
aim_logger = AimLogger(
|
|
805
808
|
experiment=self.name,
|
|
806
809
|
train_metric_prefix='train_',
|
|
@@ -884,7 +887,8 @@ class TimeSeries():
|
|
|
884
887
|
tot_seconds = time.time()
|
|
885
888
|
|
|
886
889
|
|
|
887
|
-
|
|
890
|
+
beauty_string(f'tuning lr','section',self.verbose)
|
|
891
|
+
|
|
888
892
|
|
|
889
893
|
if auto_lr_find and (weight_exists is False):
|
|
890
894
|
try:
|
|
@@ -902,7 +906,8 @@ class TimeSeries():
|
|
|
902
906
|
self.model.optim_config['lr'] = lr_finder.suggestion() ## we are using it as optim key
|
|
903
907
|
except Exception as e:
|
|
904
908
|
beauty_string(f'There is a problem with the finding LR routine {e}','section',self.verbose)
|
|
905
|
-
|
|
909
|
+
beauty_string(f'Start fitting','section',self.verbose)
|
|
910
|
+
|
|
906
911
|
if OLD_PL:
|
|
907
912
|
if weight_exists:
|
|
908
913
|
trainer.fit(self.model, train_dl,valid_dl,ckpt_path=os.path.join(dirpath,'last.ckpt'))
|
dsipts/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "1.1.
|
|
1
|
+
__version__ = "1.1.21"
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: dsipts
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.21
|
|
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
|
-
Requires-Python:
|
|
8
|
+
Requires-Python: >=3.12
|
|
9
9
|
Description-Content-Type: text/markdown
|
|
10
|
-
Requires-Dist: aim
|
|
10
|
+
Requires-Dist: aim
|
|
11
11
|
Requires-Dist: beautifulsoup4==4.12.0
|
|
12
12
|
Requires-Dist: bumpver>=2025.1131
|
|
13
13
|
Requires-Dist: einops>=0.8.1
|
|
@@ -431,6 +431,9 @@ and then open the url (http://127.0.0.1:43800)[http://127.0.0.1:43800]. It will
|
|
|
431
431
|
|
|
432
432
|
|
|
433
433
|
|
|
434
|
+
## 1.1.20 (2026-02-01)
|
|
435
|
+
- automation of tags, version etc using only the makefile
|
|
436
|
+
- update newer version of python
|
|
434
437
|
## 1.1.14 (2025-12-02)
|
|
435
438
|
- Add CHANGELOG to the pip page
|
|
436
439
|
- Bug fixing for non autoregressive models
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
dsipts/__init__.py,sha256=2KK6XbUewsjmQQ6-zNMKIcFP01jtcXskcwr3qZwQToE,1822
|
|
2
|
-
dsipts/version.py,sha256=
|
|
2
|
+
dsipts/version.py,sha256=gTyF8-tCUVFi4ATGIeTj_wdg8dNApZafzTAEIzCCdAM,22
|
|
3
3
|
dsipts/data_management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
dsipts/data_management/monash.py,sha256=aZxq9FbIH6IsU8Lwou1hAokXjgOAK-wdl2VAeFg2k4M,13075
|
|
5
5
|
dsipts/data_management/public_datasets.py,sha256=yXFzOZZ-X0ZG1DoqVU-zFmEGVMc2033YDQhRgYxY8ws,6793
|
|
6
6
|
dsipts/data_structure/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
-
dsipts/data_structure/data_structure.py,sha256
|
|
7
|
+
dsipts/data_structure/data_structure.py,sha256=-LLhUNs1ymAGCujU0WRXQ8ZS9kYgt1e5k__1lHfLads,65195
|
|
8
8
|
dsipts/data_structure/modifiers.py,sha256=qlry9dfw8pEE0GrvgwROZJkJ6oPpUnjEHPIG5qIetss,7948
|
|
9
9
|
dsipts/data_structure/utils.py,sha256=ZL-z_InmFUkge5kQoHSrev1t6nyve9sTYTVeA75Or-I,6689
|
|
10
10
|
dsipts/models/Autoformer.py,sha256=nUQvPC_qtajLT1AHdNJmF_P3ZL01j3spkZ4ubxdGF3g,8497
|
|
@@ -83,7 +83,7 @@ dsipts/models/vva/minigpt.py,sha256=bg0JddqSD322uxSGexen3nPXL_hGTsk3vNLR62d7-w8,
|
|
|
83
83
|
dsipts/models/vva/vqvae.py,sha256=RzCQ_M9xBprp7_x20dSV3EQqlO0FjPUGWV-qdyKrQsM,19680
|
|
84
84
|
dsipts/models/xlstm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
85
85
|
dsipts/models/xlstm/xLSTM.py,sha256=ZKZZmffmIq1Vb71CR4GSyM8viqVx-u0FChxhcNgHub8,10081
|
|
86
|
-
dsipts-1.1.
|
|
87
|
-
dsipts-1.1.
|
|
88
|
-
dsipts-1.1.
|
|
89
|
-
dsipts-1.1.
|
|
86
|
+
dsipts-1.1.21.dist-info/METADATA,sha256=zyKSU0VS9u0rgMd6qGpr5NCrh2h27f85jaTQtYu2VPc,27614
|
|
87
|
+
dsipts-1.1.21.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
88
|
+
dsipts-1.1.21.dist-info/top_level.txt,sha256=i6o0rf5ScFwZK21E89dSKjVNjUBkrEQpn0-Vij43748,7
|
|
89
|
+
dsipts-1.1.21.dist-info/RECORD,,
|
|
File without changes
|