Skip to content

Instantly share code, notes, and snippets.

View jayralencar's full-sized avatar
:octocat:
Focusing

Jayr Alencar Pereira jayralencar

:octocat:
Focusing
View GitHub Profile
@jayralencar
jayralencar / A Survey of Data Augmentation Approaches for NLP.json
Last active January 19, 2022 18:10
A Survey of Data Augmentation Approaches for NLP.json
{
"title": "A Survey of Data Augmentation Approaches for NLP",
"url":"https://arxiv.org/pdf/2105.03075.pdf",
"year": 2021,
"author": "Feng et al.",
"sections" : [
{
"title": "Background",
"subsections": [
{
@jayralencar
jayralencar / identificando-discursos-de-dio-em-redes-sociais-usando-transformers.ipynb
Last active December 23, 2021 10:58
Identificando discursos de ódio em redes sociais usando Transformers.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jayralencar
jayralencar / exemplos-seinfo.ipynb
Created December 21, 2021 13:04
Exemplos SEINFO.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jayralencar
jayralencar / gist:9e030bc7ea8171d0ef9d6c30780f6453
Created August 2, 2016 12:21 — forked from bryhal/gist:4129042
MYSQL: Generate Calendar Table
DROP TABLE IF EXISTS time_dimension;
CREATE TABLE time_dimension (
id INTEGER PRIMARY KEY, -- year*10000+month*100+day
db_date DATE NOT NULL,
year INTEGER NOT NULL,
month INTEGER NOT NULL, -- 1 to 12
day INTEGER NOT NULL, -- 1 to 31
quarter INTEGER NOT NULL, -- 1 to 4
week INTEGER NOT NULL, -- 1 to 52/53
day_name VARCHAR(9) NOT NULL, -- 'Monday', 'Tuesday'...