File to load model.
(mut self, file: S)
| 70 | |
| 71 | /// File to load model. |
| 72 | pub fn file<S: AsRef<str>>(mut self, file: S) -> Self { |
| 73 | self.params.file = file.as_ref().to_string(); |
| 74 | self |
| 75 | } |
| 76 | |
| 77 | /// Other info. |
| 78 | pub fn other_info<S: AsRef<str>>(mut self, other_info: S) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected