sciml 0.0.5__tar.gz → 0.0.6__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.1
2
2
  Name: sciml
3
- Version: 0.0.5
3
+ Version: 0.0.6
4
4
  Summary: draw and basic calculations/conversions
5
5
  Home-page: https://github.com/soonyenju/sciml
6
6
  Author: Songyan Zhu
@@ -11,4 +11,3 @@ Platform: any
11
11
  License-File: LICENSE
12
12
 
13
13
  coming soon
14
-
@@ -4,6 +4,9 @@ from scipy import stats
4
4
  from sklearn.metrics import mean_squared_error
5
5
 
6
6
  def get_metrics(df, truth = 'truth', pred = 'pred', return_dict = False):
7
+ '''
8
+ Calculate statistical measures between validation and prediction sequences
9
+ '''
7
10
  df = df[[truth, pred]].copy().dropna()
8
11
  slope, intercept, r_value, p_value, std_err = stats.linregress(df.dropna()[truth], df.dropna()[pred])
9
12
  r2 = r_value**2
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: sciml
3
- Version: 0.0.5
3
+ Version: 0.0.6
4
4
  Summary: draw and basic calculations/conversions
5
5
  Home-page: https://github.com/soonyenju/sciml
6
6
  Author: Songyan Zhu
@@ -11,4 +11,3 @@ Platform: any
11
11
  License-File: LICENSE
12
12
 
13
13
  coming soon
14
-
@@ -13,7 +13,7 @@ from setuptools import setup, find_packages
13
13
 
14
14
  setup(
15
15
  name = "sciml",
16
- version = "0.0.5",
16
+ version = "0.0.6",
17
17
  keywords = ("Scientific machine learning wrappers"),
18
18
  description = "draw and basic calculations/conversions",
19
19
  long_description = "coming soon",
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes