(row, cell int, val string)
| 187 | } |
| 188 | |
| 189 | func (tsr *Bits) SetStringRowCell(row, cell int, val string) { |
| 190 | if bv, err := reflectx.ToBool(val); err == nil { |
| 191 | _, sz := tsr.RowCellSize() |
| 192 | tsr.Values.Set(row*sz+cell, bv) |
| 193 | } |
| 194 | } |
| 195 | |
| 196 | // Label satisfies the core.Labeler interface for a summary description of the tensor |
| 197 | func (tsr *Bits) Label() string { |
nothing calls this directly
no test coverage detected