実験日: 2026-07-04
手法: RT除外・URL含有の本人投稿 3,586件(entities + 2009-2011の本文生URL補完)を6時代に分割し、各時代を独立のエージェントが全件読解 → 通時合成。
サンプリングなし(全量)。固定観点リストなし(各時代のコーパスからテーマを浮かび上がらせる方式)。
引用はすべて実データからの抜粋(各エージェントに捏造禁止を指示済みだが、重要な引用は search() で原本と突き合わせ可能)。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| suko: | |
| yukiyo: 藤井ゆきよさん | |
| nekosan: 金子有希さん | |
| minoringo: 鈴木みのりさん | |
| aiko: 高森藍子さん | |
| hajime: 藤原肇さん | |
| yahho: 所恵美さん | |
| konruru: 鈴原るるさん | |
| mohaya_norowareteiru: | |
| sawada: 澤田なつさん |
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:
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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() |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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'): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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') |