monke7769 / MLConcussions

blah
1 stars 1 forks source link

Final Data Structures #1

Open ak146 opened 1 month ago

ak146 commented 1 month ago

Loops (Algorithmic) Show specific example of building a List using List Comprehension. Show examples of processing a list using conventional and for each methods.

Sorting / Searching (Algorithmic) Show examples of sorting and searching using the backend of your project.. FYI, SQLAlchemy allows filtered selections and sorting. Additionally, you have sorting options discussed in tech talk.

For my final project with Hayden Chen we will add an algorithim to take in a longer list of symptoms as well as recovery time to return methods of recovery.

monke7769 commented 1 month ago
Screenshot 2024-05-21 at 10 07 20 AM

Hayden will focus on Backend & Andrew will focus on Frontend.

Frontend: takes in user input for severity of symptoms and looping through fields to collect data as list, then send data to backend through a POST request.

Backend: takes the data from the frontend and algorithmically processes it. Weights will be added to each symptom and the score can be calculated. A list of suggested/possible recovery methods will be researched based on scientific studies and a large list will be created for recovery methods, each stored in the format ['recovery method', required total severity score, [other specific symptoms required to trigger this recovery method]]. This large list will be filtered through list comprehension and the backend will return a total severity score along with the list of suggested recovery methods in JSON format.

monke7769 commented 1 month ago

👯‍♂️