Skip to content

Ways to recover LLM Prompts - a NLP Self-Supervised Models project

Notifications You must be signed in to change notification settings

kunalkotkar10/llm-prompt-recovery

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

llm-prompt-recovery

Ways to recover LLM Prompts - a NLP Self-Supervised Models project

Directory Structure

llm-prompt-recovery/
│
├── dataset/                 # Contains code, logs, etc. to curate and generate datasets
│
├── models/                  # Will contain all of our models
│   ├── __init__.py
│   ├── dataset.py          # Python file for custom dataset class and related functions
│   ├── metrics.py          # Python file for all functions to calculate evaluation metrics
│   ├── SkeletonModel.py    # Base class for all models, contains functions to load dataset and evaluate results
│   ├── template.py         # Sample model which inherits the base class from SkeletonModel.py
│   ├── Baseline.py         # Kunal's model
│   ├── LoRA.py             # Rishabh's model
│   └── PrefixTuning.py     # Pristina's model
│
├── experiments/            # Directory for running experiments
│   ├── slurm_outputs/
│   ├── *.sh
│   ├── logs/
│   ├── wandb/
│   └── *.ipynb
│
└── README.md               # README file

About

Ways to recover LLM Prompts - a NLP Self-Supervised Models project

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Jupyter Notebook 74.4%
  • Python 22.5%
  • Shell 3.1%