You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
def str2cls(s: String): Int = {
str2clsMap.foreach{ case (a, b) =>
if (failcls2safe(s).contains(a)) return b }
sys.error("class not found:"+failcls2safe(s))
}
def failcls2safe(s: String): String = {
s match {
case s if s.contains("3歳以上1勝クラス") => s + "500万下"
case s if s.contains("2歳1勝クラス") => s + "500万下"
case s if s.contains("3歳以上2勝クラス") => s + "1000万下"
case _ => s
}
}
The text was updated successfully, but these errors were encountered:
oichan
changed the title
str2clsMapに当てはまらないrace_classが存在している
str2clsMapに当てはまらないrace_classが存在している件への対処
Jan 3, 2020
sbt "run genfeature"を実行する際
str2clsMapに当たらないものがあった場合(現状見つけたのは、"500万下"、"1000万下"が含まれていない場合)、str2clsの中でエラーになるようになっていると思います。エラーにすると元データを直さなければならずスケールしません。
下記でもスケールはしませんが、暫定的に下記のようにするというのはいかがでしょうか。
The text was updated successfully, but these errors were encountered: