ddsimca 1.0.2__tar.gz → 1.0.3__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ddsimca
3
- Version: 1.0.2
3
+ Version: 1.0.3
4
4
  Summary: Implementation of Data Driven SIMCA one class classification method
5
5
  Project-URL: Homepage, https://github.com/svkucheryavski/ddsimca
6
6
  Project-URL: Documentation, https://github.com/svkucheryavski/ddsimca
@@ -53,6 +53,10 @@ Simply download the dataset and unzip it to your working directory, where you ha
53
53
 
54
54
  ## Releases
55
55
 
56
+ **1.0.3** (6/1/2026)
57
+ * small improvements to code.
58
+ * better documentation text.
59
+
56
60
  **1.0.2** (1/1/2026)
57
61
  * initial release
58
62
 
@@ -64,6 +68,6 @@ Simply download the dataset and unzip it to your working directory, where you ha
64
68
 
65
69
  2. A. Pomerantsev, O. Rodionova. *Selectivity in Nontargeted Qualitative Analysis*. Analytica Chimica Acta, 1332, 2024. DOI: [10.1016/j.aca.2024.343352](https://doi.org/10.1016/j.aca.2024.343352).
66
70
 
67
- 3. A. Pomerantsev, O. Rodionova. *Popular decision rules in SIMCA: Critical review*. Journal of Chemometrics, 34 (8), 2020. DOI: [10.1002/cem.3250](https://doi.org/10.1002/cem.3250)
71
+ 3. A. Pomerantsev, O. Rodionova. *Popular decision rules in SIMCA: Critical review*. Journal of Chemometrics, 34 (8), 2020. DOI: [10.1002/cem.3250](https://doi.org/10.1002/cem.3250)
68
72
 
69
73
  4. A. Pomerantsev, O. Rodionova. *On the type II error in SIMCA method*. Journal of Chemometrics, 28 (6), 2014. DOI: [10.1002/cem.2610](https://doi.org/10.1002/cem.2610).
@@ -20,6 +20,10 @@ Simply download the dataset and unzip it to your working directory, where you ha
20
20
 
21
21
  ## Releases
22
22
 
23
+ **1.0.3** (6/1/2026)
24
+ * small improvements to code.
25
+ * better documentation text.
26
+
23
27
  **1.0.2** (1/1/2026)
24
28
  * initial release
25
29
 
@@ -31,6 +35,6 @@ Simply download the dataset and unzip it to your working directory, where you ha
31
35
 
32
36
  2. A. Pomerantsev, O. Rodionova. *Selectivity in Nontargeted Qualitative Analysis*. Analytica Chimica Acta, 1332, 2024. DOI: [10.1016/j.aca.2024.343352](https://doi.org/10.1016/j.aca.2024.343352).
33
37
 
34
- 3. A. Pomerantsev, O. Rodionova. *Popular decision rules in SIMCA: Critical review*. Journal of Chemometrics, 34 (8), 2020. DOI: [10.1002/cem.3250](https://doi.org/10.1002/cem.3250)
38
+ 3. A. Pomerantsev, O. Rodionova. *Popular decision rules in SIMCA: Critical review*. Journal of Chemometrics, 34 (8), 2020. DOI: [10.1002/cem.3250](https://doi.org/10.1002/cem.3250)
35
39
 
36
40
  4. A. Pomerantsev, O. Rodionova. *On the type II error in SIMCA method*. Journal of Chemometrics, 28 (6), 2014. DOI: [10.1002/cem.2610](https://doi.org/10.1002/cem.2610).
@@ -2,10 +2,10 @@
2
2
  DD-SIMCA: one-class classification method
3
3
  """
4
4
 
5
- __version__ = "1.0.0"
5
+ __version__ = "1.0.3"
6
6
  __author__ = "Sergey Kucheryavskiy"
7
7
  __email__ = "svkucheryavski@gmail.com"
8
8
 
9
9
  from .ddsimca import DDSIMCA, DDSIMCARes, ddsimca, get_distparams, get_limits, process_members, process_strangers
10
10
 
11
- # __all__ = ["DDSIMCA", "DDSIMCARes", "get_distparams", "get_limits"]
11
+ __all__ = ["DDSIMCA", "DDSIMCARes", "ddsimca", "get_distparams", "get_limits", "process_members", "process_strangers"]