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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/xgboost/callback_container.rb +4 -5
- data/lib/xgboost/version.rb +1 -1
- data/vendor/aarch64-linux/libxgboost.so +0 -0
- data/vendor/arm64-darwin/libxgboost.dylib +0 -0
- data/vendor/x64-mingw/xgboost.dll +0 -0
- data/vendor/x86_64-darwin/libxgboost.dylib +0 -0
- data/vendor/x86_64-linux/libxgboost.so +0 -0
- data/vendor/x86_64-linux-musl/libxgboost.so +0 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 11dcc4af3a1f0a5654868b948296daf4424712b143db3f50b0a8fb0c24a7e40a
|
|
4
|
+
data.tar.gz: 5f2544c66c7edf3b3542776b99ef8b6d55e258df0398bc46e30d55d788fd633f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5c093af698798281950eeafb5eb16dbac5d77fb729b4e9b93813b46510041fbc735ab530175c667765cbff5c1bd57c915cf0ddac02548e524680e42fc3b13d0f
|
|
7
|
+
data.tar.gz: edbb38caa172f9953bc94f13c90f41431c0a1fe2b063a4387c45e65619368fdaeb3bbc9067003c5bfdda6872fa351cac2526e8c252912c9c7206a5c02bda10c3
|
data/CHANGELOG.md
CHANGED
|
@@ -87,9 +87,9 @@ module XGBoost
|
|
|
87
87
|
else
|
|
88
88
|
x = s
|
|
89
89
|
end
|
|
90
|
-
|
|
91
|
-
data_name =
|
|
92
|
-
metric_name =
|
|
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 =
|
|
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
|
data/lib/xgboost/version.rb
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|