Week from 05/16 to 05/22
Start of the week The task I've been assigned this week is to write tests for the airML module and start writing a blog to showcase my progress in GSoC. Why? Testing is really important because it helps us to find out the defects and errors that were made during the development phases. How? Using python library 'unittest' I wrote test functions for all the functions that I have implemented in the previous week. It was a simple task and by following the documentation of python ( https://docs.python.org/3/library/unittest.html ), I was able to implement it. Also, I referred to Tensorflow testing best practices. Next Task I was asked to create documentation following the TensorFlow code style guide. Why? Documentation helps the users and other developers to understand the functionalities of the implemented application. And it will be easy for others who come after me to understand and improve the system. How? Refactored the documentation in the READM...