Commit
·
bf0f0f4
0
Parent(s):
Add sequence modeling files
Browse files- .gitignore +2 -0
- README.md +28 -0
- README_HF.md +15 -0
- implementation.ipynb +0 -0
- requirements.txt +8 -0
.gitignore
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Jupyter Notebook Checkpoints
|
| 2 |
+
.ipynb_checkpoints/
|
README.md
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Sequence Modeling
|
| 2 |
+
|
| 3 |
+
This repository contains code, experiments, and resources for sequence modeling techniques, including RNNs, LSTMs, GRUs, and Transformer-based models. The project is organized for educational and research purposes, with Jupyter notebooks and requirements for easy setup.
|
| 4 |
+
|
| 5 |
+
## Contents
|
| 6 |
+
- `implementation.ipynb`: Main notebook with sequence modeling implementations and experiments.
|
| 7 |
+
- `requirements.txt`: Python dependencies for running the notebooks.
|
| 8 |
+
|
| 9 |
+
## Usage
|
| 10 |
+
1. Clone the repository:
|
| 11 |
+
```bash
|
| 12 |
+
git clone https://github.com/GruheshKurra/SequenceModeling.git
|
| 13 |
+
```
|
| 14 |
+
2. Install dependencies:
|
| 15 |
+
```bash
|
| 16 |
+
pip install -r requirements.txt
|
| 17 |
+
```
|
| 18 |
+
3. Open and run the notebook:
|
| 19 |
+
```bash
|
| 20 |
+
jupyter notebook implementation.ipynb
|
| 21 |
+
```
|
| 22 |
+
|
| 23 |
+
## Links
|
| 24 |
+
- [GitHub Repository](https://github.com/GruheshKurra/SequenceModeling)
|
| 25 |
+
- [Hugging Face Hub](https://huggingface.co/karthik-2905/SequenceModeling)
|
| 26 |
+
|
| 27 |
+
## License
|
| 28 |
+
MIT License
|
README_HF.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Sequence Modeling on Hugging Face Hub
|
| 2 |
+
|
| 3 |
+
This repository hosts sequence modeling resources, including code and experiments for RNNs, LSTMs, GRUs, and Transformers. The project is designed for learning and research, with ready-to-run Jupyter notebooks.
|
| 4 |
+
|
| 5 |
+
## How to Use
|
| 6 |
+
- Download or clone the repository from the Hugging Face Hub.
|
| 7 |
+
- Install dependencies from `requirements.txt`.
|
| 8 |
+
- Open `implementation.ipynb` in Jupyter and follow the instructions.
|
| 9 |
+
|
| 10 |
+
## Useful Links
|
| 11 |
+
- [GitHub Source](https://github.com/GruheshKurra/SequenceModeling)
|
| 12 |
+
- [Hugging Face Hub](https://huggingface.co/karthik-2905/SequenceModeling)
|
| 13 |
+
|
| 14 |
+
## License
|
| 15 |
+
MIT License
|
implementation.ipynb
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
requirements.txt
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
torch>=1.9.0
|
| 2 |
+
numpy>=1.21.0
|
| 3 |
+
pandas>=1.3.0
|
| 4 |
+
scikit-learn>=1.0.0
|
| 5 |
+
matplotlib>=3.4.0
|
| 6 |
+
seaborn>=0.11.0
|
| 7 |
+
jupyter>=1.0.0
|
| 8 |
+
ipython>=7.25.0
|