Added q_col and p_row methods and description (#3)

This commit is contained in:
guccialex
2022-09-23 15:35:54 -04:00
committed by GitHub
parent 134fc53eb4
commit 2d01442bbc
2 changed files with 27 additions and 0 deletions

View File

@@ -44,6 +44,13 @@ model.p_factors();
model.q_factors();
```
Get the latent factors of a specific row or column
```rust
model.p_row(row_index);
model.q_col(column_index);
```
Get the bias (average of all elements in the training matrix)
```rust