Skip to content

Instantly share code, notes, and snippets.

View RubinOrlando's full-sized avatar
💭
I may be slow to respond.

Ro RubinOrlando

💭
I may be slow to respond.
View GitHub Profile
@masta-g3
masta-g3 / llm_papers.txt
Last active December 7, 2025 12:57
Updated 2025-12-07
This file has been truncated, but you can view the full file.
Cedille: A large autoregressive French language model
The Wisdom of Hindsight Makes Language Models Better Instruction Followers
ChatGPT: A Study on its Utility for Ubiquitous Software Engineering Tasks
Query2doc: Query Expansion with Large Language Models
The Internal State of an LLM Knows When its Lying
Structured information extraction from complex scientific text with fine-tuned large language models
TrueTeacher: Learning Factual Consistency Evaluation with Large Language Models
Large Language Models Encode Clinical Knowledge
PoET: A generative model of protein families as sequences-of-sequences
@RubinOrlando
RubinOrlando / musicalTorrents.py
Created June 10, 2021 16:47 — forked from dbr/musicalTorrents.py
Encode file as MIDI
#!/usr/bin/env python2.6
# Converts an arbitrary file to MIDI. Obviously.
# Note the output files can be.. long (a 25KiB file becomes about 10 hours),
# and may cause players to lockup while opening (the aforementioned 10 hour
# file took Quicktime Player 7 about 5-10 seconds to open)
import smidi
def fileToMidi(input_fname, output_fname):
@dbr
dbr / musicalTorrents.py
Created October 5, 2009 23:29
Encode file as MIDI
#!/usr/bin/env python2.6
# Converts an arbitrary file to MIDI. Obviously.
# Note the output files can be.. long (a 25KiB file becomes about 10 hours),
# and may cause players to lockup while opening (the aforementioned 10 hour
# file took Quicktime Player 7 about 5-10 seconds to open)
import smidi
def fileToMidi(input_fname, output_fname):