numerai-tools 0.5.2.dev1__tar.gz → 0.5.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: numerai-tools
3
- Version: 0.5.2.dev1
3
+ Version: 0.5.3
4
4
  Summary: A collection of open-source tools to help interact with Numerai, model data, and automate submissions.
5
5
  License: MIT
6
6
  License-File: LICENSE
@@ -665,5 +665,5 @@ def meta_portfolio_contribution(
665
665
 
666
666
  # Gradient: ∇_s α = (1 / ||v||) (R_v W_c)^T t_c
667
667
  mpc = (residualized_w.T @ t).squeeze() / l2_norm
668
-
668
+ mpc /= 50
669
669
  return pd.Series(mpc, index=stakes.index)
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "numerai-tools"
3
- version = "0.5.2.dev1"
3
+ version = "0.5.3"
4
4
  description = "A collection of open-source tools to help interact with Numerai, model data, and automate submissions."
5
5
  authors = [
6
6
  {name = "Numerai Engineering",email = "engineering@numer.ai"}