Skip to content

Instantly share code, notes, and snippets.

The Latent Manipulator Cookbook.md

This guide explains the "Latent Manipulator," an experimental AI architecture designed to "think" in a latent space before generating text, contrasting with standard Transformer models that predict text sequentially. It includes the theory, code for implementation, and links to datasets and pretrained model checkpoints.

Based on the video exploring this concept: [https://www.youtube.com/watch?v=fWiieyG2zes]

⚠️ This project is free to use. If you find it helpful, please consider supporting it by checking out Peach Voice Typing: [https://peach-voice.com]

@MartialTerran
MartialTerran / Pictionary.py
Last active June 26, 2024 22:49 — forked from romanejaquez/gist:d8dd3b36d39efce7f1c53a6db4969844
gemini_pictionary_fullcode.py
import pygame
import requests
import json
import base64
# Initialize Pygame
pygame.init()
# Screen dimensions
width, height = 640, 480