MEDomicsLab-docs
V0
V0
  • πŸ‘‹Welcome!
  • πŸ‘ŠQuick start
  • πŸ‘€Overview
  • πŸ§‘β€πŸ«Tutorials
    • πŸ”΅Design
      • Extraction Module
        • Image Extraction Page
        • Text Extraction Page
        • Time Series Extraction Page
        • MEDimage
      • Input Module
        • Feature Reduction Tool
        • MEDprofiles
          • MEDprofiles Viewer
      • Exploratory Module
    • 🟠Development
      • Learning Module
      • Evaluation Module
      • Federated Learning Module
        • Overview
        • Configure database
        • Create pipelines
        • Pipeline results
        • Hyperparameters optimization
        • Merge results
        • Crash tutorial
    • 🟒Deployment
      • Application Module
    • πŸ› οΈMiscellaneous
  • πŸ“„Testing Phase with MIMIC
    • MIMIC data access
    • Step 1: Install and Explore
    • Step 2: Extract Data
    • Step 3: Prepare ML tables
    • Step 4: Explore Data
    • Step 5: Vacations
    • Step 6: Create Model
    • Step 7: Evaluate & Apply Model
    • Step 8: Challenge
    • Wrap-Up
  • πŸ‘©β€πŸ’»Contributing
    • Our coding standards
    • How to push my modification ?
  • πŸ€•Troubleshooting
  • ❓FAQ
  • πŸ€“About us
  • Important Links
    • Official Website
    • πŸ“”Release Notes
    • πŸ₯²Known Issues
    • 😎Project Board
    • 🧬Physionet
  • MEDIA
    • βš›οΈMEDomics
    • πŸ‘ΎDiscord
    • 😺Github
    • πŸ“ΊYouTube
  • Forms
    • πŸ—£οΈContact us
    • πŸ“Report an issue
    • ‼️Join the testing phase
Powered by GitBook
On this page
  • Introduction
  • Video tutorial
  • Steps:
  1. Tutorials
  2. Development
  3. Federated Learning Module

Configure database

PreviousOverviewNextCreate pipelines

In this tutorial, we will learn how to configure the database connection

Introduction

MEDfl uses a MySQL database to store configurations and results. To configure this setup on your local machine, you'll need to set the configuration file to establish the connection with MySQL.

Video tutorial

Steps:

Once you open the MEDfl window you will see a popup window containing the instructions on how to create the config file

  1. Create config.ini inside the DATA directory

  DATA                             -> DATA folder
    β”œβ”€β”€β”€config.ini                 -> config file 
    └─── ...  
  1. modify the config.ini content

[mysql]
host = localhost
port = 3306
user = YOUR_SQL_USERNAME
password = YOUR_PASSWORD
database = MEDfl
  1. Click on the "DB config file" button, select your file, and upon successful configuration, you will see a success message confirming that the setup is complete.

πŸ§‘β€πŸ«
πŸŸ