Skip to content

Latest commit

 

History

History
89 lines (51 loc) · 1.14 KB

README.md

File metadata and controls

89 lines (51 loc) · 1.14 KB

Room Impulse Response Estimation

My Unofficial implementation for the paper: [TOWARDS IMPROVED ROOM IMPULSE RESPONSE ESTIMATION FOR SPEECH RECOGNITION] (https://arxiv.org/pdf/2211.04473.pdf)

How to Run

Method 1: Using Docker Compose

  1. Make sure you have Docker and Docker Compose installed on your system.

  2. Clone the repository:

git clone https://github.com/AhmedNasr7/RIR_Estimator
  1. Navigate to the project directory:
cd RIR_Estimator
  1. Run the application using Docker Compose:
docker-compose up
  1. Start Training
python3 train.py

Method 2: Using a Virtual Environment

  1. Clone the repository:
git clone https://github.com/AhmedNasr7/RIR_Estimator
  1. Navigate to the project directory:
cd RIR_Estimator
  1. Create a virtual environment (optional):
python3 -m venv env
  1. Activate the virtual environment:
  • On Windows:
    .\env\Scripts\activate
    
  • On macOS and Linux:
    source env/bin/activate
    
  1. Install the required dependencies:
python3 -m pip install -r requirements.txt
  1. Start Training
python3 train.py