Skip to content

Home for the paper "Retrospective Learning from Interactions"

Notifications You must be signed in to change notification settings

lil-lab/respect

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Retrospective Learning from Interactions

Website: https://lil-lab.github.io/respect/

Setting up

Prepare conda environment

conda create -n respect python=3.9.18
pip install -r requirements.txt
pip install -e .

Download data

from datasets import load_dataset

ds = load_dataset("lil-lab/respect", name="turn", split="train")

Download checkpoints

from transformers import Idefics2ForConditionalGeneration
from peft import PeftModel

checkpoint = "HuggingFaceM4/idefics2-8b"
model_id = 'lil-lab/respect'

model = Idefics2ForConditionalGeneration.from_pretrained(
    checkpoint, torch_dtype=torch.bfloat16)
peft_model = PeftModel.from_pretrained(
    model, model_id, adapter_name="r6_bp", revision="r6_bp")  

Reproducibility

To generate plots from the paper, run analysis/plots.ipynb.

About

Home for the paper "Retrospective Learning from Interactions"

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published