Mercurial > hg > python
view lazyBug.py @ 59:c22f83e049a9 simple
check0 works for nono10,
but is broken in that col 3 w/o the row 7 hit would find the row 3 hit
as satisfying the last (2nd) run, which isn't _necessarily_ correct
author | Henry Thompson <ht@markup.co.uk> |
---|---|
date | Sat, 03 Jun 2023 22:11:12 +0100 |
parents | bd1db1ed4c25 |
children |
line wrap: on
line source
'''Illustrate problem with writable cache in LazySubsequence''' from nltk.corpus import brown import nltk, sys data = brown.tagged_sents(categories='news', tagset='universal') train_data=data[:1000] y=train_data[0] print('initial:',y==train_data[0],train_data[0][:2]) train_data[0].insert(0,('<s>','<s>')) print('modified:',y==train_data[0],train_data[0][:2]) z=len([s for s in train_data]) print('post-view:',y==train_data[0],train_data[0][:2]) print("\nnltk: %s\npython: %s"%(nltk.version_info,sys.version))