| 157 | } |
| 158 | |
| 159 | type pythonExecutor struct { |
| 160 | Writer *pipe.Writer |
| 161 | Db *database.DB |
| 162 | ModelDir string |
| 163 | Cwd string |
| 164 | Session *pb.Session |
| 165 | } |
| 166 | |
| 167 | func (s *pythonExecutor) Setup(w *pipe.Writer, db *database.DB, modelDir string, cwd string, session *pb.Session) { |
| 168 | // cwd is used to store train scripts and save output models. |
nothing calls this directly
no outgoing calls
no test coverage detected