Week 3
Meeting 5
(June 30th, 2022)
GSOC 2022 weekly update
Attendees
- Katharina Ettinger
- Shaheem Azmal M MD
- Ayush Bhardwaj
- Shruti Agarwal
- Avinal Kumar
- Sushant Kumar
- Feng Wenhan
- Rohit Pandey
- Samuel Dushimimana
- Soham Banerjee
Discussions
-
Started working on creating the packages for the trained model. For example the folder structure for LogisticRegression model should look like:
└── logreg ├── MANIFEST.in ├── README.md ├── setup.py └── src ├── LICENSE ├── logreg │ ├── data │ │ └── logreg │ └── init.py └── model_train.py
-
Implemented Linear support vector machine model on dataset and got the accuracy of 63%
Conclusion and Further Plans
- Will create the python package for both models that has been implemented till now.