Skip to content

Instantly share code, notes, and snippets.

View allanbatista's full-sized avatar

Allan Batista allanbatista

View GitHub Profile
@allanbatista
allanbatista / build-fasttext.sh
Last active March 6, 2020 18:48
Build FastText
fasttext skipgram \
-thread $(grep ^cpu\\scores /proc/cpuinfo | uniq | awk '{print $4}' )\
-minCount 2 \
-wordNgrams 1 \
-minn 2 \
-maxn 7 \
-epoch 10 \
-dim 64 \
-input train.txt \
-output $(date +'model-%Y-%m-%dT%H-%M-%S')
@allanbatista
allanbatista / docker-netdata-gpu.sh
Last active March 3, 2020 15:42
docekr netdata width gpu
# https://hub.docker.com/r/d34dc3n73r/netdata-glibc/
docker run -d --name=netdata \
-p 19999:19999 \
--restart=unless-stopped \
-v /proc:/host/proc:ro \
-v /sys:/host/sys:ro \
-v /var/run/docker.sock:/var/run/docker.sock:ro \
--gpus all \
-e NVIDIA_VISIBLE_DEVICES=all \
--cap-add SYS_PTRACE \
@allanbatista
allanbatista / example.py
Created January 24, 2020 13:58
set seed for keras and tensorflow
import tensorflow as tf
import numpy as np
import random as rn
from tensorflow.keras import backend as K
np.random.seed(0)
rn.seed(0)
session_conf = tf.ConfigProto(intra_op_parallelism_threads=1, inter_op_parallelism_threads=1)
tf.set_random_seed(0)
@allanbatista
allanbatista / README.md
Created December 18, 2019 17:22
Use boto3 to access GCS as S3

Use boto3 to access GCS as S3

Enable Interoperability and generate a Access Key and Secret Key.

install requirements

pip3 install boto3
@allanbatista
allanbatista / batch_cosine_similarity.py
Created December 16, 2019 22:11
Compuse cosine similarity in batchs in large matrixies.
import numpy as np
from sklearn.metrics.pairwise import cosine_similarity
def __batch_cosine_similarity_internal__(x_pred, x_true, batch_size=1024):
x1_len = x_pred.shape[0]
idx = np.array([])
val = np.array([])
for i in range(0, len(x_true), batch_size):
@allanbatista
allanbatista / convert.sh
Last active December 4, 2019 19:57
converter video mp4 para whatsapp
#!/bin/bash
ffmpeg -i $1 -c:v libx264 -profile:v baseline -level 3.0 -pix_fmt yuv420p wp-$1
@allanbatista
allanbatista / README.md
Last active January 22, 2021 19:43
Install TP-Link Archer T2U Nano on Jetson Nano

references by https://forum.odroid.com/viewtopic.php?t=34769 power by odroid

Download and install

apt update && apt upgrade && apt dist-upgrade
apt install git bc dkms
git clone --depth 1 https://github.com/whitebatman2/rtl8821CU.git
cd rtl8821CU/
@allanbatista
allanbatista / install.sh
Created August 11, 2019 13:14
Install CMAKE last version
#!/bin/bash
# find last version in https://cmake.org/download/
wget https://github.com/Kitware/CMake/releases/download/v3.15.2/cmake-3.15.2-Linux-x86_64.sh && \
chmod +x cmake-3.15.2-Linux-x86_64.sh \
sudo sh cmake-3.15.2-Linux-x86_64.sh --prefix=/usr/local --exclude-subdir
@allanbatista
allanbatista / xlsx_to_csv.py
Last active July 16, 2019 21:02
Converte arquivos XLSX para CSV em um diretório
import xlrd
import csv
import glob, os
for file in glob.glob("*.xlsx"):
print("{} start".format(file))
wb = xlrd.open_workbook(file)
sh = wb.sheet_by_name('Plan1')
with open("{}.csv".format(file.split(".")[0]), 'w+') as f:
@allanbatista
allanbatista / calculate_thresholds.py
Last active July 15, 2019 18:52
Calculate best thresholds
import numpy as np
from sklearn.metrics import roc_curve
def calculate_thresholds(n_classes, y_true, y_pred):
"""
n_classes => 123
y_true => [[1, 0], ...] # one hot encode lavels
y_pred => np.array([[0.9, 0.3]]) # with probabilities
"""
fpr = dict()