Returns: dict: a dict which maps names (str) to data of the fields Modifying the returned dict will modify this instance.
(self)
| 98 | return self._fields[name] |
| 99 | |
| 100 | def get_fields(self) -> Dict[str, Any]: |
| 101 | """ |
| 102 | Returns: |
| 103 | dict: a dict which maps names (str) to data of the fields |
| 104 | |
| 105 | Modifying the returned dict will modify this instance. |
| 106 | """ |
| 107 | return self._fields |
| 108 | |
| 109 | # Tensor-like methods |
| 110 | def to(self, *args: Any, **kwargs: Any) -> "Instances": |
no outgoing calls
no test coverage detected