Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nabinno/4bc6c3fc3002fa101e48e9ba00d349dd to your computer and use it in GitHub Desktop.
Save nabinno/4bc6c3fc3002fa101e48e9ba00d349dd to your computer and use it in GitHub Desktop.
『仕事ではじめる機械学習』より
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@startuml
skinparam monochrome true
skinparam backgroundColor #EEEEEE
actor アプリケーション as A
database DB as D
actor 予測APIサーバー as P
control 特徴抽出器 as F
collections 予測モデル as M
control 学習器 as L
group 予測
A <-> D: - ユーザーID\n- 商品ID
activate A
A -> P: - ユーザーID\n- 商品ID
activate P
P -> F
activate F
F -> M: 特徴量
deactivate F
activate M
M -> P
deactivate M
P -> A: 予測結果
deactivate P
deactivate A
end
group 学習バッチ
D -> F: - ログ\n- ユーザー情報
activate F
F -> L: 特徴量
deactivate F
activate L
L -> M: 学習結果
deactivate L
end
@enduml
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@startuml
skinparam monochrome true
skinparam backgroundColor #EEEEEE
actor アプリケーション as A
database DB as D
actor 予測APIサーバー as P
control 特徴抽出器 as F
collections 予測モデル as M
control 学習器 as L
group 予測参照
A <-> D
end
group 予測バッチ
D -> F: - ログ\n- ユーザー情報
activate D
activate F
F -> M: 特徴量
deactivate F
activate M
M -> D: 予測結果
deactivate M
deactivate D
end
group 学習バッチ
D -> F: - ログ\n- ユーザー情報
activate F
F -> L: 特徴量
deactivate F
activate L
L -> M: 学習結果
deactivate L
end
@enduml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment