Skip to content

Instantly share code, notes, and snippets.

View raffaem's full-sized avatar

Raffaele Mancuso raffaem

View GitHub Profile
@raffaem
raffaem / README
Last active September 27, 2023 07:14
Waybar module to record screen
Left mouse button to record entire screen, right mouse button to record a region.
Requires [wf-recorder](https://github.com/ammen99/wf-recorder).
#!/usr/bin/env python3
import sys
import re
with open(sys.argv[1], "r", encoding="utf8") as fh:
data = fh.read()
s = re.search(r"^(DTSTART:\d{8}T\d{6})$", data, re.MULTILINE).group(1)
data = data.replace(s, s+"Z")
@raffaem
raffaem / download_glue_data.py
Created September 14, 2021 14:09
Download GLUE data
''' Script for downloading all GLUE data.
Note: for legal reasons, we are unable to host MRPC.
You can either use the version hosted by the SentEval team, which is already tokenized,
or you can download the original data from (https://download.microsoft.com/download/D/4/6/D46FF87A-F6B9-4252-AA8B-3604ED519838/MSRParaphraseCorpus.msi) and extract the data from it manually.
For Windows users, you can run the .msi file. For Mac and Linux users, consider an external library such as 'cabextract' (see below for an example).
You should then rename and place specific files in a folder (see below for an example).
mkdir MRPC
cabextract MSRParaphraseCorpus.msi -d MRPC