What did I do this week?
What will I do next week?
Did I get stuck anywhere?
I faced a strange bug, appending some data to a tensor’s meta file would be copied to every other tensor meta file too. I did a temporary fix but am looking into what caused this.
- Implemented “linked tensors”. If a source tensor is linked to a destination tensor, any append to the source tensor will also be done to the destination tensor.
- Implemented storing hashes as a separate tensor. For example, create_tensor (images, hash_samples=True), any sample appended to images will be hashed and appended to a separate “hashes” tensor.
What will I do next week?
- Write test cases and documentation for my code.
- Review any changes requested on my pull request
- Add a feature to account for compression type when hashing samples
Did I get stuck anywhere?
I faced a strange bug, appending some data to a tensor’s meta file would be copied to every other tensor meta file too. I did a temporary fix but am looking into what caused this.