An example of how to translate the default output language as another language (English to Spanish in this case).
This project use a speech recognition.
First, install a virtual environment on:
pip install virtualenv
pip3 install virtualenv
sudo apt-get install python3-venv
Now, build a local virtual environment:
python -m venv "gpt3"
python3 -m venv "gpt3"
Clone the repo with:
git clone https://github.com/m0rniac/GPT-3-Spanish
Now, move the content of cloned repo inside "gpt3" folder and install the dependencies with:
cd gpt3
.\Scripts\activate
pip install -r requirements.txt
cd gpt3/
source bin/activate
pip3 install -r requirements.txt
After all, you can run:
python main.py
or
python3 main.py