The full schema including both entity columns and label columns.
(self)
| 246 | |
| 247 | @property |
| 248 | def schema(self) -> List[Field]: |
| 249 | """The full schema including both entity columns and label columns.""" |
| 250 | return list(set(self.entity_columns + self.features)) |
| 251 | |
| 252 | @property |
| 253 | def batch_source(self) -> Optional[DataSource]: |
no outgoing calls