xgb 0.12.0 → 0.12.1

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a10b598ef7b5d8506cd81eae295baf41b19f9306d7a44c8648586e412fb3b43f
4
- data.tar.gz: 0107c1a5e48243d0012d82f6a6e5abecb87fa8c85e88445262668a60ecf44372
3
+ metadata.gz: 11dcc4af3a1f0a5654868b948296daf4424712b143db3f50b0a8fb0c24a7e40a
4
+ data.tar.gz: 5f2544c66c7edf3b3542776b99ef8b6d55e258df0398bc46e30d55d788fd633f
5
5
  SHA512:
6
- metadata.gz: 896121e29589a202738c2a268901fb38a268c03159e2185605ed434f8789cc2de659470ef99657faad301cfe13245624ee212d6b03387e2805c81962e24b0163
7
- data.tar.gz: 3b3e8150d05027c6dc7221d19058255a8e2245ba9bd4620569f7304213456451a9e1709b307d0619d1ac3517e6cf0c5830b8887410b2da7fc8befef347302fc3
6
+ metadata.gz: 5c093af698798281950eeafb5eb16dbac5d77fb729b4e9b93813b46510041fbc735ab530175c667765cbff5c1bd57c915cf0ddac02548e524680e42fc3b13d0f
7
+ data.tar.gz: edbb38caa172f9953bc94f13c90f41431c0a1fe2b063a4387c45e65619368fdaeb3bbc9067003c5bfdda6872fa351cac2526e8c252912c9c7206a5c02bda10c3
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 0.12.1 (2026-08-05)
2
+
3
+ - Updated XGBoost to 3.4.0
4
+
1
5
  ## 0.12.0 (2026-06-17)
2
6
 
3
7
  - Updated XGBoost to 3.3.0
@@ -87,9 +87,9 @@ module XGBoost
87
87
  else
88
88
  x = s
89
89
  end
90
- splited_names = name.split("-")
91
- data_name = splited_names[0]
92
- metric_name = splited_names[1..].join("-")
90
+ split_names = name.split("-")
91
+ data_name = split_names[0]
92
+ metric_name = split_names[1..].join("-")
93
93
  @history[data_name] ||= {}
94
94
  data_history = @history[data_name]
95
95
  data_history[metric_name] ||= []
@@ -100,9 +100,8 @@ module XGBoost
100
100
 
101
101
  # TODO move
102
102
  def parse_eval_str(result)
103
- splited = result.split[1..]
104
103
  # split up `test-error:0.1234`
105
- metric_score_str = splited.map { |s| s.split(":") }
104
+ metric_score_str = result.split[1..].map { |s| s.split(":") }
106
105
  # convert to float
107
106
  metric_score = metric_score_str.map { |n, s| [n, s.to_f] }
108
107
  metric_score
@@ -1,3 +1,3 @@
1
1
  module XGBoost
2
- VERSION = "0.12.0"
2
+ VERSION = "0.12.1"
3
3
  end
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: xgb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.0
4
+ version: 0.12.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Kane