numerapi 2.20.7__tar.gz → 2.20.8__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: numerapi
3
- Version: 2.20.7
3
+ Version: 2.20.8
4
4
  Summary: Automatically download and upload data for the Numerai machine learning competition
5
5
  Home-page: https://github.com/uuazed/numerapi
6
6
  Maintainer: uuazed
@@ -637,6 +637,8 @@ class Api:
637
637
  * perEraDiagnostics (`list`) each with the following fields:
638
638
  * era (`int`)
639
639
  * examplePredsCorr (`float`)
640
+ * validationAlpha (`float`)
641
+ * validationBmc (`float`)
640
642
  * validationCorr (`float`)
641
643
  * validationCorrV4 (`float`)
642
644
  * validationFeatureCorrMax (`float`)
@@ -698,6 +700,11 @@ class Api:
698
700
  * validationRicMean (`float`)
699
701
  * validationRicSharpe (`float`)
700
702
  * validationRicStd (`float`)
703
+ * validationAlphaCorrWExamplePreds (`float`)
704
+ * validationAlphaMaxDrawdown (`float`)
705
+ * validationAlphaMean (`float`)
706
+ * validationAlphaSharpe (`float`)
707
+ * validationAlphaStd (`float`)
701
708
 
702
709
  Example:
703
710
  >>> napi = NumerAPI(secret_key="..", public_id="..")
@@ -721,6 +728,9 @@ class Api:
721
728
  perEraDiagnostics {
722
729
  era
723
730
  examplePredsCorr
731
+ validationAlpha
732
+ validationBmc
733
+ validationChurn
724
734
  validationCorr
725
735
  validationCorrV4
726
736
  validationFeatureCorrMax
@@ -730,7 +740,6 @@ class Api:
730
740
  validationFncV4
731
741
  validationIcV2
732
742
  validationRic
733
- validationBmc
734
743
  }
735
744
  status
736
745
  trainedOnVal
@@ -790,6 +799,11 @@ class Api:
790
799
  validationRicMean
791
800
  validationRicSharpe
792
801
  validationRicStd
802
+ validationAlphaCorrWExamplePreds
803
+ validationAlphaMaxDrawdown
804
+ validationAlphaMean
805
+ validationAlphaSharpe
806
+ validationAlphaStd
793
807
  }
794
808
  }
795
809
  '''
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: numerapi
3
- Version: 2.20.7
3
+ Version: 2.20.8
4
4
  Summary: Automatically download and upload data for the Numerai machine learning competition
5
5
  Home-page: https://github.com/uuazed/numerapi
6
6
  Maintainer: uuazed
@@ -6,7 +6,7 @@ def load(path):
6
6
  return open(path, 'r').read()
7
7
 
8
8
 
9
- numerapi_version = '2.20.7'
9
+ numerapi_version = '2.20.8'
10
10
 
11
11
 
12
12
  classifiers = [
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes