This project implements a character-level Recurrent Neural Network (RNN) trained on Shakespeare's works. The model can generate Shakespeare-like text based on a given prompt.
This project uses a Long Short-Term Memory (LSTM) network to generate text in the style of Shakespeare. The model is trained on a dataset of Shakespeare's works and can generate new text based on a given prompt.
Key features:
Character-level text generation
LSTM-based RNN architecture
Customizable hyperparameters
Training with Weights & Biases logging
Interactive inference script
Installation
Clone the repository:
git clone https://github.com/your-username/shakespeare-rnn.git
cd shakespeare-rnn
Create a virtual environment:
python -m venv venv
source venv/bin/activate # On Windows, use `venv\Scripts\activate`
This will start the training process and log the results to Weights & Biases. You can monitor the training progress in real-time through the W&B dashboard.
Inference
To generate text using the trained model, run:
python inference.py
This will load the trained model and allow you to enter prompts for text generation. The script will also generate text for a few predefined prompts.
Model Architecture
The model uses a character-level LSTM network with the following architecture:
Embedding layer
LSTM layer(s)
Fully connected output layer
The exact architecture (number of layers, hidden dimensions, etc.) can be configured in the config.py file.
Dataset
The model is trained on the Tiny Shakespeare dataset, which is a collection of Shakespeare's works. The dataset is automatically downloaded using the Hugging Face datasets library.
Configuration
You can modify the model's hyperparameters and training settings in the config.py file. Key configurations include:
Batch size
Sequence length
Embedding dimension
Hidden dimension
Number of LSTM layers
Learning rate
Number of training epochs
Results
After training, you can find the training logs and performance metrics on the Weights & Biases dashboard. The trained model will be saved as shakespeare_model.pth, and the tokenizer will be saved as tokenizer.pkl.
Example generated text:
[Include some example outputs from your trained model here]
Contributing
Contributions to this project are welcome! Please follow these steps:
Fork the repository
Create a new branch (git checkout -b feature/your-feature-name)
Make your changes
Commit your changes (git commit -am 'Add some feature')
Push to the branch (git push origin feature/your-feature-name)
Create a new Pull Request
License
This project is licensed under the MIT License - see the LICENSE file for details.
This README provides a comprehensive overview of your project, including installation instructions, usage guidelines, project structure, and other relevant information. You may want to customize some parts, such as the repository URL, example outputs, and any specific instructions or results from your implementation.