Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

str2clsMapに当てはまらないrace_classが存在している件への対処 #6

Open
oichan opened this issue Jan 3, 2020 · 0 comments

Comments

@oichan
Copy link

oichan commented Jan 3, 2020

sbt "run genfeature"を実行する際
str2clsMapに当たらないものがあった場合(現状見つけたのは、"500万下"、"1000万下"が含まれていない場合)、str2clsの中でエラーになるようになっていると思います。エラーにすると元データを直さなければならずスケールしません。
下記でもスケールはしませんが、暫定的に下記のようにするというのはいかがでしょうか。

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
   }
 }
@oichan oichan changed the title str2clsMapに当てはまらないrace_classが存在している str2clsMapに当てはまらないrace_classが存在している件への対処 Jan 3, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant