Skip to content

TISNN/brane-trainandpredict

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

WSCBS_Assignment4b_brane_Training_Predicting

DOI

This implementation is the model training and evaluation part of Titanic Project (Machine Learning from Disaster).

Usage

This is the third package in our pipeline of project(Assignment 4b). It uses the data after feature engineering, trains the knn or decision tree model, and makes predictions.

Each package, as a part in the brane pipeline, can be run separately to produce the corresponding results (processed data, ML models, visualization)

Requirements

Setup

By source code (Git repository)

  1. Download the source code by git clone
$ git clone https://github.com/TISNN/brane-trainandpredict.git
$ cd brane-trainandpredict
  1. Build brane package by .yml file
$ brane build container.yml
  1. Check availablity
$ brane list

By brane package method

  1. import brane package
$ brane import TISNN/brane-trainandpredict
  1. Check availablity
$ brane list

If you see train_predict package with version==8.0.0, it was successfully built.

Run

$ brane --debug test --data ./data train_predict
  1. Choosing the train_predict function
  2. Enter "knn" or "decision_tree" as source string
  3. It runs correctly with output "Accuracy of <> model is <> and the <> results was saved at /data"
  4. The model in .pkl format will be save to ./data folder in your local file system.

Tests for package

Automated builds and running (CI/CD)

This repository is equipped with a GitHub Action workflow.

Every time we push the code to this repository, it will automatically run the tests using branescript. The build status of the project can be viewed on the Actions page.

  • The brane is the executable compiled binary file, used for automated testing.
  • The test.txt is the branescript used for automated testing.

Unit pytest

You also can test for a single function by python.

Parameters can be changed in file: pytest.py

$ python pytest.py