hkjc 0.3.2__tar.gz → 0.3.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: hkjc
3
- Version: 0.3.2
3
+ Version: 0.3.3
4
4
  Summary: Library for scrapping HKJC data and perform basic analysis
5
5
  Requires-Python: >=3.11
6
6
  Requires-Dist: cachetools>=6.2.0
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "hkjc"
3
- version = "0.3.2"
3
+ version = "0.3.3"
4
4
  description = "Library for scrapping HKJC data and perform basic analysis"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.11"
@@ -48,11 +48,12 @@ def generate_all_qp_trades(date: str, venue_code: str, race_number: int, rebate:
48
48
 
49
49
  if harville_fit:
50
50
  ho = HarvilleOptimizer(N)
51
- fit_res = ho.fit(1/odds['WIN'], 1/odds['QIN'],
52
- 1/odds['QPL'], 1/odds['PLA'])
51
+ prob = {k: np.nan_to_num(1/v, 0) for k,v in odds.items()}
52
+ fit_res = ho.fit(prob['WIN'], prob['QIN'],
53
+ prob['QPL'], prob['PLA'])
53
54
  if fit_res['success']:
54
- odds['PLA'] = 1/fit_res['b_fitted']
55
- odds['QPL'] = 1/fit_res['Q_fitted']
55
+ odds['PLA'] = np.nan_to_num(1/fit_res['b_fitted'], posinf=0)
56
+ odds['QPL'] = np.nan_to_num(1/fit_res['Q_fitted'], posinf=0)
56
57
 
57
58
  results = [_process_single_qp_trade(banker, covered, odds['PLA'], odds['QPL'], rebate)
58
59
  for banker in tqdm(candidates, desc="Processing bankers")
@@ -97,7 +97,7 @@ wheels = [
97
97
 
98
98
  [[package]]
99
99
  name = "hkjc"
100
- version = "0.3.2"
100
+ version = "0.3.3"
101
101
  source = { editable = "." }
102
102
  dependencies = [
103
103
  { name = "cachetools" },
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes