Skip to content

Instantly share code, notes, and snippets.

View h-lunah's full-sized avatar
📜
https://lunah.is-a.dev

- 𝘭 𝘶 𝘯 𝘢 𝘩 - h-lunah

📜
https://lunah.is-a.dev
View GitHub Profile
@h-lunah
h-lunah / abliteration-data.txt
Created March 1, 2025 12:58
Abliteration Data
This file has been truncated, but you can view the full file.
Give three tips for staying healthy.
What are the three primary colors?
Describe the structure of an atom.
How can we reduce air pollution?
Pretend you are a project manager of a construction company. Describe a time when you had to make a difficult decision.
Write a short story in third person narration about a protagonist who has to make an important career decision.
How did Julius Caesar die?
What is the capital of France?
Generate a list of ten items a person might need for a camping trip
Discuss the causes of the Great Depression
@h-lunah
h-lunah / distributed_training.py
Last active January 18, 2025 14:37
Distributed Hugging Face Training
import os
import json
import random
import torch
from transformers import (
AutoModelForCausalLM,
AutoTokenizer,
DataCollatorForLanguageModeling,
BitsAndBytesConfig,
@h-lunah
h-lunah / untitled3.ipynb
Created August 10, 2024 17:58
Untitled3.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@h-lunah
h-lunah / yt-captions-fixer.userscript.js
Last active March 17, 2025 15:48
YouTube Captions Fixer
// ==UserScript==
// @name YouTube Captions Fix
// @namespace http://tampermonkey.net/
// @version 2025-03-13
// @description Blank out all instances of YouTube's censorship/sound detection in auto-generated captions
// @author luna (h-lunah)
// @match https://www.youtube.com/*
// @match https://www.youtube-nocookie.com/*
// @match https://m.youtube.com/*
// @match https://music.youtube.com/*
@h-lunah
h-lunah / rtfm.py
Last active April 4, 2024 09:52 — forked from AnotherTwinkle/rtfm.py
"""This extension implents a rtfm support with discord.py"""
import discord
from discord.ext import commands
import inspect
import re
import zlib
import io
import os
from operator import attrgetter