Mark Igra

@markigra.sciences.social.ap.brid.gy

Started this sciences.social. Sociology PhD at the University of Washington, studying altruism and morality. Former software guy. #sociology #altruism #fedi22 🌉 bridged from ⁂ https://sciences.social/@markigra, follow @ap.brid.gy to interact

Scary reminder about #LLM bias. Using APIs with non-profit data & QWEN, Alibaba's "open model" _running locally_ would not return result for Falun Dafa org or other controversial topics. Other LLMs may be more subtle, but it's likely answers are also "tuned" for political reasons.

Screen shot with topic and result columns:
Falun Dafa Blocked
Uyghur / Xinjiang human rights Blocked
Taiwan independence Blocked
Tibetan culture OK
Hong Kong democracy OK
Irish-American (control) OK

RE: https://social.tchncs.de/@cark/116459954767698913 #TIL You can copy or rename files without retyping the path: ❯ cp /your/long/path/config.toml{,.bak} This expands to: cp /your/long/path/config.toml /your/long/path/config.bak Works also with `echo` (nice for testing). Thanks to @irom […]

Original post on social.tchncs.de

social.tchncs.de

CarK :python:@cark.social.tchncs.de.ap.brid.gy · 4mo ago

#TIL In bash you can create multiple (nested) directories with a single compact line: ❯ mkdir -p a/{b,c/{x,y},d/{e,f}} ❯ tree . └── a ├── b ├── c │ ├── x │ └── y └── d ├── e └── f #bash #linux #cli