Skip to content

Instantly share code, notes, and snippets.

View thebrrt's full-sized avatar
🪖
Open to work

Albert Medrano-Lopez thebrrt

🪖
Open to work
View GitHub Profile
@thebrrt
thebrrt / 2safetensors.py
Created December 27, 2023 11:15 — forked from epicfilemcnulty/2safetensors.py
convert pytorch weights to safetensors
import json
import os
import sys
from collections import defaultdict
from tqdm import tqdm
import argparse
import torch
from safetensors.torch import load_file, save_file
@thebrrt
thebrrt / 2safetensors.py
Created December 27, 2023 11:15 — forked from epicfilemcnulty/2safetensors.py
convert pytorch weights to safetensors
import json
import os
import sys
from collections import defaultdict
from tqdm import tqdm
import argparse
import torch
from safetensors.torch import load_file, save_file