Skip to content

Instantly share code, notes, and snippets.

View rail44's full-sized avatar

Satoshi Amemiya rail44

View GitHub Profile

URL投稿コーパスの全量読解による変遷分析(2009-2026)

実験日: 2026-07-04 手法: RT除外・URL含有の本人投稿 3,586件(entities + 2009-2011の本文生URL補完)を6時代に分割し、各時代を独立のエージェントが全件読解 → 通時合成。 サンプリングなし(全量)。固定観点リストなし(各時代のコーパスからテーマを浮かび上がらせる方式)。 引用はすべて実データからの抜粋(各エージェントに捏造禁止を指示済みだが、重要な引用は search() で原本と突き合わせ可能)。

合成: 何が変わり、何が一貫しているか

変わったもの

@rail44
rail44 / すこリスト.yaml
Created May 24, 2022 09:15 — forked from lowbridgee/すこリスト.yaml
すこリスト.yaml
suko:
yukiyo: 藤井ゆきよさん
nekosan: 金子有希さん
minoringo: 鈴木みのりさん
aiko: 高森藍子さん
hajime: 藤原肇さん
yahho: 所恵美さん
konruru: 鈴原るるさん
mohaya_norowareteiru:
sawada: 澤田なつさん

Keybase proof

I hereby claim:

  • I am rail44 on github.
  • I am rail44 (https://keybase.io/rail44) on keybase.
  • I have a public key whose fingerprint is 3932 00BC 8EAD 6E21 ED25 B2B8 AECF 193E 5986 CD4B

To claim this, I am signing this object:

@rail44
rail44 / slide.pdf
Last active May 1, 2020 05:48
the architecture of javascript for web advertising
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
call plug#begin('~/.vim/plugged')
Plug 'itchyny/lightline.vim'
Plug 'leafgarland/typescript-vim'
Plug 'editorconfig/editorconfig-vim'
Plug 'autozimu/LanguageClient-neovim', {
\ 'branch': 'next',
\ 'do': 'bash install.sh',
\ }
Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' }
call plug#end()
@rail44
rail44 / ergodox.pdf
Last active May 21, 2018 01:48
Ergodox User Meetup
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
#!/usr/bin/python
# coding: utf-8
class LtsvConverter:
"""The class to create parsed view of table that has single column with LTSV.
This excepts that all lines have same order of fields.
client: client of BigQuery-Python
"""
def __init__(self, client, dataset='', table='', field='f0'):
@rail44
rail44 / load_image_from_registry.py
Created June 3, 2014 08:52
Load Docker image from registry to daemon.
#!/usr/bin/env python3
import os
import json
from io import BytesIO
import tarfile
from tarfile import TarInfo
import docker
import sys
reg_dir = os.environ.get('DOCKER_REGISTRY_DIR', '/tmp/registry')