numerai-tools 0.5.0.dev11__tar.gz → 0.5.0.dev12__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.3
2
2
  Name: numerai-tools
3
- Version: 0.5.0.dev11
3
+ Version: 0.5.0.dev12
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
  Author: Numerai Engineering
@@ -9,7 +9,6 @@ from numerai_tools.scoring import (
9
9
  from numerai_tools.submissions import (
10
10
  validate_submission_signals,
11
11
  clean_submission,
12
- remap_ids,
13
12
  )
14
13
 
15
14
  import pandas as pd
@@ -121,7 +120,6 @@ def calculate_max_churn_and_turnover(
121
120
  src_signal_col=curr_signal_col,
122
121
  rank_and_fill=True,
123
122
  )
124
- print("curr_sub", curr_sub)
125
123
  churn_stats = []
126
124
  turnover_stats = []
127
125
  neutralized_weights = generate_neutralized_weights(
@@ -159,7 +157,6 @@ def calculate_max_churn_and_turnover(
159
157
  prev_sample_weight,
160
158
  center_and_normalize=True,
161
159
  )[prev_sub.name]
162
- print("prev_sub", prev_sub)
163
160
  try:
164
161
  churn_val = abs(churn(curr_sub, prev_sub))
165
162
  except AssertionError as e:
@@ -88,7 +88,6 @@ def validate_headers_signals(
88
88
  assert (
89
89
  date_col_name is not None
90
90
  ), "invalid_submission_headers: submission must contain a date column"
91
- print(submission)
92
91
  ticker_col, signal_col = _validate_headers(
93
92
  submission,
94
93
  SIGNALS_ALLOWED_ID_COLS,
@@ -230,7 +229,6 @@ def validate_submission_signals(
230
229
  "Please remove the data_type column from your Signals submission."
231
230
  )
232
231
  submission.drop(columns=["data_type"], errors="ignore", inplace=True)
233
- print(submission)
234
232
  ticker_col, signal_col, date_col = validate_headers_signals(
235
233
  submission, assert_date_col
236
234
  )
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "numerai-tools"
3
- version = "0.5.0.dev11"
3
+ version = "0.5.0.dev12"
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"}