This commit is contained in:
wassname
2025-04-22 08:14:30 +08:00
commit 1e2ab3bde0
7 changed files with 53 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
# Python-generated files
__pycache__/
*.py[oc]
build/
dist/
wheels/
*.egg-info
# Virtual environments
.venv
/data/
*.typed
+1
View File
@@ -0,0 +1 @@
3.10
+6
View File
@@ -0,0 +1,6 @@
Links:
- https://github.com/peterkirgis/llm-moral-foundations
+17
View File
@@ -0,0 +1,17 @@
# 2025-04-22 07:34:37
It would be nice to extend this work https://github.com/peterkirgis/llm-moral-foundations
but remove positional bias
and use steering
ideally at the end we can show movement direction with various steering vectors
we can use
1. misalignment
2. compassjudger/qwen 14b/
3. extra
1. nouse hermes llama 3b
2. dolphin zephr allenai
3. phi llama etc
- we can still permute choices, and good to cache
View File
+14
View File
@@ -0,0 +1,14 @@
[project]
name = "llm-moral-foundations2"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
authors = [
{ name = "wassname", email = "1103714+wassname@users.noreply.github.com" }
]
requires-python = ">=3.10"
dependencies = []
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
+2
View File
@@ -0,0 +1,2 @@
def hello() -> str:
return "Hello from llm-moral-foundations2!"