PortelaEmilio/calculus-ego-weights
0
calculus-ego weights
Weights used by the calculus-ego pipeline and its Space. They live here, rather than in the GitHub repository, so that the Space's cold starts do not consume GitHub's LFS bandwidth.
Beauty adapter
Trained jointly on SCUT-FBP5500, CFD, MEBeauty, HotOrNot and M2B, with each dataset's scores mapped to a percentile rank on 1–10. Test-set Pearson correlation: SCUT 0.93, CFD 0.81, MEBeauty 0.81, HotOrNot 0.61, M2B 0.52.
It predicts the average rating those datasets' annotators gave, and carries their biases. The base model is Apache-2.0, but the training data were released for non-commercial research: use the adapter only under those terms.
Load it on top of the base model:
from peft import PeftModel
from transformers import AutoModelForImageTextToText
base = AutoModelForImageTextToText.from_pretrained("Qwen/Qwen3.5-9B", attn_implementation="eager")
model = PeftModel.from_pretrained(base, "PortelaEmilio/calculus-ego-weights", subfolder="beauty_adapter")