This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import json | |
import random | |
import torch | |
from transformers import ( | |
AutoModelForCausalLM, | |
AutoTokenizer, | |
DataCollatorForLanguageModeling, | |
BitsAndBytesConfig, |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""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 |