Skip to content

Instantly share code, notes, and snippets.

View henryzord's full-sized avatar
🥸

Henry Cagnini henryzord

🥸
View GitHub Profile
@henryzord
henryzord / coleta_lattes.ipynb
Created February 1, 2024 10:38
Um script em Python para coletar dados de um currículo Lattes. Faça upload deste arquivo para o Google Drive para usá-lo
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@henryzord
henryzord / critical_difference_plot.py
Created July 18, 2021 20:13
A small script for generating critical difference plots using Nemenyi statistical test.
import Orange # pip install orange3
import matplotlib.pyplot as plt
import pandas as pd
import argparse
import numpy as np
def perform_checks(results_path: str) -> pd.DataFrame:
df = pd.read_csv(results_path, index_col=0)
@henryzord
henryzord / tensorboard_example.py
Last active June 28, 2019 10:12
A snippet for demonstrating how to log metadata with tensorboard, even if you don't use deep learning models.
"""
Code for demonstrating how to log metadata with tensorflow and tensorboard.
To install required libraries, run the following command in conda, or the equivalent in pip:
conda install matplotlib==2.2.3 numpy==1.16.1 tensorflow==1.13.1 tensorboard==1.13.1 psutil==5.6.2
"""
import argparse
import os