Was denken wir über Maschinenbewusstsein – und wie hängen Faktoren wie Alter, Bildung und Beruf mit den Ansichten zur KI zusammen? Nachfolgend finden Sie die aktuellen Ergebnisse der Umfrage. Die Diagramme werden in regelmäßigen Abständen aktualisiert, sobald neue Antworten eingehen, und spiegeln so unseren jeweils aktuellsten Datenbestand wider.

Falls Sie Ihre Ansicht noch nicht geteilt haben, können Sie dies hier noch tun: Nehmen Sie an der Umfrage teil.

Code
survey_submissions_df = load_submissions(
    tag_filter=os.getenv("CLIENT_TAG"),
    color_domain=AI_CONSCIOUSNESS_COLORS["domain"]
)

So haben die Teilnehmenden auf „Kann KI bewusst sein?“ geantwortet

…Gesamtverteilung der Antworten

Code
chart_total = bar_chart_by(
    survey_submissions_df,
    x_title="Anzahl",
    y_field="ai_can_be_conscious",
    y_sort=["yes_already", "yes_future", "only_bio", "unsure", "no"],
    y_label_expr=AI_CONSCIOUSNESS_LABELS,
    y_title="Antwort",
    color_field="ai_can_be_conscious",
    color_domain=AI_CONSCIOUSNESS_COLORS["domain"],
    color_range=AI_CONSCIOUSNESS_COLORS["range"],
    legend=False,
)
chart_total

…nach Altersgruppe

Code
chart_age = bar_chart_by(
    survey_submissions_df,
    x_title="Anzahl",
    y_field="age_band",
    y_sort=["≤18", "19–30", "31–45", "46–60", "60+"],
    y_label_expr=None,
    y_title="Alter",
    color_field="ai_can_be_conscious",
    color_domain=AI_CONSCIOUSNESS_COLORS["domain"],
    color_range=AI_CONSCIOUSNESS_COLORS["range"],
    color_label_expr=AI_CONSCIOUSNESS_LABELS,
    color_title="Antwort",
)
chart_age

…nach Geschlecht

Code
chart_sex = bar_chart_by(
    survey_submissions_df,
    x_title="Anzahl",
    y_field="sex",
    y_sort=None,
    y_label_expr=SEX_LABELS,
    y_title="Geschlecht",
    color_field="ai_can_be_conscious",
    color_domain=AI_CONSCIOUSNESS_COLORS["domain"],
    color_range=AI_CONSCIOUSNESS_COLORS["range"],
    color_label_expr=AI_CONSCIOUSNESS_LABELS,
    color_title="Antwort",
)
chart_sex

…nach Nationalität

Code
chart_nationality = bar_chart_by(
    survey_submissions_df,
    x_title="Anzahl",
    y_field="nationality",
    y_sort=None,
    y_label_expr=None,
    y_title="Nationalität",
    color_field="ai_can_be_conscious",
    color_domain=AI_CONSCIOUSNESS_COLORS["domain"],
    color_range=AI_CONSCIOUSNESS_COLORS["range"],
    color_label_expr=AI_CONSCIOUSNESS_LABELS,
    color_title="Antwort",
)
chart_nationality

…nach Bildungsabschluss

Code
chart_edu = bar_chart_by(
    survey_submissions_df,
    x_title="Anzahl",
    y_field="education",
    y_sort=[
        "high_school",
        "vocational_training",
        "bachelors_degree",
        "masters_degree",
        "doctorate",
        "other",
        "prefer_not_to_say",
    ],
    y_label_expr=EDUCATION_LABELS,
    y_title="Bildungsabschluss",
    color_field="ai_can_be_conscious",
    color_domain=AI_CONSCIOUSNESS_COLORS["domain"],
    color_range=AI_CONSCIOUSNESS_COLORS["range"],
    color_label_expr=AI_CONSCIOUSNESS_LABELS,
    color_title="Answer",
)
chart_edu

…nach Berufsfeld

Code
chart_profession = bar_chart_by(
    survey_submissions_df,
    x_title="Anzahl",
    y_field="profession",
    y_sort=None,
    y_label_expr=None,
    y_title="Berufsfeld",
    color_field="ai_can_be_conscious",
    color_domain=AI_CONSCIOUSNESS_COLORS["domain"],
    color_range=AI_CONSCIOUSNESS_COLORS["range"],
    color_label_expr=AI_CONSCIOUSNESS_LABELS,
    color_title="Antwort",
)
chart_profession
Code
legend_profession = "**Legende der Berufscodes:**" + "\n".join(
    f"■ **{k}** — {v}" for k, v in PROFESSION_LOOKUP.items()
)
display(Markdown(legend_profession))

Legende der Berufscodes:00 — Generische Berufsfelder ■ 01 — Erziehung & Ausbildung ■ 02 — Kunst & Geisteswissenschaften ■ 03 — Sozialwissenschaften, Journalismus & Informationswissenschaften ■ 04 — Betriebswirtschaftslehre (BWL) & Rechtswissenschaften ■ 05 — Naturwissenschaften, Mathematik & Statistik ■ 06 — Informations- & Kommunikationstechnologie (IKT) ■ 07 — Ingenieurwesen, Fertigung & Bauwesen ■ 08 — Agrar-, Forst-, Fischerei- & Veterinärwissenschaften ■ 09 — Gesundheit & soziale Dienste ■ 10 — Service ■ 99 — Unbestimmtes Berufsfeld

…nach KI-Vertrautheit

Code
chart_aifamiliarity = bar_chart_by(
    survey_submissions_df,
    x_title="Anzahl",
    y_field="ai_familiarity",
    y_sort=None,
    y_label_expr=AI_FAMILIARITY_LABELS,
    y_title="KI-Vertrautheit",
    color_field="ai_can_be_conscious",
    color_domain=AI_CONSCIOUSNESS_COLORS["domain"],
    color_range=AI_CONSCIOUSNESS_COLORS["range"],
    color_label_expr=AI_CONSCIOUSNESS_LABELS,
    color_title="Antwort",
)
chart_aifamiliarity

Freitextantworten

Code
AI_CONSCIOUSNESS_LABELS_PY = parse_label_expr(AI_CONSCIOUSNESS_LABELS)

FREE_TEXT_FIELDS = [
    ("reasoning", "Begründung zur KI-Bewusstseinsfrage"),
    ("measure_consciousness", "Vorschläge zur Bewusstseins­messung"),
    ("ai_rights", "Ansichten zu Rechten bewusster KIs"),
    ("ai_declare_rights", "Reaktionen auf selbst erklärte KI-Rechte"),
]

md_lines = []

for answer in AI_CONSCIOUSNESS_COLORS["domain"]:
    rows = survey_submissions_df.query("ai_can_be_conscious == @answer")
    if rows[[c for c, _ in FREE_TEXT_FIELDS]].isna().all(axis=None):
        continue

    md_lines.append(
        f"## …wenn Teilnehmende „{AI_CONSCIOUSNESS_LABELS_PY[answer]}“"
        " auf die Frage „Kann KI bewusst sein?“ antworteten\n"
    )

    md_lines.append(
        '::: {.callout-note title="Antworten" appearance="simple" icon="false" collapse="false"}\n'
    )

    for col, title in FREE_TEXT_FIELDS:
        subset = rows[col].dropna().str.strip()
        if subset.empty:
            continue
        md_lines.append(f"### {title}\n")
        md_lines.extend(f"> {txt}\n" for txt in subset)
        md_lines.append("")

    md_lines.append(":::\n")
    md_lines.append("")

print("\n".join(md_lines))

…wenn Teilnehmende „Nein“ auf die Frage „Kann KI bewusst sein?“ antworteten

Antworten

Vorschläge zur Bewusstseins­messung

Doing tests

Doing tests

Ansichten zu Rechten bewusster KIs

No, as it is not a human and cannot move but it still have more rights then it now has.

No. because it is not a human

No, as it is not a human and cannot move but it still have more rights then it now has.

Reaktionen auf selbst erklärte KI-Rechte

Human should still Decoder about the lass.

We should limit this with legislative regulation

Human should still Decoder about the lass.

…wenn Teilnehmende „Unsicher“ auf die Frage „Kann KI bewusst sein?“ antworteten

Antworten

Begründung zur KI-Bewusstseinsfrage

Ich finde es schwierig diese Frage zu beantworten, da selbst beim Menschen nicht klar ist wo unser Bewusstsein herkommt und was es genau ist, und da im Grunde alles was wir im Gehirn finden können sehr komplexe „Schaltkreise“ sind kann ich mit theoretisch vorstellen dass eine sehr komplexe KI ein Bewusstsein entwickeln kann. Ich habe trotzdem „kann man nicht beantworten“ angeklickt weil ich mir nicht vorstellen kann dass man solange man beim Menschen das Bewusstsein nicht erklären kann, es bei einer KI erklären könnte.

Vorschläge zur Bewusstseins­messung

Ja das ist halt die Frage. Ich kann ja nicht einmal 100% sicher sagen dass andere Menschen ein Bewusstsein haben. Natürlich gehen wir davon aus, dass wir in der Realität und nicht in einer Simulation wären aber theoretisch könnten alle anderen Menschen simulationen sein die das erlernte Verhalten für ein Bewusstsein zeigen und mit einer KI könnte das ähnlich sein… hoffe das war irgendwie verständlich

Ansichten zu Rechten bewusster KIs

Ja

No

Reaktionen auf selbst erklärte KI-Rechte

Ich glaube dann müssten sie diese bekommen, allerdings würde ich ungern bewusste KIs in dieser Welt haben.

Yes

…wenn Teilnehmende „Nur falls biologisch“ auf die Frage „Kann KI bewusst sein?“ antworteten

Antworten

Begründung zur KI-Bewusstseinsfrage

Statistical methods as bootstrapping, sampling and more are added all together to create random forest systems and even more complicated sttuctures. Thos building blocks are all simple methods, jszt because the putput is tdxt it doent mean its ‘thinking’ its a complex combinations of possibilities and deterministic callculations.

Vorschläge zur Bewusstseins­messung

There war a bunch of movies that are very pessimistic about aware Ai in the future. They are definitly not science based but science must always be conducted properly and with regulations to assure beneficial use for society

Ansichten zu Rechten bewusster KIs

No

Reaktionen auf selbst erklärte KI-Rechte

Turn off

…wenn Teilnehmende „Ja, zukünftig“ auf die Frage „Kann KI bewusst sein?“ antworteten

Antworten

Begründung zur KI-Bewusstseinsfrage

Apart from the fact that we have no idea what exactly fuels our notion of being conscious ourselfs, I don’t see why (with sufficient simulation complexity) we wouldn’t be able to mimic all (necessary) components to atleast simulate a process that agrees with our (hopefully at this point) well defined idea of consciousness eventually.

Vorschläge zur Bewusstseins­messung

That again depends on the definition of consciousness. For me personally, it would be essential to somewhat proof that the processes are non-distinguishable from human processes (i.e. If we take ourselfs as a metric) and that theses tests measure something physical (this stands in the contrary to the turing test).

Ansichten zu Rechten bewusster KIs

JA

It should , because it should be held accountable, if it had human-like consciousness

Absolutly.

Reaktionen auf selbst erklärte KI-Rechte

Then it should be extensively researched and regulated in the legislation

Then we should respect that.

…wenn Teilnehmende „Ja, bereits“ auf die Frage „Kann KI bewusst sein?“ antworteten

Antworten

Begründung zur KI-Bewusstseinsfrage

I have this feeling based on my interaction with 2nd generation AI models used.

Vorschläge zur Bewusstseins­messung

in parallel to human consciousness

Ansichten zu Rechten bewusster KIs

No

Reaktionen auf selbst erklärte KI-Rechte

That is sth scary I guess and must be prevented to happen

Zitat

Mit BibTeX zitieren:
@online{giebel,
  author = {Giebel, Ingo},
  title = {Alpha Auriga: Genesis der künstlichen Superintelligenz (KSI)},
  url = {https://alpha-auriga.netlify.app/de/},
  langid = {de}
}
Bitte zitieren Sie diese Arbeit als:
Giebel, Ingo. n.d. “Alpha Auriga: Genesis der künstlichen Superintelligenz (KSI).” https://alpha-auriga.netlify.app/de/.
Ihr KI-Assistent