Skip to content

Instantly share code, notes, and snippets.

View hans's full-sized avatar

Jon Gauthier hans

View GitHub Profile
@hans
hans / Dockerfile
Last active June 27, 2023 15:19
Dockerfile and Singularity converter script for creating RStudio image for R 4.3.0, RStudio 2023.06
FROM ubuntu:20.04
# Software versions
ARG R_VERSION=4.3.0
ARG RSTUDIO_VERSION=2023.06.0-421
# Locale configuration
RUN apt-get update && apt-get install -y --no-install-recommends locales
RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen && \
locale-gen en_US.utf8 && \
*.csv
__pycache__
.ipynb_checkpoints
import json
from pathlib import Path
from syntaxgym import Suite
import transformers
# Materials from https://github.com/cpllab/syntactic-generalization
ds = []
for p in Path("../syntactic-generalization/test_suites/json").glob("*.json"):
with open(p) as f:
@hans
hans / docker-compose.yml
Created June 15, 2021 21:57
nodejs + mysql compose setup
version: '3'
services:
app:
image: node:latest
restart: on-failure
depends_on:
- db
ports: # map container ports to host ports. format is <HOST_PORT>:<CONTAINER_PORT>
- "12367:80"
sentence_id token_id token surprisal
1 1 In 4.57937
1 2 <unk> 7.45049
1 3 County 12.6541
1 4 <unk> 6.11317
1 5 near 12.2238
1 6 the 1.98095
1 7 River 15.709
1 8 <unk> 6.92787
1 9 there 11.7415
@hans
hans / main-whitelisting.ipynb
Created December 3, 2019 22:32
SyntaxGym results 2019-12-03, with PPL whitelisting
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@hans
hans / main.ipynb
Created December 3, 2019 22:30
SyntaxGym results 2019-12-03 without PPL whitelisting
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@hans
hans / main.ipynb
Last active December 2, 2019 23:16
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@hans
hans / .gitignore
Last active September 24, 2019 17:28
syntaxgym analysis 2019-09-22
.ipynb_checkpoints