Instructions to use richierich007/wingit-extractor-v1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Local Apps Settings
- Unsloth Studio
How to use richierich007/wingit-extractor-v1 with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for richierich007/wingit-extractor-v1 to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for richierich007/wingit-extractor-v1 to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for richierich007/wingit-extractor-v1 to start chatting
Load model with FastModel
pip install unsloth from unsloth import FastModel model, tokenizer = FastModel.from_pretrained( model_name="richierich007/wingit-extractor-v1", max_seq_length=2048, )
WingIt Extractor v1
Model Description
This is a specialized model for extracting high-value dialogue, concepts, and principles from dating/pickup transcripts.
It was trained using:
- SFT: 1,372 instruction examples (Prompt 3)
- DPO: Preference optimization for correct classification
Use Cases
- Extracting dialogues from raw transcripts
- Identifying behavioral concepts (frame control, abundance, push-pull, etc.)
- Classifying content as dialogue/concept/principle
- Generating structured JSONL training data
Training Data
Prompt 3_cleaned.jsonl: 1,372 instruction examples- Base model:
unsloth/llama-3.1-8b-instruct-bnb-4bit
Usage
from transformers import AutoModelForCausalLM, AutoTokenizer
model = AutoModelForCausalLM.from_pretrained("richierich007/wingit-extractor-v1")
tokenizer = AutoTokenizer.from_pretrained("richierich007/wingit-extractor-v1")
prompt = "Extract dialogue and concepts from this transcript..."
inputs = tokenizer(prompt, return_tensors="pt")
outputs = model.generate(**inputs)
print(tokenizer.decode(outputs[0]))
- Downloads last month
- 836