Skip to content

Instantly share code, notes, and snippets.

@pcmoritz
pcmoritz / llm-papers.csv
Created April 30, 2023 22:56
llm-papers
We can't make this file beautiful and searchable because it's too large.
URL,License,Title,Author(s),PDF
http://arxiv.org/abs/2202.03371v1,creativecommons.org/licenses/by-sa/4.0/,Cedille: A large autoregressive French language model,Martin Müller and Florian Laurent,http://arxiv.org/pdf/2202.03371v1
http://arxiv.org/abs/2303.00077v1,creativecommons.org/licenses/by-sa/4.0/,Beyond the limitations of any imaginable mechanism: large language models and psycholinguistics,Conor Houghton and Nina Kazanina and Priyanka Sukumaran,http://arxiv.org/pdf/2303.00077v1
http://arxiv.org/abs/2010.12858v2,creativecommons.org/licenses/by-sa/4.0/,When Being Unseen from mBERT is just the Beginning: Handling New Languages With Multilingual Language Models,Benjamin Muller and Antonis Anastasopoulos and Benoît Sagot and Djamé Seddah,http://arxiv.org/pdf/2010.12858v2
http://arxiv.org/abs/2303.01911v1,creativecommons.org/licenses/by-sa/4.0/,Investigating the Translation Performance of a Large Multilingual Language Model: the Case of BLOOM,Rachel Bawden and François Yvon,http://arxiv.org/pdf/2303.01911v1
ht
@pcmoritz
pcmoritz / jobs-setup-cloud-formation-template.yaml
Created December 4, 2021 06:18
jobs-setup-cloud-formation-template.yaml
AWSTemplateFormatVersion: 2010-09-09
Description: >-
This template creates a bucket in your account for use with Jobs on your Anyscale cloud. Contact Anyscale if you run into any issues at support@anyscale.com if you have any questions.
Parameters:
CloudID:
Description: "The identifier for the Ansycale Cloud that'll be using this role. *Please lowercase the value before using it here.* You can grab your ID from here: https://console.anyscale.com/admin/clouds"
AllowedPattern: 'cld_[a-z0-9]+'
ConstraintDescription: must contain only lowercase letters or numbers. Please lowercase your cloud ID.
Type: String
@pcmoritz
pcmoritz / gist:4b0e1be7f2dfcc4e51e2ace50426f67d
Created May 20, 2018 19:04
Powerpoint create slides for animations while retaining slide numbers
Option Explicit
Sub AddElements()
Dim shp As Shape
Dim i As Integer, n As Integer
n = ActivePresentation.Slides.Count
For i = 1 To n
Dim s As Slide
Set s = ActivePresentation.Slides(i)
# install the irlb python package, in a shell do
# pip install -e git+https://github.com/bwlewis/irlbpy.git#egg=irlb
# Note that I don't expect the python implementation to be as polished as the R version (even though it is by the same author)
# For now it is easier for me to work with b/c I know Python better than R.
from scipy.io import mminfo,mmread
import numpy as np
X = mmread("matrix.mtx")