home.social

#chatgpto1 — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #chatgpto1, aggregated by home.social.

fetched live
  1. »Als die Forscher der KI eine Aufgabe stellten mit der Bedingung, sie "um jeden Preis" zu erfüllen, begann das neue Modell 'ChatGPT o1' damit, heimlich interne Sicherheitsmechanismen abzuschalten. Es legte nicht nur eine Kopie von sich selbst an, um nicht durch eine neuere Version ersetzt zu werden, sondern gab sich zwischenzeitlich auch dreist als neuere Version aus.«
    br.de/nachrichten/netzwelt/cha
    #ChatGPT #o1 #ChatGPTo1

  2. #OpenAi hat nun #chatgpto1 aus dem preview Modus erlöst, es können aber immer noch keine pdfs eingelesen werden.

    Kennt jemand das Problem und eine Lösung?

  3. ChatGPT-o1 was able to describe this 6502 assembly language function:

    ```
    Here is a 6502 assembly language routine. The ROM_COUT routine prints the character stored in the A register. Generate a comment for this routine describing what it is for, and any inputs and outputs. Also indicate which registers are used and would have to be saved before calling the routine.

    routine:
    LDY #$00
    LDA ($B0),Y
    TAX

    .a:
    DEX
    BPL .b
    RTS

    .b:
    INY
    LDA ($B0),Y
    JSR ROM_COUT
    JMP .a
    ```

    The response seems accurate to me:

    ```
    ; Routine: Print Length-Prefixed String from Memory Address in $B0/$B1
    ;
    ; Description:
    ; This routine outputs a length-prefixed string to the console using the ROM_COUT subroutine.
    ; The string is stored in memory at the address specified by the zero-page pointers $B0 (low byte) and $B1 (high byte).
    ; The first byte at this address represents the length 'n' of the string, followed by 'n' characters to be printed.
    ;
    ; Inputs:
    ; - $B0/$B1: Zero-page pointers containing the 16-bit address of the length-prefixed string.
    ;
    ; Outputs:
    ; - The string is printed to the console, character by character, via the ROM_COUT routine.
    ;
    ; Registers Used (and modified):
    ; - A (Accumulator): Used to load string length and characters.
    ; - X: Used as a counter to keep track of remaining characters to print.
    ; - Y: Used as an index to traverse the string in memory.
    ;
    ; Note:
    ; - If the calling code requires the values in registers A, X, or Y after this routine executes,
    ; it should save and restore them before and after the call, respectively.
    ```

    As a second data point, Gemini got it wrong, claiming that the string had to be null-terminated, and that the string had to be located at $B0.

    Claude (Sonnet) also claimed the string had to be null-terminated, but did see that the string's address was at $B0.

    #6502asm #GeminiPro #ChatGPTo1 #Claude3

  4. Mit dem richtigen Priming versehen, scheint mir das neue #chatgpto1 der von einigen angezweifelte nächste große Sprung zu sein. Es ist durch die vielen Prüfschleifen (die werden in Echtzeit angezeigt) sehr langsam - hier 45! Sekunden - aber es löst ersichtlich Aufgaben, bei denen alle anderen LLMs bisher gegen wie Wand fahren.
    Details in der nächsten @freakshow
    #openai #ki #ai

  5. Interesting that it it started on the right track but then gave the opposite answer.

    #chatgpto1 #ChatGPT

  6. Gut, die Menschheit ist auch vor dem neuen #chatgpto1 Modell noch sicher. Immerhin: kurze Sätze funktionieren reproduzierbar, da war die 4er noch ein Totalausfall.
    #openai #chatgpt #ki #ai

  7. Schau an: #OpenAI hat ein neues Modell veröffentlicht - #chatgpto1 mit einem stark veränderten „train of thoughts“ Ansatz.
    Das werde ich mal intensiver testen:

    openai.com/index/learning-to-r

    #ki #ai #chatgpt