Feature Details
Implement categorical embedding layers for metadata features such as ticker ID, sector classification, and temporal context (e.g., day of week, month, quarter). These embeddings will provide dense vector representations of categorical features for integration into the monolithic neural network.
Embeddings should:
- Be initialized uniformly/randomly (optionally pre-trained later)
- Allow flexible dimension sizing per feature (e.g., ticker might need larger embedding than sector)
- Output torch.Tensor representations suitable for concatenation with numeric features
Affected Modules
As stated in the parent issue.
Implementation Checklist
Limitations
As stated in the parent issue.
Feature Details
Implement categorical embedding layers for metadata features such as ticker ID, sector classification, and temporal context (e.g., day of week, month, quarter). These embeddings will provide dense vector representations of categorical features for integration into the monolithic neural network.
Embeddings should:
Affected Modules
As stated in the parent issue.
Implementation Checklist
• Verify correct tensor shapes per feature
• Ensure unseen categories are handled (mask or fallback index)
• Confirm embeddings update during training
Limitations
As stated in the parent issue.