Skip to content

Instantly share code, notes, and snippets.

View felipemello1's full-sized avatar

Felipe Mello felipemello1

View GitHub Profile
@felipemello1
felipemello1 / gist:5f2002433c6da3a21f33d6cdf82e702a
Last active September 13, 2024 14:40
script update configs
"""
Script to update configs in torchtune in bulk
Goes over every .yaml file in configs that also has "lora" in the name
Finds the line that has "lora_alpha: 16"
Replaces the "lora_alpha: 16" with "lora_dropout: 0.0", while keeping the spacing and \n
Saves the file
Prints every file that was not updated
"""
@felipemello1
felipemello1 / BOOSTwithPython3
Created June 30, 2018 00:09 — forked from kenichi-shibata/BOOSTwithPython3
Compile BOOST with Python3 support
1. Check Python3 root
>>> import sys
>>> import os
>>> sys.executable
'/usr/local/bin/python3'
OR
$ which python3
/usr/local/bin/python3
@felipemello1
felipemello1 / nx2gt.py
Created June 14, 2018 07:35 — forked from bbengfort/nx2gt.py
Convert a networkx to graph-tool graph
import networkx as nx
import graph_tool as gt
def get_prop_type(value, key=None):
"""
Performs typing and value conversion for the graph_tool PropertyMap class.
If a key is provided, it also ensures the key is in a format that can be