Skip to content

A one month, self-paced, project-based AI/ML curriculum for fourth-year medical students.

Notifications You must be signed in to change notification settings

Emory-HITI/AI-ML-Elective

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 

Repository files navigation

Artificial Intelligence & Machine Learning in Medicine

Elective Guide for Students

A one month, self-paced, project-based AI/ML curriculum for fourth-year medical students.

Course Overview

Innovations in clinical care are increasingly impacted by the development and implementation of machine learning (ML) and artificial intelligence (AI). As future clinicians, medical students should be informed and prepared for technological changes that will affect how they provide care for their patients. The goals of this senior elective are to demystify AI and ML in healthcare, enable students to have informed conversations about these technologies, participate in their clinical advancement, and optionally publish abstracts/literature reviews based on their work during the elective

This elective is offered in two tracks, Technical and Non-Technical/Conceptual.

  • Non-Technical/Conceptual Track: Most students will choose the Non-Technical track. The Non-Technical track has no prerequisites, and will not require writing code. This track also offers more flexibility in specialty choice.
  • Technical Track: Students interested in the Technical track are expected to be comfortable with coding (ex. completion of a 1 semester Intro coding course). They will design and implement projects using curated datasets provided by the elective director (current datasets include chest x ray images, mammograms, knee radiographs, or ICU data). This is intended to maximize the likelihood of student success in the limited time frame.

Students will:

  • Build an appreciation for the growing importance of ML in clinical use cases
  • Learn to identify problems in clinical practice that can be solved by ML and draft a project proposal
  • Understand limitations of ML/AI (biases, implementation problems, errors) and learn how to avoid pitfalls
  • Design, train, and evaluate basic clinical ML algorithms (Technical Track only)

All students will receive mentoring in drafting and scoping a technical project proposal for a clinical AI project on a topic of their interest. Students with a prior programming background (i.e. proficiency in Python coding) who choose the Technical track will also work on developing, training, and evaluating a clinical machine learning model using one of several provided datasets, and will receive feedback and guidance during this process. The Non-Technical track will have a deeper focus in understanding concepts, limitations, and history of clinical ML, generally and in a specialty of their choosing, and will learn how to train a basic machine learning model without writing code using an online graphical interface.

This is a self-directed elective. Students should allow their curiosity to guide their learning beyond this, and independently research the day’s topics using the plethora of online resources available. You are encouraged to tailor the elective to topics you are passionate about.

Details for Deliverables

Deliverable 1: Literature Review

Students will complete a literature review on the state of machine learning in a field of their choosing (topic can be broad, like “ML applications in dermatology”; or narrower, like “ML algorithms to predict sepsis risk”). Students should not only demonstrate understanding of the potential of ML in this field, but also the difficulties (data limitations, implementation problems, ethics, etc). Students will submit a summary (1 page single-spaced, or slide presentation) of their learnings.

Deliverable 2: Dataset Exercise

Understanding different data sources is crucial in healthcare AI. Students should begin building an intuition for what data sources can be used for particular situations and model types, as well as the strengths, weaknesses, sample size, gaps, biases, etc. present in each data source. For this exercise, students should find ~3 open-source datasets for healthcare (such as those freely available on Kaggle or Hugging Face) and look through the data sources. Imagine problems that could be solved using those datasets, and prepare a written critique (1 page single-spaced per dataset) of the data source. Important factors to consider include those listed above (strengths, weaknesses, etc.) as well as consideration of future steps that could be taken to improve these existing datasets in order to effectively use them for feature selection, model training, and model validation. If you were the one collecting the data, what would you have done differently? Why might this data collection be difficult in the real world? You may want to use this exercise to explore datasets relevant to your chosen field/problem.

Deliverable 3: AI Project Proposal Paper

The final deliverable for this elective is a hypothetical ML tool that you would like to see implemented in a clinical setting. For Technical track students, this paper can describe implementation of the model that was trained/validated during the elective. This can be either a paper or a slide presentation. This well-thought out deliverable should contain detailed sections on the background and problem space including literature citations, an implementation design (including timeline, pilot/study setup with intervention and comparisons, and a facility deployment plan), outcomes (primary and secondary), analysis plan (what type of statistical analysis, metrics to track, covariates, etc), and stakeholders (which roles across which teams would be important to collaborate with). An important component of this plan is describing the current state of the clinical workflow that the tool is meant to be used in, as well as a future state describing the workflow steps including the tool and consideration of how workflow disruptions could be minimized. Any plans (educational/training, etc) detailing how staff would be encouraged to actually use the new tool may also be relevant. Lastly, ethics and equity considerations of the tool/project should be discussed. You are encouraged to receive input from the course director (via weekly meetings or office hours) throughout development on this deliverable. For examples, please consult with the course director.

Elective Checklist

To use this checklist: Copy checklist into a new document. Share your copy of the checklist with the faculty advisor, checking off LOs as you complete them. Some resources may require institutional access. After completing each section, take some time for independent research to answer any questions that might have come up for you.

Your Name: ___________________________

Date Started: ________________________

Required Surveys:

  • Pre-elective Survey: Before beginning the elective, fill out this Intake Form (3 mins)
  • Post-elective Survey: At the end of the month, fill out this Debrief Form (8 mins)

LO 1: Appreciate the growing impact of machine learning (ML) in medicine.

  • Watch “Machine Learning in Medicine” NEJM video (4 mins) + read paper (1 hr)
  • Optional: Read “A Short Guide for Medical Professionals in the Era of Artificial Intelligence” Nature paper (1 hr)

Mini Exercise 1: Use a web interface to train a basic ML model without writing any code.

  • Watch Teachable Machine video (<5 mins)
  • Download the dataset from this folder (5 mins). This dataset contains two folders of training data, as well as a smaller folder of testing data.
  • Train a model with the Teachable Machine tool; upload the images in the provided dataset above, train the model, and then test it out on the testing images.
  • Experiment with other data types (video, audio, etc). (1 hr)
  • Train some models and paste a screenshot of one of your experiments here.

LO 2: Compare/contrast AI and ML. LO 3: State and differentiate various ML techniques (supervised vs. unsupervised learning, classification, regression, etc). LO 4: Understand what kinds of medical problems can and cannot be solved by ML.

  • Read "Hands-On Machine Learning" textbook Ch1 (2 hrs)
  • Complete Stanford’s "Fundamentals of Machine Learning for Healthcare" course
    • Why Machine Learning in Healthcare? (2 hrs)
    • Concepts & Principles of ML in healthcare, Part 1 (2 hrs)
    • Concepts & Principles of ML in healthcare, Part 2 (2 hrs)
    • Evaluation and Metrics for machine learning in healthcare (2 hrs)
  • Copy and paste a screenshot of your completion certificate here. Do not rush through these! These videos are the conceptual foundation for many following LOs. Previous students have found this course very helpful for their projects.

LO 5: Develop an intuition of how machines “learn”. Describe how neural networks are structured, trained, and evaluated. Learn vocabulary and concepts used to describe model training (loss functions, gradient descent, backpropagation).

  • Watch video series on neural networks (2 hrs)
  • In your own words (~1 paragraph), summarize how neural networks work.
  • Optional: Watch Emory MedAI’s “Intro to AI” Workshop recording (30 mins)

Mini Exercise 2: Understand the potential of Large Language Models (LLM) in medicine.

  • Watch “What is ChatGPT?” BBC News video (8 mins)
  • Try out ChatGPT with a range of medical and non-medical prompts; you may need to make an account; if the site is at capacity, try again later (1 hr). Here is some inspiration to get started.
  • Have a conversation with ChatGPT related to your chosen medical specialty.
  • Paste a screenshot of a conversation with ChatGPT that surprised you.
  • Read about MedPaLM , an LLM for medicine (10 mins)

LO 6: Understand the limitations and pitfalls of ML (reproducibility, interpretability, bias).

  • Read “What are radiological deep learning models actually learning?” post (10 mins)
  • Read “Shortcuts: How Neural Networks Love to Cheat” post (1 hr)
  • What are some examples of “shortcut learning” that could be dangerous in your chosen specialty?
  • Read “Artificial Intelligence versus Clinicians: Systematic Review of Design, Reporting Standards, and Claims of Deep Learning Studies”: paper (20 mins)

Deliverable 1: Complete a literature review of machine learning in a field of the student’s choice. (Details above.)

  • Read “How to Read Articles That Use Machine Learning: Users’ Guides to the Medical Literature” paper (1 hr)
  • Choose an area/specialty in which to conduct review: ________________
  • Optional, but strongly recommended: Identify an additional mentor in this specialty who can offer domain expertise: _________________
  • Find and read 6-10 papers addressing the questions below. (15 hrs)
    • How can ML be used in this field?
    • What types of ML are used?
    • What kinds of datasets are used?
    • What limitations exist?
    • What ethical considerations exist?
    • Possible research questions for Clinical AI project proposal
  • Briefly summarize learnings for each paper (2-3 bullets each). Turn in summaries to the course director via email. (1 hr)

LO 7: Describe issues that may arise in implementation of a machine learning algorithm in clinical practice.

  • Read “Developing a Delivery Science for Artificial Intelligence in Healthcare” paper (1 hr)

LO 8: Discuss ethical issues that concern the use of ML in healthcare.

  • Read “Bias in Predictive Algorithms” article from KhanAcademy (30 mins)
  • Review “Can Machine Learning Solve Everything?” video from Stanford course above
  • Read: “AI recognition of patient race in medical imaging: a modelling study”: paper (30 mins)
  • Read: “Write It Like You See It: Detectable Differences in Clinical Notes By Race Lead To Differential Model Recommendations” paper (30 mins)
  • Read Implementing Machine Learning in Health Care — Addressing Ethical Challenges: paper (1 hr)
  • Read: Secure & Robust Machine Learning for Healthcare: A Survey: paper (1 hr)

Deliverable 2: Complete dataset exercise. (Details above; to see previous student’s examples, reach out to the course coordinators.)

  • Find ~3 open-source datasets for healthcare (such as those freely available on kaggle.com)
  • Prepare a written critique (<1 page single-spaced) of each dataset, considering sample size, gaps, biases, etc. present in each data source

Deliverable 3: Draft a clinical AI project proposal. (Details above; to see previous student’s examples, reach out to the course coordinators.)

  • Identify a problem and an AI-based solution: ____________
  • Discuss with faculty mentor
  • Draft an Project Proposal to address this question (example outline). Address:
    • Technical problem
    • Stakeholders
    • Data format and sources
    • Training and testing steps
    • Pilot and implementation plan

Deliverable 4: *Technical Track only: Train and evaluate a clinical ML algorithm in Python.

  • Refer to textbook for code samples and detailed technical guidance (remainder of textbook beyond Ch1)
  • Discuss with faculty advisor
  • Find a dataset
  • Analyze and preprocess data
  • Build model and write code for training
  • Train and test model

About

A one month, self-paced, project-based AI/ML curriculum for fourth-year medical students.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published