Zulip Chat Archive
Stream: new members
Topic: Matrix mergeability
James Wiles (Dec 17 2023 at 20:09):
does someone wana help me get started with proving (or disproving) a theory about matrix mergeability in the context machine learning?
Yaël Dillies (Dec 17 2023 at 20:13):
Hey! Do you mind quickly explaining what matrix mergeability is?
James Wiles (Dec 18 2023 at 04:22):
I'm working on a proof in Lean related to matrix reshaping. The task is to demonstrate whether a matrix of arbitrary size can be reshaped into another matrix of a different arbitrary size, considering constraints like dimensions and strides.
Matrix mergeability in this context is the ability to combine multiple dimensions of a matrix into a single dimension while maintaining the integrity of the matrix's structure. It's a key concept for reshaping matrices, where you might merge several rows and columns into a single row or column. The challenge lies in ensuring that this merging process adheres to the matrix's original data arrangement and stride constraints.
Last updated: Dec 20 2023 at 11:08 UTC