wala / ML

Eclipse Public License 2.0
23 stars 17 forks source link

Track individual tensors in containers (datasets, tuples, etc) #164

Open khatchad opened 3 months ago

khatchad commented 3 months ago

Currently, we track that datasets have tensors, but we don't track the tensors used to make the datasets. For example, the from_tensors() static method creates a dataset containing a single element corresponding to the passed argument. However, we don't encode this information in the dataset "created" in the analysis.

khatchad commented 3 months ago

In other words, it's a dataset of which tensors?

khatchad commented 3 months ago

This may be blocked on #42, as we won't be able to test this unless we can distinguish between the tensors using their shapes.