Unnamed: 0
int64 0
11.3k
| raw_text
stringlengths 1
74.9k
⌀ | filenames
stringlengths 76
93
| target
int64 0
19
| id
stringlengths 13
30
| tokenized
stringlengths 2
197k
| lemmatized
stringlengths 2
63.2k
| bigram
stringlengths 2
23.9k
| vw_text
stringlengths 37
26.6k
|
---|---|---|---|---|---|---|---|---|
4,508 | Have you tried re-installing the software? Otherwise I would be dubious about
simple ways to change that screen. Is it not designed to be an embarassment to
would be pirates?
-Charles
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/comp.os.ms-windows.misc/9468 | 2 | comp_os_ms-windows_misc_9468 | [('have', 'VB'), ('you', 'PRP'), ('tried', 'VBN'), ('re', 'VB'), ('installing', 'VBG'), ('the', 'DT'), ('software', 'NN'), ('otherwise', 'RB'), ('would', 'MD'), ('be', 'VB'), ('dubious', 'JJ'), ('about', 'IN'), ('simple', 'JJ'), ('ways', 'NNS'), ('to', 'TO'), ('change', 'VB'), ('that', 'DT'), ('screen', 'NN'), ('is', 'VBZ'), ('it', 'PRP'), ('not', 'RB'), ('designed', 'VBN'), ('to', 'TO'), ('be', 'VB'), ('an', 'DT'), ('embarassment', 'NN'), ('to', 'TO'), ('would', 'MD'), ('be', 'VB'), ('pirates', 'NNS'), ('charles', 'NNS')] | ['try', 'instal', 'software', 'otherwise', 'would', 'dubious', 'simple', 'way', 'change', 'screen', 'design', 'embarassment', 'would', 'pirate', 'charles'] | ['otherwise_would', 'simple_way', 'way_change'] | comp_os_ms-windows_misc_9468 |@lemmatized try:1 instal:1 software:1 otherwise:1 would:2 dubious:1 simple:1 way:1 change:1 screen:1 design:1 embarassment:1 pirate:1 charles:1 |@bigram otherwise_would:1 simple_way:1 way_change:1 |
4,509 | Greetings!
I am looking pro a Win 3.1 printer driver for the Panasonic laser printer
KX-P4430. (I am not sure about the order of the first letters in the
name, but the numbers are right and they are important.) I have found
drivers for Panasonic printers 4450 and so on, but I think there should
be drivers available where the 4430 model is included.
Grateful for any help!
--
-------------------------------------------------------------------------------
[email protected] [email protected] [email protected] | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/comp.os.ms-windows.misc/9496 | 2 | comp_os_ms-windows_misc_9496 | [('greetings', 'NNS'), ('am', 'VBP'), ('looking', 'VBG'), ('pro', 'JJ'), ('win', 'FW'), ('printer', 'NN'), ('driver', 'NN'), ('for', 'IN'), ('the', 'DT'), ('panasonic', 'JJ'), ('laser', 'NN'), ('printer', 'NN'), ('kx', 'NN'), ('p4430', 'NN'), ('am', 'VBP'), ('not', 'RB'), ('sure', 'JJ'), ('about', 'IN'), ('the', 'DT'), ('order', 'NN'), ('of', 'IN'), ('the', 'DT'), ('first', 'JJ'), ('letters', 'NNS'), ('in', 'IN'), ('the', 'DT'), ('name', 'NN'), ('but', 'CC'), ('the', 'DT'), ('numbers', 'NNS'), ('are', 'VBP'), ('right', 'JJ'), ('and', 'CC'), ('they', 'PRP'), ('are', 'VBP'), ('important', 'JJ'), ('.)', 'NNS'), ('have', 'VBP'), ('found', 'VBN'), ('drivers', 'NNS'), ('for', 'IN'), ('panasonic', 'JJ'), ('printers', 'NNS'), ('4450', 'CD'), ('and', 'CC'), ('so', 'RB'), ('on', 'IN'), ('but', 'CC'), ('think', 'VBP'), ('there', 'EX'), ('should', 'MD'), ('be', 'VB'), ('drivers', 'NNS'), ('available', 'JJ'), ('where', 'WRB'), ('the', 'DT'), ('4430', 'CD'), ('model', 'NN'), ('is', 'VBZ'), ('included', 'VBN'), ('grateful', 'JJ'), ('for', 'IN'), ('any', 'DT'), ('help', 'NN'), ('--', ':'), ('-------------------------------------------------------------------------------', 'VB')] | ['greeting', 'look', 'pro', 'win', 'printer', 'driver', 'panasonic', 'laser', 'printer', 'kx', 'sure', 'order', 'first', 'letter', 'name', 'number', 'right', 'important', 'find', 'driver', 'panasonic', 'printer', 'think', 'driver', 'available', 'model', 'include', 'grateful', 'help'] | ['printer_driver', 'laser_printer', 'name_number', 'driver_available'] | comp_os_ms-windows_misc_9496 |@lemmatized greeting:1 look:1 pro:1 win:1 printer:3 driver:3 panasonic:2 laser:1 kx:1 sure:1 order:1 first:1 letter:1 name:1 number:1 right:1 important:1 find:1 think:1 available:1 model:1 include:1 grateful:1 help:1 |@bigram printer_driver:1 laser_printer:1 name_number:1 driver_available:1 |
4,510 |
You've got to set border_pixel in your window attributes. The default
is CopyFromParent which gives the BadMatch. Do this:
...
unsigned long valuemask;
...
/*
* if border_width is non-zero you'd better alloc a colour from cmap
* rather than use any old pixel value. Also, use valuemask, it makes
* the code more obvious.
*/
attr.colormap = cmap;
attr.border_pixel = 0;
valuemask = CWColormap | CWBorderPixel;
win = XCreateWindow(
dpy,
DefaultRootWindow(dpy),
10,10,
width,height,
0, /* border width. see comment below */
8, /* depth */
InputOutput, /* class */
vinfo.visual, /* visual */
valuemask,
&attr
);
A note on border_width: your code looked like this:
border_width set to CopyFromParent works but doesn't make sense.
border_width should be an unsigned int. You get away with it because
CopyFromParent is #define'ed to be zero in X.h. If it happened to be
defined as -1 you'd get a very interesting looking window! | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/comp.windows.x/66996 | 5 | comp_windows_x_66996 | [('you', 'PRP'), ('ve', 'VBP'), ('got', 'VBD'), ('to', 'TO'), ('set', 'VB'), ('border_pixel', 'NN'), ('in', 'IN'), ('your', 'PRP$'), ('window', 'NN'), ('attributes', 'VBZ'), ('the', 'DT'), ('default', 'NN'), ('is', 'VBZ'), ('copyfromparent', 'JJ'), ('which', 'WDT'), ('gives', 'VBZ'), ('the', 'DT'), ('badmatch', 'NN'), ('do', 'VBP'), ('this', 'DT'), ('...', ':'), ('unsigned', 'JJ'), ('long', 'JJ'), ('valuemask', 'NN'), ('...', ':'), ('/*', 'NN'), ('if', 'IN'), ('border_width', 'NN'), ('is', 'VBZ'), ('non', 'JJ'), ('zero', 'NN'), ('you', 'PRP'), ('better', 'JJR'), ('alloc', 'VB'), ('colour', 'NN'), ('from', 'IN'), ('cmap', 'NN'), ('rather', 'RB'), ('than', 'IN'), ('use', 'VB'), ('any', 'DT'), ('old', 'JJ'), ('pixel', 'NN'), ('value', 'NN'), ('also', 'RB'), ('use', 'VBP'), ('valuemask', 'NN'), ('it', 'PRP'), ('makes', 'VBZ'), ('the', 'DT'), ('code', 'NN'), ('more', 'RBR'), ('obvious', 'JJ'), ('*/', 'NNP'), ('attr', 'NN'), ('colormap', 'NN'), ('cmap', 'NN'), ('attr', 'NN'), ('border_pixel', 'NN'), ('valuemask', 'NN'), ('cwcolormap', 'NN'), ('cwborderpixel', 'NN'), ('win', 'VBP'), ('xcreatewindow', 'NNP'), ('dpy', 'NN'), ('defaultrootwindow', 'NN'), ('dpy', 'NN'), ('),', 'VBD'), ('10', 'CD'), ('10', 'CD'), ('width', 'NN'), ('height', 'NN'), ('/*', 'NNP'), ('border', 'NN'), ('width', 'NN'), ('see', 'VBP'), ('comment', 'NN'), ('below', 'IN'), ('*/', 'NNP'), ('/*', 'NNP'), ('depth', 'NN'), ('*/', 'NNP'), ('inputoutput', 'NN'), ('/*', 'NNP'), ('class', 'NN'), ('*/', 'NNP'), ('vinfo', 'NN'), ('visual', 'JJ'), ('/*', 'NNP'), ('visual', 'JJ'), ('*/', 'NNP'), ('valuemask', 'NN'), ('attr', 'NN'), (');', 'NNP'), ('note', 'NN'), ('on', 'IN'), ('border_width', 'IN'), ('your', 'PRP$'), ('code', 'NN'), ('looked', 'VBD'), ('like', 'IN'), ('this', 'DT'), ('border_width', 'NN'), ('set', 'VBN'), ('to', 'TO'), ('copyfromparent', 'VB'), ('works', 'NNS'), ('but', 'CC'), ('doesn', 'NNS'), ('make', 'VBP'), ('sense', 'NN'), ('border_width', 'NN'), ('should', 'MD'), ('be', 'VB'), ('an', 'DT'), ('unsigned', 'JJ'), ('int', 'NN'), ('you', 'PRP'), ('get', 'VBP'), ('away', 'RB'), ('with', 'IN'), ('it', 'PRP'), ('because', 'IN'), ('copyfromparent', 'NN'), ('is', 'VBZ'), ('define', 'JJ'), ('ed', 'NN'), ('to', 'TO'), ('be', 'VB'), ('zero', 'CD'), ('in', 'IN'), ('if', 'IN'), ('it', 'PRP'), ('happened', 'VBD'), ('to', 'TO'), ('be', 'VB'), ('defined', 'VBN'), ('as', 'IN'), ('you', 'PRP'), ('get', 'VBP'), ('very', 'RB'), ('interesting', 'JJ'), ('looking', 'VBG'), ('window', 'NN')] | ['get', 'set', 'window', 'attribute', 'default', 'copyfromparent', 'give', 'badmatch', 'unsigned', 'long', 'valuemask', 'non', 'zero', 'good', 'alloc', 'colour', 'cmap', 'rather', 'use', 'old', 'pixel', 'value', 'also', 'use', 'valuemask', 'make', 'code', 'obvious', 'attr', 'colormap', 'cmap', 'attr', 'valuemask', 'cwcolormap', 'cwborderpixel', 'win', 'xcreatewindow', 'dpy', 'defaultrootwindow', 'dpy', 'width', 'height', 'border', 'width', 'see', 'comment', 'depth', 'inputoutput', 'class', 'vinfo', 'visual', 'visual', 'valuemask', 'attr', 'note', 'code', 'look', 'like', 'set', 'copyfromparent', 'work', 'make', 'sense', 'unsigned', 'int', 'get', 'away', 'copyfromparent', 'define', 'ed', 'zero', 'happen', 'define', 'get', 'interesting', 'look', 'window'] | ['get_set', 'set_window', 'non_zero', 'rather_use', 'use_old', 'pixel_value', 'also_use', 'width_height', 'see_comment', 'visual_visual', 'code_look', 'look_like', 'like_set', 'work_make', 'make_sense', 'unsigned_int', 'get_away', 'get_interesting', 'look_window'] | comp_windows_x_66996 |@lemmatized get:3 set:2 window:2 attribute:1 default:1 copyfromparent:3 give:1 badmatch:1 unsigned:2 long:1 valuemask:4 non:1 zero:2 good:1 alloc:1 colour:1 cmap:2 rather:1 use:2 old:1 pixel:1 value:1 also:1 make:2 code:2 obvious:1 attr:3 colormap:1 cwcolormap:1 cwborderpixel:1 win:1 xcreatewindow:1 dpy:2 defaultrootwindow:1 width:2 height:1 border:1 see:1 comment:1 depth:1 inputoutput:1 class:1 vinfo:1 visual:2 note:1 look:2 like:1 work:1 sense:1 int:1 away:1 define:2 ed:1 happen:1 interesting:1 |@bigram get_set:1 set_window:1 non_zero:1 rather_use:1 use_old:1 pixel_value:1 also_use:1 width_height:1 see_comment:1 visual_visual:1 code_look:1 look_like:1 like_set:1 work_make:1 make_sense:1 unsigned_int:1 get_away:1 get_interesting:1 look_window:1 |
4,511 | In <[email protected]> [email protected] (Eric
Huh? Please explain. Is there a problem because I based my morality on
something that COULD be wrong? Gosh, there's a heck of a lot of stuff that I
believe that COULD be wrong, and that comes from sources that COULD be wrong.
What do you base your belief on atheism on? Your knowledge and reasoning?
COuldn't that be wrong?
MAC
--
****************************************************************
Michael A. Cobb
"...and I won't raise taxes on the middle University of Illinois
class to pay for my programs." Champaign-Urbana
-Bill Clinton 3rd Debate [email protected] | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/alt.atheism/53153 | 0 | alt_atheism_53153 | [('in', 'IN'), ('eric', 'JJ'), ('huh', 'NN'), ('please', 'NN'), ('explain', 'NN'), ('is', 'VBZ'), ('there', 'RB'), ('problem', 'NN'), ('because', 'IN'), ('based', 'VBN'), ('my', 'PRP$'), ('morality', 'NN'), ('on', 'IN'), ('something', 'NN'), ('that', 'WDT'), ('could', 'MD'), ('be', 'VB'), ('wrong', 'JJ'), ('gosh', 'NN'), ('there', 'EX'), ('heck', 'NN'), ('of', 'IN'), ('lot', 'NN'), ('of', 'IN'), ('stuff', 'NN'), ('that', 'IN'), ('believe', 'VBP'), ('that', 'DT'), ('could', 'MD'), ('be', 'VB'), ('wrong', 'JJ'), ('and', 'CC'), ('that', 'DT'), ('comes', 'VBZ'), ('from', 'IN'), ('sources', 'NNS'), ('that', 'WDT'), ('could', 'MD'), ('be', 'VB'), ('wrong', 'JJ'), ('what', 'WP'), ('do', 'VBP'), ('you', 'PRP'), ('base', 'VB'), ('your', 'PRP$'), ('belief', 'NN'), ('on', 'IN'), ('atheism', 'NN'), ('on', 'IN'), ('your', 'PRP$'), ('knowledge', 'NN'), ('and', 'CC'), ('reasoning', 'VBG'), ('couldn', 'NN'), ('that', 'WDT'), ('be', 'VB'), ('wrong', 'JJ'), ('mac', 'NN'), ('--', ':'), ('****************************************************************', 'JJ'), ('michael', 'NN'), ('cobb', 'NN'), ('"...', 'NNP'), ('and', 'CC'), ('won', 'VBD'), ('raise', 'NN'), ('taxes', 'NNS'), ('on', 'IN'), ('the', 'DT'), ('middle', 'JJ'), ('university', 'NN'), ('of', 'IN'), ('illinois', 'JJ'), ('class', 'NN'), ('to', 'TO'), ('pay', 'VB'), ('for', 'IN'), ('my', 'PRP$'), ('programs', 'NNS'), ('."', 'VBP'), ('champaign', 'JJ'), ('urbana', 'JJ'), ('bill', 'NN'), ('clinton', 'VBZ'), ('3rd', 'CD'), ('debate', 'NN')] | ['eric', 'huh', 'please', 'explain', 'problem', 'base', 'morality', 'something', 'could', 'wrong', 'gosh', 'heck', 'lot', 'stuff', 'believe', 'could', 'wrong', 'come', 'source', 'could', 'wrong', 'base', 'belief', 'atheism', 'knowledge', 'reason', 'wrong', 'mac', 'michael', 'cobb', 'win', 'raise', 'tax', 'middle', 'university', 'illinois', 'class', 'pay', 'program', 'champaign', 'urbana', 'bill', 'clinton', 'debate'] | ['please_explain', 'something_could', 'could_wrong', 'heck_lot', 'lot_stuff', 'believe_could', 'could_wrong', 'come_source', 'could_wrong', 'mac_michael', 'michael_cobb', 'cobb_win', 'win_raise', 'raise_tax', 'tax_middle', 'middle_university', 'university_illinois', 'illinois_class', 'class_pay', 'pay_program', 'program_champaign', 'champaign_urbana', 'urbana_bill', 'bill_clinton', 'clinton_debate'] | alt_atheism_53153 |@lemmatized eric:1 huh:1 please:1 explain:1 problem:1 base:2 morality:1 something:1 could:3 wrong:4 gosh:1 heck:1 lot:1 stuff:1 believe:1 come:1 source:1 belief:1 atheism:1 knowledge:1 reason:1 mac:1 michael:1 cobb:1 win:1 raise:1 tax:1 middle:1 university:1 illinois:1 class:1 pay:1 program:1 champaign:1 urbana:1 bill:1 clinton:1 debate:1 |@bigram please_explain:1 something_could:1 could_wrong:3 heck_lot:1 lot_stuff:1 believe_could:1 come_source:1 mac_michael:1 michael_cobb:1 cobb_win:1 win_raise:1 raise_tax:1 tax_middle:1 middle_university:1 university_illinois:1 illinois_class:1 class_pay:1 pay_program:1 program_champaign:1 champaign_urbana:1 urbana_bill:1 bill_clinton:1 clinton_debate:1 |
4,512 | Hi everyone. I recently posted about how I received a bad vram chip for my
new LCIII, and someone responded that it may not actually be bad, but it may
be a 512K LC vram chip, and thus doesn't work properly with my computer. So
I'm wondering if anyone can interpret these codes for me, so I can figure
out what type of chip MacConnection sent me.
2515251
On the back of the card, it says 0593
I believe from the numbers that means it is an 80ns chip, but I can't figure
out what the size is supposed to be. If anyone can help, I'd be grateful.
Please email me your response. Thanks a lot!
--
Hillel Sims ----- [email protected] ----- Rensselaer Polytechnic Institute | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/comp.sys.mac.hardware/51796 | 4 | comp_sys_mac_hardware_51796 | [('hi', 'NN'), ('everyone', 'NN'), ('recently', 'RB'), ('posted', 'VBD'), ('about', 'IN'), ('how', 'WRB'), ('received', 'JJ'), ('bad', 'JJ'), ('vram', 'NN'), ('chip', 'NN'), ('for', 'IN'), ('my', 'PRP$'), ('new', 'JJ'), ('lciii', 'NN'), ('and', 'CC'), ('someone', 'NN'), ('responded', 'VBD'), ('that', 'IN'), ('it', 'PRP'), ('may', 'MD'), ('not', 'RB'), ('actually', 'RB'), ('be', 'VB'), ('bad', 'JJ'), ('but', 'CC'), ('it', 'PRP'), ('may', 'MD'), ('be', 'VB'), ('512k', 'CD'), ('lc', 'JJ'), ('vram', 'NN'), ('chip', 'NN'), ('and', 'CC'), ('thus', 'RB'), ('doesn', 'JJ'), ('work', 'NN'), ('properly', 'RB'), ('with', 'IN'), ('my', 'PRP$'), ('computer', 'NN'), ('so', 'RB'), ('wondering', 'JJ'), ('if', 'IN'), ('anyone', 'NN'), ('can', 'MD'), ('interpret', 'VB'), ('these', 'DT'), ('codes', 'NNS'), ('for', 'IN'), ('me', 'PRP'), ('so', 'RB'), ('can', 'MD'), ('figure', 'VB'), ('out', 'RP'), ('what', 'WP'), ('type', 'NN'), ('of', 'IN'), ('chip', 'NN'), ('macconnection', 'NN'), ('sent', 'VBD'), ('me', 'PRP'), ('2515251', 'CD'), ('on', 'IN'), ('the', 'DT'), ('back', 'NN'), ('of', 'IN'), ('the', 'DT'), ('card', 'NN'), ('it', 'PRP'), ('says', 'VBZ'), ('0593', 'CD'), ('believe', 'NN'), ('from', 'IN'), ('the', 'DT'), ('numbers', 'NNS'), ('that', 'WDT'), ('means', 'VBZ'), ('it', 'PRP'), ('is', 'VBZ'), ('an', 'DT'), ('80ns', 'CD'), ('chip', 'NN'), ('but', 'CC'), ('can', 'MD'), ('figure', 'VB'), ('out', 'RP'), ('what', 'WP'), ('the', 'DT'), ('size', 'NN'), ('is', 'VBZ'), ('supposed', 'VBN'), ('to', 'TO'), ('be', 'VB'), ('if', 'IN'), ('anyone', 'NN'), ('can', 'MD'), ('help', 'VB'), ('be', 'VB'), ('grateful', 'JJ'), ('please', 'NN'), ('email', 'VB'), ('me', 'PRP'), ('your', 'PRP$'), ('response', 'NN'), ('thanks', 'NNS'), ('lot', 'NN'), ('--', ':'), ('hillel', 'JJ'), ('sims', 'NNS'), ('-----', 'VBP'), ('-----', 'JJ'), ('rensselaer', 'NN'), ('polytechnic', 'JJ'), ('institute', 'NN')] | ['hi', 'everyone', 'recently', 'post', 'received', 'bad', 'vram', 'chip', 'new', 'lciii', 'someone', 'respond', 'may', 'actually', 'bad', 'may', 'lc', 'vram', 'chip', 'thus', 'work', 'properly', 'computer', 'wondering', 'anyone', 'interpret', 'code', 'figure', 'type', 'chip', 'macconnection', 'send', 'back', 'card', 'say', 'believe', 'number', 'mean', 'chip', 'figure', 'size', 'suppose', 'anyone', 'help', 'grateful', 'please', 'email', 'response', 'thanks', 'lot', 'hillel', 'sims', 'rensselaer', 'polytechnic', 'institute'] | ['hi_everyone', 'recently_post', 'vram_chip', 'chip_new', 'may_actually', 'vram_chip', 'work_properly', 'send_back', 'say_believe', 'number_mean', 'anyone_help', 'please_email', 'email_response', 'response_thanks', 'thanks_lot'] | comp_sys_mac_hardware_51796 |@lemmatized hi:1 everyone:1 recently:1 post:1 received:1 bad:2 vram:2 chip:4 new:1 lciii:1 someone:1 respond:1 may:2 actually:1 lc:1 thus:1 work:1 properly:1 computer:1 wondering:1 anyone:2 interpret:1 code:1 figure:2 type:1 macconnection:1 send:1 back:1 card:1 say:1 believe:1 number:1 mean:1 size:1 suppose:1 help:1 grateful:1 please:1 email:1 response:1 thanks:1 lot:1 hillel:1 sims:1 rensselaer:1 polytechnic:1 institute:1 |@bigram hi_everyone:1 recently_post:1 vram_chip:2 chip_new:1 may_actually:1 work_properly:1 send_back:1 say_believe:1 number_mean:1 anyone_help:1 please_email:1 email_response:1 response_thanks:1 thanks_lot:1 |
4,513 |
Again I find myself wanting to respond to a posting and having neither
the time nor the proper materials with me (you would think I would learn my
lesson by now--but I'm trying to finish writing my Thesis and don't have tons
of time. Anyway...)
The basis for our (the catholic church's) belief in the assumption of
Mary, body and soul, into heaven is that, to put it simply, the apostles
and all the early generation Christians believed it. In fact, throughout their
ministry the apostles kept in close contact with Mary, and 11 of the 12 were
present when she died. Only Thomas was missing--when he arrived several days
later, he asked to be shown her body, and moved with pity, Peter and several of
the other apostles brought him to her tomb. When they arrived the seal was
still unbroken. They broke the seal, entered, and the body was missing. There
was no sign that anyone had entered, forcibly or otherwise, and everything else
was laid out exactly as it had been left. The apostles present all believed
that Mary was assumed into heaven--and the apostles TAUGHT this in their
preaching (of course, this does not appear in any of the texts currently
considered part of the bible, but it does appear in other writings left behind
by several of them.) Basicaly, as an apostolic church (ie. founded by the
apostles), we believe that the teachings of the apostles, whether written down
in the bible or written down in other sources, is true, providing that the
authenticity of those other sources can be confirmed. At least in the case of
the assumption of Mary, the authenticity is quite clear. | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/soc.religion.christian/21308 | 15 | soc_religion_christian_21308 | [('again', 'RB'), ('find', 'VB'), ('myself', 'PRP'), ('wanting', 'VBG'), ('to', 'TO'), ('respond', 'VB'), ('to', 'TO'), ('posting', 'VBG'), ('and', 'CC'), ('having', 'VBG'), ('neither', 'CC'), ('the', 'DT'), ('time', 'NN'), ('nor', 'CC'), ('the', 'DT'), ('proper', 'JJ'), ('materials', 'NNS'), ('with', 'IN'), ('me', 'PRP'), ('you', 'PRP'), ('would', 'MD'), ('think', 'VB'), ('would', 'MD'), ('learn', 'VB'), ('my', 'PRP$'), ('lesson', 'NN'), ('by', 'IN'), ('now', 'RB'), ('--', ':'), ('but', 'CC'), ('trying', 'VBG'), ('to', 'TO'), ('finish', 'VB'), ('writing', 'VBG'), ('my', 'PRP$'), ('thesis', 'NN'), ('and', 'CC'), ('don', 'NN'), ('have', 'VBP'), ('tons', 'NNS'), ('of', 'IN'), ('time', 'NN'), ('anyway', 'RB'), ('...)', 'VBD'), ('the', 'DT'), ('basis', 'NN'), ('for', 'IN'), ('our', 'PRP$'), ('the', 'DT'), ('catholic', 'JJ'), ('church', 'NN'), ('belief', 'NN'), ('in', 'IN'), ('the', 'DT'), ('assumption', 'NN'), ('of', 'IN'), ('mary', 'JJ'), ('body', 'NN'), ('and', 'CC'), ('soul', 'NN'), ('into', 'IN'), ('heaven', 'NN'), ('is', 'VBZ'), ('that', 'IN'), ('to', 'TO'), ('put', 'VB'), ('it', 'PRP'), ('simply', 'RB'), ('the', 'DT'), ('apostles', 'NNS'), ('and', 'CC'), ('all', 'PDT'), ('the', 'DT'), ('early', 'JJ'), ('generation', 'NN'), ('christians', 'NNS'), ('believed', 'VBD'), ('it', 'PRP'), ('in', 'IN'), ('fact', 'NN'), ('throughout', 'IN'), ('their', 'PRP$'), ('ministry', 'NN'), ('the', 'DT'), ('apostles', 'NNS'), ('kept', 'VBD'), ('in', 'IN'), ('close', 'JJ'), ('contact', 'NN'), ('with', 'IN'), ('mary', 'JJ'), ('and', 'CC'), ('11', 'CD'), ('of', 'IN'), ('the', 'DT'), ('12', 'CD'), ('were', 'VBD'), ('present', 'JJ'), ('when', 'WRB'), ('she', 'PRP'), ('died', 'VBD'), ('only', 'RB'), ('thomas', 'NN'), ('was', 'VBD'), ('missing', 'VBG'), ('--', ':'), ('when', 'WRB'), ('he', 'PRP'), ('arrived', 'VBD'), ('several', 'JJ'), ('days', 'NNS'), ('later', 'RB'), ('he', 'PRP'), ('asked', 'VBD'), ('to', 'TO'), ('be', 'VB'), ('shown', 'VBN'), ('her', 'PRP$'), ('body', 'NN'), ('and', 'CC'), ('moved', 'VBN'), ('with', 'IN'), ('pity', 'NN'), ('peter', 'NN'), ('and', 'CC'), ('several', 'JJ'), ('of', 'IN'), ('the', 'DT'), ('other', 'JJ'), ('apostles', 'NNS'), ('brought', 'VBD'), ('him', 'PRP'), ('to', 'TO'), ('her', 'PRP$'), ('tomb', 'NN'), ('when', 'WRB'), ('they', 'PRP'), ('arrived', 'VBD'), ('the', 'DT'), ('seal', 'NN'), ('was', 'VBD'), ('still', 'RB'), ('unbroken', 'JJ'), ('they', 'PRP'), ('broke', 'VBD'), ('the', 'DT'), ('seal', 'NN'), ('entered', 'VBD'), ('and', 'CC'), ('the', 'DT'), ('body', 'NN'), ('was', 'VBD'), ('missing', 'VBG'), ('there', 'RB'), ('was', 'VBD'), ('no', 'DT'), ('sign', 'NN'), ('that', 'IN'), ('anyone', 'NN'), ('had', 'VBD'), ('entered', 'VBN'), ('forcibly', 'RB'), ('or', 'CC'), ('otherwise', 'RB'), ('and', 'CC'), ('everything', 'NN'), ('else', 'RB'), ('was', 'VBD'), ('laid', 'VBN'), ('out', 'RP'), ('exactly', 'RB'), ('as', 'IN'), ('it', 'PRP'), ('had', 'VBD'), ('been', 'VBN'), ('left', 'VBN'), ('the', 'DT'), ('apostles', 'NNS'), ('present', 'VBP'), ('all', 'DT'), ('believed', 'VBD'), ('that', 'IN'), ('mary', 'NN'), ('was', 'VBD'), ('assumed', 'VBN'), ('into', 'IN'), ('heaven', 'NN'), ('--', ':'), ('and', 'CC'), ('the', 'DT'), ('apostles', 'NNS'), ('taught', 'VBD'), ('this', 'DT'), ('in', 'IN'), ('their', 'PRP$'), ('preaching', 'NN'), ('of', 'IN'), ('course', 'NN'), ('this', 'DT'), ('does', 'VBZ'), ('not', 'RB'), ('appear', 'VB'), ('in', 'IN'), ('any', 'DT'), ('of', 'IN'), ('the', 'DT'), ('texts', 'NN'), ('currently', 'RB'), ('considered', 'VBN'), ('part', 'NN'), ('of', 'IN'), ('the', 'DT'), ('bible', 'JJ'), ('but', 'CC'), ('it', 'PRP'), ('does', 'VBZ'), ('appear', 'VB'), ('in', 'IN'), ('other', 'JJ'), ('writings', 'NNS'), ('left', 'VBN'), ('behind', 'IN'), ('by', 'IN'), ('several', 'JJ'), ('of', 'IN'), ('them', 'PRP'), ('.)', 'VBP'), ('basicaly', 'RB'), ('as', 'IN'), ('an', 'DT'), ('apostolic', 'JJ'), ('church', 'NN'), ('ie', 'NN'), ('founded', 'VBN'), ('by', 'IN'), ('the', 'DT'), ('apostles', 'NNS'), ('),', 'VBP'), ('we', 'PRP'), ('believe', 'VBP'), ('that', 'IN'), ('the', 'DT'), ('teachings', 'NNS'), ('of', 'IN'), ('the', 'DT'), ('apostles', 'NNS'), ('whether', 'IN'), ('written', 'VBN'), ('down', 'RP'), ('in', 'IN'), ('the', 'DT'), ('bible', 'JJ'), ('or', 'CC'), ('written', 'VBN'), ('down', 'RP'), ('in', 'IN'), ('other', 'JJ'), ('sources', 'NNS'), ('is', 'VBZ'), ('true', 'JJ'), ('providing', 'VBG'), ('that', 'IN'), ('the', 'DT'), ('authenticity', 'NN'), ('of', 'IN'), ('those', 'DT'), ('other', 'JJ'), ('sources', 'NNS'), ('can', 'MD'), ('be', 'VB'), ('confirmed', 'VBN'), ('at', 'IN'), ('least', 'JJS'), ('in', 'IN'), ('the', 'DT'), ('case', 'NN'), ('of', 'IN'), ('the', 'DT'), ('assumption', 'NN'), ('of', 'IN'), ('mary', 'JJ'), ('the', 'DT'), ('authenticity', 'NN'), ('is', 'VBZ'), ('quite', 'RB'), ('clear', 'JJ')] | ['find', 'want', 'respond', 'post', 'neither', 'time', 'proper', 'material', 'would', 'think', 'would', 'learn', 'lesson', 'try', 'finish', 'write', 'thesis', 'ton', 'time', 'anyway', 'basis', 'catholic', 'church', 'belief', 'assumption', 'mary', 'body', 'soul', 'heaven', 'put', 'simply', 'apostle', 'early', 'generation', 'christian', 'believe', 'fact', 'throughout', 'ministry', 'apostle', 'keep', 'close', 'contact', 'mary', 'present', 'die', 'thomas', 'miss', 'arrive', 'several', 'day', 'later', 'ask', 'show', 'body', 'move', 'pity', 'peter', 'several', 'apostle', 'bring', 'tomb', 'arrive', 'seal', 'still', 'unbroken', 'break', 'seal', 'enter', 'body', 'miss', 'sign', 'anyone', 'enter', 'forcibly', 'otherwise', 'everything', 'else', 'lay', 'exactly', 'leave', 'apostle', 'present', 'believe', 'mary', 'assume', 'heaven', 'apostle', 'teach', 'preaching', 'course', 'appear', 'text', 'currently', 'consider', 'part', 'bible', 'appear', 'writing', 'leave', 'behind', 'several', 'basicaly', 'apostolic', 'church', 'ie', 'found', 'apostle', 'believe', 'teaching', 'apostle', 'whether', 'write', 'bible', 'write', 'source', 'true', 'provide', 'authenticity', 'source', 'confirm', 'least', 'case', 'assumption', 'mary', 'authenticity', 'quite', 'clear'] | ['find_want', 'respond_post', 'would_think', 'think_would', 'finish_write', 'time_anyway', 'catholic_church', 'assumption_mary', 'christian_believe', 'several_day', 'day_later', 'everything_else', 'consider_part', 'part_bible', 'leave_behind', 'bible_write', 'least_case', 'assumption_mary', 'quite_clear'] | soc_religion_christian_21308 |@lemmatized find:1 want:1 respond:1 post:1 neither:1 time:2 proper:1 material:1 would:2 think:1 learn:1 lesson:1 try:1 finish:1 write:3 thesis:1 ton:1 anyway:1 basis:1 catholic:1 church:2 belief:1 assumption:2 mary:4 body:3 soul:1 heaven:2 put:1 simply:1 apostle:7 early:1 generation:1 christian:1 believe:3 fact:1 throughout:1 ministry:1 keep:1 close:1 contact:1 present:2 die:1 thomas:1 miss:2 arrive:2 several:3 day:1 later:1 ask:1 show:1 move:1 pity:1 peter:1 bring:1 tomb:1 seal:2 still:1 unbroken:1 break:1 enter:2 sign:1 anyone:1 forcibly:1 otherwise:1 everything:1 else:1 lay:1 exactly:1 leave:2 assume:1 teach:1 preaching:1 course:1 appear:2 text:1 currently:1 consider:1 part:1 bible:2 writing:1 behind:1 basicaly:1 apostolic:1 ie:1 found:1 teaching:1 whether:1 source:2 true:1 provide:1 authenticity:2 confirm:1 least:1 case:1 quite:1 clear:1 |@bigram find_want:1 respond_post:1 would_think:1 think_would:1 finish_write:1 time_anyway:1 catholic_church:1 assumption_mary:2 christian_believe:1 several_day:1 day_later:1 everything_else:1 consider_part:1 part_bible:1 leave_behind:1 bible_write:1 least_case:1 quite_clear:1 |
4,514 | From article <[email protected]>, by [email protected] (Jorge Lach - Sun BOS Hardware):
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/misc.forsale/74736 | 6 | misc_forsale_74736 | [('from', 'IN'), ('article', 'NN'), ('by', 'IN'), ('jorge', 'NN'), ('lach', 'NN'), ('sun', 'NN'), ('bos', 'NN'), ('hardware', 'NN'), ('):', 'NN')] | ['article', 'jorge', 'lach', 'sun', 'bos', 'hardware'] | [] | misc_forsale_74736 |@lemmatized article:1 jorge:1 lach:1 sun:1 bos:1 hardware:1 |@bigram |
4,516 | OK. Instead of holding an auction, I have decided to compute prices for each comic (after many suggestions). These are the most reasonable prices I can give (not negotiable). If you would like to purchase a comic (or group), simply email me with the title and issue #'s you want. The price for each issue is shown beside each comic. First come, first served!!! There is no more bidding. Meet my price and it is yours. I can be reached at this email address:
[email protected] or
[email protected] or
[email protected] or
[email protected]
NO MORE HAGGLING ABOUT THE PRICE!!!!!!!!
LOTS OF COMICS FOR $1, $2, or $3 LOOK AT LIST!!!!!
Shipping is $2 for 1-3 comics. For more than 3, the price will be determined by the volume of the purchase (I may have to use a big heavy box for large orders which costs more to mail).
For all those who have bought comics from me, thanks!!!
All comics are near mint unless otherwise noted (my books were graded by
mile high comics and other comic professional collectors, not me!)
Here is the list:
Incredible Hulk
156 (vs another Hulk) $3
195 $2
196 $2
246 (vs Captain Marvel) $1
248 $1
249 $1
250 (Double size issue vs Silver Surfer) $5
255 (vs Thor) $1
279 $1
300 $2
312 $2
313 $1
316 (vs Bi Coastal Avengers) $1
347 $1
348 $1
350 (vs Thing) $2
354 $1
358 $1
360 $1
362 (vs Werewolf By Night) $2
364 $1
365 $1
366 $1
379 (1 copy) $5
Punisher
50 $1
57 $2
Punisher War Journal
29 (Ghost Rider) $2
30 (Ghost Rider) $2
Punisher Armory
1 $4
2 $2
Original Ghost Rider Rides Again (Reprint)
1 $1
Ghost Rider (old series)
37 $3
43 (vs Johnny Blaze) $3
77 (2 copies, origin of GR dream) $4 each
Ghost Rider (new series)
15 (1st print, Green glow in dark cover, 1 copy) $5
15 (2nd print, gold cover w/ glow cover) $3
Web of Spiderman
56 (2 copies) $2 each
60 $3
69 (vs Hulk, 1 copy left!!!) $2
70 (SpiderHulk, 1 copy left!!!) $2
71 $1
72 $1
78 $1
Deadly Foes of Spiderman
1 (2 copies) $2 each
2 $2
3 $2
Amazing Spiderman vs Dr. Octopus (special NACME issue) $2
Amazing Spiderman
350 (vs Dr. Doom, 1 copy LEFT!!!) $2
Spiderman (1990)
1 (silver, not bagged) $4
6 $3
7 $3
8 (2 copies) $2 each
9 (w/ Wolverine, 1 COPY LEFT!!!) $2
10 $2
11 $1
13 $5
16 $1
New Warriors
1 (gold cover) $2
8 $4
10 $2
11 $1
12 $1
13 $1
14 (w/ Darkhawk) $1
15 $1
Superman Man of Steel #1 $2
Superman (new)
53 (2 copies) $1 each
55 $1
56 $1
Adventures of Superman
479 $1
Annual #3 $1
Superman Annual #3 (Armegedon 2001 tie in) $1
Action Comics #666 $1
Avengers West Coast #69 (Hawkeye vs US Agent) $1
Batman
465 (Robin returns) $2
466 $1
467 $1
Annual #15 (Armegedon 2001 tie in) $3
Captain America
230 (vs Hulk) $2
257 (vs Hulk) $1
Armegedon 2001
1 $4
2 $2
Foolkiller #1 $2
Infinity Gauntlet
1 $6
4 $3
5 $3
Double Dragon #1 $1
Deathlok (series)
2 $1
Transformers #80 (last issue) $2
Wonder Man
1 $1
2 $1
Flaming Carrot #25 (w/ Ninja Turtles) $2
The Comet #1 $1
Legend of the Shield #1 $1
Justice Society of America
1 $1
2 $1
3 $1
4 $1
Official movie mag from Turtles II movie (sealed w/ Jelloman comic) $5
Robin
1 (1 copies w/ poster) $3
1 (3rd print) $1
5 (6 copies) $1 each
Guardians of the Galaxy
1 $6
2 $3
3 $2
4 $2
5 $2
6 $2
7 $2
8 $2
9 (2 copies) $3 each
10 $2
11 $2
12 $1
13 $3
14 $3
15 $1
16 $1
17 $1
18 (2 copies) $2 each
Superman vs Amazing Spiderman (oversized issue from 70's) $7
DarkHawk
1 (3 copies) $8 each
2 (2 copies) $6 each
3 $5
4 $4
5 $4
6 $3
7 $2
8 $2
9 $3
10 $1
Thor
246 $1
428 $1
429 (vs Juggernaut) $2
430 (w/ Ghost Rider) $1
431 $1
432 (Thor vs Loki, 2 copies) $3 each
433 (new Thor) $2
Annual #16 $1
What if....
13 $1
23 $1
25 $2
26 $1
Alpha Flight
29 $1
51 $6
53 $6
94 (vs Fant. 4) $1
New Mutants
22 $2
100 (last issue, 1st look at X-Force, 1st print, 2 copies) $5 each
100 (2nd print, gold cover) $4
Flash (new)
43 $1
48 $1
49 $1
50 $2
51 $1
Annual #4 $1
X-Men (new)
1 (all 5 covers) $1 each but $2 for magneto foldout cover
Uncanny X-Men
191 $3
215 $2
255 (2 copies) $2 each
258 $6
268 (1 sold,1 copy left!, Lee reg artist) $10
275 (1 COPY LEFT 1st print) $6
275 (gold 2nd print) $3
276 $3
277 $3
278 $2
279 $2
280 $2
281 $3
282 $4
283 $6
Defenders
52 (Hulk vs Sub Mariner) $2
Fantastic Four
347 $4
348 $2
349 (3 copies) $2 each
Wolverine
11 $3
20 $2
41 (w/ Cable, 2 copies) $6 each
42 $4
43 $3
Silver Surfer (1987)
1 $6
2 $3
3 $3
4 $3
5 $2
6 $2
8 $2
22 $2
24 $2
32 $2
49 $2
50 (Foil cover, only 1 copy left!!) $6
51 $2
52 $2
53 $1
54 $1
55 $1
56 $1
58 $2
59 $2
Avengers
326 $3
328 (origin of Rage) $3
X-Factor
40 $6
67 $3
68 $6
71 $3
73 $1
Quasar
21 $1
22 $1
23 $1
24 $1
Green Lantern (1990)
3 $2
9 (2 copies) $1 each
10 $1
11 $1
12 $1
Toxic Avenger
1 (3 copies) $1 each
2 $1
Sleepwalker
1 (3 copies) $2 each
3 $1
7 $1
Kool Aid Man #1 (sealed in white bag, 2 copies) $2 each
X-Force
1 (bagged w/ Cable Card) $4
1 (bagged w/ Shatterstar Card) $3
2 $2
3 $1
4 $1
NFL Superpro
1 $1
Dr. Strange #31 $1
Hawkworld Annual #2 (2nd print, Armegedon 2001 tie in) $1
Hawk & Dove Annual #2 (Armegedon 2001 tie in) $1
Justice League of America Annual #5 (Armegedon 2001 tie in) $1
Send all bids and comments to
[email protected]
Thanks
Sam (the "ex" comic book collector)
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/misc.forsale/76216 | 6 | misc_forsale_76216 | [('ok', 'JJ'), ('instead', 'RB'), ('of', 'IN'), ('holding', 'VBG'), ('an', 'DT'), ('auction', 'NN'), ('have', 'VBP'), ('decided', 'VBN'), ('to', 'TO'), ('compute', 'VB'), ('prices', 'NNS'), ('for', 'IN'), ('each', 'DT'), ('comic', 'NN'), ('after', 'IN'), ('many', 'JJ'), ('suggestions', 'NNS'), (').', 'IN'), ('these', 'DT'), ('are', 'VBP'), ('the', 'DT'), ('most', 'RBS'), ('reasonable', 'JJ'), ('prices', 'NNS'), ('can', 'MD'), ('give', 'VB'), ('not', 'RB'), ('negotiable', 'JJ'), (').', 'NNS'), ('if', 'IN'), ('you', 'PRP'), ('would', 'MD'), ('like', 'VB'), ('to', 'TO'), ('purchase', 'VB'), ('comic', 'JJ'), ('or', 'CC'), ('group', 'NN'), ('),', 'VBP'), ('simply', 'RB'), ('email', 'VB'), ('me', 'PRP'), ('with', 'IN'), ('the', 'DT'), ('title', 'NN'), ('and', 'CC'), ('issue', 'VB'), ("#'", 'NNP'), ('you', 'PRP'), ('want', 'VBP'), ('the', 'DT'), ('price', 'NN'), ('for', 'IN'), ('each', 'DT'), ('issue', 'NN'), ('is', 'VBZ'), ('shown', 'VBN'), ('beside', 'IN'), ('each', 'DT'), ('comic', 'JJ'), ('first', 'JJ'), ('come', 'VBN'), ('first', 'RB'), ('served', 'VBN'), ('!!!', 'NN'), ('there', 'EX'), ('is', 'VBZ'), ('no', 'DT'), ('more', 'RBR'), ('bidding', 'JJ'), ('meet', 'NN'), ('my', 'PRP$'), ('price', 'NN'), ('and', 'CC'), ('it', 'PRP'), ('is', 'VBZ'), ('yours', 'NNS'), ('can', 'MD'), ('be', 'VB'), ('reached', 'VBN'), ('at', 'IN'), ('this', 'DT'), ('email', 'NN'), ('address', 'NN'), ('or', 'CC'), ('or', 'CC'), ('or', 'CC'), ('no', 'DT'), ('more', 'RBR'), ('haggling', 'VBG'), ('about', 'IN'), ('the', 'DT'), ('price', 'NN'), ('!!!!!!!!', 'NNP'), ('lots', 'NNS'), ('of', 'IN'), ('comics', 'NNS'), ('for', 'IN'), ('or', 'CC'), ('look', 'VB'), ('at', 'IN'), ('list', 'NN'), ('!!!!!', 'NN'), ('shipping', 'NN'), ('is', 'VBZ'), ('for', 'IN'), ('comics', 'NNS'), ('for', 'IN'), ('more', 'JJR'), ('than', 'IN'), ('the', 'DT'), ('price', 'NN'), ('will', 'MD'), ('be', 'VB'), ('determined', 'VBN'), ('by', 'IN'), ('the', 'DT'), ('volume', 'NN'), ('of', 'IN'), ('the', 'DT'), ('purchase', 'NN'), ('may', 'MD'), ('have', 'VB'), ('to', 'TO'), ('use', 'VB'), ('big', 'JJ'), ('heavy', 'NNS'), ('box', 'NN'), ('for', 'IN'), ('large', 'JJ'), ('orders', 'NNS'), ('which', 'WDT'), ('costs', 'VBZ'), ('more', 'JJR'), ('to', 'TO'), ('mail', 'VB'), (').', 'NN'), ('for', 'IN'), ('all', 'PDT'), ('those', 'DT'), ('who', 'WP'), ('have', 'VBP'), ('bought', 'VBN'), ('comics', 'NNS'), ('from', 'IN'), ('me', 'PRP'), ('thanks', 'NNS'), ('!!!', 'VBP'), ('all', 'DT'), ('comics', 'NNS'), ('are', 'VBP'), ('near', 'IN'), ('mint', 'NN'), ('unless', 'IN'), ('otherwise', 'RB'), ('noted', 'VBN'), ('my', 'PRP$'), ('books', 'NNS'), ('were', 'VBD'), ('graded', 'VBN'), ('by', 'IN'), ('mile', 'JJ'), ('high', 'JJ'), ('comics', 'NNS'), ('and', 'CC'), ('other', 'JJ'), ('comic', 'JJ'), ('professional', 'JJ'), ('collectors', 'NNS'), ('not', 'RB'), ('me', 'PRP'), ('!)', 'VBP'), ('here', 'RB'), ('is', 'VBZ'), ('the', 'DT'), ('list', 'NN'), ('incredible', 'JJ'), ('hulk', 'NN'), ('156', 'CD'), ('vs', 'NN'), ('another', 'DT'), ('hulk', 'NN'), ('195', 'CD'), ('196', 'CD'), ('246', 'CD'), ('vs', 'NN'), ('captain', 'NN'), ('marvel', 'VBD'), ('248', 'CD'), ('249', 'CD'), ('250', 'CD'), ('double', 'JJ'), ('size', 'NN'), ('issue', 'NN'), ('vs', 'NN'), ('silver', 'VBD'), ('surfer', 'JJR'), ('255', 'CD'), ('vs', 'NN'), ('thor', 'NN'), ('279', 'CD'), ('300', 'CD'), ('312', 'CD'), ('313', 'CD'), ('316', 'CD'), ('vs', 'NN'), ('bi', 'NN'), ('coastal', 'JJ'), ('avengers', 'NNS'), ('347', 'CD'), ('348', 'CD'), ('350', 'CD'), ('vs', 'JJ'), ('thing', 'NN'), ('354', 'CD'), ('358', 'CD'), ('360', 'CD'), ('362', 'CD'), ('vs', 'NN'), ('werewolf', 'NN'), ('by', 'IN'), ('night', 'NN'), ('364', 'CD'), ('365', 'CD'), ('366', 'CD'), ('379', 'CD'), ('copy', 'NN'), ('punisher', 'RB'), ('50', 'CD'), ('57', 'CD'), ('punisher', 'JJ'), ('war', 'NN'), ('journal', 'NN'), ('29', 'CD'), ('ghost', 'NN'), ('rider', 'NN'), ('30', 'CD'), ('ghost', 'NN'), ('rider', 'NN'), ('punisher', 'NN'), ('armory', 'NN'), ('original', 'JJ'), ('ghost', 'NN'), ('rider', 'NN'), ('rides', 'NNS'), ('again', 'RB'), ('reprint', 'VBP'), ('ghost', 'NN'), ('rider', 'NN'), ('old', 'JJ'), ('series', 'NN'), ('37', 'CD'), ('43', 'CD'), ('vs', 'NN'), ('johnny', 'NN'), ('blaze', 'VBD'), ('77', 'CD'), ('copies', 'NNS'), ('origin', 'NN'), ('of', 'IN'), ('gr', 'JJ'), ('dream', 'NN'), ('each', 'DT'), ('ghost', 'NN'), ('rider', 'VB'), ('new', 'JJ'), ('series', 'NN'), ('15', 'CD'), ('1st', 'CD'), ('print', 'NN'), ('green', 'JJ'), ('glow', 'NN'), ('in', 'IN'), ('dark', 'JJ'), ('cover', 'NN'), ('copy', 'NN'), ('15', 'CD'), ('2nd', 'CD'), ('print', 'NN'), ('gold', 'NN'), ('cover', 'NN'), ('glow', 'NN'), ('cover', 'NN'), ('web', 'NN'), ('of', 'IN'), ('spiderman', 'JJ'), ('56', 'CD'), ('copies', 'NNS'), ('each', 'DT'), ('60', 'CD'), ('69', 'CD'), ('vs', 'NN'), ('hulk', 'NN'), ('copy', 'NN'), ('left', 'VBD'), ('!!!)', 'JJ'), ('70', 'CD'), ('spiderhulk', 'NN'), ('copy', 'NN'), ('left', 'VBD'), ('!!!)', 'JJ'), ('71', 'CD'), ('72', 'CD'), ('78', 'CD'), ('deadly', 'RB'), ('foes', 'NNS'), ('of', 'IN'), ('spiderman', 'JJ'), ('copies', 'NNS'), ('each', 'DT'), ('amazing', 'VBG'), ('spiderman', 'NN'), ('vs', 'NN'), ('dr', 'NN'), ('octopus', 'IN'), ('special', 'JJ'), ('nacme', 'JJ'), ('issue', 'NN'), ('amazing', 'VBG'), ('spiderman', 'JJ'), ('350', 'CD'), ('vs', 'NN'), ('dr', 'NN'), ('doom', 'NN'), ('copy', 'NN'), ('left', 'VBD'), ('!!!)', 'NNP'), ('spiderman', 'JJ'), ('1990', 'CD'), ('silver', 'NN'), ('not', 'RB'), ('bagged', 'VBN'), ('copies', 'NNS'), ('each', 'DT'), ('wolverine', 'NN'), ('copy', 'NN'), ('left', 'VBD'), ('!!!)', 'JJ'), ('10', 'CD'), ('11', 'CD'), ('13', 'CD'), ('16', 'CD'), ('new', 'JJ'), ('warriors', 'NNS'), ('gold', 'VBP'), ('cover', 'RB'), ('10', 'CD'), ('11', 'CD'), ('12', 'CD'), ('13', 'CD'), ('14', 'CD'), ('darkhawk', 'NN'), ('15', 'CD'), ('superman', 'JJ'), ('man', 'NN'), ('of', 'IN'), ('steel', 'NN'), ('superman', 'JJ'), ('new', 'JJ'), ('53', 'CD'), ('copies', 'NNS'), ('each', 'DT'), ('55', 'CD'), ('56', 'CD'), ('adventures', 'NNS'), ('of', 'IN'), ('superman', 'JJ'), ('479', 'CD'), ('annual', 'JJ'), ('superman', 'JJ'), ('annual', 'JJ'), ('armegedon', 'NN'), ('2001', 'CD'), ('tie', 'NN'), ('in', 'IN'), ('action', 'NN'), ('comics', 'NNS'), ('666', 'CD'), ('avengers', 'NNS'), ('west', 'VBP'), ('coast', 'NN'), ('69', 'CD'), ('hawkeye', 'NN'), ('vs', 'NN'), ('us', 'PRP'), ('agent', 'JJ'), ('batman', 'JJ'), ('465', 'CD'), ('robin', 'NN'), ('returns', 'NNS'), ('466', 'CD'), ('467', 'CD'), ('annual', 'JJ'), ('15', 'CD'), ('armegedon', 'JJ'), ('2001', 'CD'), ('tie', 'NN'), ('in', 'IN'), ('captain', 'NN'), ('america', 'NN'), ('230', 'CD'), ('vs', 'NN'), ('hulk', 'NN'), ('257', 'CD'), ('vs', 'NN'), ('hulk', 'NN'), ('armegedon', 'NN'), ('2001', 'CD'), ('foolkiller', 'NN'), ('infinity', 'NN'), ('gauntlet', 'NN'), ('double', 'JJ'), ('dragon', 'NN'), ('deathlok', 'NN'), ('series', 'NN'), ('transformers', 'NNS'), ('80', 'CD'), ('last', 'JJ'), ('issue', 'NN'), ('wonder', 'NN'), ('man', 'NN'), ('flaming', 'VBG'), ('carrot', 'NN'), ('25', 'CD'), ('ninja', 'NN'), ('turtles', 'VBZ'), ('the', 'DT'), ('comet', 'JJ'), ('legend', 'NN'), ('of', 'IN'), ('the', 'DT'), ('shield', 'JJ'), ('justice', 'NN'), ('society', 'NN'), ('of', 'IN'), ('america', 'JJ'), ('official', 'JJ'), ('movie', 'NN'), ('mag', 'NN'), ('from', 'IN'), ('turtles', 'NNS'), ('ii', 'JJ'), ('movie', 'NN'), ('sealed', 'VBN'), ('jelloman', 'JJ'), ('comic', 'JJ'), ('robin', 'NN'), ('copies', 'NNS'), ('poster', 'VBP'), ('3rd', 'CD'), ('print', 'NN'), ('copies', 'NNS'), ('each', 'DT'), ('guardians', 'NNS'), ('of', 'IN'), ('the', 'DT'), ('galaxy', 'NN'), ('copies', 'VBZ'), ('each', 'DT'), ('10', 'CD'), ('11', 'CD'), ('12', 'CD'), ('13', 'CD'), ('14', 'CD'), ('15', 'CD'), ('16', 'CD'), ('17', 'CD'), ('18', 'CD'), ('copies', 'NNS'), ('each', 'DT'), ('superman', 'NN'), ('vs', 'NN'), ('amazing', 'VBG'), ('spiderman', 'NN'), ('oversized', 'VBN'), ('issue', 'NN'), ('from', 'IN'), ('70', 'CD'), ('darkhawk', 'NN'), ('copies', 'NNS'), ('each', 'DT'), ('copies', 'NNS'), ('each', 'DT'), ('10', 'CD'), ('thor', 'NN'), ('246', 'CD'), ('428', 'CD'), ('429', 'CD'), ('vs', 'NN'), ('juggernaut', 'NN'), ('430', 'CD'), ('ghost', 'NN'), ('rider', 'NN'), ('431', 'CD'), ('432', 'CD'), ('thor', 'NN'), ('vs', 'NN'), ('loki', 'NN'), ('copies', 'NNS'), ('each', 'DT'), ('433', 'CD'), ('new', 'JJ'), ('thor', 'NN'), ('annual', 'JJ'), ('16', 'CD'), ('what', 'WP'), ('if', 'IN'), ('....', 'JJ'), ('13', 'CD'), ('23', 'CD'), ('25', 'CD'), ('26', 'CD'), ('alpha', 'NN'), ('flight', 'NN'), ('29', 'CD'), ('51', 'CD'), ('53', 'CD'), ('94', 'CD'), ('vs', 'NN'), ('fant', 'JJ'), ('new', 'JJ'), ('mutants', 'NNS'), ('22', 'CD'), ('100', 'CD'), ('last', 'JJ'), ('issue', 'NN'), ('1st', 'CD'), ('look', 'NN'), ('at', 'IN'), ('force', 'NN'), ('1st', 'CD'), ('print', 'NN'), ('copies', 'NNS'), ('each', 'DT'), ('100', 'CD'), ('2nd', 'CD'), ('print', 'NN'), ('gold', 'NN'), ('cover', 'NN'), ('flash', 'VBP'), ('new', 'JJ'), ('43', 'CD'), ('48', 'CD'), ('49', 'CD'), ('50', 'CD'), ('51', 'CD'), ('annual', 'JJ'), ('men', 'NNS'), ('new', 'JJ'), ('all', 'DT'), ('covers', 'NNS'), ('each', 'DT'), ('but', 'CC'), ('for', 'IN'), ('magneto', 'NN'), ('foldout', 'NN'), ('cover', 'NN'), ('uncanny', 'JJ'), ('men', 'NNS'), ('191', 'CD'), ('215', 'CD'), ('255', 'CD'), ('copies', 'NNS'), ('each', 'DT'), ('258', 'CD'), ('268', 'CD'), ('sold', 'VBN'), ('copy', 'NN'), ('left', 'VBD'), ('!,', 'JJ'), ('lee', 'JJ'), ('reg', 'NNS'), ('artist', 'VBP'), ('10', 'CD'), ('275', 'CD'), ('copy', 'NN'), ('left', 'VBD'), ('1st', 'CD'), ('print', 'NN'), ('275', 'CD'), ('gold', 'NN'), ('2nd', 'CD'), ('print', 'NN'), ('276', 'CD'), ('277', 'CD'), ('278', 'CD'), ('279', 'CD'), ('280', 'CD'), ('281', 'CD'), ('282', 'CD'), ('283', 'CD'), ('defenders', 'NNS'), ('52', 'CD'), ('hulk', 'NN'), ('vs', 'NN'), ('sub', 'NN'), ('mariner', 'RBR'), ('fantastic', 'JJ'), ('four', 'CD'), ('347', 'CD'), ('348', 'CD'), ('349', 'CD'), ('copies', 'NNS'), ('each', 'DT'), ('wolverine', 'VBP'), ('11', 'CD'), ('20', 'CD'), ('41', 'CD'), ('cable', 'NN'), ('copies', 'NNS'), ('each', 'DT'), ('42', 'CD'), ('43', 'CD'), ('silver', 'NN'), ('surfer', 'NN'), ('1987', 'CD'), ('22', 'CD'), ('24', 'CD'), ('32', 'CD'), ('49', 'CD'), ('50', 'CD'), ('foil', 'NN'), ('cover', 'NN'), ('only', 'RB'), ('copy', 'VBZ'), ('left', 'VBD'), ('!!)', 'JJ'), ('51', 'CD'), ('52', 'CD'), ('53', 'CD'), ('54', 'CD'), ('55', 'CD'), ('56', 'CD'), ('58', 'CD'), ('59', 'CD'), ('avengers', 'NNS'), ('326', 'CD'), ('328', 'CD'), ('origin', 'NN'), ('of', 'IN'), ('rage', 'NN'), ('factor', 'NN'), ('40', 'CD'), ('67', 'CD'), ('68', 'CD'), ('71', 'CD'), ('73', 'CD'), ('quasar', 'NN'), ('21', 'CD'), ('22', 'CD'), ('23', 'CD'), ('24', 'CD'), ('green', 'JJ'), ('lantern', 'JJ'), ('1990', 'CD'), ('copies', 'NNS'), ('each', 'DT'), ('10', 'CD'), ('11', 'CD'), ('12', 'CD'), ('toxic', 'NN'), ('avenger', 'NN'), ('copies', 'NNS'), ('each', 'DT'), ('sleepwalker', 'NN'), ('copies', 'VBZ'), ('each', 'DT'), ('kool', 'NN'), ('aid', 'NN'), ('man', 'NN'), ('sealed', 'VBD'), ('in', 'IN'), ('white', 'JJ'), ('bag', 'NN'), ('copies', 'NNS'), ('each', 'DT'), ('force', 'NN'), ('bagged', 'VBD'), ('cable', 'NN'), ('card', 'NN'), ('bagged', 'VBD'), ('shatterstar', 'JJ'), ('card', 'NN'), ('nfl', 'JJ'), ('superpro', 'JJ'), ('dr', 'NN'), ('strange', 'JJ'), ('31', 'CD'), ('hawkworld', 'NN'), ('annual', 'JJ'), ('2nd', 'CD'), ('print', 'NN'), ('armegedon', 'NN'), ('2001', 'CD'), ('tie', 'NN'), ('in', 'IN'), ('hawk', 'NN'), ('dove', 'VBP'), ('annual', 'JJ'), ('armegedon', 'NN'), ('2001', 'CD'), ('tie', 'NN'), ('in', 'IN'), ('justice', 'NN'), ('league', 'NN'), ('of', 'IN'), ('america', 'JJ'), ('annual', 'JJ'), ('armegedon', 'NN'), ('2001', 'CD'), ('tie', 'NN'), ('in', 'IN'), ('send', 'NN'), ('all', 'DT'), ('bids', 'NNS'), ('and', 'CC'), ('comments', 'NNS'), ('to', 'TO'), ('thanks', 'NNS'), ('sam', 'VB'), ('the', 'DT'), ('ex', 'NN'), ('comic', 'JJ'), ('book', 'NN'), ('collector', 'NN')] | ['ok', 'instead', 'hold', 'auction', 'decide', 'compute', 'price', 'comic', 'many', 'suggestion', 'reasonable', 'price', 'give', 'negotiable', 'would', 'like', 'purchase', 'comic', 'group', 'simply', 'email', 'title', 'issue', 'want', 'price', 'issue', 'show', 'beside', 'comic', 'first', 'come', 'first', 'serve', 'bidding', 'meet', 'price', 'reach', 'email', 'address', 'haggle', 'price', 'lot', 'comic', 'look', 'list', 'shipping', 'comic', 'price', 'determine', 'volume', 'purchase', 'may', 'use', 'big', 'heavy', 'box', 'large', 'order', 'cost', 'mail', 'buy', 'comic', 'thanks', 'comic', 'near', 'mint', 'unless', 'otherwise', 'note', 'book', 'grade', 'mile', 'high', 'comic', 'comic', 'professional', 'collector', 'list', 'incredible', 'hulk', 'v', 'another', 'hulk', 'v', 'captain', 'marvel', 'double', 'size', 'issue', 'v', 'silver', 'surfer', 'v', 'thor', 'v', 'bi', 'coastal', 'avenger', 'vs', 'thing', 'v', 'werewolf', 'night', 'copy', 'punisher', 'punisher', 'war', 'journal', 'ghost', 'rider', 'ghost', 'rider', 'punisher', 'armory', 'original', 'ghost', 'rider', 'ride', 'reprint', 'ghost', 'rider', 'old', 'series', 'v', 'johnny', 'blaze', 'copy', 'origin', 'gr', 'dream', 'ghost', 'rider', 'new', 'series', 'print', 'green', 'glow', 'dark', 'cover', 'copy', 'print', 'gold', 'cover', 'glow', 'cover', 'web', 'spiderman', 'copy', 'v', 'hulk', 'copy', 'leave', 'spiderhulk', 'copy', 'leave', 'deadly', 'foe', 'spiderman', 'copy', 'amaze', 'spiderman', 'v', 'dr', 'octopus', 'special', 'nacme', 'issue', 'amaze', 'spiderman', 'v', 'dr', 'doom', 'copy', 'leave', 'spiderman', 'silver', 'bag', 'copy', 'wolverine', 'copy', 'leave', 'new', 'warrior', 'gold', 'cover', 'darkhawk', 'superman', 'man', 'steel', 'superman', 'new', 'copy', 'adventure', 'superman', 'annual', 'superman', 'annual', 'armegedon', 'tie', 'action', 'comic', 'avenger', 'west', 'coast', 'hawkeye', 'v', 'u', 'agent', 'batman', 'robin', 'return', 'annual', 'armegedon', 'tie', 'captain', 'america', 'v', 'hulk', 'v', 'hulk', 'armegedon', 'foolkiller', 'infinity', 'gauntlet', 'double', 'dragon', 'deathlok', 'series', 'transformer', 'last', 'issue', 'wonder', 'man', 'flame', 'carrot', 'ninja', 'turtle', 'comet', 'legend', 'shield', 'justice', 'society', 'america', 'official', 'movie', 'mag', 'turtle', 'ii', 'movie', 'seal', 'jelloman', 'comic', 'robin', 'copy', 'poster', 'print', 'copy', 'guardian', 'galaxy', 'copy', 'copy', 'superman', 'v', 'amaze', 'spiderman', 'oversized', 'issue', 'darkhawk', 'copy', 'copy', 'thor', 'v', 'juggernaut', 'ghost', 'rider', 'thor', 'v', 'loki', 'copy', 'new', 'thor', 'annual', 'alpha', 'flight', 'v', 'fant', 'new', 'mutant', 'last', 'issue', 'look', 'force', 'print', 'copy', 'print', 'gold', 'cover', 'flash', 'new', 'annual', 'men', 'new', 'cover', 'magneto', 'foldout', 'cover', 'uncanny', 'men', 'copy', 'sell', 'copy', 'leave', 'lee', 'reg', 'artist', 'copy', 'leave', 'print', 'gold', 'print', 'defender', 'hulk', 'v', 'sub', 'mariner', 'fantastic', 'four', 'copy', 'wolverine', 'cable', 'copy', 'silver', 'surfer', 'foil', 'cover', 'copy', 'leave', 'avenger', 'origin', 'rage', 'factor', 'quasar', 'green', 'lantern', 'copy', 'toxic', 'avenger', 'copy', 'sleepwalker', 'copy', 'kool', 'aid', 'man', 'seal', 'white', 'bag', 'copy', 'force', 'bag', 'cable', 'card', 'bag', 'shatterstar', 'card', 'nfl', 'superpro', 'dr', 'strange', 'hawkworld', 'annual', 'print', 'armegedon', 'tie', 'hawk', 'dive', 'annual', 'armegedon', 'tie', 'justice', 'league', 'america', 'annual', 'armegedon', 'tie', 'send', 'bid', 'comment', 'thanks', 'sam', 'ex', 'comic', 'book', 'collector'] | ['reasonable_price', 'would_like', 'issue_want', 'want_price', 'first_come', 'come_first', 'first_serve', 'email_address', 'may_use', 'use_big', 'comic_near', 'near_mint', 'unless_otherwise', 'otherwise_note', 'mile_high', 'incredible_hulk', 'hulk_v', 'hulk_v', 'double_size', 'silver_surfer', 'thor_v', 'ghost_rider', 'ghost_rider', 'ghost_rider', 'ghost_rider', 'ghost_rider', 'copy_print', 'print_gold', 'gold_cover', 'v_hulk', 'copy_leave', 'copy_leave', 'amaze_spiderman', 'amaze_spiderman', 'copy_leave', 'copy_leave', 'new_warrior', 'gold_cover', 'annual_armegedon', 'armegedon_tie', 'west_coast', 'annual_armegedon', 'armegedon_tie', 'captain_america', 'v_hulk', 'hulk_v', 'v_hulk', 'last_issue', 'ninja_turtle', 'print_copy', 'copy_copy', 'amaze_spiderman', 'copy_copy', 'thor_v', 'ghost_rider', 'thor_v', 'alpha_flight', 'new_mutant', 'last_issue', 'print_copy', 'copy_print', 'print_gold', 'gold_cover', 'copy_leave', 'copy_leave', 'print_gold', 'hulk_v', 'silver_surfer', 'copy_leave', 'kool_aid', 'bag_shatterstar', 'shatterstar_card', 'armegedon_tie', 'annual_armegedon', 'armegedon_tie', 'annual_armegedon', 'armegedon_tie', 'comment_thanks', 'comic_book'] | misc_forsale_76216 |@lemmatized ok:1 instead:1 hold:1 auction:1 decide:1 compute:1 price:6 comic:12 many:1 suggestion:1 reasonable:1 give:1 negotiable:1 would:1 like:1 purchase:2 group:1 simply:1 email:2 title:1 issue:7 want:1 show:1 beside:1 first:2 come:1 serve:1 bidding:1 meet:1 reach:1 address:1 haggle:1 lot:1 look:2 list:2 shipping:1 determine:1 volume:1 may:1 use:1 big:1 heavy:1 box:1 large:1 order:1 cost:1 mail:1 buy:1 thanks:2 near:1 mint:1 unless:1 otherwise:1 note:1 book:2 grade:1 mile:1 high:1 professional:1 collector:2 incredible:1 hulk:6 v:18 another:1 captain:2 marvel:1 double:2 size:1 silver:3 surfer:2 thor:4 bi:1 coastal:1 avenger:4 vs:1 thing:1 werewolf:1 night:1 copy:29 punisher:3 war:1 journal:1 ghost:6 rider:6 armory:1 original:1 ride:1 reprint:1 old:1 series:3 johnny:1 blaze:1 origin:2 gr:1 dream:1 new:7 print:8 green:2 glow:2 dark:1 cover:8 gold:4 web:1 spiderman:6 leave:7 spiderhulk:1 deadly:1 foe:1 amaze:3 dr:3 octopus:1 special:1 nacme:1 doom:1 bag:4 wolverine:2 warrior:1 darkhawk:2 superman:5 man:3 steel:1 adventure:1 annual:8 armegedon:6 tie:5 action:1 west:1 coast:1 hawkeye:1 u:1 agent:1 batman:1 robin:2 return:1 america:3 foolkiller:1 infinity:1 gauntlet:1 dragon:1 deathlok:1 transformer:1 last:2 wonder:1 flame:1 carrot:1 ninja:1 turtle:2 comet:1 legend:1 shield:1 justice:2 society:1 official:1 movie:2 mag:1 ii:1 seal:2 jelloman:1 poster:1 guardian:1 galaxy:1 oversized:1 juggernaut:1 loki:1 alpha:1 flight:1 fant:1 mutant:1 force:2 flash:1 men:2 magneto:1 foldout:1 uncanny:1 sell:1 lee:1 reg:1 artist:1 defender:1 sub:1 mariner:1 fantastic:1 four:1 cable:2 foil:1 rage:1 factor:1 quasar:1 lantern:1 toxic:1 sleepwalker:1 kool:1 aid:1 white:1 card:2 shatterstar:1 nfl:1 superpro:1 strange:1 hawkworld:1 hawk:1 dive:1 league:1 send:1 bid:1 comment:1 sam:1 ex:1 |@bigram reasonable_price:1 would_like:1 issue_want:1 want_price:1 first_come:1 come_first:1 first_serve:1 email_address:1 may_use:1 use_big:1 comic_near:1 near_mint:1 unless_otherwise:1 otherwise_note:1 mile_high:1 incredible_hulk:1 hulk_v:4 double_size:1 silver_surfer:2 thor_v:3 ghost_rider:6 copy_print:2 print_gold:3 gold_cover:3 v_hulk:3 copy_leave:7 amaze_spiderman:3 new_warrior:1 annual_armegedon:4 armegedon_tie:5 west_coast:1 captain_america:1 last_issue:2 ninja_turtle:1 print_copy:2 copy_copy:2 alpha_flight:1 new_mutant:1 kool_aid:1 bag_shatterstar:1 shatterstar_card:1 comment_thanks:1 comic_book:1 |
4,517 |
1) make sure your hard drive is defragmented. This will speed up more than
just windows BTW. Use something like Norton's or PC Tools.
2) I _think_ that leaving the wall paper out will use less RAM and therefore
will speed up your machine but I could very will be wrong on this.
There's a good chance you've already done this but if not it may speed things
up. good luck
Morgan Bullard [email protected]
or [email protected] | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/comp.os.ms-windows.misc/9763 | 2 | comp_os_ms-windows_misc_9763 | [('make', 'VB'), ('sure', 'JJ'), ('your', 'PRP$'), ('hard', 'JJ'), ('drive', 'NN'), ('is', 'VBZ'), ('defragmented', 'VBN'), ('this', 'DT'), ('will', 'MD'), ('speed', 'VB'), ('up', 'RP'), ('more', 'JJR'), ('than', 'IN'), ('just', 'RB'), ('windows', 'NNS'), ('btw', 'VBP'), ('use', 'IN'), ('something', 'NN'), ('like', 'IN'), ('norton', 'NN'), ('or', 'CC'), ('pc', 'NN'), ('tools', 'NNS'), ('_think_', 'VBP'), ('that', 'IN'), ('leaving', 'VBG'), ('the', 'DT'), ('wall', 'NN'), ('paper', 'NN'), ('out', 'RB'), ('will', 'MD'), ('use', 'VB'), ('less', 'JJR'), ('ram', 'NN'), ('and', 'CC'), ('therefore', 'RB'), ('will', 'MD'), ('speed', 'VB'), ('up', 'RP'), ('your', 'PRP$'), ('machine', 'NN'), ('but', 'CC'), ('could', 'MD'), ('very', 'RB'), ('will', 'MD'), ('be', 'VB'), ('wrong', 'JJ'), ('on', 'IN'), ('this', 'DT'), ('there', 'EX'), ('good', 'JJ'), ('chance', 'NN'), ('you', 'PRP'), ('ve', 'VBP'), ('already', 'RB'), ('done', 'VBN'), ('this', 'DT'), ('but', 'CC'), ('if', 'IN'), ('not', 'RB'), ('it', 'PRP'), ('may', 'MD'), ('speed', 'VB'), ('things', 'NNS'), ('up', 'RP'), ('good', 'JJ'), ('luck', 'NN'), ('morgan', 'JJ'), ('bullard', 'NN'), ('or', 'CC')] | ['make', 'sure', 'hard', 'drive', 'defragmented', 'speed', 'window', 'btw', 'use', 'something', 'like', 'norton', 'pc', 'tool', 'leave', 'wall', 'paper', 'use', 'less', 'ram', 'therefore', 'speed', 'machine', 'could', 'wrong', 'good', 'chance', 'already', 'may', 'speed', 'thing', 'good', 'luck', 'morgan', 'bullard'] | ['make_sure', 'hard_drive', 'use_something', 'something_like', 'pc_tool', 'use_less', 'could_wrong', 'good_chance', 'speed_thing', 'thing_good', 'good_luck'] | comp_os_ms-windows_misc_9763 |@lemmatized make:1 sure:1 hard:1 drive:1 defragmented:1 speed:3 window:1 btw:1 use:2 something:1 like:1 norton:1 pc:1 tool:1 leave:1 wall:1 paper:1 less:1 ram:1 therefore:1 machine:1 could:1 wrong:1 good:2 chance:1 already:1 may:1 thing:1 luck:1 morgan:1 bullard:1 |@bigram make_sure:1 hard_drive:1 use_something:1 something_like:1 pc_tool:1 use_less:1 could_wrong:1 good_chance:1 speed_thing:1 thing_good:1 good_luck:1 |
4,518 | Hi,
I'm looking for a X-Windows tool that can display data (in a
2D plot) in real time with a couple different signals.
Anybody know of such a gem? Please Email me as I do not read
this group often. | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/comp.windows.x/67282 | 5 | comp_windows_x_67282 | [('hi', 'NN'), ('looking', 'VBG'), ('for', 'IN'), ('windows', 'NNS'), ('tool', 'VBP'), ('that', 'IN'), ('can', 'MD'), ('display', 'VB'), ('data', 'NNS'), ('in', 'IN'), ('2d', 'CD'), ('plot', 'NN'), ('in', 'IN'), ('real', 'JJ'), ('time', 'NN'), ('with', 'IN'), ('couple', 'JJ'), ('different', 'JJ'), ('signals', 'NNS'), ('anybody', 'NN'), ('know', 'VBP'), ('of', 'IN'), ('such', 'JJ'), ('gem', 'NN'), ('please', 'NN'), ('email', 'VB'), ('me', 'PRP'), ('as', 'IN'), ('do', 'VBP'), ('not', 'RB'), ('read', 'VB'), ('this', 'DT'), ('group', 'NN'), ('often', 'RB')] | ['hi', 'look', 'window', 'tool', 'display', 'data', 'plot', 'real', 'time', 'couple', 'different', 'signal', 'anybody', 'know', 'gem', 'please', 'email', 'read', 'group', 'often'] | ['hi_look', 'look_window', 'display_data', 'real_time', 'anybody_know', 'please_email', 'email_read', 'read_group', 'group_often'] | comp_windows_x_67282 |@lemmatized hi:1 look:1 window:1 tool:1 display:1 data:1 plot:1 real:1 time:1 couple:1 different:1 signal:1 anybody:1 know:1 gem:1 please:1 email:1 read:1 group:1 often:1 |@bigram hi_look:1 look_window:1 display_data:1 real_time:1 anybody_know:1 please_email:1 email_read:1 read_group:1 group_often:1 |
4,519 | Give out the address, I'll drive by and take a look myself, then post.
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/rec.autos/102934 | 7 | rec_autos_102934 | [('give', 'VB'), ('out', 'RP'), ('the', 'DT'), ('address', 'NN'), ('ll', 'JJ'), ('drive', 'NN'), ('by', 'IN'), ('and', 'CC'), ('take', 'VB'), ('look', 'NN'), ('myself', 'PRP'), ('then', 'RB'), ('post', 'VBD')] | ['give', 'address', 'drive', 'take', 'look', 'post'] | ['give_address', 'drive_take', 'take_look'] | rec_autos_102934 |@lemmatized give:1 address:1 drive:1 take:1 look:1 post:1 |@bigram give_address:1 drive_take:1 take_look:1 |
4,520 |
Currently there are no "Velcro" jump boots as issue in
the military, there are two other kinds. One is made my
Cochran and sell for $85.00 in either the Clothing sales
store or US Cavalry (Price match at the Cav store) the
second co is also sold but somewhat cheaper in design.
Actually they don't care what you wear as long is they
are 10 eyelets high.
There is another boot called a "Tankers boot" this has
similar construction to a wellington boot except for the
boot shape and has straps that wrap around for tightness.
Nice boots
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/rec.motorcycles/104334 | 8 | rec_motorcycles_104334 | [('currently', 'RB'), ('there', 'EX'), ('are', 'VBP'), ('no', 'DT'), ('velcro', 'JJ'), ('jump', 'NN'), ('boots', 'NNS'), ('as', 'IN'), ('issue', 'NN'), ('in', 'IN'), ('the', 'DT'), ('military', 'NN'), ('there', 'EX'), ('are', 'VBP'), ('two', 'CD'), ('other', 'JJ'), ('kinds', 'NNS'), ('one', 'CD'), ('is', 'VBZ'), ('made', 'VBN'), ('my', 'PRP$'), ('cochran', 'NN'), ('and', 'CC'), ('sell', 'VB'), ('for', 'IN'), ('85', 'CD'), ('00', 'CD'), ('in', 'IN'), ('either', 'CC'), ('the', 'DT'), ('clothing', 'NN'), ('sales', 'NNS'), ('store', 'NN'), ('or', 'CC'), ('us', 'PRP'), ('cavalry', 'JJ'), ('price', 'NN'), ('match', 'NN'), ('at', 'IN'), ('the', 'DT'), ('cav', 'NN'), ('store', 'VBD'), ('the', 'DT'), ('second', 'JJ'), ('co', 'NN'), ('is', 'VBZ'), ('also', 'RB'), ('sold', 'VBN'), ('but', 'CC'), ('somewhat', 'RB'), ('cheaper', 'JJR'), ('in', 'IN'), ('design', 'NN'), ('actually', 'RB'), ('they', 'PRP'), ('don', 'VBP'), ('care', 'VB'), ('what', 'WP'), ('you', 'PRP'), ('wear', 'VBP'), ('as', 'IN'), ('long', 'RB'), ('is', 'VBZ'), ('they', 'PRP'), ('are', 'VBP'), ('10', 'CD'), ('eyelets', 'NNS'), ('high', 'JJ'), ('there', 'EX'), ('is', 'VBZ'), ('another', 'DT'), ('boot', 'NN'), ('called', 'VBN'), ('tankers', 'NNS'), ('boot', 'RBR'), ('this', 'DT'), ('has', 'VBZ'), ('similar', 'JJ'), ('construction', 'NN'), ('to', 'TO'), ('wellington', 'VB'), ('boot', 'NN'), ('except', 'IN'), ('for', 'IN'), ('the', 'DT'), ('boot', 'NN'), ('shape', 'NN'), ('and', 'CC'), ('has', 'VBZ'), ('straps', 'NNS'), ('that', 'IN'), ('wrap', 'VBP'), ('around', 'IN'), ('for', 'IN'), ('tightness', 'NN'), ('nice', 'JJ'), ('boots', 'NNS')] | ['currently', 'velcro', 'jump', 'boot', 'issue', 'military', 'two', 'kind', 'one', 'make', 'cochran', 'sell', 'either', 'clothing', 'sale', 'store', 'u', 'cavalry', 'price', 'match', 'cav', 'store', 'second', 'co', 'also', 'sell', 'somewhat', 'cheap', 'design', 'actually', 'care', 'wear', 'long', 'eyelet', 'high', 'another', 'boot', 'call', 'tanker', 'boot', 'similar', 'construction', 'wellington', 'boot', 'except', 'boot', 'shape', 'strap', 'wrap', 'around', 'tightness', 'nice', 'boot'] | ['one_make', 'also_sell', 'wrap_around'] | rec_motorcycles_104334 |@lemmatized currently:1 velcro:1 jump:1 boot:6 issue:1 military:1 two:1 kind:1 one:1 make:1 cochran:1 sell:2 either:1 clothing:1 sale:1 store:2 u:1 cavalry:1 price:1 match:1 cav:1 second:1 co:1 also:1 somewhat:1 cheap:1 design:1 actually:1 care:1 wear:1 long:1 eyelet:1 high:1 another:1 call:1 tanker:1 similar:1 construction:1 wellington:1 except:1 shape:1 strap:1 wrap:1 around:1 tightness:1 nice:1 |@bigram one_make:1 also_sell:1 wrap_around:1 |
4,521 |
Might? You'd have to have no sense of humor at all not to! My favorite
stuff are the Zero Heros, players who haven't hit homers in a long time,
the LGTGAH (who is that named after, I can't remember), and the box score
line of the week. Incidentally, I just found out that the column has been
moved to Sundays. I get my Dad to send it to me up here in Boston every
week. Great stuff! | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/rec.sport.baseball/104614 | 9 | rec_sport_baseball_104614 | [('might', 'MD'), ('you', 'PRP'), ('have', 'VBP'), ('to', 'TO'), ('have', 'VB'), ('no', 'DT'), ('sense', 'NN'), ('of', 'IN'), ('humor', 'NN'), ('at', 'IN'), ('all', 'DT'), ('not', 'RB'), ('to', 'TO'), ('my', 'PRP$'), ('favorite', 'JJ'), ('stuff', 'NN'), ('are', 'VBP'), ('the', 'DT'), ('zero', 'CD'), ('heros', 'NN'), ('players', 'NNS'), ('who', 'WP'), ('haven', 'VBP'), ('hit', 'JJR'), ('homers', 'NNS'), ('in', 'IN'), ('long', 'JJ'), ('time', 'NN'), ('the', 'DT'), ('lgtgah', 'NN'), ('who', 'WP'), ('is', 'VBZ'), ('that', 'IN'), ('named', 'VBN'), ('after', 'IN'), ('can', 'MD'), ('remember', 'VB'), ('),', 'JJ'), ('and', 'CC'), ('the', 'DT'), ('box', 'NN'), ('score', 'NN'), ('line', 'NN'), ('of', 'IN'), ('the', 'DT'), ('week', 'NN'), ('incidentally', 'RB'), ('just', 'RB'), ('found', 'VBN'), ('out', 'RP'), ('that', 'IN'), ('the', 'DT'), ('column', 'NN'), ('has', 'VBZ'), ('been', 'VBN'), ('moved', 'VBN'), ('to', 'TO'), ('sundays', 'VB'), ('get', 'VB'), ('my', 'PRP$'), ('dad', 'NN'), ('to', 'TO'), ('send', 'VB'), ('it', 'PRP'), ('to', 'TO'), ('me', 'PRP'), ('up', 'RP'), ('here', 'RB'), ('in', 'IN'), ('boston', 'NN'), ('every', 'DT'), ('week', 'NN'), ('great', 'JJ'), ('stuff', 'NN')] | ['might', 'sense', 'humor', 'favorite', 'stuff', 'zero', 'hero', 'player', 'hit', 'homer', 'long', 'time', 'lgtgah', 'name', 'remember', 'box', 'score', 'line', 'week', 'incidentally', 'find', 'column', 'move', 'sundays', 'get', 'dad', 'send', 'boston', 'every', 'week', 'great', 'stuff'] | ['sense_humor', 'hit_homer', 'long_time', 'box_score', 'every_week'] | rec_sport_baseball_104614 |@lemmatized might:1 sense:1 humor:1 favorite:1 stuff:2 zero:1 hero:1 player:1 hit:1 homer:1 long:1 time:1 lgtgah:1 name:1 remember:1 box:1 score:1 line:1 week:2 incidentally:1 find:1 column:1 move:1 sundays:1 get:1 dad:1 send:1 boston:1 every:1 great:1 |@bigram sense_humor:1 hit_homer:1 long_time:1 box_score:1 every_week:1 |
4,522 | [deleted]
The person who was telling me about the Septuagint version said that the Greeks
had a wonderful library in Alexandria that was full of manuscripts/scrolls
and that it was burned soon after the Septuagint version was translated
(perhaps to conceal some changes in the different versions, or perhaps just
as part of the typical burning of valuable things that occurs during changes
in power groups, he/I dunno).
Well, perhaps this is the answer then.
[deleted]
Thanks for the tips. Now I just have to find someone to teach me Samaritan :)
Just me,
little 'e'
(so, is a "good Samaritan hard to find?" or "is a hard... " Oh, finish this
yourself.)
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/talk.religion.misc/84025 | 19 | talk_religion_misc_84025 | [('deleted', 'VBN'), ('the', 'DT'), ('person', 'NN'), ('who', 'WP'), ('was', 'VBD'), ('telling', 'VBG'), ('me', 'PRP'), ('about', 'IN'), ('the', 'DT'), ('septuagint', 'NN'), ('version', 'NN'), ('said', 'VBD'), ('that', 'IN'), ('the', 'DT'), ('greeks', 'NN'), ('had', 'VBD'), ('wonderful', 'JJ'), ('library', 'NN'), ('in', 'IN'), ('alexandria', 'NN'), ('that', 'WDT'), ('was', 'VBD'), ('full', 'JJ'), ('of', 'IN'), ('manuscripts', 'NNS'), ('scrolls', 'NNS'), ('and', 'CC'), ('that', 'IN'), ('it', 'PRP'), ('was', 'VBD'), ('burned', 'VBN'), ('soon', 'RB'), ('after', 'IN'), ('the', 'DT'), ('septuagint', 'NN'), ('version', 'NN'), ('was', 'VBD'), ('translated', 'VBN'), ('perhaps', 'RB'), ('to', 'TO'), ('conceal', 'VB'), ('some', 'DT'), ('changes', 'NNS'), ('in', 'IN'), ('the', 'DT'), ('different', 'JJ'), ('versions', 'NNS'), ('or', 'CC'), ('perhaps', 'RB'), ('just', 'RB'), ('as', 'IN'), ('part', 'NN'), ('of', 'IN'), ('the', 'DT'), ('typical', 'JJ'), ('burning', 'NN'), ('of', 'IN'), ('valuable', 'JJ'), ('things', 'NNS'), ('that', 'WDT'), ('occurs', 'VBZ'), ('during', 'IN'), ('changes', 'NNS'), ('in', 'IN'), ('power', 'NN'), ('groups', 'NNS'), ('he', 'PRP'), ('dunno', 'VBZ'), (').', 'RB'), ('well', 'RB'), ('perhaps', 'RB'), ('this', 'DT'), ('is', 'VBZ'), ('the', 'DT'), ('answer', 'NN'), ('then', 'RB'), ('deleted', 'VBD'), ('thanks', 'NNS'), ('for', 'IN'), ('the', 'DT'), ('tips', 'NNS'), ('now', 'RB'), ('just', 'RB'), ('have', 'VB'), ('to', 'TO'), ('find', 'VB'), ('someone', 'NN'), ('to', 'TO'), ('teach', 'VB'), ('me', 'PRP'), ('samaritan', 'JJ'), (':)', 'NN'), ('just', 'RB'), ('me', 'PRP'), ('little', 'JJ'), ('so', 'RB'), ('is', 'VBZ'), ('good', 'JJ'), ('samaritan', 'RB'), ('hard', 'JJ'), ('to', 'TO'), ('find', 'VB'), ('?"', 'JJ'), ('or', 'CC'), ('is', 'VBZ'), ('hard', 'JJ'), ('...', ':'), ('oh', 'RB'), ('finish', 'VB'), ('this', 'DT'), ('yourself', 'PRP'), ('.)', 'VBP')] | ['delete', 'person', 'tell', 'septuagint', 'version', 'say', 'greek', 'wonderful', 'library', 'alexandria', 'full', 'manuscript', 'scroll', 'burn', 'soon', 'septuagint', 'version', 'translate', 'perhaps', 'conceal', 'change', 'different', 'version', 'perhaps', 'part', 'typical', 'burning', 'valuable', 'thing', 'occur', 'change', 'power', 'group', 'dunno', 'well', 'perhaps', 'answer', 'delete', 'thanks', 'tip', 'find', 'someone', 'teach', 'samaritan', 'little', 'good', 'samaritan', 'hard', 'find', 'hard', 'oh', 'finish'] | ['person_tell', 'say_greek', 'different_version', 'find_someone', 'little_good', 'hard_find', 'find_hard'] | talk_religion_misc_84025 |@lemmatized delete:2 person:1 tell:1 septuagint:2 version:3 say:1 greek:1 wonderful:1 library:1 alexandria:1 full:1 manuscript:1 scroll:1 burn:1 soon:1 translate:1 perhaps:3 conceal:1 change:2 different:1 part:1 typical:1 burning:1 valuable:1 thing:1 occur:1 power:1 group:1 dunno:1 well:1 answer:1 thanks:1 tip:1 find:2 someone:1 teach:1 samaritan:2 little:1 good:1 hard:2 oh:1 finish:1 |@bigram person_tell:1 say_greek:1 different_version:1 find_someone:1 little_good:1 hard_find:1 find_hard:1 |
4,523 |
>But is it any worse than the current unsecure system? It becomes much
>worse, of course, if the government then uses this "Clinton Clipper"
>to argue for restrictions on unapproved encryption. (This is the main
>concern of most of us, I think. The camel's nose in the tent, etc.)
Excuse me? This has *already* happened. There's a couple of humps in
the tent already. Ask the folks at Qualcomm what became of the
non-trivial encryption scheme they proposed for use in their CDMA
digitial cellular phone standard? There *already* are restrictions in
place.
You have it slightly wrong. They dumped the encryption system because
they could not export it -- not because they could not produce it for
U.S. use. There are no legal restraints on citizen use of strong
cryptography -- yet.
--
Perry Metzger [email protected] | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/sci.crypt/15339 | 11 | sci_crypt_15339 | [('but', 'CC'), ('is', 'VBZ'), ('it', 'PRP'), ('any', 'DT'), ('worse', 'JJR'), ('than', 'IN'), ('the', 'DT'), ('current', 'JJ'), ('unsecure', 'NN'), ('system', 'NN'), ('it', 'PRP'), ('becomes', 'VBZ'), ('much', 'JJ'), ('worse', 'JJR'), ('of', 'IN'), ('course', 'NN'), ('if', 'IN'), ('the', 'DT'), ('government', 'NN'), ('then', 'RB'), ('uses', 'VBZ'), ('this', 'DT'), ('clinton', 'NN'), ('clipper', 'NN'), ('to', 'TO'), ('argue', 'VB'), ('for', 'IN'), ('restrictions', 'NNS'), ('on', 'IN'), ('unapproved', 'JJ'), ('encryption', 'NN'), ('this', 'DT'), ('is', 'VBZ'), ('the', 'DT'), ('main', 'JJ'), ('concern', 'NN'), ('of', 'IN'), ('most', 'JJS'), ('of', 'IN'), ('us', 'PRP'), ('think', 'VBP'), ('the', 'DT'), ('camel', 'NN'), ('nose', 'NN'), ('in', 'IN'), ('the', 'DT'), ('tent', 'NN'), ('etc', 'NN'), ('.)', 'NNP'), ('excuse', 'IN'), ('me', 'PRP'), ('this', 'DT'), ('has', 'VBZ'), ('already', 'RB'), ('happened', 'VBN'), ('there', 'EX'), ('couple', 'NN'), ('of', 'IN'), ('humps', 'NNS'), ('in', 'IN'), ('the', 'DT'), ('tent', 'NN'), ('already', 'RB'), ('ask', 'VBZ'), ('the', 'DT'), ('folks', 'NNS'), ('at', 'IN'), ('qualcomm', 'JJ'), ('what', 'WP'), ('became', 'VBD'), ('of', 'IN'), ('the', 'DT'), ('non', 'JJ'), ('trivial', 'JJ'), ('encryption', 'NN'), ('scheme', 'NN'), ('they', 'PRP'), ('proposed', 'VBD'), ('for', 'IN'), ('use', 'NN'), ('in', 'IN'), ('their', 'PRP$'), ('cdma', 'NN'), ('digitial', 'JJ'), ('cellular', 'JJ'), ('phone', 'NN'), ('standard', 'NN'), ('there', 'EX'), ('already', 'RB'), ('are', 'VBP'), ('restrictions', 'NNS'), ('in', 'IN'), ('place', 'NN'), ('you', 'PRP'), ('have', 'VBP'), ('it', 'PRP'), ('slightly', 'RB'), ('wrong', 'IN'), ('they', 'PRP'), ('dumped', 'VBD'), ('the', 'DT'), ('encryption', 'NN'), ('system', 'NN'), ('because', 'IN'), ('they', 'PRP'), ('could', 'MD'), ('not', 'RB'), ('export', 'VB'), ('it', 'PRP'), ('--', ':'), ('not', 'RB'), ('because', 'IN'), ('they', 'PRP'), ('could', 'MD'), ('not', 'RB'), ('produce', 'VB'), ('it', 'PRP'), ('for', 'IN'), ('use', 'NN'), ('there', 'EX'), ('are', 'VBP'), ('no', 'DT'), ('legal', 'JJ'), ('restraints', 'NNS'), ('on', 'IN'), ('citizen', 'NN'), ('use', 'NN'), ('of', 'IN'), ('strong', 'JJ'), ('cryptography', 'NN'), ('--', ':'), ('yet', 'RB'), ('--', ':'), ('perry', 'NN'), ('metzger', 'NN')] | ['bad', 'current', 'unsecure', 'system', 'become', 'much', 'bad', 'course', 'government', 'use', 'clinton', 'clipper', 'argue', 'restriction', 'unapproved', 'encryption', 'main', 'concern', 'u', 'think', 'camel', 'nose', 'tent', 'etc', 'excuse', 'already', 'happen', 'couple', 'hump', 'tent', 'already', 'ask', 'folk', 'qualcomm', 'become', 'non', 'trivial', 'encryption', 'scheme', 'propose', 'use', 'cdma', 'digitial', 'cellular', 'phone', 'standard', 'already', 'restriction', 'place', 'slightly', 'wrong', 'dump', 'encryption', 'system', 'could', 'export', 'could', 'produce', 'use', 'legal', 'restraint', 'citizen', 'use', 'strong', 'cryptography', 'yet', 'perry', 'metzger'] | ['system_become', 'become_much', 'much_bad', 'government_use', 'clinton_clipper', 'u_think', 'non_trivial', 'encryption_scheme', 'propose_use', 'cellular_phone', 'encryption_system', 'system_could', 'use_legal', 'use_strong', 'strong_cryptography', 'perry_metzger'] | sci_crypt_15339 |@lemmatized bad:2 current:1 unsecure:1 system:2 become:2 much:1 course:1 government:1 use:4 clinton:1 clipper:1 argue:1 restriction:2 unapproved:1 encryption:3 main:1 concern:1 u:1 think:1 camel:1 nose:1 tent:2 etc:1 excuse:1 already:3 happen:1 couple:1 hump:1 ask:1 folk:1 qualcomm:1 non:1 trivial:1 scheme:1 propose:1 cdma:1 digitial:1 cellular:1 phone:1 standard:1 place:1 slightly:1 wrong:1 dump:1 could:2 export:1 produce:1 legal:1 restraint:1 citizen:1 strong:1 cryptography:1 yet:1 perry:1 metzger:1 |@bigram system_become:1 become_much:1 much_bad:1 government_use:1 clinton_clipper:1 u_think:1 non_trivial:1 encryption_scheme:1 propose_use:1 cellular_phone:1 encryption_system:1 system_could:1 use_legal:1 use_strong:1 strong_cryptography:1 perry_metzger:1 |
4,524 | 1992-93 Los Angeles Kings notes and game reports.
-------------------------------------------------
Kings 6 @ Calgary Flames 3 - 04/18/93
The third place Kings opened the 1993 Stanley Cup Playoffs in Calgary, against
the second place Flames and came out with an impressive 6-3 victory in front of
a non-sellout crowd of 18,605 at the Saddledome in Calgary.
Symthe Division playoff hockey this was. Both teams seemed a bit tense in the
opening period though the Kings scored off the opening face-off. The Kings got
into the flow of the game much earlier than the Flames as they played out-
standing team defense. It took the Flames 9:45 of the first period to record
their first shot on goal. The Kings, ranked 16th of the 16 playoff teams on
penalty killing, shut down the Flames. The Flames went 0-8 on the power play
and could record only 8 shot on goal in those 8 opportunities. The Kings had
their problems on the power play, yet they did manager to score 2 goals in 10
tries.
The Kings forwards back-checked while the defense stood the Flames up at the
blue line, allowing the Kings to take took the home ice advantage away from the
Flames. Rob Blake missed the game due to the lower back contusion but is ex-
pected to be in the lineup on Wednesday. Wayne Gretzky suffered a charlie horse
in his right leg. He took a few shifts in the second period before retiring to
the dressing room for the rest of the game. Interviewed on the radio this
morning, he stated that he was fine and would be in the lineup on Wednesday.
1st period:
1-0. The Kings got things started right off the opening face-off. Gretzky won
the draw with the puck going to Sydor. He crossed center ice and slapped the
puck into the Flames zone and behind the net. The puck carried around to the
far side where Robitaille wacked at it and the rebound bounced to Sandstrom. He
put the puck behind the Flames net where Gretzky picked it up. Gretzky set up
in 'his office', moved to the near side and passed into the near circle where
Sydor had moved in. Sydor, who got the puck between the face-off dot and the
hash mark, shot off the pass, beating Vernon low and between the legs.
Millen and Fleury went off at 4:57. Skrudland went off at 12:25 but the Kings
failed to convert. Carson went off at 14:53 and the Flames failed to convert.
Dahlquist went off at 18:34 and Dahl went off at 19:30, giving the Kings a 30
second 5on3 which they failed to convert. The Kings recorded 2 goal posts in
the period.
2nd period:
The Kings opened with a 5on3 carried over from the 1st period which they failed
to convert on. With 6 seconds left in the 5on4, Vernon put a bouncing puck into
the stands and received a delay of game.
1-1. Calgary evened the score on the ensuing Kings power play. Kurri, with the
puck in the neutral zone, tried to put the puck into the Flames zone but it hit
the stick of Fleury and bounced to Suter at the Flames blue line. Suter skated
down the near wing and into the Kings zone. He faked a shot at the circle and
skated around Kurri. As he cut thorugh the crease, he got Hrudey to go with him
and he put the puck behind Hrudey, on his stick side for a short hander.
2-1. The Kings reclaimed the lead 25 seconds later on the same power play.
Shuchuk, in the far circle passed to Sydor at the top of the slot and headed
for the net. Sydors shot hit Shuchuk in the back and dropped into the low slot
where 2 Kings (Shuchuk and Granato) were being checked by 3 Flames. Carson
came from the far corner, picked up the loose puck and snapped a wrist shot
between the legs of Vernon from 5 feet above the crease.
3-1. The Kings widened their lead just 24 seconds later. Rychel was checked off
the puck at the Flames blue line. Taylor picked up the puck and sent a pass
cross the slot to Huddy. Huddy shot off the pass, from the near face-off dot,
beating a diving Vernon on the glove side.
4-1. 2:59 later, the Kings had a 3 goal lead. McSorley took a shot form the
near point that hit a Flame and deflected towards the boards. Marty got his
own rebound, skated to the bottom of the circle and sent a pass into the low
slot that hit Dahlquist on the leg and deflected past the stick of Vernon.
Skrudland went off at 10:53 but the Kings could not convert. Sydor went off at
12:35 and Watters went off at 14:40, giving the Flames a 5 second 5-3 but they
failed to convert. McSorley went off at 17:19 and the Flames had 3 consecutive
power plays but the Flames killed it themselves when Suter went off for high
sticking at 17:31. Sandstrom went off at 18:03 to close out the period. The
Kings hit 3 goal post in the period.
3rd period:
The Kings used the phrase "Initiate, not retaliate" and it was very evident here
in the 3rd period as the Kings continued to pound the body and the Flames
continued to take bad penalties to take themselves out of the game.
5-1. The Kings extended their lead to 4 goals at the 1:06 mark. The Kings shot
the puck into the near corner of the Flames zone. Vernon went behind the net to
cut off the puck but he could not control it. Donnelly, who was behind him,
wacked at the puck, sending it into the low slot. As Vernon slid back in to the
crease, Granato got a shot that hit a Flame and bounced to the left of the net
where Millen fired the rebound behind Vernon.
Sydor went off at 1:24; Nieuwendyk went off at 3:22 as the teams skated 4 on 4.
5-2. Otto, skating down the far side, stepped around McSorley, cut to the net
and passed to Dahlquist in the low slot. Dahlquist cut through the top of the
crease and put the puck in under a diving Hrudey.
Carson and Rychel came in on a 2-1. When Carson passed across to Rychel, Fleury
tripped Rychel with no call. The puck got shoveled into the far corner where
Fleury knocked Rychel down and checked him from behind into the boards, drawing
a 5-minute major and a game misconduct at the 6:08 mark. Unfortunately, the
Kings squandered the 5 minute power play when Granato (at 6:44) and Watters (at
8:19) took penalties.
5-3. The Flames closed to within 2 at the 8:47 mark. MacInnis, at the near
point, passed to Yawney at the far point. He took a few strides towards the
net, wound up and drove a shot off the near post and in over the glove of
Hrudey. The play started on another faceoff that the Kings lost. Timeout - LA.
6-3. MacInnis took a penalty at 9:56 and the Kings converted on the power play
to seal the victory. Sandstrom, skating down the far wing in the Flames zone
cut towards the back of the net. Just as he crossed the goal line, he passed
the puck into the low slot, on the far side, to Carson who shot off the pass,
beating Vernon on the ice, stick side.
At the 16:17 mark, Skrudland went off for slashing and Stern went crazy as he
went after Shuchuk. Stern wound up with a double minor for roughing, a single
minor for cross checking and a 10 minute misconduct, and he took the Flames
right out of the game.
On the plus side: The Kings, for the most part, played very disciplined hockey
as they let Calgary retaliate. The Kings played good team defense and excellent
penalty killing.
On the minus side: The Kings lost almost every face-off. This must improve or
the Flames will surely get that power play back on track.
Notes:
------
The Kings recalled Guy Leveque, Brandy Semchuk and Jim Thomson from Phoenix.
Wayne Gretzkys 1st period assist was his 307th career playoff point.
The Kings entered the game 24th in the league in shots per game against, giving
the opposing team an average of 34.4 shots per game.
Flames goaltender Mike Vernon entered the game with a 3-9-1 record in afternoon
games. The Flames entered the game with a 34% success rate on the power play
over their last 9 games.
The teams were 3-3-1 against each other in the regular season.
Playoffs:
Campbell Conference:
Smythe Division:
LA 6 @ CAL 3 LA leads 1-0
WIN @ VAN
Norris Division:
STL 4 @ CHI 3 STL leads 1-0
TOR @ DET
Wales Conference:
Adams Division:
BUF 5 @ BOS 4 (OT) BUF leads 1-0
MON 2 @ QUE 3 (OT) QUE leads 1-0
Patrick Division:
NJ 3 @ PIT 6 PIT leads 1-0
NYI 1 @ WAS 3 WAS leads 1-0
Records:
--------
vs Smythe Norris Patrck Adams Overall
================================================
Home: 0- 0-0 0-0-0 0-0-0 0-0-0 0- 0-0
Road: 1- 0-0 0-0-0 0-0-0 0-0-0 1- 0-0
==============================================================
Total: 1- 0-0 0-0-0 0-0-0 0-0-0 1- 0-0
Box Score:
=========================
Calgary 0 1 2 - 3
Los Angeles 1 3 2 - 6
=========================
1st period:
LA Sydor 1 (Gretzky, Sandstrom), 0:16
LA Millen - high sticking, 4:57
CAL Fleury - high sticking, 4:57
CAL Skrudland - interference, 12:25
LA Carson - tripping 14:53
CAL Dahlquist - holding stick, 18:34
CAL Dahl - roughing 19:30
2nd period:
CAL Verson - delay of game (served by Ashton), 1:34
CAL Suter 1 (Fleury), 2:48 (sh)
LA Carson 1 (Shuchuk, Sydor), 3:13 (pp)
LA Huddy 1 (Taylor, Rychel), 3:37
LA McSorley 1 (unassisted), 6:36
CAL Skrudland - elbowing, 10:53
LA Sydor - tripping, 12:35
LA Watters- hooking, 14:40
LA McSorley - holding, 17:19
CAL Suter - high sticking, 17:31
LA Sandstrom - hooking, 18:03
3rd period:
LA Millen 1 (Granato, Donnelly), 1:06
LA Sydor - hooking, 1:24
CAL Nieuwendyk - tripping, 3:22
CAL Dahlquist 1 (Otto), 4:23
CAL Fleury - major (boarding), game misconduct, 6:08
LA Granato - tripping, 6:44
LA Watters - interference, 8:19
CAL Yawney 1 (MacInnis, Reichel), 8:47
CAL MacInnis - roughing, 9:56
LA Carson 2 (Sandstrom, Robitaille), 10:32 (pp)
LA Hardy - holding, 11:38
CAL Skrudland - slashing, 16:17
CAL Stern - double roughing, cross-checking, 10 min. misconduct, 16:17
Overtime: none
Shots:
------
Los Angeles 8 9 14 - 31
Calgary 5 8 11 - 24
Power play conversions:
-----------------------
For: 2 of 10; for the year: 2 of 10, 20.00%
Against: 0 of 8; for the year: 8 of 8, 100.00%
Goalies:
--------
Los Angeles - Hrudey (1-0-0)
Calgary - Vernon (0-1-0)
Attendance: 18,605
Scratches:
----------
Rob Blake - back contusion
Guy Leveque - numbers
Lonnie Loach - numbers
Marc Potvin - numbers
Brandy Semchuk - numbers
Robb Stauber - numbers
Brent Thompson - numbers
Jim Thomson - numbers
Lines - Forwards:
----------------
*Robitaille - Gretzky - Sandstrom
Donnelly - Millen - Kurri
Rychel - Conacher - Taylor
Granato - Carson - Shuchuk
Lines - Defense:
----------------
*Huddy - Sydor
Watters - Zhitnik
Hardy - McSorley
* denotes starting lineup
Next game:
----------
Wednesday, April 21 @ Calgary Flames; 6:30pm Pacific Time on Prime Ticket
===============================================================================
Stan Willis ([email protected])
net contact: L.A. Kings | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/rec.sport.hockey/53756 | 10 | rec_sport_hockey_53756 | [('1992', 'CD'), ('93', 'CD'), ('los', 'NN'), ('angeles', 'NNS'), ('kings', 'NNS'), ('notes', 'NNS'), ('and', 'CC'), ('game', 'NN'), ('reports', 'NNS'), ('-------------------------------------------------', 'VBD'), ('kings', 'NNS'), ('calgary', 'JJ'), ('flames', 'NNS'), ('04', 'CD'), ('18', 'CD'), ('93', 'CD'), ('the', 'DT'), ('third', 'JJ'), ('place', 'NN'), ('kings', 'NNS'), ('opened', 'VBD'), ('the', 'DT'), ('1993', 'CD'), ('stanley', 'NN'), ('cup', 'NN'), ('playoffs', 'NNS'), ('in', 'IN'), ('calgary', 'NN'), ('against', 'IN'), ('the', 'DT'), ('second', 'JJ'), ('place', 'NN'), ('flames', 'NNS'), ('and', 'CC'), ('came', 'VBD'), ('out', 'RP'), ('with', 'IN'), ('an', 'DT'), ('impressive', 'JJ'), ('victory', 'NN'), ('in', 'IN'), ('front', 'NN'), ('of', 'IN'), ('non', 'JJ'), ('sellout', 'NN'), ('crowd', 'NN'), ('of', 'IN'), ('18', 'CD'), ('605', 'CD'), ('at', 'IN'), ('the', 'DT'), ('saddledome', 'NN'), ('in', 'IN'), ('calgary', 'JJ'), ('symthe', 'NN'), ('division', 'NN'), ('playoff', 'NN'), ('hockey', 'NN'), ('this', 'DT'), ('was', 'VBD'), ('both', 'DT'), ('teams', 'NNS'), ('seemed', 'VBD'), ('bit', 'JJ'), ('tense', 'JJ'), ('in', 'IN'), ('the', 'DT'), ('opening', 'NN'), ('period', 'NN'), ('though', 'IN'), ('the', 'DT'), ('kings', 'NNS'), ('scored', 'VBD'), ('off', 'RP'), ('the', 'DT'), ('opening', 'NN'), ('face', 'NN'), ('off', 'IN'), ('the', 'DT'), ('kings', 'NNS'), ('got', 'VBD'), ('into', 'IN'), ('the', 'DT'), ('flow', 'NN'), ('of', 'IN'), ('the', 'DT'), ('game', 'NN'), ('much', 'RB'), ('earlier', 'RBR'), ('than', 'IN'), ('the', 'DT'), ('flames', 'NNS'), ('as', 'IN'), ('they', 'PRP'), ('played', 'VBD'), ('out', 'RP'), ('standing', 'VBG'), ('team', 'NN'), ('defense', 'NN'), ('it', 'PRP'), ('took', 'VBD'), ('the', 'DT'), ('flames', 'NNS'), ('45', 'CD'), ('of', 'IN'), ('the', 'DT'), ('first', 'JJ'), ('period', 'NN'), ('to', 'TO'), ('record', 'VB'), ('their', 'PRP$'), ('first', 'JJ'), ('shot', 'NN'), ('on', 'IN'), ('goal', 'NN'), ('the', 'DT'), ('kings', 'NNS'), ('ranked', 'VBD'), ('16th', 'CD'), ('of', 'IN'), ('the', 'DT'), ('16', 'CD'), ('playoff', 'NN'), ('teams', 'NNS'), ('on', 'IN'), ('penalty', 'NN'), ('killing', 'VBG'), ('shut', 'VBD'), ('down', 'RP'), ('the', 'DT'), ('flames', 'NNS'), ('the', 'DT'), ('flames', 'NNS'), ('went', 'VBD'), ('on', 'IN'), ('the', 'DT'), ('power', 'NN'), ('play', 'NN'), ('and', 'CC'), ('could', 'MD'), ('record', 'VB'), ('only', 'RB'), ('shot', 'NN'), ('on', 'IN'), ('goal', 'NN'), ('in', 'IN'), ('those', 'DT'), ('opportunities', 'NNS'), ('the', 'DT'), ('kings', 'NNS'), ('had', 'VBD'), ('their', 'PRP$'), ('problems', 'NNS'), ('on', 'IN'), ('the', 'DT'), ('power', 'NN'), ('play', 'NN'), ('yet', 'RB'), ('they', 'PRP'), ('did', 'VBD'), ('manager', 'NN'), ('to', 'TO'), ('score', 'VB'), ('goals', 'NNS'), ('in', 'IN'), ('10', 'CD'), ('tries', 'NNS'), ('the', 'DT'), ('kings', 'NNS'), ('forwards', 'NNS'), ('back', 'RB'), ('checked', 'VBN'), ('while', 'IN'), ('the', 'DT'), ('defense', 'NN'), ('stood', 'VBD'), ('the', 'DT'), ('flames', 'NNS'), ('up', 'RB'), ('at', 'IN'), ('the', 'DT'), ('blue', 'JJ'), ('line', 'NN'), ('allowing', 'VBG'), ('the', 'DT'), ('kings', 'NNS'), ('to', 'TO'), ('take', 'VB'), ('took', 'VBD'), ('the', 'DT'), ('home', 'NN'), ('ice', 'NN'), ('advantage', 'VB'), ('away', 'RB'), ('from', 'IN'), ('the', 'DT'), ('flames', 'NNS'), ('rob', 'VBP'), ('blake', 'NN'), ('missed', 'VBD'), ('the', 'DT'), ('game', 'NN'), ('due', 'JJ'), ('to', 'TO'), ('the', 'DT'), ('lower', 'JJR'), ('back', 'JJ'), ('contusion', 'NN'), ('but', 'CC'), ('is', 'VBZ'), ('ex', 'RB'), ('pected', 'VBN'), ('to', 'TO'), ('be', 'VB'), ('in', 'IN'), ('the', 'DT'), ('lineup', 'NN'), ('on', 'IN'), ('wednesday', 'JJ'), ('wayne', 'JJ'), ('gretzky', 'NN'), ('suffered', 'VBD'), ('charlie', 'JJ'), ('horse', 'NN'), ('in', 'IN'), ('his', 'PRP$'), ('right', 'NN'), ('leg', 'NN'), ('he', 'PRP'), ('took', 'VBD'), ('few', 'JJ'), ('shifts', 'NNS'), ('in', 'IN'), ('the', 'DT'), ('second', 'JJ'), ('period', 'NN'), ('before', 'IN'), ('retiring', 'VBG'), ('to', 'TO'), ('the', 'DT'), ('dressing', 'NN'), ('room', 'NN'), ('for', 'IN'), ('the', 'DT'), ('rest', 'NN'), ('of', 'IN'), ('the', 'DT'), ('game', 'NN'), ('interviewed', 'VBN'), ('on', 'IN'), ('the', 'DT'), ('radio', 'NN'), ('this', 'DT'), ('morning', 'NN'), ('he', 'PRP'), ('stated', 'VBD'), ('that', 'IN'), ('he', 'PRP'), ('was', 'VBD'), ('fine', 'JJ'), ('and', 'CC'), ('would', 'MD'), ('be', 'VB'), ('in', 'IN'), ('the', 'DT'), ('lineup', 'NN'), ('on', 'IN'), ('wednesday', 'JJ'), ('1st', 'CD'), ('period', 'NN'), ('the', 'DT'), ('kings', 'NNS'), ('got', 'VBD'), ('things', 'NNS'), ('started', 'VBD'), ('right', 'RB'), ('off', 'IN'), ('the', 'DT'), ('opening', 'NN'), ('face', 'NN'), ('off', 'IN'), ('gretzky', 'NN'), ('won', 'VBD'), ('the', 'DT'), ('draw', 'NN'), ('with', 'IN'), ('the', 'DT'), ('puck', 'NN'), ('going', 'VBG'), ('to', 'TO'), ('sydor', 'VB'), ('he', 'PRP'), ('crossed', 'VBD'), ('center', 'NN'), ('ice', 'NN'), ('and', 'CC'), ('slapped', 'VBD'), ('the', 'DT'), ('puck', 'NN'), ('into', 'IN'), ('the', 'DT'), ('flames', 'NNS'), ('zone', 'NN'), ('and', 'CC'), ('behind', 'IN'), ('the', 'DT'), ('net', 'JJ'), ('the', 'DT'), ('puck', 'NN'), ('carried', 'VBD'), ('around', 'IN'), ('to', 'TO'), ('the', 'DT'), ('far', 'RB'), ('side', 'NN'), ('where', 'WRB'), ('robitaille', 'NN'), ('wacked', 'VBD'), ('at', 'IN'), ('it', 'PRP'), ('and', 'CC'), ('the', 'DT'), ('rebound', 'NN'), ('bounced', 'VBD'), ('to', 'TO'), ('sandstrom', 'VB'), ('he', 'PRP'), ('put', 'VB'), ('the', 'DT'), ('puck', 'NN'), ('behind', 'IN'), ('the', 'DT'), ('flames', 'NNS'), ('net', 'JJ'), ('where', 'WRB'), ('gretzky', 'NN'), ('picked', 'VBD'), ('it', 'PRP'), ('up', 'RP'), ('gretzky', 'NN'), ('set', 'VBN'), ('up', 'RP'), ('in', 'IN'), ('his', 'PRP$'), ('office', 'NN'), ("',", 'VBZ'), ('moved', 'VBN'), ('to', 'TO'), ('the', 'DT'), ('near', 'JJ'), ('side', 'NN'), ('and', 'CC'), ('passed', 'VBD'), ('into', 'IN'), ('the', 'DT'), ('near', 'JJ'), ('circle', 'NN'), ('where', 'WRB'), ('sydor', 'NN'), ('had', 'VBD'), ('moved', 'VBN'), ('in', 'IN'), ('sydor', 'NN'), ('who', 'WP'), ('got', 'VBD'), ('the', 'DT'), ('puck', 'NN'), ('between', 'IN'), ('the', 'DT'), ('face', 'NN'), ('off', 'IN'), ('dot', 'NN'), ('and', 'CC'), ('the', 'DT'), ('hash', 'NN'), ('mark', 'NN'), ('shot', 'VBD'), ('off', 'IN'), ('the', 'DT'), ('pass', 'NN'), ('beating', 'VBG'), ('vernon', 'NN'), ('low', 'JJ'), ('and', 'CC'), ('between', 'IN'), ('the', 'DT'), ('legs', 'JJ'), ('millen', 'NN'), ('and', 'CC'), ('fleury', 'NN'), ('went', 'VBD'), ('off', 'RB'), ('at', 'IN'), ('57', 'CD'), ('skrudland', 'NN'), ('went', 'VBD'), ('off', 'RB'), ('at', 'IN'), ('12', 'CD'), ('25', 'CD'), ('but', 'CC'), ('the', 'DT'), ('kings', 'NNS'), ('failed', 'VBD'), ('to', 'TO'), ('convert', 'VB'), ('carson', 'NN'), ('went', 'VBD'), ('off', 'RB'), ('at', 'IN'), ('14', 'CD'), ('53', 'CD'), ('and', 'CC'), ('the', 'DT'), ('flames', 'NNS'), ('failed', 'VBD'), ('to', 'TO'), ('convert', 'VB'), ('dahlquist', 'JJ'), ('went', 'VBD'), ('off', 'RB'), ('at', 'IN'), ('18', 'CD'), ('34', 'CD'), ('and', 'CC'), ('dahl', 'VB'), ('went', 'VBD'), ('off', 'IN'), ('at', 'IN'), ('19', 'CD'), ('30', 'CD'), ('giving', 'VBG'), ('the', 'DT'), ('kings', 'NNS'), ('30', 'CD'), ('second', 'JJ'), ('5on3', 'CD'), ('which', 'WDT'), ('they', 'PRP'), ('failed', 'VBD'), ('to', 'TO'), ('convert', 'VB'), ('the', 'DT'), ('kings', 'NNS'), ('recorded', 'VBD'), ('goal', 'NN'), ('posts', 'NNS'), ('in', 'IN'), ('the', 'DT'), ('period', 'NN'), ('2nd', 'CD'), ('period', 'NN'), ('the', 'DT'), ('kings', 'NNS'), ('opened', 'VBN'), ('with', 'IN'), ('5on3', 'CD'), ('carried', 'VBD'), ('over', 'IN'), ('from', 'IN'), ('the', 'DT'), ('1st', 'CD'), ('period', 'NN'), ('which', 'WDT'), ('they', 'PRP'), ('failed', 'VBD'), ('to', 'TO'), ('convert', 'VB'), ('on', 'IN'), ('with', 'IN'), ('seconds', 'NNS'), ('left', 'VBN'), ('in', 'IN'), ('the', 'DT'), ('5on4', 'CD'), ('vernon', 'NN'), ('put', 'VBD'), ('bouncing', 'VBG'), ('puck', 'NN'), ('into', 'IN'), ('the', 'DT'), ('stands', 'NNS'), ('and', 'CC'), ('received', 'VBD'), ('delay', 'NN'), ('of', 'IN'), ('game', 'NN'), ('calgary', 'NN'), ('evened', 'VBD'), ('the', 'DT'), ('score', 'NN'), ('on', 'IN'), ('the', 'DT'), ('ensuing', 'VBG'), ('kings', 'NNS'), ('power', 'NN'), ('play', 'VBP'), ('kurri', 'NN'), ('with', 'IN'), ('the', 'DT'), ('puck', 'NN'), ('in', 'IN'), ('the', 'DT'), ('neutral', 'JJ'), ('zone', 'NN'), ('tried', 'VBD'), ('to', 'TO'), ('put', 'VB'), ('the', 'DT'), ('puck', 'NN'), ('into', 'IN'), ('the', 'DT'), ('flames', 'NNS'), ('zone', 'VBP'), ('but', 'CC'), ('it', 'PRP'), ('hit', 'VBD'), ('the', 'DT'), ('stick', 'NN'), ('of', 'IN'), ('fleury', 'NN'), ('and', 'CC'), ('bounced', 'VBD'), ('to', 'TO'), ('suter', 'VB'), ('at', 'IN'), ('the', 'DT'), ('flames', 'NNS'), ('blue', 'JJ'), ('line', 'NN'), ('suter', 'NN'), ('skated', 'VBD'), ('down', 'IN'), ('the', 'DT'), ('near', 'JJ'), ('wing', 'NN'), ('and', 'CC'), ('into', 'IN'), ('the', 'DT'), ('kings', 'NNS'), ('zone', 'NN'), ('he', 'PRP'), ('faked', 'VBD'), ('shot', 'NN'), ('at', 'IN'), ('the', 'DT'), ('circle', 'NN'), ('and', 'CC'), ('skated', 'VBN'), ('around', 'RB'), ('kurri', 'RB'), ('as', 'IN'), ('he', 'PRP'), ('cut', 'VBD'), ('thorugh', 'RP'), ('the', 'DT'), ('crease', 'NN'), ('he', 'PRP'), ('got', 'VBD'), ('hrudey', 'NN'), ('to', 'TO'), ('go', 'VB'), ('with', 'IN'), ('him', 'PRP'), ('and', 'CC'), ('he', 'PRP'), ('put', 'VBD'), ('the', 'DT'), ('puck', 'NN'), ('behind', 'IN'), ('hrudey', 'NN'), ('on', 'IN'), ('his', 'PRP$'), ('stick', 'JJ'), ('side', 'NN'), ('for', 'IN'), ('short', 'JJ'), ('hander', 'NN'), ('the', 'DT'), ('kings', 'NNS'), ('reclaimed', 'VBD'), ('the', 'DT'), ('lead', 'NN'), ('25', 'CD'), ('seconds', 'NNS'), ('later', 'RBR'), ('on', 'IN'), ('the', 'DT'), ('same', 'JJ'), ('power', 'NN'), ('play', 'NN'), ('shuchuk', 'NN'), ('in', 'IN'), ('the', 'DT'), ('far', 'RB'), ('circle', 'NN'), ('passed', 'VBD'), ('to', 'TO'), ('sydor', 'VB'), ('at', 'IN'), ('the', 'DT'), ('top', 'NN'), ('of', 'IN'), ('the', 'DT'), ('slot', 'NN'), ('and', 'CC'), ('headed', 'VBD'), ('for', 'IN'), ('the', 'DT'), ('net', 'JJ'), ('sydors', 'NNS'), ('shot', 'VBP'), ('hit', 'VBN'), ('shuchuk', 'NN'), ('in', 'IN'), ('the', 'DT'), ('back', 'NN'), ('and', 'CC'), ('dropped', 'VBD'), ('into', 'IN'), ('the', 'DT'), ('low', 'JJ'), ('slot', 'NN'), ('where', 'WRB'), ('kings', 'NNS'), ('shuchuk', 'NN'), ('and', 'CC'), ('granato', 'NN'), ('were', 'VBD'), ('being', 'VBG'), ('checked', 'VBN'), ('by', 'IN'), ('flames', 'NNS'), ('carson', 'JJ'), ('came', 'VBD'), ('from', 'IN'), ('the', 'DT'), ('far', 'RB'), ('corner', 'NN'), ('picked', 'VBD'), ('up', 'RP'), ('the', 'DT'), ('loose', 'JJ'), ('puck', 'NN'), ('and', 'CC'), ('snapped', 'VBD'), ('wrist', 'VB'), ('shot', 'NN'), ('between', 'IN'), ('the', 'DT'), ('legs', 'NN'), ('of', 'IN'), ('vernon', 'NN'), ('from', 'IN'), ('feet', 'NNS'), ('above', 'IN'), ('the', 'DT'), ('crease', 'NN'), ('the', 'DT'), ('kings', 'NNS'), ('widened', 'VBD'), ('their', 'PRP$'), ('lead', 'NN'), ('just', 'RB'), ('24', 'CD'), ('seconds', 'NNS'), ('later', 'RB'), ('rychel', 'VBP'), ('was', 'VBD'), ('checked', 'VBN'), ('off', 'RP'), ('the', 'DT'), ('puck', 'NN'), ('at', 'IN'), ('the', 'DT'), ('flames', 'NNS'), ('blue', 'JJ'), ('line', 'NN'), ('taylor', 'NN'), ('picked', 'VBD'), ('up', 'RP'), ('the', 'DT'), ('puck', 'NN'), ('and', 'CC'), ('sent', 'VBD'), ('pass', 'NN'), ('cross', 'NN'), ('the', 'DT'), ('slot', 'NN'), ('to', 'TO'), ('huddy', 'VB'), ('huddy', 'JJ'), ('shot', 'NN'), ('off', 'IN'), ('the', 'DT'), ('pass', 'NN'), ('from', 'IN'), ('the', 'DT'), ('near', 'JJ'), ('face', 'NN'), ('off', 'IN'), ('dot', 'NN'), ('beating', 'VBG'), ('diving', 'VBG'), ('vernon', 'NN'), ('on', 'IN'), ('the', 'DT'), ('glove', 'JJ'), ('side', 'NN'), ('59', 'CD'), ('later', 'RB'), ('the', 'DT'), ('kings', 'NNS'), ('had', 'VBD'), ('goal', 'NN'), ('lead', 'NN'), ('mcsorley', 'NN'), ('took', 'VBD'), ('shot', 'JJ'), ('form', 'NN'), ('the', 'DT'), ('near', 'JJ'), ('point', 'NN'), ('that', 'WDT'), ('hit', 'VBD'), ('flame', 'NN'), ('and', 'CC'), ('deflected', 'VBD'), ('towards', 'NNS'), ('the', 'DT'), ('boards', 'NNS'), ('marty', 'NN'), ('got', 'VBD'), ('his', 'PRP$'), ('own', 'JJ'), ('rebound', 'NN'), ('skated', 'VBD'), ('to', 'TO'), ('the', 'DT'), ('bottom', 'NN'), ('of', 'IN'), ('the', 'DT'), ('circle', 'NN'), ('and', 'CC'), ('sent', 'JJ'), ('pass', 'NN'), ('into', 'IN'), ('the', 'DT'), ('low', 'JJ'), ('slot', 'NN'), ('that', 'IN'), ('hit', 'VBD'), ('dahlquist', 'NN'), ('on', 'IN'), ('the', 'DT'), ('leg', 'NN'), ('and', 'CC'), ('deflected', 'VBD'), ('past', 'IN'), ('the', 'DT'), ('stick', 'NN'), ('of', 'IN'), ('vernon', 'NN'), ('skrudland', 'NN'), ('went', 'VBD'), ('off', 'RB'), ('at', 'IN'), ('10', 'CD'), ('53', 'CD'), ('but', 'CC'), ('the', 'DT'), ('kings', 'NNS'), ('could', 'MD'), ('not', 'RB'), ('convert', 'VB'), ('sydor', 'NN'), ('went', 'VBD'), ('off', 'RB'), ('at', 'IN'), ('12', 'CD'), ('35', 'CD'), ('and', 'CC'), ('watters', 'NNS'), ('went', 'VBD'), ('off', 'RB'), ('at', 'IN'), ('14', 'CD'), ('40', 'CD'), ('giving', 'VBG'), ('the', 'DT'), ('flames', 'NNS'), ('second', 'VBP'), ('but', 'CC'), ('they', 'PRP'), ('failed', 'VBD'), ('to', 'TO'), ('convert', 'VB'), ('mcsorley', 'NNP'), ('went', 'VBD'), ('off', 'RB'), ('at', 'IN'), ('17', 'CD'), ('19', 'CD'), ('and', 'CC'), ('the', 'DT'), ('flames', 'NNS'), ('had', 'VBD'), ('consecutive', 'JJ'), ('power', 'NN'), ('plays', 'NNS'), ('but', 'CC'), ('the', 'DT'), ('flames', 'NNS'), ('killed', 'VBD'), ('it', 'PRP'), ('themselves', 'PRP'), ('when', 'WRB'), ('suter', 'RBR'), ('went', 'VBD'), ('off', 'IN'), ('for', 'IN'), ('high', 'JJ'), ('sticking', 'NN'), ('at', 'IN'), ('17', 'CD'), ('31', 'CD'), ('sandstrom', 'NNS'), ('went', 'VBD'), ('off', 'RB'), ('at', 'IN'), ('18', 'CD'), ('03', 'CD'), ('to', 'TO'), ('close', 'VB'), ('out', 'RP'), ('the', 'DT'), ('period', 'NN'), ('the', 'DT'), ('kings', 'NNS'), ('hit', 'VBD'), ('goal', 'NN'), ('post', 'NN'), ('in', 'IN'), ('the', 'DT'), ('period', 'NN'), ('3rd', 'CD'), ('period', 'NN'), ('the', 'DT'), ('kings', 'NNS'), ('used', 'VBD'), ('the', 'DT'), ('phrase', 'NN'), ('initiate', 'NN'), ('not', 'RB'), ('retaliate', 'VB'), ('and', 'CC'), ('it', 'PRP'), ('was', 'VBD'), ('very', 'RB'), ('evident', 'JJ'), ('here', 'RB'), ('in', 'IN'), ('the', 'DT'), ('3rd', 'JJ'), ('period', 'NN'), ('as', 'IN'), ('the', 'DT'), ('kings', 'NNS'), ('continued', 'VBD'), ('to', 'TO'), ('pound', 'NN'), ('the', 'DT'), ('body', 'NN'), ('and', 'CC'), ('the', 'DT'), ('flames', 'NNS'), ('continued', 'VBD'), ('to', 'TO'), ('take', 'VB'), ('bad', 'JJ'), ('penalties', 'NNS'), ('to', 'TO'), ('take', 'VB'), ('themselves', 'PRP'), ('out', 'IN'), ('of', 'IN'), ('the', 'DT'), ('game', 'NN'), ('the', 'DT'), ('kings', 'NNS'), ('extended', 'VBD'), ('their', 'PRP$'), ('lead', 'NN'), ('to', 'TO'), ('goals', 'NNS'), ('at', 'IN'), ('the', 'DT'), ('06', 'CD'), ('mark', 'NN'), ('the', 'DT'), ('kings', 'NNS'), ('shot', 'VBD'), ('the', 'DT'), ('puck', 'NN'), ('into', 'IN'), ('the', 'DT'), ('near', 'JJ'), ('corner', 'NN'), ('of', 'IN'), ('the', 'DT'), ('flames', 'NNS'), ('zone', 'VBP'), ('vernon', 'NN'), ('went', 'VBD'), ('behind', 'IN'), ('the', 'DT'), ('net', 'JJ'), ('to', 'TO'), ('cut', 'VB'), ('off', 'RP'), ('the', 'DT'), ('puck', 'NN'), ('but', 'CC'), ('he', 'PRP'), ('could', 'MD'), ('not', 'RB'), ('control', 'VB'), ('it', 'PRP'), ('donnelly', 'RB'), ('who', 'WP'), ('was', 'VBD'), ('behind', 'IN'), ('him', 'PRP'), ('wacked', 'VBD'), ('at', 'IN'), ('the', 'DT'), ('puck', 'NN'), ('sending', 'VBG'), ('it', 'PRP'), ('into', 'IN'), ('the', 'DT'), ('low', 'JJ'), ('slot', 'NN'), ('as', 'IN'), ('vernon', 'NN'), ('slid', 'VBD'), ('back', 'RB'), ('in', 'IN'), ('to', 'TO'), ('the', 'DT'), ('crease', 'NN'), ('granato', 'NN'), ('got', 'VBD'), ('shot', 'JJ'), ('that', 'IN'), ('hit', 'NN'), ('flame', 'NN'), ('and', 'CC'), ('bounced', 'VBD'), ('to', 'TO'), ('the', 'DT'), ('left', 'NN'), ('of', 'IN'), ('the', 'DT'), ('net', 'JJ'), ('where', 'WRB'), ('millen', 'NN'), ('fired', 'VBD'), ('the', 'DT'), ('rebound', 'NN'), ('behind', 'IN'), ('vernon', 'NN'), ('sydor', 'NNS'), ('went', 'VBD'), ('off', 'RB'), ('at', 'IN'), ('24', 'CD'), ('nieuwendyk', 'JJ'), ('went', 'VBD'), ('off', 'RB'), ('at', 'IN'), ('22', 'CD'), ('as', 'IN'), ('the', 'DT'), ('teams', 'NNS'), ('skated', 'VBD'), ('on', 'IN'), ('otto', 'IN'), ('skating', 'VBG'), ('down', 'RP'), ('the', 'DT'), ('far', 'RB'), ('side', 'NN'), ('stepped', 'VBD'), ('around', 'IN'), ('mcsorley', 'NN'), ('cut', 'NN'), ('to', 'TO'), ('the', 'DT'), ('net', 'JJ'), ('and', 'CC'), ('passed', 'VBD'), ('to', 'TO'), ('dahlquist', 'VB'), ('in', 'IN'), ('the', 'DT'), ('low', 'JJ'), ('slot', 'NN'), ('dahlquist', 'NN'), ('cut', 'NN'), ('through', 'IN'), ('the', 'DT'), ('top', 'NN'), ('of', 'IN'), ('the', 'DT'), ('crease', 'NN'), ('and', 'CC'), ('put', 'VBD'), ('the', 'DT'), ('puck', 'NN'), ('in', 'IN'), ('under', 'IN'), ('diving', 'VBG'), ('hrudey', 'NN'), ('carson', 'NN'), ('and', 'CC'), ('rychel', 'NN'), ('came', 'VBD'), ('in', 'IN'), ('on', 'IN'), ('when', 'WRB'), ('carson', 'NN'), ('passed', 'VBD'), ('across', 'IN'), ('to', 'TO'), ('rychel', 'VB'), ('fleury', 'NN'), ('tripped', 'VBD'), ('rychel', 'NN'), ('with', 'IN'), ('no', 'DT'), ('call', 'NN'), ('the', 'DT'), ('puck', 'NN'), ('got', 'VBD'), ('shoveled', 'VBN'), ('into', 'IN'), ('the', 'DT'), ('far', 'RB'), ('corner', 'NN'), ('where', 'WRB'), ('fleury', 'NN'), ('knocked', 'VBD'), ('rychel', 'JJ'), ('down', 'RB'), ('and', 'CC'), ('checked', 'VBD'), ('him', 'PRP'), ('from', 'IN'), ('behind', 'IN'), ('into', 'IN'), ('the', 'DT'), ('boards', 'NNS'), ('drawing', 'VBG'), ('minute', 'NN'), ('major', 'JJ'), ('and', 'CC'), ('game', 'NN'), ('misconduct', 'NN'), ('at', 'IN'), ('the', 'DT'), ('08', 'CD'), ('mark', 'NN'), ('unfortunately', 'RB'), ('the', 'DT'), ('kings', 'NNS'), ('squandered', 'VBD'), ('the', 'DT'), ('minute', 'NN'), ('power', 'NN'), ('play', 'NN'), ('when', 'WRB'), ('granato', 'NN'), ('at', 'IN'), ('44', 'CD'), ('and', 'CC'), ('watters', 'NNS'), ('at', 'IN'), ('19', 'CD'), ('took', 'VBD'), ('penalties', 'NNS'), ('the', 'DT'), ('flames', 'NNS'), ('closed', 'VBD'), ('to', 'TO'), ('within', 'IN'), ('at', 'IN'), ('the', 'DT'), ('47', 'CD'), ('mark', 'NN'), ('macinnis', 'NN'), ('at', 'IN'), ('the', 'DT'), ('near', 'JJ'), ('point', 'NN'), ('passed', 'VBD'), ('to', 'TO'), ('yawney', 'VB'), ('at', 'IN'), ('the', 'DT'), ('far', 'RB'), ('point', 'NN'), ('he', 'PRP'), ('took', 'VBD'), ('few', 'JJ'), ('strides', 'NNS'), ('towards', 'IN'), ('the', 'DT'), ('net', 'NN'), ('wound', 'VBD'), ('up', 'RB'), ('and', 'CC'), ('drove', 'VB'), ('shot', 'NN'), ('off', 'IN'), ('the', 'DT'), ('near', 'JJ'), ('post', 'NN'), ('and', 'CC'), ('in', 'IN'), ('over', 'IN'), ('the', 'DT'), ('glove', 'NN'), ('of', 'IN'), ('hrudey', 'NN'), ('the', 'DT'), ('play', 'NN'), ('started', 'VBD'), ('on', 'IN'), ('another', 'DT'), ('faceoff', 'NN'), ('that', 'IN'), ('the', 'DT'), ('kings', 'NNS'), ('lost', 'VBN'), ('timeout', 'IN'), ('la', 'NN'), ('macinnis', 'NN'), ('took', 'VBD'), ('penalty', 'NN'), ('at', 'IN'), ('56', 'CD'), ('and', 'CC'), ('the', 'DT'), ('kings', 'NNS'), ('converted', 'VBN'), ('on', 'IN'), ('the', 'DT'), ('power', 'NN'), ('play', 'NN'), ('to', 'TO'), ('seal', 'VB'), ('the', 'DT'), ('victory', 'NN'), ('sandstrom', 'NN'), ('skating', 'VBG'), ('down', 'RP'), ('the', 'DT'), ('far', 'RB'), ('wing', 'NN'), ('in', 'IN'), ('the', 'DT'), ('flames', 'NNS'), ('zone', 'VBP'), ('cut', 'VBN'), ('towards', 'IN'), ('the', 'DT'), ('back', 'NN'), ('of', 'IN'), ('the', 'DT'), ('net', 'JJ'), ('just', 'RB'), ('as', 'IN'), ('he', 'PRP'), ('crossed', 'VBD'), ('the', 'DT'), ('goal', 'NN'), ('line', 'NN'), ('he', 'PRP'), ('passed', 'VBD'), ('the', 'DT'), ('puck', 'NN'), ('into', 'IN'), ('the', 'DT'), ('low', 'JJ'), ('slot', 'NN'), ('on', 'IN'), ('the', 'DT'), ('far', 'RB'), ('side', 'NN'), ('to', 'TO'), ('carson', 'VB'), ('who', 'WP'), ('shot', 'VBD'), ('off', 'RP'), ('the', 'DT'), ('pass', 'NN'), ('beating', 'VBG'), ('vernon', 'NN'), ('on', 'IN'), ('the', 'DT'), ('ice', 'NN'), ('stick', 'JJ'), ('side', 'NN'), ('at', 'IN'), ('the', 'DT'), ('16', 'CD'), ('17', 'CD'), ('mark', 'NN'), ('skrudland', 'NN'), ('went', 'VBD'), ('off', 'IN'), ('for', 'IN'), ('slashing', 'VBG'), ('and', 'CC'), ('stern', 'JJ'), ('went', 'VBD'), ('crazy', 'JJ'), ('as', 'IN'), ('he', 'PRP'), ('went', 'VBD'), ('after', 'IN'), ('shuchuk', 'NN'), ('stern', 'NN'), ('wound', 'VBD'), ('up', 'RP'), ('with', 'IN'), ('double', 'JJ'), ('minor', 'NN'), ('for', 'IN'), ('roughing', 'VBG'), ('single', 'JJ'), ('minor', 'NN'), ('for', 'IN'), ('cross', 'NN'), ('checking', 'NN'), ('and', 'CC'), ('10', 'CD'), ('minute', 'NN'), ('misconduct', 'NN'), ('and', 'CC'), ('he', 'PRP'), ('took', 'VBD'), ('the', 'DT'), ('flames', 'NNS'), ('right', 'VBD'), ('out', 'IN'), ('of', 'IN'), ('the', 'DT'), ('game', 'NN'), ('on', 'IN'), ('the', 'DT'), ('plus', 'JJ'), ('side', 'NN'), ('the', 'DT'), ('kings', 'NNS'), ('for', 'IN'), ('the', 'DT'), ('most', 'JJS'), ('part', 'NN'), ('played', 'VBD'), ('very', 'RB'), ('disciplined', 'JJ'), ('hockey', 'NN'), ('as', 'IN'), ('they', 'PRP'), ('let', 'VBP'), ('calgary', 'JJ'), ('retaliate', 'VB'), ('the', 'DT'), ('kings', 'NNS'), ('played', 'VBD'), ('good', 'JJ'), ('team', 'NN'), ('defense', 'NN'), ('and', 'CC'), ('excellent', 'JJ'), ('penalty', 'NN'), ('killing', 'VBG'), ('on', 'IN'), ('the', 'DT'), ('minus', 'JJ'), ('side', 'NN'), ('the', 'DT'), ('kings', 'NNS'), ('lost', 'VBD'), ('almost', 'RB'), ('every', 'DT'), ('face', 'NN'), ('off', 'IN'), ('this', 'DT'), ('must', 'MD'), ('improve', 'VB'), ('or', 'CC'), ('the', 'DT'), ('flames', 'NNS'), ('will', 'MD'), ('surely', 'RB'), ('get', 'VB'), ('that', 'DT'), ('power', 'NN'), ('play', 'VB'), ('back', 'RB'), ('on', 'IN'), ('track', 'NN'), ('notes', 'NNS'), ('------', 'VBP'), ('the', 'DT'), ('kings', 'NNS'), ('recalled', 'VBD'), ('guy', 'NN'), ('leveque', 'NN'), ('brandy', 'NN'), ('semchuk', 'NN'), ('and', 'CC'), ('jim', 'NN'), ('thomson', 'NN'), ('from', 'IN'), ('phoenix', 'JJ'), ('wayne', 'NN'), ('gretzkys', 'VBD'), ('1st', 'CD'), ('period', 'NN'), ('assist', 'NN'), ('was', 'VBD'), ('his', 'PRP$'), ('307th', 'JJ'), ('career', 'NN'), ('playoff', 'NN'), ('point', 'NN'), ('the', 'DT'), ('kings', 'NNS'), ('entered', 'VBD'), ('the', 'DT'), ('game', 'NN'), ('24th', 'CD'), ('in', 'IN'), ('the', 'DT'), ('league', 'NN'), ('in', 'IN'), ('shots', 'NNS'), ('per', 'IN'), ('game', 'NN'), ('against', 'IN'), ('giving', 'VBG'), ('the', 'DT'), ('opposing', 'VBG'), ('team', 'NN'), ('an', 'DT'), ('average', 'NN'), ('of', 'IN'), ('34', 'CD'), ('shots', 'NNS'), ('per', 'IN'), ('game', 'NN'), ('flames', 'NNS'), ('goaltender', 'VBP'), ('mike', 'NN'), ('vernon', 'NN'), ('entered', 'VBD'), ('the', 'DT'), ('game', 'NN'), ('with', 'IN'), ('record', 'NN'), ('in', 'IN'), ('afternoon', 'NN'), ('games', 'NNS'), ('the', 'DT'), ('flames', 'NNS'), ('entered', 'VBD'), ('the', 'DT'), ('game', 'NN'), ('with', 'IN'), ('34', 'CD'), ('success', 'NN'), ('rate', 'NN'), ('on', 'IN'), ('the', 'DT'), ('power', 'NN'), ('play', 'NN'), ('over', 'IN'), ('their', 'PRP$'), ('last', 'JJ'), ('games', 'NNS'), ('the', 'DT'), ('teams', 'NNS'), ('were', 'VBD'), ('against', 'IN'), ('each', 'DT'), ('other', 'JJ'), ('in', 'IN'), ('the', 'DT'), ('regular', 'JJ'), ('season', 'NN'), ('playoffs', 'NNS'), ('campbell', 'VBP'), ('conference', 'NN'), ('smythe', 'NN'), ('division', 'NN'), ('la', 'FW'), ('cal', 'JJ'), ('la', 'NN'), ('leads', 'VBZ'), ('win', 'VB'), ('van', 'NN'), ('norris', 'JJ'), ('division', 'NN'), ('stl', 'NN'), ('chi', 'NN'), ('stl', 'NN'), ('leads', 'VBZ'), ('tor', 'NN'), ('det', 'NN'), ('wales', 'NNS'), ('conference', 'NN'), ('adams', 'NNS'), ('division', 'NN'), ('buf', 'NN'), ('bos', 'NN'), ('ot', 'NN'), ('buf', 'NN'), ('leads', 'VBZ'), ('mon', 'JJ'), ('que', 'NN'), ('ot', 'NN'), ('que', 'NN'), ('leads', 'VBZ'), ('patrick', 'JJ'), ('division', 'NN'), ('nj', 'NN'), ('pit', 'NN'), ('pit', 'NN'), ('leads', 'VBZ'), ('nyi', 'DT'), ('was', 'VBD'), ('was', 'VBD'), ('leads', 'JJ'), ('records', 'NNS'), ('--------', 'VBP'), ('vs', 'IN'), ('smythe', 'JJ'), ('norris', 'JJ'), ('patrck', 'NN'), ('adams', 'NNS'), ('overall', 'JJ'), ('================================================', 'NNP'), ('home', 'NN'), ('road', 'NN'), ('==============================================================', 'NNP'), ('total', 'NN'), ('box', 'NN'), ('score', 'NN'), ('=========================', 'NNP'), ('calgary', 'JJ'), ('los', 'NN'), ('angeles', 'NNS'), ('=========================', 'VBP'), ('1st', 'CD'), ('period', 'NN'), ('la', 'NN'), ('sydor', 'NN'), ('gretzky', 'NN'), ('sandstrom', 'NN'), ('),', 'VBD'), ('16', 'CD'), ('la', 'NN'), ('millen', 'VBN'), ('high', 'JJ'), ('sticking', 'VBG'), ('57', 'CD'), ('cal', 'JJ'), ('fleury', 'NN'), ('high', 'JJ'), ('sticking', 'VBG'), ('57', 'CD'), ('cal', 'JJ'), ('skrudland', 'NN'), ('interference', 'NN'), ('12', 'CD'), ('25', 'CD'), ('la', 'NN'), ('carson', 'NN'), ('tripping', 'VBG'), ('14', 'CD'), ('53', 'CD'), ('cal', 'JJ'), ('dahlquist', 'NN'), ('holding', 'VBG'), ('stick', 'JJ'), ('18', 'CD'), ('34', 'CD'), ('cal', 'JJ'), ('dahl', 'NN'), ('roughing', 'VBG'), ('19', 'CD'), ('30', 'CD'), ('2nd', 'CD'), ('period', 'NN'), ('cal', 'JJ'), ('verson', 'NN'), ('delay', 'NN'), ('of', 'IN'), ('game', 'NN'), ('served', 'VBN'), ('by', 'IN'), ('ashton', 'NN'), ('),', '$'), ('34', 'CD'), ('cal', 'JJ'), ('suter', 'NN'), ('fleury', 'NN'), ('),', 'VBD'), ('48', 'CD'), ('sh', 'NN'), ('la', 'NN'), ('carson', 'NN'), ('shuchuk', 'NN'), ('sydor', 'NN'), ('),', 'VBD'), ('13', 'CD'), ('pp', 'NN'), ('la', 'NN'), ('huddy', 'JJ'), ('taylor', 'NN'), ('rychel', 'NN'), ('),', 'VBD'), ('37', 'CD'), ('la', 'NN'), ('mcsorley', 'NN'), ('unassisted', 'VBD'), ('),', '$'), ('36', 'CD'), ('cal', 'JJ'), ('skrudland', 'NN'), ('elbowing', 'VBG'), ('10', 'CD'), ('53', 'CD'), ('la', 'NN'), ('sydor', 'NN'), ('tripping', 'VBG'), ('12', 'CD'), ('35', 'CD'), ('la', 'NN'), ('watters', 'NNS'), ('hooking', 'VBG'), ('14', 'CD'), ('40', 'CD'), ('la', 'NN'), ('mcsorley', 'VBD'), ('holding', 'VBG'), ('17', 'CD'), ('19', 'CD'), ('cal', 'JJ'), ('suter', 'NN'), ('high', 'JJ'), ('sticking', 'VBG'), ('17', 'CD'), ('31', 'CD'), ('la', 'NN'), ('sandstrom', 'NN'), ('hooking', 'VBG'), ('18', 'CD'), ('03', 'CD'), ('3rd', 'CD'), ('period', 'NN'), ('la', 'NN'), ('millen', 'FW'), ('granato', 'NN'), ('donnelly', 'RB'), ('),', 'VBZ'), ('06', 'CD'), ('la', 'NN'), ('sydor', 'NN'), ('hooking', 'VBG'), ('24', 'CD'), ('cal', 'JJ'), ('nieuwendyk', 'NN'), ('tripping', 'VBG'), ('22', 'CD'), ('cal', 'JJ'), ('dahlquist', 'NN'), ('otto', 'IN'), ('),', '$'), ('23', 'CD'), ('cal', 'JJ'), ('fleury', 'NN'), ('major', 'JJ'), ('boarding', 'VBG'), ('),', 'JJ'), ('game', 'NN'), ('misconduct', 'NN'), ('08', 'CD'), ('la', 'NN'), ('granato', 'NN'), ('tripping', 'VBG'), ('44', 'CD'), ('la', 'JJ'), ('watters', 'NNS'), ('interference', 'VBP'), ('19', 'CD'), ('cal', 'JJ'), ('yawney', 'NN'), ('macinnis', 'NN'), ('reichel', 'NN'), ('),', 'VBD'), ('47', 'CD'), ('cal', 'JJ'), ('macinnis', 'NN'), ('roughing', 'VBG'), ('56', 'CD'), ('la', 'JJ'), ('carson', 'NN'), ('sandstrom', 'NN'), ('robitaille', 'NN'), ('),', 'VBD'), ('10', 'CD'), ('32', 'CD'), ('pp', 'NN'), ('la', 'NN'), ('hardy', 'VBD'), ('holding', 'VBG'), ('11', 'CD'), ('38', 'CD'), ('cal', 'JJ'), ('skrudland', 'NN'), ('slashing', 'VBG'), ('16', 'CD'), ('17', 'CD'), ('cal', 'JJ'), ('stern', 'NN'), ('double', 'JJ'), ('roughing', 'VBG'), ('cross', 'NN'), ('checking', 'VBG'), ('10', 'CD'), ('min', 'JJ'), ('misconduct', 'NN'), ('16', 'CD'), ('17', 'CD'), ('overtime', 'NN'), ('none', 'NN'), ('shots', 'NNS'), ('------', 'VBP'), ('los', 'JJ'), ('angeles', 'NNS'), ('14', 'CD'), ('31', 'CD'), ('calgary', 'JJ'), ('11', 'CD'), ('24', 'CD'), ('power', 'NN'), ('play', 'NN'), ('conversions', 'NNS'), ('-----------------------', 'VBP'), ('for', 'IN'), ('of', 'IN'), ('10', 'CD'), ('for', 'IN'), ('the', 'DT'), ('year', 'NN'), ('of', 'IN'), ('10', 'CD'), ('20', 'CD'), ('00', 'CD'), ('against', 'IN'), ('of', 'IN'), ('for', 'IN'), ('the', 'DT'), ('year', 'NN'), ('of', 'IN'), ('100', 'CD'), ('00', 'CD'), ('goalies', 'NNS'), ('--------', 'NNP'), ('los', 'NN'), ('angeles', 'NNS'), ('hrudey', 'VBP'), ('calgary', 'JJ'), ('vernon', 'NN'), ('attendance', 'NN'), ('18', 'CD'), ('605', 'CD'), ('scratches', 'NNS'), ('----------', 'JJ'), ('rob', 'NNS'), ('blake', 'VBP'), ('back', 'RP'), ('contusion', 'NN'), ('guy', 'NN'), ('leveque', 'NN'), ('numbers', 'NNS'), ('lonnie', 'VBP'), ('loach', 'JJ'), ('numbers', 'NNS'), ('marc', 'VBP'), ('potvin', 'JJ'), ('numbers', 'NNS'), ('brandy', 'VBP'), ('semchuk', 'JJ'), ('numbers', 'NNS'), ('robb', 'VBP'), ('stauber', 'JJ'), ('numbers', 'NNS'), ('brent', 'VBP'), ('thompson', 'JJ'), ('numbers', 'NNS'), ('jim', 'VBP'), ('thomson', 'JJ'), ('numbers', 'NNS'), ('lines', 'NNS'), ('forwards', 'NNS'), ('----------------', 'VBP'), ('robitaille', 'JJ'), ('gretzky', 'NN'), ('sandstrom', 'NN'), ('donnelly', 'RB'), ('millen', 'VBN'), ('kurri', 'NN'), ('rychel', 'NN'), ('conacher', 'NN'), ('taylor', 'NN'), ('granato', 'NN'), ('carson', 'NN'), ('shuchuk', 'NN'), ('lines', 'NNS'), ('defense', 'NN'), ('----------------', 'NN'), ('huddy', 'JJ'), ('sydor', 'NN'), ('watters', 'NNS'), ('zhitnik', 'VBP'), ('hardy', 'JJ'), ('mcsorley', 'NN'), ('denotes', 'NNS'), ('starting', 'VBG'), ('lineup', 'NN'), ('next', 'JJ'), ('game', 'NN'), ('----------', 'NNP'), ('wednesday', 'VBZ'), ('april', 'VB'), ('21', 'CD'), ('calgary', 'JJ'), ('flames', 'NNS'), ('30pm', 'CD'), ('pacific', 'JJ'), ('time', 'NN'), ('on', 'IN'), ('prime', 'JJ'), ('ticket', 'NN'), ('===============================================================================', 'NNP'), ('stan', 'NN'), ('willis', 'NN'), ('net', 'JJ'), ('contact', 'NN'), ('kings', 'NNS')] | ['los', 'angeles', 'king', 'note', 'game', 'report', 'king', 'calgary', 'flame', 'third', 'place', 'king', 'open', 'stanley', 'cup', 'playoff', 'calgary', 'second', 'place', 'flame', 'come', 'impressive', 'victory', 'front', 'non', 'sellout', 'crowd', 'saddledome', 'calgary', 'symthe', 'division', 'playoff', 'hockey', 'team', 'seem', 'bit', 'tense', 'opening', 'period', 'though', 'king', 'score', 'opening', 'face', 'king', 'get', 'flow', 'game', 'much', 'earlier', 'flame', 'play', 'stand', 'team', 'defense', 'take', 'flame', 'first', 'period', 'record', 'first', 'shot', 'goal', 'king', 'rank', 'playoff', 'team', 'penalty', 'kill', 'shut', 'flame', 'flame', 'go', 'power', 'play', 'could', 'record', 'shot', 'goal', 'opportunity', 'king', 'problem', 'power', 'play', 'yet', 'manager', 'score', 'goal', 'try', 'king', 'forward', 'back', 'check', 'defense', 'stand', 'flame', 'blue', 'line', 'allow', 'king', 'take', 'take', 'home', 'ice', 'advantage', 'away', 'flame', 'rob', 'blake', 'miss', 'game', 'due', 'low', 'back', 'contusion', 'ex', 'pected', 'lineup', 'wednesday', 'wayne', 'gretzky', 'suffer', 'charlie', 'horse', 'right', 'leg', 'take', 'shift', 'second', 'period', 'retire', 'dressing', 'room', 'rest', 'game', 'interview', 'radio', 'morning', 'state', 'fine', 'would', 'lineup', 'wednesday', 'period', 'king', 'get', 'thing', 'start', 'right', 'opening', 'face', 'gretzky', 'win', 'draw', 'puck', 'go', 'sydor', 'cross', 'center', 'ice', 'slap', 'puck', 'flame', 'zone', 'behind', 'net', 'puck', 'carry', 'around', 'far', 'side', 'robitaille', 'wacked', 'rebound', 'bounce', 'sandstrom', 'put', 'puck', 'behind', 'flame', 'net', 'gretzky', 'pick', 'gretzky', 'set', 'office', 'move', 'near', 'side', 'pass', 'near', 'circle', 'sydor', 'move', 'sydor', 'get', 'puck', 'face', 'dot', 'hash', 'mark', 'shoot', 'pas', 'beat', 'vernon', 'low', 'legs', 'millen', 'fleury', 'go', 'skrudland', 'go', 'king', 'fail', 'convert', 'carson', 'go', 'flame', 'fail', 'convert', 'dahlquist', 'go', 'dahl', 'go', 'give', 'king', 'second', 'fail', 'convert', 'king', 'record', 'goal', 'post', 'period', 'period', 'king', 'open', 'carry', 'period', 'fail', 'convert', 'second', 'leave', 'vernon', 'put', 'bounce', 'puck', 'stand', 'receive', 'delay', 'game', 'calgary', 'even', 'score', 'ensue', 'king', 'power', 'play', 'kurri', 'puck', 'neutral', 'zone', 'try', 'put', 'puck', 'flame', 'zone', 'hit', 'stick', 'fleury', 'bounce', 'suter', 'flame', 'blue', 'line', 'suter', 'skate', 'near', 'wing', 'king', 'zone', 'fake', 'shot', 'circle', 'skate', 'around', 'kurri', 'cut', 'thorugh', 'crease', 'get', 'hrudey', 'go', 'put', 'puck', 'behind', 'hrudey', 'stick', 'side', 'short', 'hander', 'king', 'reclaim', 'lead', 'second', 'later', 'power', 'play', 'shuchuk', 'far', 'circle', 'pass', 'sydor', 'top', 'slot', 'head', 'net', 'sydors', 'shoot', 'hit', 'shuchuk', 'back', 'drop', 'low', 'slot', 'king', 'shuchuk', 'granato', 'check', 'flame', 'carson', 'come', 'far', 'corner', 'pick', 'loose', 'puck', 'snap', 'wrist', 'shot', 'leg', 'vernon', 'foot', 'crease', 'king', 'widen', 'lead', 'second', 'later', 'rychel', 'check', 'puck', 'flame', 'blue', 'line', 'taylor', 'pick', 'puck', 'send', 'pas', 'cross', 'slot', 'huddy', 'huddy', 'shot', 'pas', 'near', 'face', 'dot', 'beat', 'dive', 'vernon', 'glove', 'side', 'later', 'king', 'goal', 'lead', 'mcsorley', 'take', 'shot', 'form', 'near', 'point', 'hit', 'flame', 'deflect', 'towards', 'board', 'marty', 'get', 'rebound', 'skate', 'bottom', 'circle', 'sent', 'pas', 'low', 'slot', 'hit', 'dahlquist', 'leg', 'deflect', 'past', 'stick', 'vernon', 'skrudland', 'go', 'king', 'could', 'convert', 'sydor', 'go', 'watters', 'go', 'give', 'flame', 'second', 'fail', 'convert', 'mcsorley', 'go', 'flame', 'consecutive', 'power', 'play', 'flame', 'kill', 'suter', 'go', 'high', 'sticking', 'sandstrom', 'go', 'close', 'period', 'king', 'hit', 'goal', 'post', 'period', 'period', 'king', 'use', 'phrase', 'initiate', 'retaliate', 'evident', 'period', 'king', 'continue', 'pound', 'body', 'flame', 'continue', 'take', 'bad', 'penalty', 'take', 'game', 'king', 'extend', 'lead', 'goal', 'mark', 'king', 'shoot', 'puck', 'near', 'corner', 'flame', 'zone', 'vernon', 'go', 'behind', 'net', 'cut', 'puck', 'could', 'control', 'donnelly', 'behind', 'wacked', 'puck', 'send', 'low', 'slot', 'vernon', 'slide', 'back', 'crease', 'granato', 'get', 'shot', 'hit', 'flame', 'bounce', 'left', 'net', 'millen', 'fire', 'rebound', 'behind', 'vernon', 'sydor', 'go', 'nieuwendyk', 'go', 'team', 'skate', 'otto', 'skate', 'far', 'side', 'step', 'around', 'mcsorley', 'cut', 'net', 'pass', 'dahlquist', 'low', 'slot', 'dahlquist', 'cut', 'top', 'crease', 'put', 'puck', 'dive', 'hrudey', 'carson', 'rychel', 'come', 'carson', 'pass', 'across', 'rychel', 'fleury', 'trip', 'rychel', 'call', 'puck', 'get', 'shovel', 'far', 'corner', 'fleury', 'knock', 'rychel', 'check', 'behind', 'board', 'draw', 'minute', 'major', 'game', 'misconduct', 'mark', 'unfortunately', 'king', 'squander', 'minute', 'power', 'play', 'granato', 'watters', 'take', 'penalty', 'flame', 'close', 'within', 'mark', 'macinnis', 'near', 'point', 'pass', 'yawney', 'far', 'point', 'take', 'stride', 'towards', 'net', 'wind', 'drive', 'shot', 'near', 'post', 'glove', 'hrudey', 'play', 'start', 'another', 'faceoff', 'king', 'lose', 'timeout', 'la', 'macinnis', 'take', 'penalty', 'king', 'convert', 'power', 'play', 'seal', 'victory', 'sandstrom', 'skate', 'far', 'wing', 'flame', 'zone', 'cut', 'towards', 'back', 'net', 'cross', 'goal', 'line', 'pass', 'puck', 'low', 'slot', 'far', 'side', 'carson', 'shoot', 'pas', 'beat', 'vernon', 'ice', 'stick', 'side', 'mark', 'skrudland', 'go', 'slash', 'stern', 'go', 'crazy', 'go', 'shuchuk', 'stern', 'wind', 'double', 'minor', 'rough', 'single', 'minor', 'cross', 'checking', 'minute', 'misconduct', 'take', 'flame', 'right', 'game', 'plus', 'side', 'king', 'part', 'play', 'disciplined', 'hockey', 'let', 'calgary', 'retaliate', 'king', 'play', 'good', 'team', 'defense', 'excellent', 'penalty', 'kill', 'minus', 'side', 'king', 'lose', 'almost', 'every', 'face', 'must', 'improve', 'flame', 'surely', 'get', 'power', 'play', 'back', 'track', 'note', 'king', 'recall', 'guy', 'leveque', 'brandy', 'semchuk', 'jim', 'thomson', 'phoenix', 'wayne', 'gretzkys', 'period', 'assist', 'career', 'playoff', 'point', 'king', 'enter', 'game', 'league', 'shot', 'per', 'game', 'give', 'oppose', 'team', 'average', 'shot', 'per', 'game', 'flame', 'goaltender', 'mike', 'vernon', 'enter', 'game', 'record', 'afternoon', 'game', 'flame', 'enter', 'game', 'success', 'rate', 'power', 'play', 'last', 'game', 'team', 'regular', 'season', 'playoff', 'campbell', 'conference', 'smythe', 'division', 'la', 'cal', 'la', 'lead', 'win', 'van', 'norris', 'division', 'stl', 'chi', 'stl', 'lead', 'tor', 'det', 'wale', 'conference', 'adam', 'division', 'buf', 'bos', 'ot', 'buf', 'lead', 'mon', 'que', 'ot', 'que', 'lead', 'patrick', 'division', 'nj', 'pit', 'pit', 'lead', 'nyi', 'leads', 'record', 'v', 'smythe', 'norris', 'patrck', 'adam', 'overall', 'home', 'road', 'total', 'box', 'score', 'calgary', 'los', 'angeles', 'period', 'la', 'sydor', 'gretzky', 'sandstrom', 'la', 'millen', 'high', 'stick', 'cal', 'fleury', 'high', 'stick', 'cal', 'skrudland', 'interference', 'la', 'carson', 'trip', 'cal', 'dahlquist', 'hold', 'stick', 'cal', 'dahl', 'rough', 'period', 'cal', 'verson', 'delay', 'game', 'serve', 'ashton', 'cal', 'suter', 'fleury', 'sh', 'la', 'carson', 'shuchuk', 'sydor', 'pp', 'la', 'huddy', 'taylor', 'rychel', 'la', 'mcsorley', 'unassisted', 'cal', 'skrudland', 'elbow', 'la', 'sydor', 'trip', 'la', 'watters', 'hook', 'la', 'mcsorley', 'hold', 'cal', 'suter', 'high', 'stick', 'la', 'sandstrom', 'hook', 'period', 'la', 'millen', 'granato', 'donnelly', 'la', 'sydor', 'hook', 'cal', 'nieuwendyk', 'trip', 'cal', 'dahlquist', 'otto', 'cal', 'fleury', 'major', 'board', 'game', 'misconduct', 'la', 'granato', 'trip', 'la', 'watters', 'interference', 'cal', 'yawney', 'macinnis', 'reichel', 'cal', 'macinnis', 'rough', 'la', 'carson', 'sandstrom', 'robitaille', 'pp', 'la', 'hardy', 'hold', 'cal', 'skrudland', 'slash', 'cal', 'stern', 'double', 'rough', 'cross', 'check', 'min', 'misconduct', 'overtime', 'none', 'shot', 'los', 'angeles', 'calgary', 'power', 'play', 'conversion', 'year', 'year', 'goalie', 'los', 'angeles', 'hrudey', 'calgary', 'vernon', 'attendance', 'scratch', 'rob', 'blake', 'back', 'contusion', 'guy', 'leveque', 'number', 'lonnie', 'loach', 'number', 'marc', 'potvin', 'number', 'brandy', 'semchuk', 'number', 'robb', 'stauber', 'number', 'brent', 'thompson', 'number', 'jim', 'thomson', 'number', 'line', 'forward', 'robitaille', 'gretzky', 'sandstrom', 'donnelly', 'millen', 'kurri', 'rychel', 'conacher', 'taylor', 'granato', 'carson', 'shuchuk', 'line', 'defense', 'huddy', 'sydor', 'watters', 'zhitnik', 'hardy', 'mcsorley', 'denotes', 'start', 'lineup', 'next', 'game', 'wednesday', 'april', 'calgary', 'flame', 'pacific', 'time', 'prime', 'ticket', 'stan', 'willis', 'net', 'contact', 'king'] | ['los_angeles', 'angeles_king', 'calgary_flame', 'stanley_cup', 'cup_playoff', 'hockey_team', 'seem_bit', 'team_defense', 'take_flame', 'first_period', 'first_shot', 'shot_goal', 'penalty_kill', 'flame_flame', 'power_play', 'shot_goal', 'power_play', 'score_goal', 'goal_try', 'back_check', 'blue_line', 'take_take', 'take_home', 'due_low', 'low_back', 'wayne_gretzky', 'second_period', 'period_king', 'get_thing', 'thing_start', 'start_right', 'puck_go', 'behind_net', 'far_side', 'put_puck', 'get_puck', 'fail_convert', 'go_flame', 'fail_convert', 'go_give', 'fail_convert', 'record_goal', 'period_period', 'period_king', 'open_carry', 'fail_convert', 'second_leave', 'power_play', 'neutral_zone', 'try_put', 'put_puck', 'blue_line', 'skate_around', 'go_put', 'put_puck', 'stick_side', 'second_later', 'power_play', 'low_slot', 'second_later', 'blue_line', 'take_shot', 'low_slot', 'go_give', 'fail_convert', 'go_flame', 'power_play', 'go_high', 'period_king', 'period_period', 'period_king', 'use_phrase', 'period_king', 'bad_penalty', 'behind_net', 'low_slot', 'get_shot', 'far_side', 'low_slot', 'put_puck', 'game_misconduct', 'power_play', 'point_take', 'start_another', 'power_play', 'goal_line', 'line_pass', 'pass_puck', 'low_slot', 'far_side', 'stick_side', 'go_crazy', 'take_flame', 'play_good', 'good_team', 'team_defense', 'penalty_kill', 'almost_every', 'get_power', 'power_play', 'play_back', 'back_track', 'enter_game', 'game_league', 'per_game', 'game_give', 'oppose_team', 'per_game', 'enter_game', 'afternoon_game', 'enter_game', 'success_rate', 'power_play', 'play_last', 'last_game', 'game_team', 'regular_season', 'campbell_conference', 'smythe_division', 'norris_division', 'stl_chi', 'chi_stl', 'tor_det', 'wale_conference', 'buf_bos', 'patrick_division', 'home_road', 'box_score', 'calgary_los', 'los_angeles', 'gretzky_sandstrom', 'high_stick', 'high_stick', 'high_stick', 'board_game', 'game_misconduct', 'cross_check', 'los_angeles', 'angeles_calgary', 'calgary_power', 'power_play', 'year_year', 'los_angeles', 'number_line', 'gretzky_sandstrom', 'next_game', 'wednesday_april', 'calgary_flame', 'pacific_time', 'stan_willis', 'net_contact'] | rec_sport_hockey_53756 |@lemmatized los:4 angeles:4 king:35 note:2 game:18 report:1 calgary:9 flame:29 third:1 place:2 open:2 stanley:1 cup:1 playoff:5 second:7 come:3 impressive:1 victory:2 front:1 non:1 sellout:1 crowd:1 saddledome:1 symthe:1 division:5 hockey:2 team:7 seem:1 bit:1 tense:1 opening:3 period:15 though:1 score:4 face:5 get:8 flow:1 much:1 earlier:1 play:14 stand:3 defense:4 take:11 first:2 record:5 shot:11 goal:8 rank:1 penalty:5 kill:3 shut:1 go:20 power:10 could:3 opportunity:1 problem:1 yet:1 manager:1 try:2 forward:2 back:7 check:5 blue:3 line:6 allow:1 home:2 ice:3 advantage:1 away:1 rob:2 blake:2 miss:1 due:1 low:7 contusion:2 ex:1 pected:1 lineup:3 wednesday:3 wayne:2 gretzky:6 suffer:1 charlie:1 horse:1 right:3 leg:3 shift:1 retire:1 dressing:1 room:1 rest:1 interview:1 radio:1 morning:1 state:1 fine:1 would:1 thing:1 start:3 win:2 draw:2 puck:18 sydor:11 cross:5 center:1 slap:1 zone:6 behind:7 net:9 carry:2 around:3 far:8 side:9 robitaille:3 wacked:2 rebound:3 bounce:4 sandstrom:7 put:5 pick:3 set:1 office:1 move:2 near:8 pass:6 circle:4 dot:2 hash:1 mark:5 shoot:4 pas:5 beat:3 vernon:11 legs:1 millen:5 fleury:7 skrudland:6 fail:5 convert:7 carson:9 dahlquist:6 dahl:2 give:3 post:3 leave:1 receive:1 delay:2 even:1 ensue:1 kurri:3 neutral:1 hit:6 stick:8 suter:5 skate:6 wing:2 fake:1 cut:5 thorugh:1 crease:4 hrudey:5 short:1 hander:1 reclaim:1 lead:9 later:3 shuchuk:6 top:2 slot:7 head:1 sydors:1 drop:1 granato:6 corner:3 loose:1 snap:1 wrist:1 foot:1 widen:1 rychel:7 taylor:3 send:2 huddy:4 dive:2 glove:2 mcsorley:6 form:1 point:4 deflect:2 towards:3 board:3 marty:1 bottom:1 sent:1 past:1 watters:5 consecutive:1 high:4 sticking:1 close:2 use:1 phrase:1 initiate:1 retaliate:2 evident:1 continue:2 pound:1 body:1 bad:1 extend:1 control:1 donnelly:3 slide:1 left:1 fire:1 nieuwendyk:2 otto:2 step:1 across:1 trip:5 call:1 shovel:1 knock:1 minute:3 major:2 misconduct:4 unfortunately:1 squander:1 within:1 macinnis:4 yawney:2 stride:1 wind:2 drive:1 another:1 faceoff:1 lose:2 timeout:1 la:19 seal:1 slash:2 stern:3 crazy:1 double:2 minor:2 rough:4 single:1 checking:1 plus:1 part:1 disciplined:1 let:1 good:1 excellent:1 minus:1 almost:1 every:1 must:1 improve:1 surely:1 track:1 recall:1 guy:2 leveque:2 brandy:2 semchuk:2 jim:2 thomson:2 phoenix:1 gretzkys:1 assist:1 career:1 enter:3 league:1 per:2 oppose:1 average:1 goaltender:1 mike:1 afternoon:1 success:1 rate:1 last:1 regular:1 season:1 campbell:1 conference:2 smythe:2 cal:16 van:1 norris:2 stl:2 chi:1 tor:1 det:1 wale:1 adam:2 buf:2 bos:1 ot:2 mon:1 que:2 patrick:1 nj:1 pit:2 nyi:1 leads:1 v:1 patrck:1 overall:1 road:1 total:1 box:1 interference:2 hold:3 verson:1 serve:1 ashton:1 sh:1 pp:2 unassisted:1 elbow:1 hook:3 reichel:1 hardy:2 min:1 overtime:1 none:1 conversion:1 year:2 goalie:1 attendance:1 scratch:1 number:7 lonnie:1 loach:1 marc:1 potvin:1 robb:1 stauber:1 brent:1 thompson:1 conacher:1 zhitnik:1 denotes:1 next:1 april:1 pacific:1 time:1 prime:1 ticket:1 stan:1 willis:1 contact:1 |@bigram los_angeles:4 angeles_king:1 calgary_flame:2 stanley_cup:1 cup_playoff:1 hockey_team:1 seem_bit:1 team_defense:2 take_flame:2 first_period:1 first_shot:1 shot_goal:2 penalty_kill:2 flame_flame:1 power_play:10 score_goal:1 goal_try:1 back_check:1 blue_line:3 take_take:1 take_home:1 due_low:1 low_back:1 wayne_gretzky:1 second_period:1 period_king:5 get_thing:1 thing_start:1 start_right:1 puck_go:1 behind_net:2 far_side:3 put_puck:4 get_puck:1 fail_convert:5 go_flame:2 go_give:2 record_goal:1 period_period:2 open_carry:1 second_leave:1 neutral_zone:1 try_put:1 skate_around:1 go_put:1 stick_side:2 second_later:2 low_slot:5 take_shot:1 go_high:1 use_phrase:1 bad_penalty:1 get_shot:1 game_misconduct:2 point_take:1 start_another:1 goal_line:1 line_pass:1 pass_puck:1 go_crazy:1 play_good:1 good_team:1 almost_every:1 get_power:1 play_back:1 back_track:1 enter_game:3 game_league:1 per_game:2 game_give:1 oppose_team:1 afternoon_game:1 success_rate:1 play_last:1 last_game:1 game_team:1 regular_season:1 campbell_conference:1 smythe_division:1 norris_division:1 stl_chi:1 chi_stl:1 tor_det:1 wale_conference:1 buf_bos:1 patrick_division:1 home_road:1 box_score:1 calgary_los:1 gretzky_sandstrom:2 high_stick:3 board_game:1 cross_check:1 angeles_calgary:1 calgary_power:1 year_year:1 number_line:1 next_game:1 wednesday_april:1 pacific_time:1 stan_willis:1 net_contact:1 |
4,525 | I have a new scope and I thought I'd save a few bucks by
buying one with a function generator built in. After having it awhile
I noticed two things about the function generator. For one, there
seems to be a bias even when the 'pull-offset' is pushed in. That is,
I have to pull that know and adjust it to get a signal sans some
random 50mV bias.
The other _really_ annoying thing is that the damn output
won't go below about 1V p-p. I am a student ( you may have guessed
from my previous posts ), and I often have to measure the input
impedances of various circuits I build.Many of the circuits have
maximum input signals of way less than 500mV amplitude and most have
input impedances in the 10's of Kohm range. The thing is, in order to
use my function generator I have to divide the voltage to some thing
reasonable. Then, of course, to measurethe input impedance of my
circuit I am going to have to throw in another resistor in series.
With the 50ohm output of the generator I could just ignore it, but now
with this little divider there I have to figure that in. It's kind of
a pain in the ass.
Is there any way I could make myself a little box that could
solve this little problem. The box would tkae the function generator
input, lower the voltage and give an output impedance that is some
low, unchanging number. I would want to lower the voltage by a factor
of one hundred or so. I could just build a little buffer amp, but I'd
like to have this box not be active.
Any quick ideas. The scope's not broken. For other reasons I
had sent it to the shop to get repaired and they replaced it. The
function generator was the same way on that one, too.
please help as I am feeling very stupid
today, | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/sci.electronics/53508 | 12 | sci_electronics_53508 | [('have', 'VB'), ('new', 'JJ'), ('scope', 'NN'), ('and', 'CC'), ('thought', 'NN'), ('save', 'VBP'), ('few', 'JJ'), ('bucks', 'NNS'), ('by', 'IN'), ('buying', 'VBG'), ('one', 'CD'), ('with', 'IN'), ('function', 'NN'), ('generator', 'NN'), ('built', 'VBN'), ('in', 'IN'), ('after', 'IN'), ('having', 'VBG'), ('it', 'PRP'), ('awhile', 'RB'), ('noticed', 'VBD'), ('two', 'CD'), ('things', 'NNS'), ('about', 'IN'), ('the', 'DT'), ('function', 'NN'), ('generator', 'NN'), ('for', 'IN'), ('one', 'CD'), ('there', 'EX'), ('seems', 'VBZ'), ('to', 'TO'), ('be', 'VB'), ('bias', 'VBN'), ('even', 'RB'), ('when', 'WRB'), ('the', 'DT'), ('pull', 'NN'), ('offset', 'NN'), ('is', 'VBZ'), ('pushed', 'VBN'), ('in', 'IN'), ('that', 'DT'), ('is', 'VBZ'), ('have', 'VBP'), ('to', 'TO'), ('pull', 'VB'), ('that', 'DT'), ('know', 'NN'), ('and', 'CC'), ('adjust', 'VBP'), ('it', 'PRP'), ('to', 'TO'), ('get', 'VB'), ('signal', 'JJ'), ('sans', 'NNS'), ('some', 'DT'), ('random', 'VBP'), ('50mv', 'CD'), ('bias', 'IN'), ('the', 'DT'), ('other', 'JJ'), ('_really_', 'JJ'), ('annoying', 'VBG'), ('thing', 'NN'), ('is', 'VBZ'), ('that', 'IN'), ('the', 'DT'), ('damn', 'NN'), ('output', 'NN'), ('won', 'VBD'), ('go', 'VB'), ('below', 'IN'), ('about', 'RB'), ('1v', 'CD'), ('am', 'VBP'), ('student', 'NN'), ('you', 'PRP'), ('may', 'MD'), ('have', 'VB'), ('guessed', 'VBN'), ('from', 'IN'), ('my', 'PRP$'), ('previous', 'JJ'), ('posts', 'NNS'), ('),', 'VBP'), ('and', 'CC'), ('often', 'RB'), ('have', 'VBP'), ('to', 'TO'), ('measure', 'VB'), ('the', 'DT'), ('input', 'NN'), ('impedances', 'NNS'), ('of', 'IN'), ('various', 'JJ'), ('circuits', 'NNS'), ('build', 'VBP'), ('many', 'JJ'), ('of', 'IN'), ('the', 'DT'), ('circuits', 'NNS'), ('have', 'VBP'), ('maximum', 'VBN'), ('input', 'JJ'), ('signals', 'NNS'), ('of', 'IN'), ('way', 'NN'), ('less', 'JJR'), ('than', 'IN'), ('500mv', 'CD'), ('amplitude', 'NN'), ('and', 'CC'), ('most', 'JJS'), ('have', 'VBP'), ('input', 'VBN'), ('impedances', 'NNS'), ('in', 'IN'), ('the', 'DT'), ('10', 'CD'), ('of', 'IN'), ('kohm', 'NN'), ('range', 'VBP'), ('the', 'DT'), ('thing', 'NN'), ('is', 'VBZ'), ('in', 'IN'), ('order', 'NN'), ('to', 'TO'), ('use', 'VB'), ('my', 'PRP$'), ('function', 'NN'), ('generator', 'NN'), ('have', 'VBP'), ('to', 'TO'), ('divide', 'VB'), ('the', 'DT'), ('voltage', 'NN'), ('to', 'TO'), ('some', 'DT'), ('thing', 'NN'), ('reasonable', 'JJ'), ('then', 'RB'), ('of', 'IN'), ('course', 'NN'), ('to', 'TO'), ('measurethe', 'VB'), ('input', 'JJ'), ('impedance', 'NN'), ('of', 'IN'), ('my', 'PRP$'), ('circuit', 'NN'), ('am', 'VBP'), ('going', 'VBG'), ('to', 'TO'), ('have', 'VB'), ('to', 'TO'), ('throw', 'VB'), ('in', 'IN'), ('another', 'DT'), ('resistor', 'NN'), ('in', 'IN'), ('series', 'NN'), ('with', 'IN'), ('the', 'DT'), ('50ohm', 'CD'), ('output', 'NN'), ('of', 'IN'), ('the', 'DT'), ('generator', 'NN'), ('could', 'MD'), ('just', 'RB'), ('ignore', 'VB'), ('it', 'PRP'), ('but', 'CC'), ('now', 'RB'), ('with', 'IN'), ('this', 'DT'), ('little', 'JJ'), ('divider', 'NN'), ('there', 'RB'), ('have', 'VBP'), ('to', 'TO'), ('figure', 'VB'), ('that', 'DT'), ('in', 'IN'), ('it', 'PRP'), ('kind', 'NN'), ('of', 'IN'), ('pain', 'NN'), ('in', 'IN'), ('the', 'DT'), ('ass', 'NN'), ('is', 'VBZ'), ('there', 'RB'), ('any', 'DT'), ('way', 'NN'), ('could', 'MD'), ('make', 'VB'), ('myself', 'PRP'), ('little', 'JJ'), ('box', 'NN'), ('that', 'WDT'), ('could', 'MD'), ('solve', 'VB'), ('this', 'DT'), ('little', 'JJ'), ('problem', 'NN'), ('the', 'DT'), ('box', 'NN'), ('would', 'MD'), ('tkae', 'VB'), ('the', 'DT'), ('function', 'NN'), ('generator', 'NN'), ('input', 'NN'), ('lower', 'JJR'), ('the', 'DT'), ('voltage', 'NN'), ('and', 'CC'), ('give', 'VB'), ('an', 'DT'), ('output', 'NN'), ('impedance', 'NN'), ('that', 'WDT'), ('is', 'VBZ'), ('some', 'DT'), ('low', 'JJ'), ('unchanging', 'JJ'), ('number', 'NN'), ('would', 'MD'), ('want', 'VB'), ('to', 'TO'), ('lower', 'VB'), ('the', 'DT'), ('voltage', 'NN'), ('by', 'IN'), ('factor', 'NN'), ('of', 'IN'), ('one', 'CD'), ('hundred', 'CD'), ('or', 'CC'), ('so', 'RB'), ('could', 'MD'), ('just', 'RB'), ('build', 'VB'), ('little', 'JJ'), ('buffer', 'NN'), ('amp', 'NN'), ('but', 'CC'), ('like', 'IN'), ('to', 'TO'), ('have', 'VB'), ('this', 'DT'), ('box', 'NN'), ('not', 'RB'), ('be', 'VB'), ('active', 'JJ'), ('any', 'DT'), ('quick', 'JJ'), ('ideas', 'NNS'), ('the', 'DT'), ('scope', 'NN'), ('not', 'RB'), ('broken', 'VBN'), ('for', 'IN'), ('other', 'JJ'), ('reasons', 'NNS'), ('had', 'VBD'), ('sent', 'VBN'), ('it', 'PRP'), ('to', 'TO'), ('the', 'DT'), ('shop', 'NN'), ('to', 'TO'), ('get', 'VB'), ('repaired', 'VBN'), ('and', 'CC'), ('they', 'PRP'), ('replaced', 'VBD'), ('it', 'PRP'), ('the', 'DT'), ('function', 'NN'), ('generator', 'NN'), ('was', 'VBD'), ('the', 'DT'), ('same', 'JJ'), ('way', 'NN'), ('on', 'IN'), ('that', 'DT'), ('one', 'CD'), ('too', 'RB'), ('please', 'JJ'), ('help', 'NN'), ('as', 'IN'), ('am', 'VBP'), ('feeling', 'VBG'), ('very', 'RB'), ('stupid', 'JJ'), ('today', 'NN')] | ['new', 'scope', 'thought', 'save', 'buck', 'buy', 'one', 'function', 'generator', 'build', 'awhile', 'notice', 'two', 'thing', 'function', 'generator', 'one', 'seem', 'bias', 'even', 'pull', 'offset', 'push', 'pull', 'know', 'adjust', 'get', 'signal', 'sans', 'random', 'bias', 'annoy', 'thing', 'damn', 'output', 'win', 'go', 'student', 'may', 'guess', 'previous', 'post', 'often', 'measure', 'input', 'impedance', 'various', 'circuit', 'build', 'many', 'circuit', 'maximum', 'input', 'signal', 'way', 'less', 'amplitude', 'input', 'impedance', 'kohm', 'range', 'thing', 'order', 'use', 'function', 'generator', 'divide', 'voltage', 'thing', 'reasonable', 'course', 'measurethe', 'input', 'impedance', 'circuit', 'go', 'throw', 'another', 'resistor', 'series', 'output', 'generator', 'could', 'ignore', 'little', 'divider', 'figure', 'kind', 'pain', 'way', 'could', 'make', 'little', 'box', 'could', 'solve', 'little', 'problem', 'box', 'would', 'tkae', 'function', 'generator', 'input', 'low', 'voltage', 'give', 'output', 'impedance', 'low', 'unchanging', 'number', 'would', 'want', 'lower', 'voltage', 'factor', 'one', 'hundred', 'could', 'build', 'little', 'buffer', 'amp', 'like', 'box', 'active', 'quick', 'idea', 'scope', 'break', 'reason', 'send', 'shop', 'get', 'repair', 'replace', 'function', 'generator', 'way', 'one', 'please', 'help', 'feel', 'stupid', 'today'] | ['buy_one', 'function_generator', 'two_thing', 'function_generator', 'one_seem', 'win_go', 'previous_post', 'input_impedance', 'input_impedance', 'order_use', 'use_function', 'function_generator', 'input_impedance', 'way_could', 'could_make', 'make_little', 'little_box', 'little_problem', 'box_would', 'function_generator', 'low_voltage', 'number_would', 'would_want', 'one_hundred', 'could_build', 'build_little', 'function_generator', 'way_one', 'one_please', 'please_help'] | sci_electronics_53508 |@lemmatized new:1 scope:2 thought:1 save:1 buck:1 buy:1 one:4 function:5 generator:6 build:3 awhile:1 notice:1 two:1 thing:4 seem:1 bias:2 even:1 pull:2 offset:1 push:1 know:1 adjust:1 get:2 signal:2 sans:1 random:1 annoy:1 damn:1 output:3 win:1 go:2 student:1 may:1 guess:1 previous:1 post:1 often:1 measure:1 input:5 impedance:4 various:1 circuit:3 many:1 maximum:1 way:3 less:1 amplitude:1 kohm:1 range:1 order:1 use:1 divide:1 voltage:3 reasonable:1 course:1 measurethe:1 throw:1 another:1 resistor:1 series:1 could:4 ignore:1 little:4 divider:1 figure:1 kind:1 pain:1 make:1 box:3 solve:1 problem:1 would:2 tkae:1 low:2 give:1 unchanging:1 number:1 want:1 lower:1 factor:1 hundred:1 buffer:1 amp:1 like:1 active:1 quick:1 idea:1 break:1 reason:1 send:1 shop:1 repair:1 replace:1 please:1 help:1 feel:1 stupid:1 today:1 |@bigram buy_one:1 function_generator:5 two_thing:1 one_seem:1 win_go:1 previous_post:1 input_impedance:3 order_use:1 use_function:1 way_could:1 could_make:1 make_little:1 little_box:1 little_problem:1 box_would:1 low_voltage:1 number_would:1 would_want:1 one_hundred:1 could_build:1 build_little:1 way_one:1 one_please:1 please_help:1 |
4,526 | #
# |>
# |> |> |> First, my above statement doesnot say that "the existence of israeli citizens
# |> |> |> in the WB revoke their right of life" but it says "the israeli occupation
# |> |> |> of the WB revoke the right of life for some/most its citizens - basically
# |> |> |> revokes the right of for its military men". Clearly, occupation is an
# |> |> |> undeclared war; during war, attacks against military targets are fully legitimate.
# |>
# |> I'd like you to tell me, in your own words who the military are, wrt Israel then.
# |> In uniform, or not? On duty, or off-duty? Soldier to be, or not?
# |> (That is, since it's compulsory one might regard any Israeli as a
# |> legit target using that definition)
#
# in uniform or not ? doesnot make a difference if the person is in army.
# On duty, or off-duty? doesnot matter if the army man was on duty or on a
# vacation week.
# Soldier to be, or not? sure i meant only military men.
Just trying to get this clear, so please bear with me. As far as
I can tell, you're proposing the following rules of engagement
between Israel and the Palestinean resistance. Please feel
revise this preliminary draft as necessary:
1) Israeli military personnel are fair game at any time, in uniform
or out, on duty or off. In practice, since any male or female
Israeli of military age (18-?) may be off-duty military, all but
young children are acceptable targets. Since the existence of
Israel constitutes indication of hostile intent, no further
provocation is required.
2) To avoid inpermissable violations of the rights of non-combatant
Palestineans, Israeli forces must not engage Palestineans
without positive identification as military personnel, clear
indication of aggressive intent, and a clear field of fire.
a) Positive identification may be assured by either checking for
Palestinean military uniform, by posession of exclusively
military armament (ie, T78 MBTs or MiG-29 aircraft), or
self-identification (either verbal or documentary). Note
that dual-use military/civilian weaponry such as hand grenades,
AK-47 rifles, and RPG launchers do not constitute positive
military identification and require closer inspection such
as document checks.
b) Aggressive intent (as distinct from merely 'hostile' intent,
which is the normal condition) may be assured by not less
than three rounds of incoming fire separated by intervals
of not less than ten seconds between rounds. Note that a
single burst of automatic-weapon fire counds as one round,
as does a volley of rocket fire from more than one source.
As noted above, dual-use weaponry may NOT be assumed to
originate from military personnel, and thus do not justify
armed response.
c) A clear field of fire can be guaranteed by making a positive
military identification of all personnel in the target area of
the weapons to be used. Note that aggressive intent need not
be proven for all possible targets. Thus, if IAF aircraft
are attacked by a SAM crew it is not necessary to check the
papers of each crew member so long as none are obviously
civilians (as indicated, for instance, by the posession of
uniquely civilian weaponry such as stones, axes, and Molotov
coctails.) Since it is often difficult for IAF elements to
land and make the necessary checks, ground forces should
first screen prospective strike areas before AGM fire.
For ACM purposes, a cockpit-to-cockpit pass within 5 meters
is usually sufficient for this purpose, but may be repeated
if necessary. | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/talk.politics.mideast/75886 | 17 | talk_politics_mideast_75886 | [('|>', 'JJ'), ('|>', 'NNP'), ('|>', 'NNP'), ('|>', 'NNP'), ('first', 'JJ'), ('my', 'PRP$'), ('above', 'JJ'), ('statement', 'NN'), ('doesnot', 'NNS'), ('say', 'VBP'), ('that', 'IN'), ('the', 'DT'), ('existence', 'NN'), ('of', 'IN'), ('israeli', 'JJ'), ('citizens', 'NNS'), ('|>', 'VBP'), ('|>', 'JJ'), ('|>', 'NN'), ('in', 'IN'), ('the', 'DT'), ('wb', 'NN'), ('revoke', 'VBD'), ('their', 'PRP$'), ('right', 'NN'), ('of', 'IN'), ('life', 'NN'), ('but', 'CC'), ('it', 'PRP'), ('says', 'VBZ'), ('the', 'DT'), ('israeli', 'JJ'), ('occupation', 'NN'), ('|>', 'NNP'), ('|>', 'NNP'), ('|>', 'NNP'), ('of', 'IN'), ('the', 'DT'), ('wb', 'NN'), ('revoke', 'VBD'), ('the', 'DT'), ('right', 'NN'), ('of', 'IN'), ('life', 'NN'), ('for', 'IN'), ('some', 'DT'), ('most', 'RBS'), ('its', 'PRP$'), ('citizens', 'NNS'), ('basically', 'RB'), ('|>', 'VBP'), ('|>', 'JJ'), ('|>', 'NNP'), ('revokes', 'VBZ'), ('the', 'DT'), ('right', 'NN'), ('of', 'IN'), ('for', 'IN'), ('its', 'PRP$'), ('military', 'JJ'), ('men', 'NNS'), ('".', 'VBP'), ('clearly', 'RB'), ('occupation', 'NN'), ('is', 'VBZ'), ('an', 'DT'), ('|>', 'JJ'), ('|>', 'NN'), ('|>', 'NN'), ('undeclared', 'JJ'), ('war', 'NN'), ('during', 'IN'), ('war', 'NN'), ('attacks', 'NNS'), ('against', 'IN'), ('military', 'JJ'), ('targets', 'NNS'), ('are', 'VBP'), ('fully', 'RB'), ('legitimate', 'JJ'), ('|>', 'NNP'), ('|>', 'NNP'), ('like', 'IN'), ('you', 'PRP'), ('to', 'TO'), ('tell', 'VB'), ('me', 'PRP'), ('in', 'IN'), ('your', 'PRP$'), ('own', 'JJ'), ('words', 'NNS'), ('who', 'WP'), ('the', 'DT'), ('military', 'NN'), ('are', 'VBP'), ('wrt', 'IN'), ('israel', 'JJ'), ('then', 'RB'), ('|>', 'VBZ'), ('in', 'IN'), ('uniform', 'NN'), ('or', 'CC'), ('not', 'RB'), ('on', 'IN'), ('duty', 'NN'), ('or', 'CC'), ('off', 'IN'), ('duty', 'NN'), ('soldier', 'NN'), ('to', 'TO'), ('be', 'VB'), ('or', 'CC'), ('not', 'RB'), ('|>', 'VB'), ('that', 'DT'), ('is', 'VBZ'), ('since', 'IN'), ('it', 'PRP'), ('compulsory', 'VBZ'), ('one', 'CD'), ('might', 'MD'), ('regard', 'VB'), ('any', 'DT'), ('israeli', 'JJ'), ('as', 'IN'), ('|>', 'JJ'), ('legit', 'NN'), ('target', 'NN'), ('using', 'VBG'), ('that', 'DT'), ('definition', 'NN'), ('in', 'IN'), ('uniform', 'NN'), ('or', 'CC'), ('not', 'RB'), ('doesnot', 'JJ'), ('make', 'VB'), ('difference', 'NN'), ('if', 'IN'), ('the', 'DT'), ('person', 'NN'), ('is', 'VBZ'), ('in', 'IN'), ('army', 'NN'), ('on', 'IN'), ('duty', 'NN'), ('or', 'CC'), ('off', 'IN'), ('duty', 'NN'), ('doesnot', 'NN'), ('matter', 'NN'), ('if', 'IN'), ('the', 'DT'), ('army', 'NN'), ('man', 'NN'), ('was', 'VBD'), ('on', 'IN'), ('duty', 'NN'), ('or', 'CC'), ('on', 'IN'), ('vacation', 'NN'), ('week', 'NN'), ('soldier', 'NN'), ('to', 'TO'), ('be', 'VB'), ('or', 'CC'), ('not', 'RB'), ('sure', 'JJ'), ('meant', 'VBN'), ('only', 'RB'), ('military', 'JJ'), ('men', 'NNS'), ('just', 'RB'), ('trying', 'VBG'), ('to', 'TO'), ('get', 'VB'), ('this', 'DT'), ('clear', 'JJ'), ('so', 'IN'), ('please', 'JJ'), ('bear', 'NN'), ('with', 'IN'), ('me', 'PRP'), ('as', 'RB'), ('far', 'RB'), ('as', 'IN'), ('can', 'MD'), ('tell', 'VB'), ('you', 'PRP'), ('re', 'VBP'), ('proposing', 'VBG'), ('the', 'DT'), ('following', 'JJ'), ('rules', 'NNS'), ('of', 'IN'), ('engagement', 'NN'), ('between', 'IN'), ('israel', 'NN'), ('and', 'CC'), ('the', 'DT'), ('palestinean', 'JJ'), ('resistance', 'NN'), ('please', 'NN'), ('feel', 'VB'), ('revise', 'NN'), ('this', 'DT'), ('preliminary', 'JJ'), ('draft', 'NN'), ('as', 'IN'), ('necessary', 'JJ'), ('israeli', 'JJ'), ('military', 'JJ'), ('personnel', 'NNS'), ('are', 'VBP'), ('fair', 'JJ'), ('game', 'NN'), ('at', 'IN'), ('any', 'DT'), ('time', 'NN'), ('in', 'IN'), ('uniform', 'NN'), ('or', 'CC'), ('out', 'IN'), ('on', 'IN'), ('duty', 'NN'), ('or', 'CC'), ('off', 'NN'), ('in', 'IN'), ('practice', 'NN'), ('since', 'IN'), ('any', 'DT'), ('male', 'NN'), ('or', 'CC'), ('female', 'JJ'), ('israeli', 'NN'), ('of', 'IN'), ('military', 'JJ'), ('age', 'NN'), ('18', 'CD'), ('-?)', 'NN'), ('may', 'MD'), ('be', 'VB'), ('off', 'RP'), ('duty', 'JJ'), ('military', 'JJ'), ('all', 'DT'), ('but', 'CC'), ('young', 'JJ'), ('children', 'NNS'), ('are', 'VBP'), ('acceptable', 'JJ'), ('targets', 'NNS'), ('since', 'IN'), ('the', 'DT'), ('existence', 'NN'), ('of', 'IN'), ('israel', 'NN'), ('constitutes', 'NNS'), ('indication', 'NN'), ('of', 'IN'), ('hostile', 'JJ'), ('intent', 'NN'), ('no', 'DT'), ('further', 'JJ'), ('provocation', 'NN'), ('is', 'VBZ'), ('required', 'VBN'), ('to', 'TO'), ('avoid', 'VB'), ('inpermissable', 'JJ'), ('violations', 'NNS'), ('of', 'IN'), ('the', 'DT'), ('rights', 'NNS'), ('of', 'IN'), ('non', 'NN'), ('combatant', 'NN'), ('palestineans', 'NNS'), ('israeli', 'JJ'), ('forces', 'NNS'), ('must', 'MD'), ('not', 'RB'), ('engage', 'VB'), ('palestineans', 'NNS'), ('without', 'IN'), ('positive', 'JJ'), ('identification', 'NN'), ('as', 'IN'), ('military', 'JJ'), ('personnel', 'NNS'), ('clear', 'JJ'), ('indication', 'NN'), ('of', 'IN'), ('aggressive', 'JJ'), ('intent', 'NN'), ('and', 'CC'), ('clear', 'JJ'), ('field', 'NN'), ('of', 'IN'), ('fire', 'NN'), ('positive', 'JJ'), ('identification', 'NN'), ('may', 'MD'), ('be', 'VB'), ('assured', 'VBN'), ('by', 'IN'), ('either', 'DT'), ('checking', 'VBG'), ('for', 'IN'), ('palestinean', 'JJ'), ('military', 'JJ'), ('uniform', 'NN'), ('by', 'IN'), ('posession', 'NN'), ('of', 'IN'), ('exclusively', 'RB'), ('military', 'JJ'), ('armament', 'NN'), ('ie', 'NN'), ('t78', 'NN'), ('mbts', 'NNS'), ('or', 'CC'), ('mig', 'VB'), ('29', 'CD'), ('aircraft', 'NN'), ('),', 'NN'), ('or', 'CC'), ('self', 'NN'), ('identification', 'NN'), ('either', 'CC'), ('verbal', 'JJ'), ('or', 'CC'), ('documentary', 'JJ'), (').', 'JJ'), ('note', 'NN'), ('that', 'IN'), ('dual', 'JJ'), ('use', 'NN'), ('military', 'JJ'), ('civilian', 'JJ'), ('weaponry', 'NN'), ('such', 'JJ'), ('as', 'IN'), ('hand', 'NN'), ('grenades', 'NNS'), ('ak', 'VBP'), ('47', 'CD'), ('rifles', 'NNS'), ('and', 'CC'), ('rpg', 'NN'), ('launchers', 'NNS'), ('do', 'VBP'), ('not', 'RB'), ('constitute', 'VB'), ('positive', 'JJ'), ('military', 'JJ'), ('identification', 'NN'), ('and', 'CC'), ('require', 'VB'), ('closer', 'JJR'), ('inspection', 'NN'), ('such', 'JJ'), ('as', 'IN'), ('document', 'NN'), ('checks', 'NNS'), ('aggressive', 'JJ'), ('intent', 'NN'), ('as', 'IN'), ('distinct', 'NN'), ('from', 'IN'), ('merely', 'RB'), ('hostile', 'JJ'), ('intent', 'NN'), ('which', 'WDT'), ('is', 'VBZ'), ('the', 'DT'), ('normal', 'JJ'), ('condition', 'NN'), ('may', 'MD'), ('be', 'VB'), ('assured', 'VBN'), ('by', 'IN'), ('not', 'RB'), ('less', 'JJR'), ('than', 'IN'), ('three', 'CD'), ('rounds', 'NNS'), ('of', 'IN'), ('incoming', 'VBG'), ('fire', 'NN'), ('separated', 'VBN'), ('by', 'IN'), ('intervals', 'NNS'), ('of', 'IN'), ('not', 'RB'), ('less', 'JJR'), ('than', 'IN'), ('ten', 'VB'), ('seconds', 'NNS'), ('between', 'IN'), ('rounds', 'NNS'), ('note', 'VBP'), ('that', 'IN'), ('single', 'JJ'), ('burst', 'NN'), ('of', 'IN'), ('automatic', 'JJ'), ('weapon', 'NN'), ('fire', 'NN'), ('counds', 'VBZ'), ('as', 'IN'), ('one', 'CD'), ('round', 'NN'), ('as', 'IN'), ('does', 'VBZ'), ('volley', 'NN'), ('of', 'IN'), ('rocket', 'NN'), ('fire', 'NN'), ('from', 'IN'), ('more', 'JJR'), ('than', 'IN'), ('one', 'CD'), ('source', 'NN'), ('as', 'IN'), ('noted', 'VBN'), ('above', 'IN'), ('dual', 'JJ'), ('use', 'NN'), ('weaponry', 'NN'), ('may', 'MD'), ('not', 'RB'), ('be', 'VB'), ('assumed', 'VBN'), ('to', 'TO'), ('originate', 'VB'), ('from', 'IN'), ('military', 'JJ'), ('personnel', 'NNS'), ('and', 'CC'), ('thus', 'RB'), ('do', 'VBP'), ('not', 'RB'), ('justify', 'VB'), ('armed', 'JJ'), ('response', 'NN'), ('clear', 'JJ'), ('field', 'NN'), ('of', 'IN'), ('fire', 'NN'), ('can', 'MD'), ('be', 'VB'), ('guaranteed', 'VBN'), ('by', 'IN'), ('making', 'VBG'), ('positive', 'JJ'), ('military', 'JJ'), ('identification', 'NN'), ('of', 'IN'), ('all', 'DT'), ('personnel', 'NNS'), ('in', 'IN'), ('the', 'DT'), ('target', 'NN'), ('area', 'NN'), ('of', 'IN'), ('the', 'DT'), ('weapons', 'NNS'), ('to', 'TO'), ('be', 'VB'), ('used', 'VBN'), ('note', 'NN'), ('that', 'WDT'), ('aggressive', 'JJ'), ('intent', 'NN'), ('need', 'MD'), ('not', 'RB'), ('be', 'VB'), ('proven', 'VBN'), ('for', 'IN'), ('all', 'DT'), ('possible', 'JJ'), ('targets', 'NNS'), ('thus', 'RB'), ('if', 'IN'), ('iaf', 'NN'), ('aircraft', 'NN'), ('are', 'VBP'), ('attacked', 'VBN'), ('by', 'IN'), ('sam', 'NN'), ('crew', 'NN'), ('it', 'PRP'), ('is', 'VBZ'), ('not', 'RB'), ('necessary', 'JJ'), ('to', 'TO'), ('check', 'VB'), ('the', 'DT'), ('papers', 'NNS'), ('of', 'IN'), ('each', 'DT'), ('crew', 'NN'), ('member', 'NN'), ('so', 'RB'), ('long', 'RB'), ('as', 'IN'), ('none', 'NN'), ('are', 'VBP'), ('obviously', 'RB'), ('civilians', 'NNS'), ('as', 'IN'), ('indicated', 'VBN'), ('for', 'IN'), ('instance', 'NN'), ('by', 'IN'), ('the', 'DT'), ('posession', 'NN'), ('of', 'IN'), ('uniquely', 'JJ'), ('civilian', 'JJ'), ('weaponry', 'NN'), ('such', 'JJ'), ('as', 'IN'), ('stones', 'NNS'), ('axes', 'NNS'), ('and', 'CC'), ('molotov', 'NN'), ('coctails', 'NNS'), ('.)', 'VBP'), ('since', 'IN'), ('it', 'PRP'), ('is', 'VBZ'), ('often', 'RB'), ('difficult', 'JJ'), ('for', 'IN'), ('iaf', 'JJ'), ('elements', 'NNS'), ('to', 'TO'), ('land', 'NN'), ('and', 'CC'), ('make', 'VB'), ('the', 'DT'), ('necessary', 'JJ'), ('checks', 'NNS'), ('ground', 'NN'), ('forces', 'NNS'), ('should', 'MD'), ('first', 'RB'), ('screen', 'VB'), ('prospective', 'JJ'), ('strike', 'NN'), ('areas', 'NNS'), ('before', 'IN'), ('agm', 'JJ'), ('fire', 'NN'), ('for', 'IN'), ('acm', 'JJ'), ('purposes', 'NNS'), ('cockpit', 'VBP'), ('to', 'TO'), ('cockpit', 'VB'), ('pass', 'NN'), ('within', 'IN'), ('meters', 'NNS'), ('is', 'VBZ'), ('usually', 'RB'), ('sufficient', 'JJ'), ('for', 'IN'), ('this', 'DT'), ('purpose', 'NN'), ('but', 'CC'), ('may', 'MD'), ('be', 'VB'), ('repeated', 'VBN'), ('if', 'IN'), ('necessary', 'JJ')] | ['first', 'statement', 'doesnot', 'say', 'existence', 'israeli', 'citizen', 'wb', 'revoke', 'right', 'life', 'say', 'israeli', 'occupation', 'wb', 'revoke', 'right', 'life', 'citizen', 'basically', 'revoke', 'right', 'military', 'men', 'clearly', 'occupation', 'undeclared', 'war', 'war', 'attack', 'military', 'target', 'fully', 'legitimate', 'like', 'tell', 'word', 'military', 'wrt', 'israel', 'uniform', 'duty', 'duty', 'soldier', 'since', 'compulsory', 'one', 'might', 'regard', 'israeli', 'legit', 'target', 'use', 'definition', 'uniform', 'doesnot', 'make', 'difference', 'person', 'army', 'duty', 'duty', 'doesnot', 'matter', 'army', 'man', 'duty', 'vacation', 'week', 'soldier', 'sure', 'mean', 'military', 'men', 'try', 'get', 'clear', 'please', 'bear', 'far', 'tell', 'propose', 'following', 'rule', 'engagement', 'israel', 'palestinean', 'resistance', 'please', 'feel', 'revise', 'preliminary', 'draft', 'necessary', 'israeli', 'military', 'personnel', 'fair', 'game', 'time', 'uniform', 'duty', 'practice', 'since', 'male', 'female', 'israeli', 'military', 'age', 'may', 'duty', 'military', 'young', 'child', 'acceptable', 'target', 'since', 'existence', 'israel', 'constitutes', 'indication', 'hostile', 'intent', 'provocation', 'require', 'avoid', 'inpermissable', 'violation', 'right', 'non', 'combatant', 'palestineans', 'israeli', 'force', 'must', 'engage', 'palestineans', 'without', 'positive', 'identification', 'military', 'personnel', 'clear', 'indication', 'aggressive', 'intent', 'clear', 'field', 'fire', 'positive', 'identification', 'may', 'assure', 'either', 'check', 'palestinean', 'military', 'uniform', 'posession', 'exclusively', 'military', 'armament', 'ie', 'mbts', 'mig', 'aircraft', 'self', 'identification', 'either', 'verbal', 'documentary', 'note', 'dual', 'use', 'military', 'civilian', 'weaponry', 'hand', 'grenade', 'ak', 'rifle', 'rpg', 'launcher', 'constitute', 'positive', 'military', 'identification', 'require', 'close', 'inspection', 'document', 'check', 'aggressive', 'intent', 'distinct', 'merely', 'hostile', 'intent', 'normal', 'condition', 'may', 'assure', 'less', 'three', 'round', 'incoming', 'fire', 'separate', 'interval', 'less', 'ten', 'second', 'round', 'note', 'single', 'burst', 'automatic', 'weapon', 'fire', 'counds', 'one', 'round', 'volley', 'rocket', 'fire', 'one', 'source', 'note', 'dual', 'use', 'weaponry', 'may', 'assume', 'originate', 'military', 'personnel', 'thus', 'justify', 'armed', 'response', 'clear', 'field', 'fire', 'guarantee', 'make', 'positive', 'military', 'identification', 'personnel', 'target', 'area', 'weapon', 'use', 'note', 'aggressive', 'intent', 'need', 'prove', 'possible', 'target', 'thus', 'iaf', 'aircraft', 'attack', 'sam', 'crew', 'necessary', 'check', 'paper', 'crew', 'member', 'long', 'none', 'obviously', 'civilian', 'indicate', 'instance', 'posession', 'uniquely', 'civilian', 'weaponry', 'stone', 'ax', 'molotov', 'coctails', 'since', 'often', 'difficult', 'iaf', 'element', 'land', 'make', 'necessary', 'check', 'ground', 'force', 'first', 'screen', 'prospective', 'strike', 'area', 'agm', 'fire', 'acm', 'purpose', 'cockpit', 'cockpit', 'pas', 'within', 'meter', 'usually', 'sufficient', 'purpose', 'may', 'repeat', 'necessary'] | ['first_statement', 'israeli_citizen', 'wb_revoke', 'revoke_right', 'right_life', 'life_say', 'say_israeli', 'israeli_occupation', 'wb_revoke', 'revoke_right', 'right_life', 'revoke_right', 'right_military', 'military_men', 'undeclared_war', 'war_war', 'attack_military', 'military_target', 'like_tell', 'one_might', 'make_difference', 'sure_mean', 'military_men', 'try_get', 'please_bear', 'far_tell', 'please_feel', 'israeli_military', 'military_personnel', 'game_time', 'male_female', 'israeli_military', 'young_child', 'right_non', 'military_personnel', 'use_military', 'second_round', 'automatic_weapon', 'one_source', 'may_assume', 'military_personnel', 'make_positive', 'weapon_use'] | talk_politics_mideast_75886 |@lemmatized first:2 statement:1 doesnot:3 say:2 existence:2 israeli:6 citizen:2 wb:2 revoke:3 right:4 life:2 occupation:2 basically:1 military:14 men:2 clearly:1 undeclared:1 war:2 attack:2 target:5 fully:1 legitimate:1 like:1 tell:2 word:1 wrt:1 israel:3 uniform:4 duty:7 soldier:2 since:4 compulsory:1 one:3 might:1 regard:1 legit:1 use:4 definition:1 make:3 difference:1 person:1 army:2 matter:1 man:1 vacation:1 week:1 sure:1 mean:1 try:1 get:1 clear:4 please:2 bear:1 far:1 propose:1 following:1 rule:1 engagement:1 palestinean:2 resistance:1 feel:1 revise:1 preliminary:1 draft:1 necessary:4 personnel:4 fair:1 game:1 time:1 practice:1 male:1 female:1 age:1 may:5 young:1 child:1 acceptable:1 constitutes:1 indication:2 hostile:2 intent:5 provocation:1 require:2 avoid:1 inpermissable:1 violation:1 non:1 combatant:1 palestineans:2 force:2 must:1 engage:1 without:1 positive:4 identification:5 aggressive:3 field:2 fire:6 assure:2 either:2 check:4 posession:2 exclusively:1 armament:1 ie:1 mbts:1 mig:1 aircraft:2 self:1 verbal:1 documentary:1 note:4 dual:2 civilian:3 weaponry:3 hand:1 grenade:1 ak:1 rifle:1 rpg:1 launcher:1 constitute:1 close:1 inspection:1 document:1 distinct:1 merely:1 normal:1 condition:1 less:2 three:1 round:3 incoming:1 separate:1 interval:1 ten:1 second:1 single:1 burst:1 automatic:1 weapon:2 counds:1 volley:1 rocket:1 source:1 assume:1 originate:1 thus:2 justify:1 armed:1 response:1 guarantee:1 area:2 need:1 prove:1 possible:1 iaf:2 sam:1 crew:2 paper:1 member:1 long:1 none:1 obviously:1 indicate:1 instance:1 uniquely:1 stone:1 ax:1 molotov:1 coctails:1 often:1 difficult:1 element:1 land:1 ground:1 screen:1 prospective:1 strike:1 agm:1 acm:1 purpose:2 cockpit:2 pas:1 within:1 meter:1 usually:1 sufficient:1 repeat:1 |@bigram first_statement:1 israeli_citizen:1 wb_revoke:2 revoke_right:3 right_life:2 life_say:1 say_israeli:1 israeli_occupation:1 right_military:1 military_men:2 undeclared_war:1 war_war:1 attack_military:1 military_target:1 like_tell:1 one_might:1 make_difference:1 sure_mean:1 try_get:1 please_bear:1 far_tell:1 please_feel:1 israeli_military:2 military_personnel:3 game_time:1 male_female:1 young_child:1 right_non:1 use_military:1 second_round:1 automatic_weapon:1 one_source:1 may_assume:1 make_positive:1 weapon_use:1 |
4,527 |
Try the 'M.Sc. Computing Science' course at the REAL Newcastle University.
It's a conversion course, but at least they teach REAL programming.
In the space of 9 months we were taught PASCAL, Simula, Prolog, Miranda.
Also, some basic low level stuff (68000) was covered as well.
They also did concurrent programming and operating systems, some software
engineering, plus quite a few optional units, including database theory,
and some stuff about comms.
The PASCAL is to be replaced by C/C++ I think next year - I learn't this (and
X Windows programming as well)
anyway via a good selection of project over the final three months - depending
on your tastes, the selection of skills learn't can be quite wide reaching.
The one critiscism I would level at the course, which I would have thought
invaluable, is the lack of an option to do the project period in industry -
this would probably need a slightly longer project period (say six months), but
would enhance the prestige and usefulness of an already excellent and thorough
course.
Yes, I know this sounds like a plug for the course, why not! | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/comp.windows.x/66434 | 5 | comp_windows_x_66434 | [('try', 'VB'), ('the', 'DT'), ('sc', 'NN'), ('computing', 'VBG'), ('science', 'NN'), ('course', 'NN'), ('at', 'IN'), ('the', 'DT'), ('real', 'JJ'), ('newcastle', 'JJ'), ('university', 'NN'), ('it', 'PRP'), ('conversion', 'NN'), ('course', 'NN'), ('but', 'CC'), ('at', 'IN'), ('least', 'JJS'), ('they', 'PRP'), ('teach', 'VBP'), ('real', 'JJ'), ('programming', 'NN'), ('in', 'IN'), ('the', 'DT'), ('space', 'NN'), ('of', 'IN'), ('months', 'NNS'), ('we', 'PRP'), ('were', 'VBD'), ('taught', 'JJ'), ('pascal', 'JJ'), ('simula', 'NN'), ('prolog', 'NN'), ('miranda', 'NN'), ('also', 'RB'), ('some', 'DT'), ('basic', 'JJ'), ('low', 'JJ'), ('level', 'NN'), ('stuff', 'NN'), ('68000', 'CD'), ('was', 'VBD'), ('covered', 'VBN'), ('as', 'RB'), ('well', 'RB'), ('they', 'PRP'), ('also', 'RB'), ('did', 'VBD'), ('concurrent', 'JJ'), ('programming', 'NN'), ('and', 'CC'), ('operating', 'VBG'), ('systems', 'NNS'), ('some', 'DT'), ('software', 'NN'), ('engineering', 'NN'), ('plus', 'CC'), ('quite', 'JJ'), ('few', 'JJ'), ('optional', 'JJ'), ('units', 'NNS'), ('including', 'VBG'), ('database', 'NN'), ('theory', 'NN'), ('and', 'CC'), ('some', 'DT'), ('stuff', 'NN'), ('about', 'IN'), ('comms', 'NN'), ('the', 'DT'), ('pascal', 'NN'), ('is', 'VBZ'), ('to', 'TO'), ('be', 'VB'), ('replaced', 'VBN'), ('by', 'IN'), ('++', 'JJ'), ('think', 'NN'), ('next', 'IN'), ('year', 'NN'), ('learn', 'NN'), ('this', 'DT'), ('and', 'CC'), ('windows', 'VBZ'), ('programming', 'NN'), ('as', 'RB'), ('well', 'RB'), ('anyway', 'RB'), ('via', 'IN'), ('good', 'JJ'), ('selection', 'NN'), ('of', 'IN'), ('project', 'NN'), ('over', 'IN'), ('the', 'DT'), ('final', 'JJ'), ('three', 'CD'), ('months', 'NNS'), ('depending', 'VBG'), ('on', 'IN'), ('your', 'PRP$'), ('tastes', 'NNS'), ('the', 'DT'), ('selection', 'NN'), ('of', 'IN'), ('skills', 'NNS'), ('learn', 'VBP'), ('can', 'MD'), ('be', 'VB'), ('quite', 'RB'), ('wide', 'JJ'), ('reaching', 'VBG'), ('the', 'DT'), ('one', 'CD'), ('critiscism', 'NN'), ('would', 'MD'), ('level', 'VB'), ('at', 'IN'), ('the', 'DT'), ('course', 'NN'), ('which', 'WDT'), ('would', 'MD'), ('have', 'VB'), ('thought', 'VBN'), ('invaluable', 'JJ'), ('is', 'VBZ'), ('the', 'DT'), ('lack', 'NN'), ('of', 'IN'), ('an', 'DT'), ('option', 'NN'), ('to', 'TO'), ('do', 'VB'), ('the', 'DT'), ('project', 'NN'), ('period', 'NN'), ('in', 'IN'), ('industry', 'NN'), ('this', 'DT'), ('would', 'MD'), ('probably', 'RB'), ('need', 'VB'), ('slightly', 'RB'), ('longer', 'RBR'), ('project', 'JJ'), ('period', 'NN'), ('say', 'VBP'), ('six', 'CD'), ('months', 'NNS'), ('),', 'VBN'), ('but', 'CC'), ('would', 'MD'), ('enhance', 'VB'), ('the', 'DT'), ('prestige', 'NN'), ('and', 'CC'), ('usefulness', 'NN'), ('of', 'IN'), ('an', 'DT'), ('already', 'RB'), ('excellent', 'JJ'), ('and', 'CC'), ('thorough', 'JJ'), ('course', 'NN'), ('yes', 'RB'), ('know', 'VB'), ('this', 'DT'), ('sounds', 'VBZ'), ('like', 'IN'), ('plug', 'NN'), ('for', 'IN'), ('the', 'DT'), ('course', 'NN'), ('why', 'WRB'), ('not', 'RB')] | ['try', 'sc', 'compute', 'science', 'course', 'real', 'newcastle', 'university', 'conversion', 'course', 'least', 'teach', 'real', 'programming', 'space', 'month', 'taught', 'pascal', 'simula', 'prolog', 'miranda', 'also', 'basic', 'low', 'level', 'stuff', 'cover', 'well', 'also', 'concurrent', 'programming', 'operate', 'system', 'software', 'engineering', 'plus', 'quite', 'optional', 'unit', 'include', 'database', 'theory', 'stuff', 'comms', 'pascal', 'replace', 'think', 'next', 'year', 'learn', 'windows', 'programming', 'well', 'anyway', 'via', 'good', 'selection', 'project', 'final', 'three', 'month', 'depend', 'taste', 'selection', 'skill', 'learn', 'quite', 'wide', 'reach', 'one', 'critiscism', 'would', 'level', 'course', 'would', 'think', 'invaluable', 'lack', 'option', 'project', 'period', 'industry', 'would', 'probably', 'need', 'slightly', 'longer', 'project', 'period', 'say', 'six', 'month', 'would', 'enhance', 'prestige', 'usefulness', 'already', 'excellent', 'thorough', 'course', 'yes', 'know', 'sound', 'like', 'plug', 'course'] | ['low_level', 'well_also', 'operate_system', 'system_software', 'software_engineering', 'think_next', 'next_year', 'well_anyway', 'three_month', 'course_would', 'would_think', 'would_probably', 'probably_need', 'six_month', 'yes_know', 'know_sound', 'sound_like'] | comp_windows_x_66434 |@lemmatized try:1 sc:1 compute:1 science:1 course:5 real:2 newcastle:1 university:1 conversion:1 least:1 teach:1 programming:3 space:1 month:3 taught:1 pascal:2 simula:1 prolog:1 miranda:1 also:2 basic:1 low:1 level:2 stuff:2 cover:1 well:2 concurrent:1 operate:1 system:1 software:1 engineering:1 plus:1 quite:2 optional:1 unit:1 include:1 database:1 theory:1 comms:1 replace:1 think:2 next:1 year:1 learn:2 windows:1 anyway:1 via:1 good:1 selection:2 project:3 final:1 three:1 depend:1 taste:1 skill:1 wide:1 reach:1 one:1 critiscism:1 would:4 invaluable:1 lack:1 option:1 period:2 industry:1 probably:1 need:1 slightly:1 longer:1 say:1 six:1 enhance:1 prestige:1 usefulness:1 already:1 excellent:1 thorough:1 yes:1 know:1 sound:1 like:1 plug:1 |@bigram low_level:1 well_also:1 operate_system:1 system_software:1 software_engineering:1 think_next:1 next_year:1 well_anyway:1 three_month:1 course_would:1 would_think:1 would_probably:1 probably_need:1 six_month:1 yes_know:1 know_sound:1 sound_like:1 |
4,528 |
It's my understanding that the next release of UIM/X, due out
last February :-) has full support for C++.
I use XDesigner which does not have the interpreter or UI meta languages
of these other tools but does fully support C++ code generation,
reusable templates via C++ classes which are generated, a variety of
other handy features for using C++ and layout functions in different
ways, and generates Motif 1.2 code (including drag 'n drop,
internationalization, etc.). Fits in quite nicely with Doug Young's
paradigm for C++/Motif.
Available in the US from VI Corp, in Europe from Imperial Software,
London (see FAQ for details). | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/comp.windows.x/66416 | 5 | comp_windows_x_66416 | [('it', 'PRP'), ('my', 'PRP$'), ('understanding', 'VBG'), ('that', 'IN'), ('the', 'DT'), ('next', 'JJ'), ('release', 'NN'), ('of', 'IN'), ('uim', 'JJ'), ('due', 'JJ'), ('out', 'IN'), ('last', 'JJ'), ('february', 'JJ'), (':-)', 'NN'), ('has', 'VBZ'), ('full', 'JJ'), ('support', 'NN'), ('for', 'IN'), ('++.', 'NN'), ('use', 'NN'), ('xdesigner', 'NN'), ('which', 'WDT'), ('does', 'VBZ'), ('not', 'RB'), ('have', 'VB'), ('the', 'DT'), ('interpreter', 'NN'), ('or', 'CC'), ('ui', 'JJ'), ('meta', 'NN'), ('languages', 'NNS'), ('of', 'IN'), ('these', 'DT'), ('other', 'JJ'), ('tools', 'NNS'), ('but', 'CC'), ('does', 'VBZ'), ('fully', 'RB'), ('support', 'VB'), ('++', 'NNP'), ('code', 'NN'), ('generation', 'NN'), ('reusable', 'JJ'), ('templates', 'NNS'), ('via', 'IN'), ('++', 'NN'), ('classes', 'NNS'), ('which', 'WDT'), ('are', 'VBP'), ('generated', 'VBN'), ('variety', 'NN'), ('of', 'IN'), ('other', 'JJ'), ('handy', 'JJ'), ('features', 'NNS'), ('for', 'IN'), ('using', 'VBG'), ('++', 'NNP'), ('and', 'CC'), ('layout', 'NN'), ('functions', 'NNS'), ('in', 'IN'), ('different', 'JJ'), ('ways', 'NNS'), ('and', 'CC'), ('generates', 'NNS'), ('motif', 'VBP'), ('code', 'NN'), ('including', 'VBG'), ('drag', 'JJ'), ('drop', 'NN'), ('internationalization', 'NN'), ('etc', 'FW'), ('.).', 'JJ'), ('fits', 'NNS'), ('in', 'IN'), ('quite', 'RB'), ('nicely', 'RB'), ('with', 'IN'), ('doug', 'JJ'), ('young', 'JJ'), ('paradigm', 'NN'), ('for', 'IN'), ('++/', 'NNP'), ('motif', 'NN'), ('available', 'JJ'), ('in', 'IN'), ('the', 'DT'), ('us', 'PRP'), ('from', 'IN'), ('vi', 'NN'), ('corp', 'NN'), ('in', 'IN'), ('europe', 'NN'), ('from', 'IN'), ('imperial', 'JJ'), ('software', 'NN'), ('london', 'RBR'), ('see', 'VBP'), ('faq', 'NNS'), ('for', 'IN'), ('details', 'NNS'), (').', 'NNS')] | ['understand', 'next', 'release', 'uim', 'due', 'last', 'february', 'full', 'support', 'use', 'xdesigner', 'interpreter', 'ui', 'meta', 'language', 'tool', 'fully', 'support', 'code', 'generation', 'reusable', 'template', 'via', 'class', 'generate', 'variety', 'handy', 'feature', 'use', 'layout', 'function', 'different', 'way', 'generates', 'motif', 'code', 'include', 'drag', 'drop', 'internationalization', 'etc', 'fit', 'quite', 'nicely', 'doug', 'young', 'paradigm', 'motif', 'available', 'u', 'vi', 'corp', 'europe', 'imperial', 'software', 'london', 'see', 'faq', 'detail'] | ['next_release', 'support_use', 'feature_use', 'different_way', 'code_include', 'drag_drop', 'quite_nicely', 'motif_available', 'see_faq'] | comp_windows_x_66416 |@lemmatized understand:1 next:1 release:1 uim:1 due:1 last:1 february:1 full:1 support:2 use:2 xdesigner:1 interpreter:1 ui:1 meta:1 language:1 tool:1 fully:1 code:2 generation:1 reusable:1 template:1 via:1 class:1 generate:1 variety:1 handy:1 feature:1 layout:1 function:1 different:1 way:1 generates:1 motif:2 include:1 drag:1 drop:1 internationalization:1 etc:1 fit:1 quite:1 nicely:1 doug:1 young:1 paradigm:1 available:1 u:1 vi:1 corp:1 europe:1 imperial:1 software:1 london:1 see:1 faq:1 detail:1 |@bigram next_release:1 support_use:1 feature_use:1 different_way:1 code_include:1 drag_drop:1 quite_nicely:1 motif_available:1 see_faq:1 |
4,529 |
The Selke candidate forwards main purpose on a shift is to prevent goals
from being scored- not to score them. When Lemieux or Gilmour play their
number one purpose is to score- defence is secondary- especially considering
the line that plays against them is probably a defensive one. That is
why they are not Selke candidates.
Someone posted something about this assumption being lost in translation
(it was a few months ago). Whoever this was please repost it.
Gainey is the best defensive forward ever. I stand by that assessment.
He was a very good player who belongs in the hall of fame. Did you
ever watch him play? He never made a technical error.
<Babbling deleted>
Who are these pundits?? Gilmour was good with St Louis- but he was not the
best two-way player in the game when he was with them. You have overhyped
Gilmour on this net for months. He is a very good forward- but hardly the
best in the NHL. | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/rec.sport.hockey/53555 | 10 | rec_sport_hockey_53555 | [('the', 'DT'), ('selke', 'JJ'), ('candidate', 'NN'), ('forwards', 'NNS'), ('main', 'JJ'), ('purpose', 'NN'), ('on', 'IN'), ('shift', 'NN'), ('is', 'VBZ'), ('to', 'TO'), ('prevent', 'VB'), ('goals', 'NNS'), ('from', 'IN'), ('being', 'VBG'), ('scored', 'VBN'), ('not', 'RB'), ('to', 'TO'), ('score', 'VB'), ('them', 'PRP'), ('when', 'WRB'), ('lemieux', 'NN'), ('or', 'CC'), ('gilmour', 'VB'), ('play', 'VBP'), ('their', 'PRP$'), ('number', 'NN'), ('one', 'CD'), ('purpose', 'NN'), ('is', 'VBZ'), ('to', 'TO'), ('score', 'VB'), ('defence', 'NN'), ('is', 'VBZ'), ('secondary', 'JJ'), ('especially', 'RB'), ('considering', 'VBG'), ('the', 'DT'), ('line', 'NN'), ('that', 'WDT'), ('plays', 'VBZ'), ('against', 'IN'), ('them', 'PRP'), ('is', 'VBZ'), ('probably', 'RB'), ('defensive', 'JJ'), ('one', 'NN'), ('that', 'WDT'), ('is', 'VBZ'), ('why', 'WRB'), ('they', 'PRP'), ('are', 'VBP'), ('not', 'RB'), ('selke', 'JJ'), ('candidates', 'NNS'), ('someone', 'NN'), ('posted', 'VBD'), ('something', 'NN'), ('about', 'IN'), ('this', 'DT'), ('assumption', 'NN'), ('being', 'VBG'), ('lost', 'VBN'), ('in', 'IN'), ('translation', 'NN'), ('it', 'PRP'), ('was', 'VBD'), ('few', 'JJ'), ('months', 'NNS'), ('ago', 'RB'), (').', 'VBP'), ('whoever', 'WP'), ('this', 'DT'), ('was', 'VBD'), ('please', 'NN'), ('repost', 'VB'), ('it', 'PRP'), ('gainey', 'NN'), ('is', 'VBZ'), ('the', 'DT'), ('best', 'JJS'), ('defensive', 'JJ'), ('forward', 'NN'), ('ever', 'RB'), ('stand', 'VB'), ('by', 'IN'), ('that', 'DT'), ('assessment', 'NN'), ('he', 'PRP'), ('was', 'VBD'), ('very', 'RB'), ('good', 'JJ'), ('player', 'NN'), ('who', 'WP'), ('belongs', 'VBZ'), ('in', 'IN'), ('the', 'DT'), ('hall', 'NN'), ('of', 'IN'), ('fame', 'NN'), ('did', 'VBD'), ('you', 'PRP'), ('ever', 'RB'), ('watch', 'VBP'), ('him', 'PRP'), ('play', 'VB'), ('he', 'PRP'), ('never', 'RB'), ('made', 'VBD'), ('technical', 'JJ'), ('error', 'NN'), ('babbling', 'NN'), ('deleted', 'VBN'), ('who', 'WP'), ('are', 'VBP'), ('these', 'DT'), ('pundits', 'NNS'), ('??', 'VBP'), ('gilmour', 'NN'), ('was', 'VBD'), ('good', 'JJ'), ('with', 'IN'), ('st', 'JJ'), ('louis', 'NNS'), ('but', 'CC'), ('he', 'PRP'), ('was', 'VBD'), ('not', 'RB'), ('the', 'DT'), ('best', 'JJS'), ('two', 'CD'), ('way', 'NN'), ('player', 'NN'), ('in', 'IN'), ('the', 'DT'), ('game', 'NN'), ('when', 'WRB'), ('he', 'PRP'), ('was', 'VBD'), ('with', 'IN'), ('them', 'PRP'), ('you', 'PRP'), ('have', 'VBP'), ('overhyped', 'VBN'), ('gilmour', 'NN'), ('on', 'IN'), ('this', 'DT'), ('net', 'JJ'), ('for', 'IN'), ('months', 'NNS'), ('he', 'PRP'), ('is', 'VBZ'), ('very', 'RB'), ('good', 'JJ'), ('forward', 'NN'), ('but', 'CC'), ('hardly', 'RB'), ('the', 'DT'), ('best', 'JJS'), ('in', 'IN'), ('the', 'DT'), ('nhl', 'NN')] | ['selke', 'candidate', 'forward', 'main', 'purpose', 'shift', 'prevent', 'goal', 'score', 'score', 'lemieux', 'gilmour', 'play', 'number', 'one', 'purpose', 'score', 'defence', 'secondary', 'especially', 'consider', 'line', 'play', 'probably', 'defensive', 'one', 'selke', 'candidate', 'someone', 'post', 'something', 'assumption', 'lose', 'translation', 'month', 'ago', 'whoever', 'please', 'repost', 'gainey', 'best', 'defensive', 'forward', 'ever', 'stand', 'assessment', 'good', 'player', 'belong', 'hall', 'fame', 'ever', 'watch', 'play', 'never', 'make', 'technical', 'error', 'babbling', 'delete', 'pundit', 'gilmour', 'good', 'st', 'louis', 'best', 'two', 'way', 'player', 'game', 'overhyped', 'gilmour', 'net', 'month', 'good', 'forward', 'hardly', 'best', 'nhl'] | ['main_purpose', 'goal_score', 'number_one', 'especially_consider', 'someone_post', 'post_something', 'month_ago', 'best_defensive', 'defensive_forward', 'good_player', 'hall_fame', 'watch_play', 'never_make', 'st_louis', 'two_way'] | rec_sport_hockey_53555 |@lemmatized selke:2 candidate:2 forward:3 main:1 purpose:2 shift:1 prevent:1 goal:1 score:3 lemieux:1 gilmour:3 play:3 number:1 one:2 defence:1 secondary:1 especially:1 consider:1 line:1 probably:1 defensive:2 someone:1 post:1 something:1 assumption:1 lose:1 translation:1 month:2 ago:1 whoever:1 please:1 repost:1 gainey:1 best:3 ever:2 stand:1 assessment:1 good:3 player:2 belong:1 hall:1 fame:1 watch:1 never:1 make:1 technical:1 error:1 babbling:1 delete:1 pundit:1 st:1 louis:1 two:1 way:1 game:1 overhyped:1 net:1 hardly:1 nhl:1 |@bigram main_purpose:1 goal_score:1 number_one:1 especially_consider:1 someone_post:1 post_something:1 month_ago:1 best_defensive:1 defensive_forward:1 good_player:1 hall_fame:1 watch_play:1 never_make:1 st_louis:1 two_way:1 |
4,530 |
Christian Slater, only gota cameo on ST6,
and besides.
Maybe she can't act:-) | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/sci.space/61184 | 14 | sci_space_61184 | [('christian', 'JJ'), ('slater', 'NN'), ('only', 'RB'), ('gota', 'JJ'), ('cameo', 'NN'), ('on', 'IN'), ('st6', 'NN'), ('and', 'CC'), ('besides', 'IN'), ('maybe', 'RB'), ('she', 'PRP'), ('can', 'MD'), ('act', 'VB'), (':-)', 'JJ')] | ['christian', 'slater', 'gota', 'cameo', 'besides', 'maybe', 'act'] | [] | sci_space_61184 |@lemmatized christian:1 slater:1 gota:1 cameo:1 besides:1 maybe:1 act:1 |@bigram |
4,531 | Afraid I can't give any more info on this.. and hoping someone in greter
NETLAND has some details.
A short story in the newspaper a few days ago made some sort of mention
about how the Japanese, using what sounded like a gravity assist, had just
managed to crash (or crash-land) a package on the moon.
the article was very vague and unclear. and, to make matters worse, I
didn't clip it.
does this jog anyone's memory?
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/sci.space/60807 | 14 | sci_space_60807 | [('afraid', 'NN'), ('can', 'MD'), ('give', 'VB'), ('any', 'DT'), ('more', 'JJR'), ('info', 'NN'), ('on', 'IN'), ('this', 'DT'), ('..', 'NN'), ('and', 'CC'), ('hoping', 'VBG'), ('someone', 'NN'), ('in', 'IN'), ('greter', 'NN'), ('netland', 'NN'), ('has', 'VBZ'), ('some', 'DT'), ('details', 'NNS'), ('short', 'JJ'), ('story', 'NN'), ('in', 'IN'), ('the', 'DT'), ('newspaper', 'NN'), ('few', 'JJ'), ('days', 'NNS'), ('ago', 'RB'), ('made', 'VBD'), ('some', 'DT'), ('sort', 'NN'), ('of', 'IN'), ('mention', 'NN'), ('about', 'IN'), ('how', 'WRB'), ('the', 'DT'), ('japanese', 'JJ'), ('using', 'VBG'), ('what', 'WP'), ('sounded', 'VBD'), ('like', 'JJ'), ('gravity', 'NN'), ('assist', 'NN'), ('had', 'VBD'), ('just', 'RB'), ('managed', 'VBN'), ('to', 'TO'), ('crash', 'VB'), ('or', 'CC'), ('crash', 'VB'), ('land', 'NN'), ('package', 'NN'), ('on', 'IN'), ('the', 'DT'), ('moon', 'NN'), ('the', 'DT'), ('article', 'NN'), ('was', 'VBD'), ('very', 'RB'), ('vague', 'JJ'), ('and', 'CC'), ('unclear', 'JJ'), ('and', 'CC'), ('to', 'TO'), ('make', 'VB'), ('matters', 'NNS'), ('worse', 'JJR'), ('didn', 'NN'), ('clip', 'NN'), ('it', 'PRP'), ('does', 'VBZ'), ('this', 'DT'), ('jog', 'NN'), ('anyone', 'NN'), ('memory', 'NN')] | ['afraid', 'give', 'info', 'hop', 'someone', 'greter', 'netland', 'detail', 'short', 'story', 'newspaper', 'day', 'ago', 'make', 'sort', 'mention', 'japanese', 'use', 'sound', 'like', 'gravity', 'assist', 'manage', 'crash', 'crash', 'land', 'package', 'moon', 'article', 'vague', 'unclear', 'make', 'matter', 'bad', 'clip', 'jog', 'anyone', 'memory'] | ['give_info', 'hop_someone', 'short_story', 'day_ago', 'use_sound', 'sound_like', 'gravity_assist', 'make_matter', 'matter_bad'] | sci_space_60807 |@lemmatized afraid:1 give:1 info:1 hop:1 someone:1 greter:1 netland:1 detail:1 short:1 story:1 newspaper:1 day:1 ago:1 make:2 sort:1 mention:1 japanese:1 use:1 sound:1 like:1 gravity:1 assist:1 manage:1 crash:2 land:1 package:1 moon:1 article:1 vague:1 unclear:1 matter:1 bad:1 clip:1 jog:1 anyone:1 memory:1 |@bigram give_info:1 hop_someone:1 short_story:1 day_ago:1 use_sound:1 sound_like:1 gravity_assist:1 make_matter:1 matter_bad:1 |
4,532 | I'm getting ready to buy a multimedia workstation and would like a little
advice. I need a graphics card that will do video in and out under windows.
I was originally thinking of a Targa+ but that doesn't work under Windows.
What cards should I be looking into?
Thanks,
Craig
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/comp.graphics/38397 | 1 | comp_graphics_38397 | [('getting', 'VBG'), ('ready', 'JJ'), ('to', 'TO'), ('buy', 'VB'), ('multimedia', 'NNP'), ('workstation', 'NN'), ('and', 'CC'), ('would', 'MD'), ('like', 'VB'), ('little', 'JJ'), ('advice', 'NN'), ('need', 'NN'), ('graphics', 'NNS'), ('card', 'VBP'), ('that', 'WDT'), ('will', 'MD'), ('do', 'VB'), ('video', 'VB'), ('in', 'IN'), ('and', 'CC'), ('out', 'IN'), ('under', 'IN'), ('windows', 'NNS'), ('was', 'VBD'), ('originally', 'RB'), ('thinking', 'VBG'), ('of', 'IN'), ('targa', 'NN'), ('but', 'CC'), ('that', 'IN'), ('doesn', 'JJ'), ('work', 'NN'), ('under', 'IN'), ('windows', 'NNS'), ('what', 'WP'), ('cards', 'NNS'), ('should', 'MD'), ('be', 'VB'), ('looking', 'VBG'), ('into', 'IN'), ('thanks', 'NNS'), ('craig', 'VBP')] | ['get', 'ready', 'buy', 'multimedia', 'workstation', 'would', 'like', 'little', 'advice', 'need', 'graphic', 'card', 'video', 'window', 'originally', 'think', 'targa', 'work', 'window', 'card', 'look', 'thanks', 'craig'] | ['get_ready', 'would_like', 'like_little', 'graphic_card', 'card_video', 'work_window'] | comp_graphics_38397 |@lemmatized get:1 ready:1 buy:1 multimedia:1 workstation:1 would:1 like:1 little:1 advice:1 need:1 graphic:1 card:2 video:1 window:2 originally:1 think:1 targa:1 work:1 look:1 thanks:1 craig:1 |@bigram get_ready:1 would_like:1 like_little:1 graphic_card:1 card_video:1 work_window:1 |
4,533 |
<tale of bike-eating-devil-dog deleted>
Come to Louisiana where it is LEGAL to carry concealed weapons on a bike!
----===== DoD #8177 = Technician(Dr. Speed) .NOT. Student =====---- | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/rec.motorcycles/104711 | 8 | rec_motorcycles_104711 | [('tale', 'NN'), ('of', 'IN'), ('bike', 'NN'), ('eating', 'VBG'), ('devil', 'JJ'), ('dog', 'NN'), ('deleted', 'VBD'), ('come', 'JJ'), ('to', 'TO'), ('louisiana', 'VB'), ('where', 'WRB'), ('it', 'PRP'), ('is', 'VBZ'), ('legal', 'JJ'), ('to', 'TO'), ('carry', 'VB'), ('concealed', 'JJ'), ('weapons', 'NNS'), ('on', 'IN'), ('bike', 'NN'), ('----=====', 'NN'), ('dod', 'NN'), ('8177', 'CD'), ('technician', 'JJ'), ('dr', 'NNS'), ('speed', 'VBD'), ('not', 'RB'), ('student', 'JJ'), ('=====----', 'JJ')] | ['tale', 'bike', 'eat', 'devil', 'dog', 'delete', 'come', 'louisiana', 'legal', 'carry', 'concealed', 'weapon', 'bike', 'dod', 'technician', 'dr', 'speed', 'student'] | ['carry_concealed', 'concealed_weapon', 'dod_technician', 'technician_dr', 'dr_speed', 'speed_student'] | rec_motorcycles_104711 |@lemmatized tale:1 bike:2 eat:1 devil:1 dog:1 delete:1 come:1 louisiana:1 legal:1 carry:1 concealed:1 weapon:1 dod:1 technician:1 dr:1 speed:1 student:1 |@bigram carry_concealed:1 concealed_weapon:1 dod_technician:1 technician_dr:1 dr_speed:1 speed_student:1 |
4,534 | Hi!
Anyone knows how can i change an icon forever and ever??????
I mean, not only in the program manager...
Thanks in advance! | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/comp.os.ms-windows.misc/9675 | 2 | comp_os_ms-windows_misc_9675 | [('hi', 'NN'), ('anyone', 'NN'), ('knows', 'VBZ'), ('how', 'WRB'), ('can', 'MD'), ('change', 'VB'), ('an', 'DT'), ('icon', 'NN'), ('forever', 'NN'), ('and', 'CC'), ('ever', 'RB'), ('??????', 'VB'), ('mean', 'NN'), ('not', 'RB'), ('only', 'RB'), ('in', 'IN'), ('the', 'DT'), ('program', 'NN'), ('manager', 'NN'), ('...', ':'), ('thanks', 'NNS'), ('in', 'IN'), ('advance', 'NN')] | ['hi', 'anyone', 'know', 'change', 'icon', 'forever', 'ever', 'mean', 'program', 'manager', 'thanks', 'advance'] | ['hi_anyone', 'anyone_know', 'change_icon', 'program_manager', 'thanks_advance'] | comp_os_ms-windows_misc_9675 |@lemmatized hi:1 anyone:1 know:1 change:1 icon:1 forever:1 ever:1 mean:1 program:1 manager:1 thanks:1 advance:1 |@bigram hi_anyone:1 anyone_know:1 change_icon:1 program_manager:1 thanks_advance:1 |
4,535 |
It wasn't especially prominent, as I recall. However, quite possibly it's
no longer on display; NASM, like most museums, has much more stuff than it
can display at once, and does rotate the displays occasionally. | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/sci.space/60902 | 14 | sci_space_60902 | [('it', 'PRP'), ('wasn', 'VBZ'), ('especially', 'RB'), ('prominent', 'JJ'), ('as', 'IN'), ('recall', 'NN'), ('however', 'RB'), ('quite', 'RB'), ('possibly', 'RB'), ('it', 'PRP'), ('no', 'RB'), ('longer', 'RBR'), ('on', 'IN'), ('display', 'NN'), ('nasm', 'VBN'), ('like', 'IN'), ('most', 'JJS'), ('museums', 'NNS'), ('has', 'VBZ'), ('much', 'RB'), ('more', 'RBR'), ('stuff', 'JJ'), ('than', 'IN'), ('it', 'PRP'), ('can', 'MD'), ('display', 'VB'), ('at', 'IN'), ('once', 'RB'), ('and', 'CC'), ('does', 'VBZ'), ('rotate', 'VB'), ('the', 'DT'), ('displays', 'NNS'), ('occasionally', 'RB')] | ['especially', 'prominent', 'recall', 'however', 'quite', 'possibly', 'longer', 'display', 'nasm', 'like', 'museum', 'much', 'stuff', 'display', 'rotate', 'display', 'occasionally'] | ['quite_possibly'] | sci_space_60902 |@lemmatized especially:1 prominent:1 recall:1 however:1 quite:1 possibly:1 longer:1 display:3 nasm:1 like:1 museum:1 much:1 stuff:1 rotate:1 occasionally:1 |@bigram quite_possibly:1 |
4,536 |
Why are only those people in favor of the system to blame. If society
accepts such a system, then each member of society is to blame when
an innocent person gets executed. Those that are not in favor should
work to convince others.
And, most members of our society have accepted the blame--they've considered
the risk to be acceptable. Similarly, every person who drives must accept
the blame for fatal traffic accidents. This is something that is surely
going to happen when so many people are driving. It is all a question of
what risk is acceptable. It is much more likely that an innocent person
will be killed driving than it is that one will be executed. | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/alt.atheism/51133 | 0 | alt_atheism_51133 | [('why', 'WRB'), ('are', 'VBP'), ('only', 'RB'), ('those', 'DT'), ('people', 'NNS'), ('in', 'IN'), ('favor', 'NN'), ('of', 'IN'), ('the', 'DT'), ('system', 'NN'), ('to', 'TO'), ('blame', 'VB'), ('if', 'IN'), ('society', 'NN'), ('accepts', 'NNS'), ('such', 'JJ'), ('system', 'NN'), ('then', 'RB'), ('each', 'DT'), ('member', 'NN'), ('of', 'IN'), ('society', 'NN'), ('is', 'VBZ'), ('to', 'TO'), ('blame', 'VB'), ('when', 'WRB'), ('an', 'DT'), ('innocent', 'JJ'), ('person', 'NN'), ('gets', 'VBZ'), ('executed', 'VBN'), ('those', 'DT'), ('that', 'WDT'), ('are', 'VBP'), ('not', 'RB'), ('in', 'IN'), ('favor', 'NN'), ('should', 'MD'), ('work', 'VB'), ('to', 'TO'), ('convince', 'VB'), ('others', 'NNS'), ('and', 'CC'), ('most', 'JJS'), ('members', 'NNS'), ('of', 'IN'), ('our', 'PRP$'), ('society', 'NN'), ('have', 'VBP'), ('accepted', 'VBN'), ('the', 'DT'), ('blame', 'NN'), ('--', ':'), ('they', 'PRP'), ('ve', 'VBP'), ('considered', 'VBN'), ('the', 'DT'), ('risk', 'NN'), ('to', 'TO'), ('be', 'VB'), ('acceptable', 'JJ'), ('similarly', 'RB'), ('every', 'DT'), ('person', 'NN'), ('who', 'WP'), ('drives', 'VBZ'), ('must', 'MD'), ('accept', 'VB'), ('the', 'DT'), ('blame', 'NN'), ('for', 'IN'), ('fatal', 'JJ'), ('traffic', 'NN'), ('accidents', 'NNS'), ('this', 'DT'), ('is', 'VBZ'), ('something', 'NN'), ('that', 'WDT'), ('is', 'VBZ'), ('surely', 'RB'), ('going', 'VBG'), ('to', 'TO'), ('happen', 'VB'), ('when', 'WRB'), ('so', 'RB'), ('many', 'JJ'), ('people', 'NNS'), ('are', 'VBP'), ('driving', 'VBG'), ('it', 'PRP'), ('is', 'VBZ'), ('all', 'DT'), ('question', 'NN'), ('of', 'IN'), ('what', 'WP'), ('risk', 'NN'), ('is', 'VBZ'), ('acceptable', 'JJ'), ('it', 'PRP'), ('is', 'VBZ'), ('much', 'RB'), ('more', 'RBR'), ('likely', 'JJ'), ('that', 'IN'), ('an', 'DT'), ('innocent', 'JJ'), ('person', 'NN'), ('will', 'MD'), ('be', 'VB'), ('killed', 'VBN'), ('driving', 'VBG'), ('than', 'IN'), ('it', 'PRP'), ('is', 'VBZ'), ('that', 'IN'), ('one', 'CD'), ('will', 'MD'), ('be', 'VB'), ('executed', 'VBN')] | ['people', 'favor', 'system', 'blame', 'society', 'accepts', 'system', 'member', 'society', 'blame', 'innocent', 'person', 'get', 'execute', 'favor', 'work', 'convince', 'others', 'member', 'society', 'accept', 'blame', 'consider', 'risk', 'acceptable', 'similarly', 'every', 'person', 'drive', 'must', 'accept', 'blame', 'fatal', 'traffic', 'accident', 'something', 'surely', 'go', 'happen', 'many', 'people', 'drive', 'question', 'risk', 'acceptable', 'much', 'likely', 'innocent', 'person', 'kill', 'drive', 'one', 'execute'] | ['member_society', 'innocent_person', 'person_get', 'member_society', 'risk_acceptable', 'every_person', 'must_accept', 'go_happen', 'happen_many', 'many_people', 'people_drive', 'risk_acceptable', 'much_likely', 'innocent_person', 'person_kill', 'drive_one'] | alt_atheism_51133 |@lemmatized people:2 favor:2 system:2 blame:4 society:3 accepts:1 member:2 innocent:2 person:3 get:1 execute:2 work:1 convince:1 others:1 accept:2 consider:1 risk:2 acceptable:2 similarly:1 every:1 drive:3 must:1 fatal:1 traffic:1 accident:1 something:1 surely:1 go:1 happen:1 many:1 question:1 much:1 likely:1 kill:1 one:1 |@bigram member_society:2 innocent_person:2 person_get:1 risk_acceptable:2 every_person:1 must_accept:1 go_happen:1 happen_many:1 many_people:1 people_drive:1 much_likely:1 person_kill:1 drive_one:1 |
4,537 |
Oh gee, a billion dollars! That'd be just about enough to cover the cost of the
feasability study! Happy, Happy, JOY! JOY! | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/sci.space/60916 | 14 | sci_space_60916 | [('oh', 'JJ'), ('gee', 'NN'), ('billion', 'CD'), ('dollars', 'NNS'), ('that', 'WDT'), ('be', 'VB'), ('just', 'RB'), ('about', 'RB'), ('enough', 'RB'), ('to', 'TO'), ('cover', 'VB'), ('the', 'DT'), ('cost', 'NN'), ('of', 'IN'), ('the', 'DT'), ('feasability', 'NN'), ('study', 'NN'), ('happy', 'JJ'), ('happy', 'JJ'), ('joy', 'NN'), ('joy', 'NN')] | ['oh', 'gee', 'billion', 'dollar', 'enough', 'cover', 'cost', 'feasability', 'study', 'happy', 'happy', 'joy', 'joy'] | ['billion_dollar', 'enough_cover'] | sci_space_60916 |@lemmatized oh:1 gee:1 billion:1 dollar:1 enough:1 cover:1 cost:1 feasability:1 study:1 happy:2 joy:2 |@bigram billion_dollar:1 enough_cover:1 |
4,538 | # # I thought I was clear. Because homosexuals support laws to force
# # employment of homosexuals against the will of some employers, they
# # are attempting to interfere with private acts between mutually consenting
# # adults.
#
# Ok, I'll leave others to discuss your use of statistics, but I think I'm
# able to discuss liberterian ideas.
# The ideas are good. They seek to maximise individual rights by keeping
# governments out of transactions between consenting adults. If an employer wants
# to discriminate against a group, she/he should be allowed to to maximise their
# freedom. The discriminatees can go elsewhere.
# Unfortunately, it doesn't relate to maximising total individual rights
# within a community. If an employer or shopkeeper or whatever can discriminate
# in this way, then the freedom of the discriminatee goes down. Because people do
# not live in perfect economic conditions, with perfect mobility, unlimited
# numbers of potential employers of their skills, unlimited places to buy goods,
# the liberterian argument leads to a *decrease* in the amount of liberty in the
# community.
You mean, if a large part of the population supports discrimination
against homosexuals, they will be injured. But if a large part of the
population supports such discrimination, how did that law get passed?
# Tony Quirke, Wellington, New Zealand. [email protected] | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/talk.politics.misc/176896 | 18 | talk_politics_misc_176896 | [('thought', 'NN'), ('was', 'VBD'), ('clear', 'JJ'), ('because', 'IN'), ('homosexuals', 'NNS'), ('support', 'VBP'), ('laws', 'NNS'), ('to', 'TO'), ('force', 'VB'), ('employment', 'NN'), ('of', 'IN'), ('homosexuals', 'NNS'), ('against', 'IN'), ('the', 'DT'), ('will', 'MD'), ('of', 'IN'), ('some', 'DT'), ('employers', 'NNS'), ('they', 'PRP'), ('are', 'VBP'), ('attempting', 'VBG'), ('to', 'TO'), ('interfere', 'VB'), ('with', 'IN'), ('private', 'JJ'), ('acts', 'NNS'), ('between', 'IN'), ('mutually', 'RB'), ('consenting', 'VBG'), ('adults', 'NNS'), ('ok', 'JJ'), ('ll', 'NNS'), ('leave', 'VBP'), ('others', 'NNS'), ('to', 'TO'), ('discuss', 'VB'), ('your', 'PRP$'), ('use', 'NN'), ('of', 'IN'), ('statistics', 'NNS'), ('but', 'CC'), ('think', 'VBP'), ('able', 'JJ'), ('to', 'TO'), ('discuss', 'VB'), ('liberterian', 'JJ'), ('ideas', 'NNS'), ('the', 'DT'), ('ideas', 'NNS'), ('are', 'VBP'), ('good', 'JJ'), ('they', 'PRP'), ('seek', 'VBP'), ('to', 'TO'), ('maximise', 'VB'), ('individual', 'JJ'), ('rights', 'NNS'), ('by', 'IN'), ('keeping', 'VBG'), ('governments', 'NNS'), ('out', 'IN'), ('of', 'IN'), ('transactions', 'NNS'), ('between', 'IN'), ('consenting', 'VBG'), ('adults', 'NNS'), ('if', 'IN'), ('an', 'DT'), ('employer', 'NN'), ('wants', 'VBZ'), ('to', 'TO'), ('discriminate', 'VB'), ('against', 'IN'), ('group', 'NN'), ('she', 'PRP'), ('he', 'PRP'), ('should', 'MD'), ('be', 'VB'), ('allowed', 'VBN'), ('to', 'TO'), ('to', 'TO'), ('maximise', 'VB'), ('their', 'PRP$'), ('freedom', 'NN'), ('the', 'DT'), ('discriminatees', 'NNS'), ('can', 'MD'), ('go', 'VB'), ('elsewhere', 'RB'), ('unfortunately', 'RB'), ('it', 'PRP'), ('doesn', 'VBZ'), ('relate', 'NN'), ('to', 'TO'), ('maximising', 'VBG'), ('total', 'JJ'), ('individual', 'JJ'), ('rights', 'NNS'), ('within', 'IN'), ('community', 'NN'), ('if', 'IN'), ('an', 'DT'), ('employer', 'NN'), ('or', 'CC'), ('shopkeeper', 'NN'), ('or', 'CC'), ('whatever', 'WDT'), ('can', 'MD'), ('discriminate', 'VB'), ('in', 'IN'), ('this', 'DT'), ('way', 'NN'), ('then', 'RB'), ('the', 'DT'), ('freedom', 'NN'), ('of', 'IN'), ('the', 'DT'), ('discriminatee', 'NN'), ('goes', 'VBZ'), ('down', 'RB'), ('because', 'IN'), ('people', 'NNS'), ('do', 'VBP'), ('not', 'RB'), ('live', 'VB'), ('in', 'IN'), ('perfect', 'JJ'), ('economic', 'JJ'), ('conditions', 'NNS'), ('with', 'IN'), ('perfect', 'JJ'), ('mobility', 'NN'), ('unlimited', 'JJ'), ('numbers', 'NNS'), ('of', 'IN'), ('potential', 'JJ'), ('employers', 'NNS'), ('of', 'IN'), ('their', 'PRP$'), ('skills', 'NNS'), ('unlimited', 'JJ'), ('places', 'NNS'), ('to', 'TO'), ('buy', 'VB'), ('goods', 'NNS'), ('the', 'DT'), ('liberterian', 'JJ'), ('argument', 'NN'), ('leads', 'VBZ'), ('to', 'TO'), ('decrease', 'VB'), ('in', 'IN'), ('the', 'DT'), ('amount', 'NN'), ('of', 'IN'), ('liberty', 'NN'), ('in', 'IN'), ('the', 'DT'), ('community', 'NN'), ('you', 'PRP'), ('mean', 'VBP'), ('if', 'IN'), ('large', 'JJ'), ('part', 'NN'), ('of', 'IN'), ('the', 'DT'), ('population', 'NN'), ('supports', 'VBZ'), ('discrimination', 'NN'), ('against', 'IN'), ('homosexuals', 'NNS'), ('they', 'PRP'), ('will', 'MD'), ('be', 'VB'), ('injured', 'VBN'), ('but', 'CC'), ('if', 'IN'), ('large', 'JJ'), ('part', 'NN'), ('of', 'IN'), ('the', 'DT'), ('population', 'NN'), ('supports', 'NNS'), ('such', 'JJ'), ('discrimination', 'NN'), ('how', 'WRB'), ('did', 'VBD'), ('that', 'DT'), ('law', 'NN'), ('get', 'VBP'), ('passed', 'VBN'), ('tony', 'JJ'), ('quirke', 'NNS'), ('wellington', 'VBP'), ('new', 'JJ'), ('zealand', 'NN')] | ['thought', 'clear', 'homosexual', 'support', 'law', 'force', 'employment', 'homosexual', 'employer', 'attempt', 'interfere', 'private', 'act', 'mutually', 'consent', 'adult', 'ok', 'leave', 'others', 'discuss', 'use', 'statistic', 'think', 'able', 'discuss', 'liberterian', 'idea', 'idea', 'good', 'seek', 'maximise', 'individual', 'right', 'keep', 'government', 'transaction', 'consent', 'adult', 'employer', 'want', 'discriminate', 'group', 'allow', 'maximise', 'freedom', 'discriminatees', 'go', 'elsewhere', 'unfortunately', 'relate', 'maximise', 'total', 'individual', 'right', 'within', 'community', 'employer', 'shopkeeper', 'whatever', 'discriminate', 'way', 'freedom', 'discriminatee', 'go', 'people', 'live', 'perfect', 'economic', 'condition', 'perfect', 'mobility', 'unlimited', 'number', 'potential', 'employer', 'skill', 'unlimited', 'place', 'buy', 'good', 'liberterian', 'argument', 'lead', 'decrease', 'amount', 'liberty', 'community', 'mean', 'large', 'part', 'population', 'support', 'discrimination', 'homosexual', 'injure', 'large', 'part', 'population', 'support', 'discrimination', 'law', 'get', 'pass', 'tony', 'quirke', 'wellington', 'new', 'zealand'] | ['law_force', 'think_able', 'individual_right', 'right_keep', 'group_allow', 'individual_right', 'go_people', 'people_live', 'place_buy', 'buy_good', 'large_part', 'large_part', 'get_pass', 'new_zealand'] | talk_politics_misc_176896 |@lemmatized thought:1 clear:1 homosexual:3 support:3 law:2 force:1 employment:1 employer:4 attempt:1 interfere:1 private:1 act:1 mutually:1 consent:2 adult:2 ok:1 leave:1 others:1 discuss:2 use:1 statistic:1 think:1 able:1 liberterian:2 idea:2 good:2 seek:1 maximise:3 individual:2 right:2 keep:1 government:1 transaction:1 want:1 discriminate:2 group:1 allow:1 freedom:2 discriminatees:1 go:2 elsewhere:1 unfortunately:1 relate:1 total:1 within:1 community:2 shopkeeper:1 whatever:1 way:1 discriminatee:1 people:1 live:1 perfect:2 economic:1 condition:1 mobility:1 unlimited:2 number:1 potential:1 skill:1 place:1 buy:1 argument:1 lead:1 decrease:1 amount:1 liberty:1 mean:1 large:2 part:2 population:2 discrimination:2 injure:1 get:1 pass:1 tony:1 quirke:1 wellington:1 new:1 zealand:1 |@bigram law_force:1 think_able:1 individual_right:2 right_keep:1 group_allow:1 go_people:1 people_live:1 place_buy:1 buy_good:1 large_part:2 get_pass:1 new_zealand:1 |
4,539 |
=8^/ Nothing like giving newbies a land rocket to practice on.
Yup. Accelerate right into the back of an 18-wheel truck.
Um. How's the easiest way to get newbies of the road? :)
Regards, Ted.
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/rec.motorcycles/103172 | 8 | rec_motorcycles_103172 | [('^/', 'RB'), ('nothing', 'NN'), ('like', 'IN'), ('giving', 'VBG'), ('newbies', 'NNS'), ('land', 'VBP'), ('rocket', 'NN'), ('to', 'TO'), ('practice', 'NN'), ('on', 'IN'), ('yup', 'NN'), ('accelerate', 'NN'), ('right', 'NN'), ('into', 'IN'), ('the', 'DT'), ('back', 'NN'), ('of', 'IN'), ('an', 'DT'), ('18', 'CD'), ('wheel', 'NN'), ('truck', 'NN'), ('um', 'JJ'), ('how', 'WRB'), ('the', 'DT'), ('easiest', 'JJS'), ('way', 'NN'), ('to', 'TO'), ('get', 'VB'), ('newbies', 'NNS'), ('of', 'IN'), ('the', 'DT'), ('road', 'NN'), (':)', 'NN'), ('regards', 'NNS'), ('ted', 'VBD')] | ['nothing', 'like', 'give', 'newbie', 'land', 'rocket', 'practice', 'yup', 'accelerate', 'right', 'back', 'wheel', 'truck', 'um', 'easy', 'way', 'get', 'newbie', 'road', 'regard', 'ted'] | ['nothing_like', 'like_give', 'right_back', 'easy_way', 'way_get'] | rec_motorcycles_103172 |@lemmatized nothing:1 like:1 give:1 newbie:2 land:1 rocket:1 practice:1 yup:1 accelerate:1 right:1 back:1 wheel:1 truck:1 um:1 easy:1 way:1 get:1 road:1 regard:1 ted:1 |@bigram nothing_like:1 like_give:1 right_back:1 easy_way:1 way_get:1 |
4,540 | R >>>JD> ALL PC parallel ports that are compatable with the IBM standard,
R >>>JD> including the original IBM adaptor, are bi-directional.
NOT ALL PARALLEL PORTS ARE BI-DIRECTIONAL WITHOUT MODIFICATION.
My experience with the standard old zenith parallel port in their
original 286s proves that. They had the input direction disactiviated by
tieing them R/W select line of the circuit to Vcc. To make it bi ( which
I did ) I had to modify it by scraping off the trace and solder a jump to
the proper location. I thought that this was just lazy on the part of
Zenith ( they were not Zenith-Bull Group at that time).
-rdd
---
. WinQwk 2.0b#0 . Unregistered Evaluation Copy
* KMail 2.95d W-NET HQ, hal9k.ann-arbor.mi.us, +1 313 663 4173 or 3959
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/sci.electronics/52730 | 12 | sci_electronics_52730 | [('>>>', 'JJ'), ('jd', 'NN'), ('all', 'DT'), ('pc', 'NN'), ('parallel', 'NN'), ('ports', 'NNS'), ('that', 'WDT'), ('are', 'VBP'), ('compatable', 'JJ'), ('with', 'IN'), ('the', 'DT'), ('ibm', 'JJ'), ('standard', 'NN'), ('>>>', 'NNP'), ('jd', 'NN'), ('including', 'VBG'), ('the', 'DT'), ('original', 'JJ'), ('ibm', 'NN'), ('adaptor', 'NN'), ('are', 'VBP'), ('bi', 'JJ'), ('directional', 'JJ'), ('not', 'RB'), ('all', 'DT'), ('parallel', 'JJ'), ('ports', 'NNS'), ('are', 'VBP'), ('bi', 'JJ'), ('directional', 'JJ'), ('without', 'IN'), ('modification', 'NN'), ('my', 'PRP$'), ('experience', 'NN'), ('with', 'IN'), ('the', 'DT'), ('standard', 'JJ'), ('old', 'JJ'), ('zenith', 'NN'), ('parallel', 'NN'), ('port', 'NN'), ('in', 'IN'), ('their', 'PRP$'), ('original', 'JJ'), ('286s', 'CD'), ('proves', 'NNS'), ('that', 'IN'), ('they', 'PRP'), ('had', 'VBD'), ('the', 'DT'), ('input', 'JJ'), ('direction', 'NN'), ('disactiviated', 'VBN'), ('by', 'IN'), ('tieing', 'VBG'), ('them', 'PRP'), ('select', 'JJ'), ('line', 'NN'), ('of', 'IN'), ('the', 'DT'), ('circuit', 'NN'), ('to', 'TO'), ('vcc', 'VB'), ('to', 'TO'), ('make', 'VB'), ('it', 'PRP'), ('bi', 'VB'), ('which', 'WDT'), ('did', 'VBD'), ('had', 'VBD'), ('to', 'TO'), ('modify', 'VB'), ('it', 'PRP'), ('by', 'IN'), ('scraping', 'VBG'), ('off', 'RP'), ('the', 'DT'), ('trace', 'NN'), ('and', 'CC'), ('solder', 'NN'), ('jump', 'NN'), ('to', 'TO'), ('the', 'DT'), ('proper', 'JJ'), ('location', 'NN'), ('thought', 'VBD'), ('that', 'IN'), ('this', 'DT'), ('was', 'VBD'), ('just', 'RB'), ('lazy', 'VBN'), ('on', 'IN'), ('the', 'DT'), ('part', 'NN'), ('of', 'IN'), ('zenith', 'NN'), ('they', 'PRP'), ('were', 'VBD'), ('not', 'RB'), ('zenith', 'JJ'), ('bull', 'NN'), ('group', 'NN'), ('at', 'IN'), ('that', 'DT'), ('time', 'NN'), (').', 'VBZ'), ('rdd', 'JJ'), ('---', 'NNP'), ('winqwk', 'NN'), ('0b', 'CD'), ('unregistered', 'JJ'), ('evaluation', 'NN'), ('copy', 'NN'), ('kmail', 'VBP'), ('95d', 'CD'), ('net', 'JJ'), ('hq', 'NN'), ('hal9k', 'NN'), ('ann', 'IN'), ('arbor', 'NN'), ('mi', 'VBP'), ('us', 'PRP'), ('313', 'CD'), ('663', 'CD'), ('4173', 'CD'), ('or', 'CC'), ('3959', 'CD')] | ['jd', 'pc', 'parallel', 'port', 'compatable', 'ibm', 'standard', 'jd', 'include', 'original', 'ibm', 'adaptor', 'bi', 'directional', 'parallel', 'port', 'bi', 'directional', 'without', 'modification', 'experience', 'standard', 'old', 'zenith', 'parallel', 'port', 'original', 'prof', 'input', 'direction', 'disactiviated', 'tie', 'select', 'line', 'circuit', 'vcc', 'make', 'bi', 'modify', 'scrap', 'trace', 'solder', 'jump', 'proper', 'location', 'think', 'lazy', 'part', 'zenith', 'zenith', 'bull', 'group', 'time', 'rdd', 'winqwk', 'unregistered', 'evaluation', 'copy', 'kmail', 'net', 'hq', 'ann', 'arbor', 'mi', 'u'] | ['parallel_port', 'include_original', 'bi_directional', 'parallel_port', 'bi_directional', 'parallel_port', 'unregistered_evaluation', 'evaluation_copy', 'copy_kmail', 'kmail_net', 'net_hq', 'hq_ann', 'ann_arbor', 'arbor_mi', 'mi_u'] | sci_electronics_52730 |@lemmatized jd:2 pc:1 parallel:3 port:3 compatable:1 ibm:2 standard:2 include:1 original:2 adaptor:1 bi:3 directional:2 without:1 modification:1 experience:1 old:1 zenith:3 prof:1 input:1 direction:1 disactiviated:1 tie:1 select:1 line:1 circuit:1 vcc:1 make:1 modify:1 scrap:1 trace:1 solder:1 jump:1 proper:1 location:1 think:1 lazy:1 part:1 bull:1 group:1 time:1 rdd:1 winqwk:1 unregistered:1 evaluation:1 copy:1 kmail:1 net:1 hq:1 ann:1 arbor:1 mi:1 u:1 |@bigram parallel_port:3 include_original:1 bi_directional:2 unregistered_evaluation:1 evaluation_copy:1 copy_kmail:1 kmail_net:1 net_hq:1 hq_ann:1 ann_arbor:1 arbor_mi:1 mi_u:1 |
4,541 |
I've never seen a game where one player has committed 5
penalties. Something like this would require more attention by
the referee.
But you're creating a scoring opportunity where there might not
have been one before. I can see the relationship between free
throws awarded after a certain number of fouls, but it's
obviously easier to score in basketball, there are more
opportunities. If a basketball team scores 100 points, that's
at least fifty chances made. The average number of shots taken
by each team in a hockey game (and this is a total guess) is
probably around 40, and a team is lucky to capitalize on maybe
5 of them. You have some good ideas concerning the other
penalties, but I think that a player should be awarded a
penalty shot only when they had a chance to score and was
interfered with.
Also, later in the post, you talked about how boring the NBA
game you attended was, that play was stopped too often.
Wouldn't your penalty shot rule take up more time during a
hockey game? | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/rec.sport.hockey/52638 | 10 | rec_sport_hockey_52638 | [('ve', 'NN'), ('never', 'RB'), ('seen', 'VBN'), ('game', 'NN'), ('where', 'WRB'), ('one', 'CD'), ('player', 'NN'), ('has', 'VBZ'), ('committed', 'VBN'), ('penalties', 'NNS'), ('something', 'NN'), ('like', 'IN'), ('this', 'DT'), ('would', 'MD'), ('require', 'VB'), ('more', 'JJR'), ('attention', 'NN'), ('by', 'IN'), ('the', 'DT'), ('referee', 'NN'), ('but', 'CC'), ('you', 'PRP'), ('re', 'VBP'), ('creating', 'VBG'), ('scoring', 'VBG'), ('opportunity', 'NN'), ('where', 'WRB'), ('there', 'RB'), ('might', 'MD'), ('not', 'RB'), ('have', 'VB'), ('been', 'VBN'), ('one', 'CD'), ('before', 'IN'), ('can', 'MD'), ('see', 'VB'), ('the', 'DT'), ('relationship', 'NN'), ('between', 'IN'), ('free', 'JJ'), ('throws', 'NNS'), ('awarded', 'VBN'), ('after', 'IN'), ('certain', 'JJ'), ('number', 'NN'), ('of', 'IN'), ('fouls', 'NNS'), ('but', 'CC'), ('it', 'PRP'), ('obviously', 'RB'), ('easier', 'RBR'), ('to', 'TO'), ('score', 'VB'), ('in', 'IN'), ('basketball', 'NN'), ('there', 'EX'), ('are', 'VBP'), ('more', 'JJR'), ('opportunities', 'NNS'), ('if', 'IN'), ('basketball', 'DT'), ('team', 'NN'), ('scores', 'VBZ'), ('100', 'CD'), ('points', 'NNS'), ('that', 'WDT'), ('at', 'IN'), ('least', 'JJS'), ('fifty', 'JJ'), ('chances', 'NNS'), ('made', 'VBD'), ('the', 'DT'), ('average', 'JJ'), ('number', 'NN'), ('of', 'IN'), ('shots', 'NNS'), ('taken', 'VBN'), ('by', 'IN'), ('each', 'DT'), ('team', 'NN'), ('in', 'IN'), ('hockey', 'JJ'), ('game', 'NN'), ('and', 'CC'), ('this', 'DT'), ('is', 'VBZ'), ('total', 'JJ'), ('guess', 'NN'), ('is', 'VBZ'), ('probably', 'RB'), ('around', 'IN'), ('40', 'CD'), ('and', 'CC'), ('team', 'NN'), ('is', 'VBZ'), ('lucky', 'JJ'), ('to', 'TO'), ('capitalize', 'VB'), ('on', 'IN'), ('maybe', 'NN'), ('of', 'IN'), ('them', 'PRP'), ('you', 'PRP'), ('have', 'VBP'), ('some', 'DT'), ('good', 'JJ'), ('ideas', 'NNS'), ('concerning', 'VBG'), ('the', 'DT'), ('other', 'JJ'), ('penalties', 'NNS'), ('but', 'CC'), ('think', 'VBP'), ('that', 'IN'), ('player', 'NN'), ('should', 'MD'), ('be', 'VB'), ('awarded', 'VBN'), ('penalty', 'NN'), ('shot', 'NN'), ('only', 'RB'), ('when', 'WRB'), ('they', 'PRP'), ('had', 'VBD'), ('chance', 'NN'), ('to', 'TO'), ('score', 'VB'), ('and', 'CC'), ('was', 'VBD'), ('interfered', 'VBN'), ('with', 'IN'), ('also', 'RB'), ('later', 'RB'), ('in', 'IN'), ('the', 'DT'), ('post', 'NN'), ('you', 'PRP'), ('talked', 'VBD'), ('about', 'IN'), ('how', 'WRB'), ('boring', 'JJ'), ('the', 'DT'), ('nba', 'JJ'), ('game', 'NN'), ('you', 'PRP'), ('attended', 'VBD'), ('was', 'VBD'), ('that', 'IN'), ('play', 'NN'), ('was', 'VBD'), ('stopped', 'VBN'), ('too', 'RB'), ('often', 'RB'), ('wouldn', 'VBZ'), ('your', 'PRP$'), ('penalty', 'NN'), ('shot', 'NN'), ('rule', 'NN'), ('take', 'VB'), ('up', 'RP'), ('more', 'JJR'), ('time', 'NN'), ('during', 'IN'), ('hockey', 'JJ'), ('game', 'NN')] | ['never', 'see', 'game', 'one', 'player', 'commit', 'penalty', 'something', 'like', 'would', 'require', 'attention', 'referee', 'create', 'score', 'opportunity', 'might', 'one', 'see', 'relationship', 'free', 'throw', 'award', 'certain', 'number', 'foul', 'obviously', 'easier', 'score', 'basketball', 'opportunity', 'basketball', 'team', 'score', 'point', 'least', 'fifty', 'chance', 'make', 'average', 'number', 'shot', 'take', 'team', 'hockey', 'game', 'total', 'guess', 'probably', 'around', 'team', 'lucky', 'capitalize', 'maybe', 'good', 'idea', 'concern', 'penalty', 'think', 'player', 'award', 'penalty', 'shot', 'chance', 'score', 'interfere', 'also', 'later', 'post', 'talk', 'boring', 'nba', 'game', 'attend', 'play', 'stop', 'often', 'penalty', 'shot', 'rule', 'take', 'time', 'hockey', 'game'] | ['never_see', 'game_one', 'one_player', 'something_like', 'like_would', 'would_require', 'might_one', 'one_see', 'team_score', 'score_point', 'hockey_game', 'guess_probably', 'maybe_good', 'good_idea', 'penalty_shot', 'later_post', 'penalty_shot', 'take_time', 'hockey_game'] | rec_sport_hockey_52638 |@lemmatized never:1 see:2 game:4 one:2 player:2 commit:1 penalty:4 something:1 like:1 would:1 require:1 attention:1 referee:1 create:1 score:4 opportunity:2 might:1 relationship:1 free:1 throw:1 award:2 certain:1 number:2 foul:1 obviously:1 easier:1 basketball:2 team:3 point:1 least:1 fifty:1 chance:2 make:1 average:1 shot:3 take:2 hockey:2 total:1 guess:1 probably:1 around:1 lucky:1 capitalize:1 maybe:1 good:1 idea:1 concern:1 think:1 interfere:1 also:1 later:1 post:1 talk:1 boring:1 nba:1 attend:1 play:1 stop:1 often:1 rule:1 time:1 |@bigram never_see:1 game_one:1 one_player:1 something_like:1 like_would:1 would_require:1 might_one:1 one_see:1 team_score:1 score_point:1 hockey_game:2 guess_probably:1 maybe_good:1 good_idea:1 penalty_shot:2 later_post:1 take_time:1 |
4,542 | In <[email protected]> [email protected] (Monthian
Perhaps the reason is simple--maybe the marketing people who put together
the brochures and price lists weren't clear on the FPU issue.
Afterall, Apple's literature is not always 100% correct. A funny one I
noticed recently is that some of the brochures on the Macs with CD
capability refer to the "auto inkjet" feature. This should have read "auto
inject" feature (as it does on some other correct brochures I've seen from
Apple). Since it was correct on some older brochures, I can only guess
that someone edited the copy, saw "inject" and thought it was a typo and
changed it to the more familiar word "inkjet". | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/comp.sys.mac.hardware/51771 | 4 | comp_sys_mac_hardware_51771 | [('in', 'IN'), ('monthian', 'JJ'), ('perhaps', 'RB'), ('the', 'DT'), ('reason', 'NN'), ('is', 'VBZ'), ('simple', 'JJ'), ('--', ':'), ('maybe', 'RB'), ('the', 'DT'), ('marketing', 'NN'), ('people', 'NNS'), ('who', 'WP'), ('put', 'VBP'), ('together', 'RB'), ('the', 'DT'), ('brochures', 'NNS'), ('and', 'CC'), ('price', 'NN'), ('lists', 'NNS'), ('weren', 'VBP'), ('clear', 'JJ'), ('on', 'IN'), ('the', 'DT'), ('fpu', 'JJ'), ('issue', 'NN'), ('afterall', 'NN'), ('apple', 'NN'), ('literature', 'NN'), ('is', 'VBZ'), ('not', 'RB'), ('always', 'RB'), ('100', 'CD'), ('correct', 'JJ'), ('funny', 'JJ'), ('one', 'CD'), ('noticed', 'VBN'), ('recently', 'RB'), ('is', 'VBZ'), ('that', 'IN'), ('some', 'DT'), ('of', 'IN'), ('the', 'DT'), ('brochures', 'NNS'), ('on', 'IN'), ('the', 'DT'), ('macs', 'NN'), ('with', 'IN'), ('cd', 'NN'), ('capability', 'NN'), ('refer', 'VBP'), ('to', 'TO'), ('the', 'DT'), ('auto', 'NN'), ('inkjet', 'NN'), ('feature', 'NN'), ('this', 'DT'), ('should', 'MD'), ('have', 'VB'), ('read', 'VBN'), ('auto', 'NN'), ('inject', 'JJ'), ('feature', 'NN'), ('as', 'IN'), ('it', 'PRP'), ('does', 'VBZ'), ('on', 'IN'), ('some', 'DT'), ('other', 'JJ'), ('correct', 'JJ'), ('brochures', 'NNS'), ('ve', 'VBP'), ('seen', 'VBN'), ('from', 'IN'), ('apple', 'NN'), (').', 'NN'), ('since', 'IN'), ('it', 'PRP'), ('was', 'VBD'), ('correct', 'NN'), ('on', 'IN'), ('some', 'DT'), ('older', 'JJR'), ('brochures', 'NNS'), ('can', 'MD'), ('only', 'RB'), ('guess', 'VB'), ('that', 'IN'), ('someone', 'NN'), ('edited', 'VBD'), ('the', 'DT'), ('copy', 'NN'), ('saw', 'VBD'), ('inject', 'JJ'), ('and', 'CC'), ('thought', 'VBD'), ('it', 'PRP'), ('was', 'VBD'), ('typo', 'JJ'), ('and', 'CC'), ('changed', 'VBD'), ('it', 'PRP'), ('to', 'TO'), ('the', 'DT'), ('more', 'JJR'), ('familiar', 'JJ'), ('word', 'NN'), ('inkjet', 'NN'), ('".', 'NN')] | ['monthian', 'perhaps', 'reason', 'simple', 'maybe', 'marketing', 'people', 'put', 'together', 'brochure', 'price', 'list', 'clear', 'fpu', 'issue', 'afterall', 'apple', 'literature', 'always', 'correct', 'funny', 'one', 'notice', 'recently', 'brochure', 'mac', 'cd', 'capability', 'refer', 'auto', 'inkjet', 'feature', 'read', 'auto', 'inject', 'feature', 'correct', 'brochure', 'see', 'apple', 'since', 'correct', 'old', 'brochure', 'guess', 'someone', 'edit', 'copy', 'saw', 'inject', 'think', 'typo', 'change', 'familiar', 'word', 'inkjet'] | ['people_put', 'put_together', 'price_list'] | comp_sys_mac_hardware_51771 |@lemmatized monthian:1 perhaps:1 reason:1 simple:1 maybe:1 marketing:1 people:1 put:1 together:1 brochure:4 price:1 list:1 clear:1 fpu:1 issue:1 afterall:1 apple:2 literature:1 always:1 correct:3 funny:1 one:1 notice:1 recently:1 mac:1 cd:1 capability:1 refer:1 auto:2 inkjet:2 feature:2 read:1 inject:2 see:1 since:1 old:1 guess:1 someone:1 edit:1 copy:1 saw:1 think:1 typo:1 change:1 familiar:1 word:1 |@bigram people_put:1 put_together:1 price_list:1 |
4,543 | I am looking for a package which takes as inputs a set
of geometric objects defined by unions of convex polytopes
specified in some manner, say by inequalities and equalities,
and determines in some reasonable form things like
intersections, unions, etc. etc..
Does anyone know where I can find such a thing? | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/comp.graphics/38245 | 1 | comp_graphics_38245 | [('am', 'VBP'), ('looking', 'VBG'), ('for', 'IN'), ('package', 'NN'), ('which', 'WDT'), ('takes', 'VBZ'), ('as', 'IN'), ('inputs', 'NNS'), ('set', 'NN'), ('of', 'IN'), ('geometric', 'JJ'), ('objects', 'NNS'), ('defined', 'VBN'), ('by', 'IN'), ('unions', 'NNS'), ('of', 'IN'), ('convex', 'NN'), ('polytopes', 'NNS'), ('specified', 'VBN'), ('in', 'IN'), ('some', 'DT'), ('manner', 'NNS'), ('say', 'VBP'), ('by', 'IN'), ('inequalities', 'NNS'), ('and', 'CC'), ('equalities', 'NNS'), ('and', 'CC'), ('determines', 'NNS'), ('in', 'IN'), ('some', 'DT'), ('reasonable', 'JJ'), ('form', 'JJ'), ('things', 'NNS'), ('like', 'IN'), ('intersections', 'NNS'), ('unions', 'NNS'), ('etc', 'VBP'), ('etc', 'JJ'), ('..', 'NN'), ('does', 'VBZ'), ('anyone', 'NN'), ('know', 'VB'), ('where', 'WRB'), ('can', 'MD'), ('find', 'VB'), ('such', 'JJ'), ('thing', 'NN')] | ['look', 'package', 'take', 'input', 'set', 'geometric', 'object', 'define', 'union', 'convex', 'polytopes', 'specify', 'manner', 'say', 'inequality', 'equality', 'determines', 'reasonable', 'form', 'thing', 'like', 'intersection', 'union', 'etc', 'etc', 'anyone', 'know', 'find', 'thing'] | ['look_package', 'take_input', 'thing_like', 'etc_etc', 'etc_anyone', 'anyone_know', 'know_find', 'find_thing'] | comp_graphics_38245 |@lemmatized look:1 package:1 take:1 input:1 set:1 geometric:1 object:1 define:1 union:2 convex:1 polytopes:1 specify:1 manner:1 say:1 inequality:1 equality:1 determines:1 reasonable:1 form:1 thing:2 like:1 intersection:1 etc:2 anyone:1 know:1 find:1 |@bigram look_package:1 take_input:1 thing_like:1 etc_etc:1 etc_anyone:1 anyone_know:1 know_find:1 find_thing:1 |
4,544 |
Can anybody name a player who was 'rushed' to the majors (let's, for
argument's sake, define "rushed" as brought up to the majors for more than
a cup of coffee prior at age 22 or younger, and performing below
expectations), whose career was damaged by this rushing? I'm serious; I
tend to agree with David that bringing the player up sooner is better, but
I'd like to look at players for whom this theory didn't work, if there are
any. I'd prefer players within the last 10 years or so, because then I can
look up their minor league stats. (It's important to distinguish between
players who legitimately had careers below what their minor league numbers
would have projected, as opposed to players who were hyped and failed, but
actually had careers not out of line with their minor league numbers).
Let's kick it off with an example of a player who was "rushed", although
there doesn't seem to have been any damage to his career. Jay Bell was
given 135 PAs in the major leagues at age 21, and performed well below what
you would expect from his AAA numbers the same season. He got 236 PAs the
next year at age 22, and still underperformed. However, the next year, at
age 24, his performance improved, and he won the everyday shortstop job,
and has been there ever since. It's really hard for me to see where he
would have been better off staying in the minor league (where he was
performed quite well in AAA) during this time, rather than being "rushed";
Cleveland might have been better off, I suppose, because they might have
been less likely to give up on him.
Yes, if you bring a player up early, he's likely going to struggle. But
does that delay the time at which he stops struggling, and starts
performing up to expectations? | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/rec.sport.baseball/102719 | 9 | rec_sport_baseball_102719 | [('can', 'MD'), ('anybody', 'NN'), ('name', 'VB'), ('player', 'NN'), ('who', 'WP'), ('was', 'VBD'), ('rushed', 'VBN'), ('to', 'TO'), ('the', 'DT'), ('majors', 'NNS'), ('let', 'VBP'), ('for', 'IN'), ('argument', 'JJ'), ('sake', 'NN'), ('define', 'NN'), ('rushed', 'VBN'), ('as', 'IN'), ('brought', 'VBN'), ('up', 'RP'), ('to', 'TO'), ('the', 'DT'), ('majors', 'NNS'), ('for', 'IN'), ('more', 'JJR'), ('than', 'IN'), ('cup', 'NN'), ('of', 'IN'), ('coffee', 'NN'), ('prior', 'NN'), ('at', 'IN'), ('age', 'NN'), ('22', 'CD'), ('or', 'CC'), ('younger', 'JJR'), ('and', 'CC'), ('performing', 'VBG'), ('below', 'IN'), ('expectations', 'NNS'), ('),', 'VBP'), ('whose', 'WP$'), ('career', 'NN'), ('was', 'VBD'), ('damaged', 'VBN'), ('by', 'IN'), ('this', 'DT'), ('rushing', 'VBG'), ('serious', 'JJ'), ('tend', 'NN'), ('to', 'TO'), ('agree', 'VB'), ('with', 'IN'), ('david', 'NN'), ('that', 'WDT'), ('bringing', 'VBG'), ('the', 'DT'), ('player', 'NN'), ('up', 'RP'), ('sooner', 'NN'), ('is', 'VBZ'), ('better', 'RBR'), ('but', 'CC'), ('like', 'IN'), ('to', 'TO'), ('look', 'VB'), ('at', 'IN'), ('players', 'NNS'), ('for', 'IN'), ('whom', 'WP'), ('this', 'DT'), ('theory', 'NN'), ('didn', 'NN'), ('work', 'NN'), ('if', 'IN'), ('there', 'EX'), ('are', 'VBP'), ('any', 'DT'), ('prefer', 'NN'), ('players', 'NNS'), ('within', 'IN'), ('the', 'DT'), ('last', 'JJ'), ('10', 'CD'), ('years', 'NNS'), ('or', 'CC'), ('so', 'RB'), ('because', 'IN'), ('then', 'RB'), ('can', 'MD'), ('look', 'VB'), ('up', 'RP'), ('their', 'PRP$'), ('minor', 'JJ'), ('league', 'NN'), ('stats', 'NNS'), ('it', 'PRP'), ('important', 'JJ'), ('to', 'TO'), ('distinguish', 'VB'), ('between', 'IN'), ('players', 'NNS'), ('who', 'WP'), ('legitimately', 'RB'), ('had', 'VBD'), ('careers', 'NNS'), ('below', 'IN'), ('what', 'WP'), ('their', 'PRP$'), ('minor', 'JJ'), ('league', 'NN'), ('numbers', 'NNS'), ('would', 'MD'), ('have', 'VB'), ('projected', 'VBN'), ('as', 'IN'), ('opposed', 'VBN'), ('to', 'TO'), ('players', 'NNS'), ('who', 'WP'), ('were', 'VBD'), ('hyped', 'VBN'), ('and', 'CC'), ('failed', 'VBN'), ('but', 'CC'), ('actually', 'RB'), ('had', 'VBD'), ('careers', 'NNS'), ('not', 'RB'), ('out', 'IN'), ('of', 'IN'), ('line', 'NN'), ('with', 'IN'), ('their', 'PRP$'), ('minor', 'JJ'), ('league', 'NN'), ('numbers', 'NNS'), (').', 'VBP'), ('let', 'VB'), ('kick', 'VB'), ('it', 'PRP'), ('off', 'RP'), ('with', 'IN'), ('an', 'DT'), ('example', 'NN'), ('of', 'IN'), ('player', 'NN'), ('who', 'WP'), ('was', 'VBD'), ('rushed', 'VBN'), ('",', 'RB'), ('although', 'IN'), ('there', 'EX'), ('doesn', 'JJ'), ('seem', 'VBP'), ('to', 'TO'), ('have', 'VB'), ('been', 'VBN'), ('any', 'DT'), ('damage', 'NN'), ('to', 'TO'), ('his', 'PRP$'), ('career', 'NN'), ('jay', 'NN'), ('bell', 'NN'), ('was', 'VBD'), ('given', 'VBN'), ('135', 'CD'), ('pas', 'NN'), ('in', 'IN'), ('the', 'DT'), ('major', 'JJ'), ('leagues', 'NNS'), ('at', 'IN'), ('age', 'NN'), ('21', 'CD'), ('and', 'CC'), ('performed', 'VBD'), ('well', 'RB'), ('below', 'IN'), ('what', 'WP'), ('you', 'PRP'), ('would', 'MD'), ('expect', 'VB'), ('from', 'IN'), ('his', 'PRP$'), ('aaa', 'NN'), ('numbers', 'NNS'), ('the', 'DT'), ('same', 'JJ'), ('season', 'NN'), ('he', 'PRP'), ('got', 'VBD'), ('236', 'CD'), ('pas', 'IN'), ('the', 'DT'), ('next', 'JJ'), ('year', 'NN'), ('at', 'IN'), ('age', 'NN'), ('22', 'CD'), ('and', 'CC'), ('still', 'RB'), ('underperformed', 'JJ'), ('however', 'RB'), ('the', 'DT'), ('next', 'JJ'), ('year', 'NN'), ('at', 'IN'), ('age', 'NN'), ('24', 'CD'), ('his', 'PRP$'), ('performance', 'NN'), ('improved', 'VBD'), ('and', 'CC'), ('he', 'PRP'), ('won', 'VBD'), ('the', 'DT'), ('everyday', 'JJ'), ('shortstop', 'JJ'), ('job', 'NN'), ('and', 'CC'), ('has', 'VBZ'), ('been', 'VBN'), ('there', 'RB'), ('ever', 'RB'), ('since', 'IN'), ('it', 'PRP'), ('really', 'RB'), ('hard', 'JJ'), ('for', 'IN'), ('me', 'PRP'), ('to', 'TO'), ('see', 'VB'), ('where', 'WRB'), ('he', 'PRP'), ('would', 'MD'), ('have', 'VB'), ('been', 'VBN'), ('better', 'JJR'), ('off', 'RP'), ('staying', 'VBG'), ('in', 'IN'), ('the', 'DT'), ('minor', 'JJ'), ('league', 'NN'), ('where', 'WRB'), ('he', 'PRP'), ('was', 'VBD'), ('performed', 'VBN'), ('quite', 'RB'), ('well', 'RB'), ('in', 'IN'), ('aaa', 'NN'), ('during', 'IN'), ('this', 'DT'), ('time', 'NN'), ('rather', 'RB'), ('than', 'IN'), ('being', 'VBG'), ('rushed', 'VBN'), ('";', 'NNS'), ('cleveland', 'NN'), ('might', 'MD'), ('have', 'VB'), ('been', 'VBN'), ('better', 'JJR'), ('off', 'RP'), ('suppose', 'JJ'), ('because', 'IN'), ('they', 'PRP'), ('might', 'MD'), ('have', 'VB'), ('been', 'VBN'), ('less', 'RBR'), ('likely', 'JJ'), ('to', 'TO'), ('give', 'VB'), ('up', 'RP'), ('on', 'IN'), ('him', 'PRP'), ('yes', 'RB'), ('if', 'IN'), ('you', 'PRP'), ('bring', 'VBP'), ('player', 'NN'), ('up', 'RB'), ('early', 'RB'), ('he', 'PRP'), ('likely', 'RB'), ('going', 'VBG'), ('to', 'TO'), ('struggle', 'VB'), ('but', 'CC'), ('does', 'VBZ'), ('that', 'WDT'), ('delay', 'VB'), ('the', 'DT'), ('time', 'NN'), ('at', 'IN'), ('which', 'WDT'), ('he', 'PRP'), ('stops', 'VBZ'), ('struggling', 'VBG'), ('and', 'CC'), ('starts', 'NNS'), ('performing', 'VBG'), ('up', 'RP'), ('to', 'TO'), ('expectations', 'NNS')] | ['anybody', 'name', 'player', 'rush', 'major', 'let', 'argument', 'sake', 'define', 'rush', 'bring', 'major', 'cup', 'coffee', 'prior', 'age', 'young', 'perform', 'expectation', 'whose', 'career', 'damage', 'rush', 'serious', 'tend', 'agree', 'david', 'bring', 'player', 'sooner', 'well', 'like', 'look', 'player', 'theory', 'work', 'prefer', 'player', 'within', 'last', 'year', 'look', 'minor', 'league', 'stats', 'important', 'distinguish', 'player', 'legitimately', 'career', 'minor', 'league', 'number', 'would', 'project', 'oppose', 'player', 'hype', 'fail', 'actually', 'career', 'line', 'minor', 'league', 'number', 'let', 'kick', 'example', 'player', 'rush', 'although', 'seem', 'damage', 'career', 'jay', 'bell', 'give', 'pa', 'major', 'league', 'age', 'perform', 'well', 'would', 'expect', 'aaa', 'number', 'season', 'get', 'pa', 'next', 'year', 'age', 'still', 'underperformed', 'however', 'next', 'year', 'age', 'performance', 'improve', 'win', 'everyday', 'shortstop', 'job', 'ever', 'since', 'really', 'hard', 'see', 'would', 'good', 'stay', 'minor', 'league', 'perform', 'quite', 'well', 'aaa', 'time', 'rather', 'rush', 'cleveland', 'might', 'good', 'suppose', 'might', 'less', 'likely', 'give', 'yes', 'bring', 'player', 'early', 'likely', 'go', 'struggle', 'delay', 'time', 'stop', 'struggle', 'start', 'perform', 'expectation'] | ['name_player', 'cup_coffee', 'tend_agree', 'well_like', 'like_look', 'within_last', 'last_year', 'year_look', 'minor_league', 'minor_league', 'league_number', 'number_would', 'minor_league', 'league_number', 'major_league', 'perform_well', 'well_would', 'would_expect', 'next_year', 'year_age', 'next_year', 'year_age', 'ever_since', 'since_really', 'hard_see', 'see_would', 'would_good', 'minor_league', 'quite_well', 'time_rather', 'might_good', 'less_likely'] | rec_sport_baseball_102719 |@lemmatized anybody:1 name:1 player:8 rush:5 major:3 let:2 argument:1 sake:1 define:1 bring:3 cup:1 coffee:1 prior:1 age:4 young:1 perform:4 expectation:2 whose:1 career:4 damage:2 serious:1 tend:1 agree:1 david:1 sooner:1 well:3 like:1 look:2 theory:1 work:1 prefer:1 within:1 last:1 year:3 minor:4 league:5 stats:1 important:1 distinguish:1 legitimately:1 number:3 would:3 project:1 oppose:1 hype:1 fail:1 actually:1 line:1 kick:1 example:1 although:1 seem:1 jay:1 bell:1 give:2 pa:2 expect:1 aaa:2 season:1 get:1 next:2 still:1 underperformed:1 however:1 performance:1 improve:1 win:1 everyday:1 shortstop:1 job:1 ever:1 since:1 really:1 hard:1 see:1 good:2 stay:1 quite:1 time:2 rather:1 cleveland:1 might:2 suppose:1 less:1 likely:2 yes:1 early:1 go:1 struggle:2 delay:1 stop:1 start:1 |@bigram name_player:1 cup_coffee:1 tend_agree:1 well_like:1 like_look:1 within_last:1 last_year:1 year_look:1 minor_league:4 league_number:2 number_would:1 major_league:1 perform_well:1 well_would:1 would_expect:1 next_year:2 year_age:2 ever_since:1 since_really:1 hard_see:1 see_would:1 would_good:1 quite_well:1 time_rather:1 might_good:1 less_likely:1 |
4,545 | I'm posting this for a friend:
I have an immediate need for a polygon-based hidden-line removal
program. I can deal with any input/output format, but I need to be able
to do perspective views in any orientation and range.
Is there a public-domain hidden-line program around? It seems like
there should be, but I have not been able to locate one. | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/comp.graphics/38691 | 1 | comp_graphics_38691 | [('posting', 'VBG'), ('this', 'DT'), ('for', 'IN'), ('friend', 'NN'), ('have', 'VBP'), ('an', 'DT'), ('immediate', 'JJ'), ('need', 'NN'), ('for', 'IN'), ('polygon', 'NN'), ('based', 'VBN'), ('hidden', 'JJ'), ('line', 'NN'), ('removal', 'NN'), ('program', 'NN'), ('can', 'MD'), ('deal', 'VB'), ('with', 'IN'), ('any', 'DT'), ('input', 'NN'), ('output', 'NN'), ('format', 'NNS'), ('but', 'CC'), ('need', 'VBP'), ('to', 'TO'), ('be', 'VB'), ('able', 'JJ'), ('to', 'TO'), ('do', 'VB'), ('perspective', 'JJ'), ('views', 'NNS'), ('in', 'IN'), ('any', 'DT'), ('orientation', 'NN'), ('and', 'CC'), ('range', 'NN'), ('is', 'VBZ'), ('there', 'EX'), ('public', 'JJ'), ('domain', 'NN'), ('hidden', 'JJ'), ('line', 'NN'), ('program', 'NN'), ('around', 'IN'), ('it', 'PRP'), ('seems', 'VBZ'), ('like', 'IN'), ('there', 'EX'), ('should', 'MD'), ('be', 'VB'), ('but', 'CC'), ('have', 'VBP'), ('not', 'RB'), ('been', 'VBN'), ('able', 'JJ'), ('to', 'TO'), ('locate', 'VB'), ('one', 'CD')] | ['post', 'friend', 'immediate', 'need', 'polygon', 'base', 'hidden', 'line', 'removal', 'program', 'deal', 'input', 'output', 'format', 'need', 'able', 'perspective', 'view', 'orientation', 'range', 'public', 'domain', 'hidden', 'line', 'program', 'around', 'seem', 'like', 'able', 'locate', 'one'] | ['post_friend', 'hidden_line', 'line_removal', 'input_output', 'need_able', 'public_domain', 'hidden_line', 'line_program', 'seem_like', 'like_able', 'able_locate'] | comp_graphics_38691 |@lemmatized post:1 friend:1 immediate:1 need:2 polygon:1 base:1 hidden:2 line:2 removal:1 program:2 deal:1 input:1 output:1 format:1 able:2 perspective:1 view:1 orientation:1 range:1 public:1 domain:1 around:1 seem:1 like:1 locate:1 one:1 |@bigram post_friend:1 hidden_line:2 line_removal:1 input_output:1 need_able:1 public_domain:1 line_program:1 seem_like:1 like_able:1 able_locate:1 |
4,546 | Can someone recommend how to ship a motorcycle from San Francisco
to Seattle? And how much might it cost?
I remember a thread on shipping. If someone saved the instructions
on bike prep, please post 'em again, or email.
Thanks, | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/rec.motorcycles/104397 | 8 | rec_motorcycles_104397 | [('can', 'MD'), ('someone', 'NN'), ('recommend', 'VB'), ('how', 'WRB'), ('to', 'TO'), ('ship', 'VB'), ('motorcycle', 'NN'), ('from', 'IN'), ('san', 'JJ'), ('francisco', 'NN'), ('to', 'TO'), ('seattle', 'VB'), ('and', 'CC'), ('how', 'WRB'), ('much', 'JJ'), ('might', 'MD'), ('it', 'PRP'), ('cost', 'VB'), ('remember', 'VB'), ('thread', 'NN'), ('on', 'IN'), ('shipping', 'VBG'), ('if', 'IN'), ('someone', 'NN'), ('saved', 'VBD'), ('the', 'DT'), ('instructions', 'NNS'), ('on', 'IN'), ('bike', 'NN'), ('prep', 'NN'), ('please', 'NN'), ('post', 'NN'), ('em', 'NN'), ('again', 'RB'), ('or', 'CC'), ('email', 'VB'), ('thanks', 'NNS')] | ['someone', 'recommend', 'ship', 'motorcycle', 'san', 'francisco', 'seattle', 'much', 'might', 'cost', 'remember', 'thread', 'ship', 'someone', 'save', 'instruction', 'bike', 'prep', 'please', 'post', 'em', 'email', 'thanks'] | ['san_francisco', 'please_post', 'email_thanks'] | rec_motorcycles_104397 |@lemmatized someone:2 recommend:1 ship:2 motorcycle:1 san:1 francisco:1 seattle:1 much:1 might:1 cost:1 remember:1 thread:1 save:1 instruction:1 bike:1 prep:1 please:1 post:1 em:1 email:1 thanks:1 |@bigram san_francisco:1 please_post:1 email_thanks:1 |
4,547 | } >>
} >>>Has Jack lost a bit of his edge? What is the worst start Jack Morris has had?
} >>
} >>Uh, Jack lost his edge about 5 years ago, and has had only one above
} >>average year in the last 5.
} >
} >Again goes to prove that it is better to be good than lucky. You can
} >count on good tomorrow. Lucky seems to be prone to bad starts (and a
} >bad finish last year :-).
} >
} >(Yes, I am enjoying every last run he gives up. Who was it who said
} >Morris was a better signing than Viola?)
}
} Hey Valentine, I don't see Boston with any world series rings on their
} fingers.
oooooo. cheap shot. :^)
} Damn, Morris now has three and probably the Hall of Fame in his
} future.
who cares? he had two of them before he came to Toronto; and if the
Jays had signed Viola instead of Morris, it would have been Frank who
won 20 and got the ring. and he would be on his way to 20 this year, too.
} Therefore, I would have to say Toronto easily made the best
} signing.
your logic is curious, and spurious.
there is no reason to believe that Viola wouldn't have won as many games
had *he* signed with Toronto. when you compare their stupid W-L records,
be sure to compare their team's offensive averages too.
now, looking at anything like the Morris-Viola sweepstakes a year later
is basically hindsight. but there were plenty of reasons why it
should have been apparent that Viola was the better pitcher, based
on previous recent years and also based on age (Frank is almost 5
years younger! how many knew that?). people got caught up in the '91
World Series, and then on Morris' 21 wins last year. wins are the stupidest,
most misleading statistic in baseball, far worse than RBI or R. that he
won 21 just means that the Jays got him a lot of runs.
the only really valid retort to Valentine is: weren't the Red Sox trying
to get Morris too? oh, sure, they *said* Viola was their first choice
afterwards, but what should we have expected they would say?
} And don't tell me Boston will win this year. They won't
} even be in the top 4 in the division, more like 6th.
if this is true, it won't be for lack of contribution by Viola, so who cares? | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/rec.sport.baseball/104467 | 9 | rec_sport_baseball_104467 | [('>>', 'NN'), ('>>>', 'NN'), ('has', 'VBZ'), ('jack', 'NN'), ('lost', 'VBN'), ('bit', 'NN'), ('of', 'IN'), ('his', 'PRP$'), ('edge', 'NN'), ('what', 'WP'), ('is', 'VBZ'), ('the', 'DT'), ('worst', 'JJS'), ('start', 'NN'), ('jack', 'NN'), ('morris', 'NN'), ('has', 'VBZ'), ('had', 'VBN'), ('>>', 'VBN'), ('>>', 'JJ'), ('uh', 'JJ'), ('jack', 'NN'), ('lost', 'VBD'), ('his', 'PRP$'), ('edge', 'NN'), ('about', 'IN'), ('years', 'NNS'), ('ago', 'RB'), ('and', 'CC'), ('has', 'VBZ'), ('had', 'VBN'), ('only', 'RB'), ('one', 'CD'), ('above', 'IN'), ('>>', 'NN'), ('average', 'JJ'), ('year', 'NN'), ('in', 'IN'), ('the', 'DT'), ('last', 'JJ'), ('again', 'RB'), ('goes', 'VBZ'), ('to', 'TO'), ('prove', 'VB'), ('that', 'IN'), ('it', 'PRP'), ('is', 'VBZ'), ('better', 'RBR'), ('to', 'TO'), ('be', 'VB'), ('good', 'JJ'), ('than', 'IN'), ('lucky', 'JJ'), ('you', 'PRP'), ('can', 'MD'), ('count', 'VB'), ('on', 'IN'), ('good', 'JJ'), ('tomorrow', 'NN'), ('lucky', 'JJ'), ('seems', 'VBZ'), ('to', 'TO'), ('be', 'VB'), ('prone', 'JJ'), ('to', 'TO'), ('bad', 'JJ'), ('starts', 'NNS'), ('and', 'CC'), ('bad', 'JJ'), ('finish', 'NN'), ('last', 'JJ'), ('year', 'NN'), (':-).', 'JJ'), ('>(', 'NNP'), ('yes', 'NNP'), ('am', 'VBP'), ('enjoying', 'VBG'), ('every', 'DT'), ('last', 'JJ'), ('run', 'NN'), ('he', 'PRP'), ('gives', 'VBZ'), ('up', 'RP'), ('who', 'WP'), ('was', 'VBD'), ('it', 'PRP'), ('who', 'WP'), ('said', 'VBD'), ('morris', 'NN'), ('was', 'VBD'), ('better', 'RBR'), ('signing', 'VBG'), ('than', 'IN'), ('viola', 'FW'), ('?)', 'FW'), ('hey', 'FW'), ('valentine', 'VBP'), ('don', 'NNS'), ('see', 'VBP'), ('boston', 'NN'), ('with', 'IN'), ('any', 'DT'), ('world', 'NN'), ('series', 'NN'), ('rings', 'NNS'), ('on', 'IN'), ('their', 'PRP$'), ('fingers', 'NNS'), ('oooooo', 'VBP'), ('cheap', 'JJ'), ('shot', 'NN'), (':^)', 'NNP'), ('damn', 'VBZ'), ('morris', 'NN'), ('now', 'RB'), ('has', 'VBZ'), ('three', 'CD'), ('and', 'CC'), ('probably', 'RB'), ('the', 'DT'), ('hall', 'NN'), ('of', 'IN'), ('fame', 'NN'), ('in', 'IN'), ('his', 'PRP$'), ('future', 'NN'), ('who', 'WP'), ('cares', 'VBZ'), ('he', 'PRP'), ('had', 'VBD'), ('two', 'CD'), ('of', 'IN'), ('them', 'PRP'), ('before', 'IN'), ('he', 'PRP'), ('came', 'VBD'), ('to', 'TO'), ('toronto', 'VB'), ('and', 'CC'), ('if', 'IN'), ('the', 'DT'), ('jays', 'NNS'), ('had', 'VBD'), ('signed', 'VBN'), ('viola', 'RB'), ('instead', 'RB'), ('of', 'IN'), ('morris', 'NN'), ('it', 'PRP'), ('would', 'MD'), ('have', 'VB'), ('been', 'VBN'), ('frank', 'VBN'), ('who', 'WP'), ('won', 'VBD'), ('20', 'CD'), ('and', 'CC'), ('got', 'VBD'), ('the', 'DT'), ('ring', 'NN'), ('and', 'CC'), ('he', 'PRP'), ('would', 'MD'), ('be', 'VB'), ('on', 'IN'), ('his', 'PRP$'), ('way', 'NN'), ('to', 'TO'), ('20', 'CD'), ('this', 'DT'), ('year', 'NN'), ('too', 'RB'), ('therefore', 'RB'), ('would', 'MD'), ('have', 'VB'), ('to', 'TO'), ('say', 'VB'), ('toronto', 'IN'), ('easily', 'RB'), ('made', 'VBD'), ('the', 'DT'), ('best', 'JJS'), ('signing', 'NN'), ('your', 'PRP$'), ('logic', 'NN'), ('is', 'VBZ'), ('curious', 'JJ'), ('and', 'CC'), ('spurious', 'JJ'), ('there', 'EX'), ('is', 'VBZ'), ('no', 'DT'), ('reason', 'NN'), ('to', 'TO'), ('believe', 'VB'), ('that', 'IN'), ('viola', 'NN'), ('wouldn', 'NNS'), ('have', 'VBP'), ('won', 'VBN'), ('as', 'IN'), ('many', 'JJ'), ('games', 'NNS'), ('had', 'VBD'), ('he', 'PRP'), ('signed', 'VBD'), ('with', 'IN'), ('toronto', 'NN'), ('when', 'WRB'), ('you', 'PRP'), ('compare', 'VBP'), ('their', 'PRP$'), ('stupid', 'JJ'), ('records', 'NNS'), ('be', 'VB'), ('sure', 'JJ'), ('to', 'TO'), ('compare', 'VB'), ('their', 'PRP$'), ('team', 'NN'), ('offensive', 'JJ'), ('averages', 'NNS'), ('too', 'RB'), ('now', 'RB'), ('looking', 'VBG'), ('at', 'IN'), ('anything', 'NN'), ('like', 'IN'), ('the', 'DT'), ('morris', 'NN'), ('viola', 'NN'), ('sweepstakes', 'NNS'), ('year', 'NN'), ('later', 'RB'), ('is', 'VBZ'), ('basically', 'RB'), ('hindsight', 'JJ'), ('but', 'CC'), ('there', 'EX'), ('were', 'VBD'), ('plenty', 'NN'), ('of', 'IN'), ('reasons', 'NNS'), ('why', 'WRB'), ('it', 'PRP'), ('should', 'MD'), ('have', 'VB'), ('been', 'VBN'), ('apparent', 'JJ'), ('that', 'IN'), ('viola', 'NN'), ('was', 'VBD'), ('the', 'DT'), ('better', 'JJR'), ('pitcher', 'NN'), ('based', 'VBN'), ('on', 'IN'), ('previous', 'JJ'), ('recent', 'JJ'), ('years', 'NNS'), ('and', 'CC'), ('also', 'RB'), ('based', 'VBN'), ('on', 'IN'), ('age', 'NN'), ('frank', 'NN'), ('is', 'VBZ'), ('almost', 'RB'), ('years', 'NNS'), ('younger', 'JJR'), ('how', 'WRB'), ('many', 'JJ'), ('knew', 'VBD'), ('that', 'IN'), ('?).', 'JJ'), ('people', 'NNS'), ('got', 'VBD'), ('caught', 'VBN'), ('up', 'RP'), ('in', 'IN'), ('the', 'DT'), ('91', 'CD'), ('world', 'NN'), ('series', 'NN'), ('and', 'CC'), ('then', 'RB'), ('on', 'IN'), ('morris', 'NNS'), ('21', 'CD'), ('wins', 'NNS'), ('last', 'JJ'), ('year', 'NN'), ('wins', 'NNS'), ('are', 'VBP'), ('the', 'DT'), ('stupidest', 'JJS'), ('most', 'RBS'), ('misleading', 'JJ'), ('statistic', 'NN'), ('in', 'IN'), ('baseball', 'NN'), ('far', 'RB'), ('worse', 'JJR'), ('than', 'IN'), ('rbi', 'NN'), ('or', 'CC'), ('that', 'IN'), ('he', 'PRP'), ('won', 'VBD'), ('21', 'CD'), ('just', 'RB'), ('means', 'VBZ'), ('that', 'IN'), ('the', 'DT'), ('jays', 'NNS'), ('got', 'VBD'), ('him', 'PRP'), ('lot', 'NN'), ('of', 'IN'), ('runs', 'VBZ'), ('the', 'DT'), ('only', 'JJ'), ('really', 'RB'), ('valid', 'JJ'), ('retort', 'NN'), ('to', 'TO'), ('valentine', 'VB'), ('is', 'VBZ'), ('weren', 'PDT'), ('the', 'DT'), ('red', 'JJ'), ('sox', 'NN'), ('trying', 'VBG'), ('to', 'TO'), ('get', 'VB'), ('morris', 'VB'), ('too', 'RB'), ('oh', 'JJ'), ('sure', 'NN'), ('they', 'PRP'), ('said', 'VBD'), ('viola', 'NN'), ('was', 'VBD'), ('their', 'PRP$'), ('first', 'JJ'), ('choice', 'NN'), ('afterwards', 'NNS'), ('but', 'CC'), ('what', 'WP'), ('should', 'MD'), ('we', 'PRP'), ('have', 'VBP'), ('expected', 'VBN'), ('they', 'PRP'), ('would', 'MD'), ('say', 'VB'), ('and', 'CC'), ('don', 'VB'), ('tell', 'VB'), ('me', 'PRP'), ('boston', 'NN'), ('will', 'MD'), ('win', 'VB'), ('this', 'DT'), ('year', 'NN'), ('they', 'PRP'), ('won', 'VBD'), ('even', 'RB'), ('be', 'VB'), ('in', 'IN'), ('the', 'DT'), ('top', 'NN'), ('in', 'IN'), ('the', 'DT'), ('division', 'NN'), ('more', 'RBR'), ('like', 'IN'), ('6th', 'CD'), ('if', 'IN'), ('this', 'DT'), ('is', 'VBZ'), ('true', 'JJ'), ('it', 'PRP'), ('won', 'VBD'), ('be', 'VB'), ('for', 'IN'), ('lack', 'NN'), ('of', 'IN'), ('contribution', 'NN'), ('by', 'IN'), ('viola', 'NNS'), ('so', 'RB'), ('who', 'WP'), ('cares', 'VBP')] | ['jack', 'lose', 'bit', 'edge', 'bad', 'start', 'jack', 'morris', 'uh', 'jack', 'lose', 'edge', 'year', 'ago', 'one', 'average', 'year', 'last', 'go', 'prove', 'well', 'good', 'lucky', 'count', 'good', 'tomorrow', 'lucky', 'seem', 'prone', 'bad', 'start', 'bad', 'finish', 'last', 'year', 'yes', 'enjoy', 'every', 'last', 'run', 'give', 'say', 'morris', 'well', 'sign', 'viola', 'hey', 'valentine', 'see', 'boston', 'world', 'series', 'ring', 'finger', 'oooooo', 'cheap', 'shot', 'damn', 'morris', 'three', 'probably', 'hall', 'fame', 'future', 'care', 'two', 'come', 'toronto', 'jay', 'sign', 'viola', 'instead', 'morris', 'would', 'frank', 'win', 'get', 'ring', 'would', 'way', 'year', 'therefore', 'would', 'say', 'toronto', 'easily', 'make', 'best', 'signing', 'logic', 'curious', 'spurious', 'reason', 'believe', 'viola', 'win', 'many', 'game', 'sign', 'toronto', 'compare', 'stupid', 'record', 'sure', 'compare', 'team', 'offensive', 'average', 'look', 'anything', 'like', 'morris', 'viola', 'sweepstakes', 'year', 'later', 'basically', 'hindsight', 'plenty', 'reason', 'apparent', 'viola', 'good', 'pitcher', 'base', 'previous', 'recent', 'year', 'also', 'base', 'age', 'frank', 'almost', 'year', 'young', 'many', 'know', 'people', 'get', 'catch', 'world', 'series', 'morris', 'win', 'last', 'year', 'win', 'stupid', 'misleading', 'statistic', 'baseball', 'far', 'bad', 'rbi', 'win', 'mean', 'jay', 'get', 'lot', 'run', 'really', 'valid', 'retort', 'valentine', 'red', 'sox', 'try', 'get', 'morris', 'oh', 'sure', 'say', 'viola', 'first', 'choice', 'afterwards', 'expect', 'would', 'say', 'tell', 'boston', 'win', 'year', 'win', 'even', 'top', 'division', 'like', 'true', 'win', 'lack', 'contribution', 'viola', 'care'] | ['jack_morris', 'year_ago', 'one_average', 'year_last', 'well_good', 'finish_last', 'last_year', 'year_yes', 'give_say', 'well_sign', 'world_series', 'cheap_shot', 'hall_fame', 'win_get', 'would_way', 'therefore_would', 'would_say', 'easily_make', 'make_best', 'reason_believe', 'many_game', 'anything_like', 'year_later', 'good_pitcher', 'recent_year', 'year_also', 'almost_year', 'many_know', 'know_people', 'people_get', 'get_catch', 'world_series', 'win_last', 'last_year', 'year_win', 'get_lot', 'red_sox', 'try_get', 'first_choice', 'expect_would', 'would_say', 'say_tell', 'win_year', 'year_win', 'win_even'] | rec_sport_baseball_104467 |@lemmatized jack:3 lose:2 bit:1 edge:2 bad:4 start:2 morris:7 uh:1 year:9 ago:1 one:1 average:2 last:4 go:1 prove:1 well:2 good:3 lucky:2 count:1 tomorrow:1 seem:1 prone:1 finish:1 yes:1 enjoy:1 every:1 run:2 give:1 say:4 sign:3 viola:7 hey:1 valentine:2 see:1 boston:2 world:2 series:2 ring:2 finger:1 oooooo:1 cheap:1 shot:1 damn:1 three:1 probably:1 hall:1 fame:1 future:1 care:2 two:1 come:1 toronto:3 jay:2 instead:1 would:4 frank:2 win:8 get:4 way:1 therefore:1 easily:1 make:1 best:1 signing:1 logic:1 curious:1 spurious:1 reason:2 believe:1 many:2 game:1 compare:2 stupid:2 record:1 sure:2 team:1 offensive:1 look:1 anything:1 like:2 sweepstakes:1 later:1 basically:1 hindsight:1 plenty:1 apparent:1 pitcher:1 base:2 previous:1 recent:1 also:1 age:1 almost:1 young:1 know:1 people:1 catch:1 misleading:1 statistic:1 baseball:1 far:1 rbi:1 mean:1 lot:1 really:1 valid:1 retort:1 red:1 sox:1 try:1 oh:1 first:1 choice:1 afterwards:1 expect:1 tell:1 even:1 top:1 division:1 true:1 lack:1 contribution:1 |@bigram jack_morris:1 year_ago:1 one_average:1 year_last:1 well_good:1 finish_last:1 last_year:2 year_yes:1 give_say:1 well_sign:1 world_series:2 cheap_shot:1 hall_fame:1 win_get:1 would_way:1 therefore_would:1 would_say:2 easily_make:1 make_best:1 reason_believe:1 many_game:1 anything_like:1 year_later:1 good_pitcher:1 recent_year:1 year_also:1 almost_year:1 many_know:1 know_people:1 people_get:1 get_catch:1 win_last:1 year_win:2 get_lot:1 red_sox:1 try_get:1 first_choice:1 expect_would:1 say_tell:1 win_year:1 win_even:1 |
4,548 | Already say it the other week on CBC Snoozeworld
Yeah, I thought Bonanza was full of lies about the West...
Why the hell would such an oil rich (and hydroelectric potential to be
exploited) spend billions on a nuclear energy programme?
Yeah, and we have every reason in the world to trust the Iranian regime.
After all, they've been *so* forward with us in the past....
Maybe he *is* God!
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/talk.politics.mideast/76413 | 17 | talk_politics_mideast_76413 | [('already', 'RB'), ('say', 'VB'), ('it', 'PRP'), ('the', 'DT'), ('other', 'JJ'), ('week', 'NN'), ('on', 'IN'), ('cbc', 'NN'), ('snoozeworld', 'NN'), ('yeah', 'NN'), ('thought', 'VBD'), ('bonanza', 'NN'), ('was', 'VBD'), ('full', 'JJ'), ('of', 'IN'), ('lies', 'NNS'), ('about', 'IN'), ('the', 'DT'), ('west', 'NN'), ('...', ':'), ('why', 'WRB'), ('the', 'DT'), ('hell', 'NN'), ('would', 'MD'), ('such', 'VB'), ('an', 'DT'), ('oil', 'NN'), ('rich', 'JJ'), ('and', 'CC'), ('hydroelectric', 'JJ'), ('potential', 'NN'), ('to', 'TO'), ('be', 'VB'), ('exploited', 'VBN'), ('spend', 'JJ'), ('billions', 'NNS'), ('on', 'IN'), ('nuclear', 'JJ'), ('energy', 'NN'), ('programme', 'NN'), ('yeah', 'NN'), ('and', 'CC'), ('we', 'PRP'), ('have', 'VBP'), ('every', 'DT'), ('reason', 'NN'), ('in', 'IN'), ('the', 'DT'), ('world', 'NN'), ('to', 'TO'), ('trust', 'VB'), ('the', 'DT'), ('iranian', 'JJ'), ('regime', 'NN'), ('after', 'IN'), ('all', 'DT'), ('they', 'PRP'), ('ve', 'VBP'), ('been', 'VBN'), ('so', 'RB'), ('forward', 'RB'), ('with', 'IN'), ('us', 'PRP'), ('in', 'IN'), ('the', 'DT'), ('past', 'JJ'), ('....', 'NN'), ('maybe', 'RB'), ('he', 'PRP'), ('is', 'VBZ'), ('god', 'JJ')] | ['already', 'say', 'week', 'cbc', 'snoozeworld', 'yeah', 'think', 'bonanza', 'full', 'lie', 'west', 'hell', 'would', 'oil', 'rich', 'hydroelectric', 'potential', 'exploit', 'spend', 'billion', 'nuclear', 'energy', 'programme', 'yeah', 'every', 'reason', 'world', 'trust', 'iranian', 'regime', 'forward', 'u', 'past', 'maybe', 'god'] | ['already_say', 'hell_would', 'every_reason'] | talk_politics_mideast_76413 |@lemmatized already:1 say:1 week:1 cbc:1 snoozeworld:1 yeah:2 think:1 bonanza:1 full:1 lie:1 west:1 hell:1 would:1 oil:1 rich:1 hydroelectric:1 potential:1 exploit:1 spend:1 billion:1 nuclear:1 energy:1 programme:1 every:1 reason:1 world:1 trust:1 iranian:1 regime:1 forward:1 u:1 past:1 maybe:1 god:1 |@bigram already_say:1 hell_would:1 every_reason:1 |
4,549 |
How can we resist a questions that says something like this?
If your Expose event handler is truly intelligent about exposed
rectangle information, then you can use XClearArea to generate an
Expose event (assuming that your background pixel is not None) for the
enclosing rectangle of your new item.
This is still not great, since any other items contained within that
rectangle will still be unnecessarily redrawn.
If your Expose event handler simply redraws everything, you'll be
doing much more work than just drawing the new item "on top" of the
existing scene.
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/comp.windows.x/67020 | 5 | comp_windows_x_67020 | [('how', 'WRB'), ('can', 'MD'), ('we', 'PRP'), ('resist', 'VB'), ('questions', 'NNS'), ('that', 'WDT'), ('says', 'VBZ'), ('something', 'NN'), ('like', 'IN'), ('this', 'DT'), ('if', 'IN'), ('your', 'PRP$'), ('expose', 'JJ'), ('event', 'NN'), ('handler', 'NN'), ('is', 'VBZ'), ('truly', 'RB'), ('intelligent', 'JJ'), ('about', 'IN'), ('exposed', 'VBN'), ('rectangle', 'NN'), ('information', 'NN'), ('then', 'RB'), ('you', 'PRP'), ('can', 'MD'), ('use', 'VB'), ('xcleararea', 'JJ'), ('to', 'TO'), ('generate', 'VB'), ('an', 'DT'), ('expose', 'JJ'), ('event', 'NN'), ('assuming', 'VBG'), ('that', 'IN'), ('your', 'PRP$'), ('background', 'NN'), ('pixel', 'NN'), ('is', 'VBZ'), ('not', 'RB'), ('none', 'NN'), ('for', 'IN'), ('the', 'DT'), ('enclosing', 'VBG'), ('rectangle', 'NN'), ('of', 'IN'), ('your', 'PRP$'), ('new', 'JJ'), ('item', 'NN'), ('this', 'DT'), ('is', 'VBZ'), ('still', 'RB'), ('not', 'RB'), ('great', 'JJ'), ('since', 'IN'), ('any', 'DT'), ('other', 'JJ'), ('items', 'NNS'), ('contained', 'VBN'), ('within', 'IN'), ('that', 'DT'), ('rectangle', 'NN'), ('will', 'MD'), ('still', 'RB'), ('be', 'VB'), ('unnecessarily', 'RB'), ('redrawn', 'VB'), ('if', 'IN'), ('your', 'PRP$'), ('expose', 'JJ'), ('event', 'NN'), ('handler', 'NN'), ('simply', 'RB'), ('redraws', 'VB'), ('everything', 'NN'), ('you', 'PRP'), ('ll', 'VBP'), ('be', 'VB'), ('doing', 'VBG'), ('much', 'RB'), ('more', 'RBR'), ('work', 'NN'), ('than', 'IN'), ('just', 'RB'), ('drawing', 'VBG'), ('the', 'DT'), ('new', 'JJ'), ('item', 'NN'), ('on', 'IN'), ('top', 'NN'), ('of', 'IN'), ('the', 'DT'), ('existing', 'VBG'), ('scene', 'NN')] | ['resist', 'question', 'say', 'something', 'like', 'expose', 'event', 'handler', 'truly', 'intelligent', 'expose', 'rectangle', 'information', 'use', 'xcleararea', 'generate', 'expose', 'event', 'assume', 'background', 'pixel', 'none', 'enclose', 'rectangle', 'new', 'item', 'still', 'great', 'since', 'item', 'contain', 'within', 'rectangle', 'still', 'unnecessarily', 'redrawn', 'expose', 'event', 'handler', 'simply', 'redraws', 'everything', 'much', 'work', 'draw', 'new', 'item', 'top', 'exist', 'scene'] | ['question_say', 'say_something', 'something_like', 'expose_event', 'event_handler', 'information_use', 'expose_event', 'background_pixel', 'new_item', 'expose_event', 'event_handler', 'much_work', 'new_item'] | comp_windows_x_67020 |@lemmatized resist:1 question:1 say:1 something:1 like:1 expose:4 event:3 handler:2 truly:1 intelligent:1 rectangle:3 information:1 use:1 xcleararea:1 generate:1 assume:1 background:1 pixel:1 none:1 enclose:1 new:2 item:3 still:2 great:1 since:1 contain:1 within:1 unnecessarily:1 redrawn:1 simply:1 redraws:1 everything:1 much:1 work:1 draw:1 top:1 exist:1 scene:1 |@bigram question_say:1 say_something:1 something_like:1 expose_event:3 event_handler:2 information_use:1 background_pixel:1 new_item:2 much_work:1 |
4,550 | For Sale:
Intel 96oo Baud Modem
External
V32/V42bis
Very Good Working Condition
Never had any problems
$160 oBo
Leave daytime number for fastest response.
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/misc.forsale/74785 | 6 | misc_forsale_74785 | [('for', 'IN'), ('sale', 'NN'), ('intel', 'NN'), ('96oo', 'CD'), ('baud', 'NN'), ('modem', 'JJ'), ('external', 'JJ'), ('v32', 'NN'), ('v42bis', 'NN'), ('very', 'RB'), ('good', 'JJ'), ('working', 'VBG'), ('condition', 'NN'), ('never', 'RB'), ('had', 'VBD'), ('any', 'DT'), ('problems', 'NNS'), ('160', 'CD'), ('obo', 'NNS'), ('leave', 'VBP'), ('daytime', 'JJ'), ('number', 'NN'), ('for', 'IN'), ('fastest', 'JJS'), ('response', 'NN')] | ['sale', 'intel', 'baud', 'modem', 'external', 'good', 'work', 'condition', 'never', 'problem', 'obo', 'leave', 'daytime', 'number', 'fast', 'response'] | ['baud_modem', 'good_work', 'work_condition', 'condition_never', 'never_problem', 'fast_response'] | misc_forsale_74785 |@lemmatized sale:1 intel:1 baud:1 modem:1 external:1 good:1 work:1 condition:1 never:1 problem:1 obo:1 leave:1 daytime:1 number:1 fast:1 response:1 |@bigram baud_modem:1 good_work:1 work_condition:1 condition_never:1 never_problem:1 fast_response:1 |
4,551 | At one time there was speculation that the first spacewalk
(Alexei Leonov ?) was a staged fake.
Has any evidence to support or contradict this claim emerged ?
Was this claim perhaps another fevered Cold War hallucination ?
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/sci.space/60952 | 14 | sci_space_60952 | [('at', 'IN'), ('one', 'CD'), ('time', 'NN'), ('there', 'EX'), ('was', 'VBD'), ('speculation', 'NN'), ('that', 'IN'), ('the', 'DT'), ('first', 'JJ'), ('spacewalk', 'NN'), ('alexei', 'NN'), ('leonov', 'NN'), ('?)', 'NNP'), ('was', 'VBD'), ('staged', 'VBN'), ('fake', 'NN'), ('has', 'VBZ'), ('any', 'DT'), ('evidence', 'NN'), ('to', 'TO'), ('support', 'VB'), ('or', 'CC'), ('contradict', 'VB'), ('this', 'DT'), ('claim', 'NN'), ('emerged', 'VBD'), ('was', 'VBD'), ('this', 'DT'), ('claim', 'NN'), ('perhaps', 'RB'), ('another', 'DT'), ('fevered', 'JJ'), ('cold', 'JJ'), ('war', 'NN'), ('hallucination', 'NN')] | ['one', 'time', 'speculation', 'first', 'spacewalk', 'alexei', 'leonov', 'stag', 'fake', 'evidence', 'support', 'contradict', 'claim', 'emerge', 'claim', 'perhaps', 'another', 'fevered', 'cold', 'war', 'hallucination'] | ['one_time', 'evidence_support', 'perhaps_another', 'cold_war'] | sci_space_60952 |@lemmatized one:1 time:1 speculation:1 first:1 spacewalk:1 alexei:1 leonov:1 stag:1 fake:1 evidence:1 support:1 contradict:1 claim:2 emerge:1 perhaps:1 another:1 fevered:1 cold:1 war:1 hallucination:1 |@bigram one_time:1 evidence_support:1 perhaps_another:1 cold_war:1 |
4,552 |
The commercial uses of a transportation system between already-settled-
and-civilized areas are obvious. Spaceflight is NOT in this position.
The correct analogy is not with aviation of the '30's, but the long
transocean voyages of the Age of Discovery. It didn't require gov't to
fund these as long as something was known about the potential for profit
at the destination. In practice, some were gov't funded, some were private.
But there was no way that any wise investor would spend a large amount
of money on a very risky investment with no idea of the possible payoff.
I am sure that a thriving spaceflight industry will eventually develop,
and large numbers of people will live and work off-Earth. But if you ask
me for specific justifications other than the increased resource base, I
can't give them. We just don't know enough. The launch rate demanded by
existing space industries is just too low to bring costs down much, and
we are very much in the dark about what the revolutionary new space industries
will be, when they will practical, how much will have to be invested to
start them, etc.
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/sci.space/61011 | 14 | sci_space_61011 | [('the', 'DT'), ('commercial', 'JJ'), ('uses', 'NNS'), ('of', 'IN'), ('transportation', 'NN'), ('system', 'NN'), ('between', 'IN'), ('already', 'RB'), ('settled', 'VBN'), ('and', 'CC'), ('civilized', 'VBN'), ('areas', 'NNS'), ('are', 'VBP'), ('obvious', 'JJ'), ('spaceflight', 'NN'), ('is', 'VBZ'), ('not', 'RB'), ('in', 'IN'), ('this', 'DT'), ('position', 'NN'), ('the', 'DT'), ('correct', 'JJ'), ('analogy', 'NN'), ('is', 'VBZ'), ('not', 'RB'), ('with', 'IN'), ('aviation', 'NN'), ('of', 'IN'), ('the', 'DT'), ('30', 'CD'), ('but', 'CC'), ('the', 'DT'), ('long', 'JJ'), ('transocean', 'JJ'), ('voyages', 'NNS'), ('of', 'IN'), ('the', 'DT'), ('age', 'NN'), ('of', 'IN'), ('discovery', 'NN'), ('it', 'PRP'), ('didn', 'VBZ'), ('require', 'NN'), ('gov', 'NN'), ('to', 'TO'), ('fund', 'VB'), ('these', 'DT'), ('as', 'RB'), ('long', 'RB'), ('as', 'IN'), ('something', 'NN'), ('was', 'VBD'), ('known', 'VBN'), ('about', 'IN'), ('the', 'DT'), ('potential', 'NN'), ('for', 'IN'), ('profit', 'NN'), ('at', 'IN'), ('the', 'DT'), ('destination', 'NN'), ('in', 'IN'), ('practice', 'NN'), ('some', 'DT'), ('were', 'VBD'), ('gov', 'NNS'), ('funded', 'VBN'), ('some', 'DT'), ('were', 'VBD'), ('private', 'JJ'), ('but', 'CC'), ('there', 'EX'), ('was', 'VBD'), ('no', 'DT'), ('way', 'NN'), ('that', 'IN'), ('any', 'DT'), ('wise', 'JJ'), ('investor', 'NN'), ('would', 'MD'), ('spend', 'VB'), ('large', 'JJ'), ('amount', 'NN'), ('of', 'IN'), ('money', 'NN'), ('on', 'IN'), ('very', 'RB'), ('risky', 'JJ'), ('investment', 'NN'), ('with', 'IN'), ('no', 'DT'), ('idea', 'NN'), ('of', 'IN'), ('the', 'DT'), ('possible', 'JJ'), ('payoff', 'NN'), ('am', 'VBP'), ('sure', 'JJ'), ('that', 'IN'), ('thriving', 'VBG'), ('spaceflight', 'JJ'), ('industry', 'NN'), ('will', 'MD'), ('eventually', 'RB'), ('develop', 'VB'), ('and', 'CC'), ('large', 'JJ'), ('numbers', 'NNS'), ('of', 'IN'), ('people', 'NNS'), ('will', 'MD'), ('live', 'VB'), ('and', 'CC'), ('work', 'VB'), ('off', 'RP'), ('earth', 'NN'), ('but', 'CC'), ('if', 'IN'), ('you', 'PRP'), ('ask', 'VBP'), ('me', 'PRP'), ('for', 'IN'), ('specific', 'JJ'), ('justifications', 'NNS'), ('other', 'JJ'), ('than', 'IN'), ('the', 'DT'), ('increased', 'VBN'), ('resource', 'NN'), ('base', 'NN'), ('can', 'MD'), ('give', 'VB'), ('them', 'PRP'), ('we', 'PRP'), ('just', 'RB'), ('don', 'VB'), ('know', 'JJ'), ('enough', 'RB'), ('the', 'DT'), ('launch', 'NN'), ('rate', 'NN'), ('demanded', 'VBN'), ('by', 'IN'), ('existing', 'VBG'), ('space', 'NN'), ('industries', 'NNS'), ('is', 'VBZ'), ('just', 'RB'), ('too', 'RB'), ('low', 'JJ'), ('to', 'TO'), ('bring', 'VB'), ('costs', 'NNS'), ('down', 'RB'), ('much', 'RB'), ('and', 'CC'), ('we', 'PRP'), ('are', 'VBP'), ('very', 'RB'), ('much', 'RB'), ('in', 'IN'), ('the', 'DT'), ('dark', 'NN'), ('about', 'IN'), ('what', 'WP'), ('the', 'DT'), ('revolutionary', 'JJ'), ('new', 'JJ'), ('space', 'NN'), ('industries', 'NNS'), ('will', 'MD'), ('be', 'VB'), ('when', 'WRB'), ('they', 'PRP'), ('will', 'MD'), ('practical', 'VB'), ('how', 'WRB'), ('much', 'JJ'), ('will', 'MD'), ('have', 'VB'), ('to', 'TO'), ('be', 'VB'), ('invested', 'VBN'), ('to', 'TO'), ('start', 'VB'), ('them', 'PRP'), ('etc', 'VB')] | ['commercial', 'us', 'transportation', 'system', 'already', 'settle', 'civilize', 'area', 'obvious', 'spaceflight', 'position', 'correct', 'analogy', 'aviation', 'long', 'transocean', 'voyage', 'age', 'discovery', 'require', 'gov', 'fund', 'long', 'something', 'know', 'potential', 'profit', 'destination', 'practice', 'gov', 'fund', 'private', 'way', 'wise', 'investor', 'would', 'spend', 'large', 'amount', 'money', 'risky', 'investment', 'idea', 'possible', 'payoff', 'sure', 'thrive', 'spaceflight', 'industry', 'eventually', 'develop', 'large', 'number', 'people', 'live', 'work', 'earth', 'ask', 'specific', 'justification', 'increase', 'resource', 'base', 'give', 'know', 'enough', 'launch', 'rate', 'demand', 'exist', 'space', 'industry', 'low', 'bring', 'cost', 'much', 'much', 'dark', 'revolutionary', 'new', 'space', 'industry', 'practical', 'much', 'invest', 'start', 'etc'] | ['transportation_system', 'something_know', 'would_spend', 'large_amount', 'amount_money', 'large_number', 'number_people', 'people_live', 'live_work', 'know_enough', 'space_industry', 'cost_much', 'much_much', 'space_industry'] | sci_space_61011 |@lemmatized commercial:1 us:1 transportation:1 system:1 already:1 settle:1 civilize:1 area:1 obvious:1 spaceflight:2 position:1 correct:1 analogy:1 aviation:1 long:2 transocean:1 voyage:1 age:1 discovery:1 require:1 gov:2 fund:2 something:1 know:2 potential:1 profit:1 destination:1 practice:1 private:1 way:1 wise:1 investor:1 would:1 spend:1 large:2 amount:1 money:1 risky:1 investment:1 idea:1 possible:1 payoff:1 sure:1 thrive:1 industry:3 eventually:1 develop:1 number:1 people:1 live:1 work:1 earth:1 ask:1 specific:1 justification:1 increase:1 resource:1 base:1 give:1 enough:1 launch:1 rate:1 demand:1 exist:1 space:2 low:1 bring:1 cost:1 much:3 dark:1 revolutionary:1 new:1 practical:1 invest:1 start:1 etc:1 |@bigram transportation_system:1 something_know:1 would_spend:1 large_amount:1 amount_money:1 large_number:1 number_people:1 people_live:1 live_work:1 know_enough:1 space_industry:2 cost_much:1 much_much:1 |
4,553 | 1) Output offset: Obtain the service manual for the oscilloscope
and adjust the internal output offset contorl. There is virtual
certainty that there is an internal ajustment for the offset
control's zero detent position.
2) Verify that the function generator is properly loaded. Many
generators expect you to supply a 50 ohm load. Go to a hamfest
flea market and scrounge around for a pass-through 50 ohm
terminator that has a male and female BNC (or whatever) connector
on it. The calibrator on my Tektronix scope is designed to put out
.4v into a 1 meg load, but .1 volt into a 50 ohm load. You may
also find that loading the output of the function generator also
reduces the harmonic distortion.
Build an attenuator. You don't have to use (and I wouldn't want to
use) the input impedance of the device under test as part of the
voltage divider to drop the input test voltage. Consider this:
------10K--------+---------? ohm ----
|
Gen 50 ohm D.U.T.
(loaded) |
-----------------+-------------------
Think about the ratio of 50/10K and then think about the accuracy
to which you can read voltages on your oscilloscope. You can
virtually discount the loading of the D.U.T. Also you have the
millivolt test generator you want.
Good luck,
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/sci.electronics/53590 | 12 | sci_electronics_53590 | [('output', 'NN'), ('offset', 'MD'), ('obtain', 'VB'), ('the', 'DT'), ('service', 'NN'), ('manual', 'NN'), ('for', 'IN'), ('the', 'DT'), ('oscilloscope', 'NN'), ('and', 'CC'), ('adjust', 'VBP'), ('the', 'DT'), ('internal', 'JJ'), ('output', 'NN'), ('offset', 'VBN'), ('contorl', 'NN'), ('there', 'EX'), ('is', 'VBZ'), ('virtual', 'JJ'), ('certainty', 'NN'), ('that', 'IN'), ('there', 'EX'), ('is', 'VBZ'), ('an', 'DT'), ('internal', 'JJ'), ('ajustment', 'NN'), ('for', 'IN'), ('the', 'DT'), ('offset', 'NN'), ('control', 'NN'), ('zero', 'CD'), ('detent', 'JJ'), ('position', 'NN'), ('verify', 'NN'), ('that', 'IN'), ('the', 'DT'), ('function', 'NN'), ('generator', 'NN'), ('is', 'VBZ'), ('properly', 'RB'), ('loaded', 'VBN'), ('many', 'JJ'), ('generators', 'NNS'), ('expect', 'VBP'), ('you', 'PRP'), ('to', 'TO'), ('supply', 'VB'), ('50', 'CD'), ('ohm', 'NN'), ('load', 'NN'), ('go', 'VBP'), ('to', 'TO'), ('hamfest', 'VB'), ('flea', 'NN'), ('market', 'NN'), ('and', 'CC'), ('scrounge', 'NN'), ('around', 'RB'), ('for', 'IN'), ('pass', 'NN'), ('through', 'IN'), ('50', 'CD'), ('ohm', 'NNS'), ('terminator', 'NN'), ('that', 'WDT'), ('has', 'VBZ'), ('male', 'NN'), ('and', 'CC'), ('female', 'JJ'), ('bnc', 'NN'), ('or', 'CC'), ('whatever', 'WDT'), ('connector', 'NN'), ('on', 'IN'), ('it', 'PRP'), ('the', 'DT'), ('calibrator', 'NN'), ('on', 'IN'), ('my', 'PRP$'), ('tektronix', 'NN'), ('scope', 'NN'), ('is', 'VBZ'), ('designed', 'VBN'), ('to', 'TO'), ('put', 'VB'), ('out', 'RP'), ('4v', 'CD'), ('into', 'IN'), ('meg', 'JJ'), ('load', 'NN'), ('but', 'CC'), ('volt', 'NN'), ('into', 'IN'), ('50', 'CD'), ('ohm', 'JJ'), ('load', 'NN'), ('you', 'PRP'), ('may', 'MD'), ('also', 'RB'), ('find', 'VB'), ('that', 'IN'), ('loading', 'VBG'), ('the', 'DT'), ('output', 'NN'), ('of', 'IN'), ('the', 'DT'), ('function', 'NN'), ('generator', 'NN'), ('also', 'RB'), ('reduces', 'VBZ'), ('the', 'DT'), ('harmonic', 'JJ'), ('distortion', 'NN'), ('build', 'VB'), ('an', 'DT'), ('attenuator', 'NN'), ('you', 'PRP'), ('don', 'VBP'), ('have', 'VBP'), ('to', 'TO'), ('use', 'VB'), ('and', 'CC'), ('wouldn', 'VB'), ('want', 'VBP'), ('to', 'TO'), ('use', 'VB'), ('the', 'DT'), ('input', 'NN'), ('impedance', 'NN'), ('of', 'IN'), ('the', 'DT'), ('device', 'NN'), ('under', 'IN'), ('test', 'NN'), ('as', 'IN'), ('part', 'NN'), ('of', 'IN'), ('the', 'DT'), ('voltage', 'NN'), ('divider', 'NN'), ('to', 'TO'), ('drop', 'VB'), ('the', 'DT'), ('input', 'JJ'), ('test', 'NN'), ('voltage', 'NN'), ('consider', 'VB'), ('this', 'DT'), ('------', 'NN'), ('10k', 'CD'), ('--------+---------?', 'NN'), ('ohm', 'NN'), ('----', 'NNP'), ('gen', 'NN'), ('50', 'CD'), ('ohm', 'NN'), ('loaded', 'VBD'), ('-----------------+-------------------', 'JJ'), ('think', 'NN'), ('about', 'IN'), ('the', 'DT'), ('ratio', 'NN'), ('of', 'IN'), ('50', 'CD'), ('10k', 'CD'), ('and', 'CC'), ('then', 'RB'), ('think', 'VB'), ('about', 'IN'), ('the', 'DT'), ('accuracy', 'NN'), ('to', 'TO'), ('which', 'WDT'), ('you', 'PRP'), ('can', 'MD'), ('read', 'VB'), ('voltages', 'NNS'), ('on', 'IN'), ('your', 'PRP$'), ('oscilloscope', 'NN'), ('you', 'PRP'), ('can', 'MD'), ('virtually', 'RB'), ('discount', 'VB'), ('the', 'DT'), ('loading', 'NN'), ('of', 'IN'), ('the', 'DT'), ('also', 'RB'), ('you', 'PRP'), ('have', 'VBP'), ('the', 'DT'), ('millivolt', 'JJ'), ('test', 'NN'), ('generator', 'NN'), ('you', 'PRP'), ('want', 'VBP'), ('good', 'JJ'), ('luck', 'NN')] | ['output', 'offset', 'obtain', 'service', 'manual', 'oscilloscope', 'adjust', 'internal', 'output', 'offset', 'contorl', 'virtual', 'certainty', 'internal', 'ajustment', 'offset', 'control', 'zero', 'detent', 'position', 'verify', 'function', 'generator', 'properly', 'load', 'many', 'generator', 'expect', 'supply', 'ohm', 'load', 'go', 'hamfest', 'flea', 'market', 'scrounge', 'around', 'pas', 'ohm', 'terminator', 'male', 'female', 'bnc', 'whatever', 'connector', 'calibrator', 'tektronix', 'scope', 'design', 'put', 'meg', 'load', 'volt', 'ohm', 'load', 'may', 'also', 'find', 'load', 'output', 'function', 'generator', 'also', 'reduce', 'harmonic', 'distortion', 'build', 'attenuator', 'use', 'want', 'use', 'input', 'impedance', 'device', 'test', 'part', 'voltage', 'divider', 'drop', 'input', 'test', 'voltage', 'consider', 'ohm', 'gen', 'ohm', 'load', 'think', 'ratio', 'think', 'accuracy', 'read', 'voltage', 'oscilloscope', 'virtually', 'discount', 'loading', 'also', 'millivolt', 'test', 'generator', 'want', 'good', 'luck'] | ['service_manual', 'function_generator', 'male_female', 'tektronix_scope', 'may_also', 'also_find', 'function_generator', 'want_use', 'input_impedance', 'want_good', 'good_luck'] | sci_electronics_53590 |@lemmatized output:3 offset:3 obtain:1 service:1 manual:1 oscilloscope:2 adjust:1 internal:2 contorl:1 virtual:1 certainty:1 ajustment:1 control:1 zero:1 detent:1 position:1 verify:1 function:2 generator:4 properly:1 load:6 many:1 expect:1 supply:1 ohm:5 go:1 hamfest:1 flea:1 market:1 scrounge:1 around:1 pas:1 terminator:1 male:1 female:1 bnc:1 whatever:1 connector:1 calibrator:1 tektronix:1 scope:1 design:1 put:1 meg:1 volt:1 may:1 also:3 find:1 reduce:1 harmonic:1 distortion:1 build:1 attenuator:1 use:2 want:2 input:2 impedance:1 device:1 test:3 part:1 voltage:3 divider:1 drop:1 consider:1 gen:1 think:2 ratio:1 accuracy:1 read:1 virtually:1 discount:1 loading:1 millivolt:1 good:1 luck:1 |@bigram service_manual:1 function_generator:2 male_female:1 tektronix_scope:1 may_also:1 also_find:1 want_use:1 input_impedance:1 want_good:1 good_luck:1 |
4,554 |
But, think of the *mystique* you are buying into for that extra $7k or
more!!! | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/rec.motorcycles/103238 | 8 | rec_motorcycles_103238 | [('but', 'CC'), ('think', 'NN'), ('of', 'IN'), ('the', 'DT'), ('mystique', 'NN'), ('you', 'PRP'), ('are', 'VBP'), ('buying', 'VBG'), ('into', 'IN'), ('for', 'IN'), ('that', 'DT'), ('extra', 'JJ'), ('7k', 'CD'), ('or', 'CC'), ('more', 'JJR'), ('!!!', 'NNS')] | ['think', 'mystique', 'buy', 'extra'] | [] | rec_motorcycles_103238 |@lemmatized think:1 mystique:1 buy:1 extra:1 |@bigram |
4,555 | "Bare" = case, a power supply, and a motherboard (with RAM and a coprocessor).
Everything else is yours to add as you like.
The motherboard:
- US-made Micronics 8-slot motherboard with Intel 386dx/25mhz CPU
- 64kb SRAM cache
- 4mb 80us RAM using 4x1mb simms (worth $120 alone)
- Cyrix 83D87 math coprocessor (worth $90 alone)
- Norton SI 6.0 rating of 26.1
- Latest version Phoenix BIOS
The case/power supply:
- Standard desktop case. 230watt power supply with the usual connectors.
- Room for five floppy/hard drives (three visible, two internal).
*New* Micronics CPUs often command a several-hundred dollar premium
over clone motherboards because they are US-made, use high-quality
components, and are known to be both very reliable and compatible. They
have been OEMed in systems sold by both Gateway and Zeos at various
points in the past. (Check out the ads in the back pages of Byte or PC
Magazine if you want to see this price differential for yourself.)
Price: $450 complete, $100 less if you don't want/need the case and
power supply. The board is fully guaranteed. Email for further details
or for any questions.
Thanks! | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/misc.forsale/76067 | 6 | misc_forsale_76067 | [('bare', 'NN'), ('case', 'NN'), ('power', 'NN'), ('supply', 'NN'), ('and', 'CC'), ('motherboard', 'NN'), ('with', 'IN'), ('ram', 'NN'), ('and', 'CC'), ('coprocessor', 'NN'), (').', 'VBP'), ('everything', 'NN'), ('else', 'RB'), ('is', 'VBZ'), ('yours', 'NNS'), ('to', 'TO'), ('add', 'VB'), ('as', 'IN'), ('you', 'PRP'), ('like', 'IN'), ('the', 'DT'), ('motherboard', 'NN'), ('us', 'PRP'), ('made', 'VBD'), ('micronics', 'NNS'), ('slot', 'JJ'), ('motherboard', 'NN'), ('with', 'IN'), ('intel', 'NN'), ('386dx', 'CD'), ('25mhz', 'CD'), ('cpu', 'NN'), ('64kb', 'CD'), ('sram', 'NN'), ('cache', 'NN'), ('4mb', 'CD'), ('80us', 'CD'), ('ram', 'NN'), ('using', 'VBG'), ('4x1mb', 'CD'), ('simms', 'JJ'), ('worth', 'JJ'), ('120', 'CD'), ('alone', 'RB'), ('cyrix', 'JJ'), ('83d87', 'CD'), ('math', 'NN'), ('coprocessor', 'NN'), ('worth', 'JJ'), ('90', 'CD'), ('alone', 'RB'), ('norton', 'JJ'), ('si', 'NN'), ('rating', 'NN'), ('of', 'IN'), ('26', 'CD'), ('latest', 'JJS'), ('version', 'NN'), ('phoenix', 'NN'), ('bios', 'IN'), ('the', 'DT'), ('case', 'NN'), ('power', 'NN'), ('supply', 'NN'), ('standard', 'JJ'), ('desktop', 'NN'), ('case', 'NN'), ('230watt', 'CD'), ('power', 'NN'), ('supply', 'NN'), ('with', 'IN'), ('the', 'DT'), ('usual', 'JJ'), ('connectors', 'NNS'), ('room', 'NN'), ('for', 'IN'), ('five', 'CD'), ('floppy', 'JJ'), ('hard', 'NN'), ('drives', 'NNS'), ('three', 'CD'), ('visible', 'JJ'), ('two', 'CD'), ('internal', 'JJ'), (').', 'FW'), ('new', 'JJ'), ('micronics', 'NNS'), ('cpus', 'VBP'), ('often', 'RB'), ('command', 'VBP'), ('several', 'JJ'), ('hundred', 'CD'), ('dollar', 'NN'), ('premium', 'NN'), ('over', 'IN'), ('clone', 'NN'), ('motherboards', 'NNS'), ('because', 'IN'), ('they', 'PRP'), ('are', 'VBP'), ('us', 'PRP'), ('made', 'VBN'), ('use', 'NN'), ('high', 'JJ'), ('quality', 'NN'), ('components', 'NNS'), ('and', 'CC'), ('are', 'VBP'), ('known', 'VBN'), ('to', 'TO'), ('be', 'VB'), ('both', 'DT'), ('very', 'RB'), ('reliable', 'JJ'), ('and', 'CC'), ('compatible', 'JJ'), ('they', 'PRP'), ('have', 'VBP'), ('been', 'VBN'), ('oemed', 'VBN'), ('in', 'IN'), ('systems', 'NNS'), ('sold', 'VBN'), ('by', 'IN'), ('both', 'DT'), ('gateway', 'NN'), ('and', 'CC'), ('zeos', 'NN'), ('at', 'IN'), ('various', 'JJ'), ('points', 'NNS'), ('in', 'IN'), ('the', 'DT'), ('past', 'JJ'), ('check', 'NN'), ('out', 'IN'), ('the', 'DT'), ('ads', 'NNS'), ('in', 'IN'), ('the', 'DT'), ('back', 'JJ'), ('pages', 'NNS'), ('of', 'IN'), ('byte', 'NN'), ('or', 'CC'), ('pc', 'NN'), ('magazine', 'NN'), ('if', 'IN'), ('you', 'PRP'), ('want', 'VBP'), ('to', 'TO'), ('see', 'VB'), ('this', 'DT'), ('price', 'NN'), ('differential', 'NN'), ('for', 'IN'), ('yourself', 'PRP'), ('.)', 'NNP'), ('price', 'NN'), ('450', 'CD'), ('complete', 'JJ'), ('100', 'CD'), ('less', 'JJR'), ('if', 'IN'), ('you', 'PRP'), ('don', 'VBP'), ('want', 'VBP'), ('need', 'VBP'), ('the', 'DT'), ('case', 'NN'), ('and', 'CC'), ('power', 'NN'), ('supply', 'NN'), ('the', 'DT'), ('board', 'NN'), ('is', 'VBZ'), ('fully', 'RB'), ('guaranteed', 'VBN'), ('email', 'NN'), ('for', 'IN'), ('further', 'JJ'), ('details', 'NNS'), ('or', 'CC'), ('for', 'IN'), ('any', 'DT'), ('questions', 'NNS'), ('thanks', 'NNS')] | ['bare', 'case', 'power', 'supply', 'motherboard', 'ram', 'coprocessor', 'everything', 'else', 'add', 'like', 'motherboard', 'u', 'make', 'micronics', 'slot', 'motherboard', 'intel', 'cpu', 'sram', 'cache', 'ram', 'use', 'simms', 'worth', 'alone', 'cyrix', 'math', 'coprocessor', 'worth', 'alone', 'norton', 'si', 'rating', 'late', 'version', 'phoenix', 'bios', 'case', 'power', 'supply', 'standard', 'desktop', 'case', 'power', 'supply', 'usual', 'connector', 'room', 'five', 'floppy', 'hard', 'drive', 'three', 'visible', 'two', 'internal', 'new', 'micronics', 'cpus', 'often', 'command', 'several', 'hundred', 'dollar', 'premium', 'clone', 'motherboards', 'u', 'make', 'use', 'high', 'quality', 'component', 'know', 'reliable', 'compatible', 'oemed', 'system', 'sell', 'gateway', 'zeos', 'various', 'point', 'past', 'check', 'ad', 'back', 'page', 'byte', 'pc', 'magazine', 'want', 'see', 'price', 'differential', 'price', 'complete', 'less', 'want', 'need', 'case', 'power', 'supply', 'board', 'fully', 'guarantee', 'email', 'detail', 'question', 'thanks'] | ['case_power', 'power_supply', 'everything_else', 'u_make', 'slot_motherboard', 'intel_cpu', 'ram_use', 'use_simms', 'math_coprocessor', 'norton_si', 'late_version', 'phoenix_bios', 'case_power', 'power_supply', 'case_power', 'power_supply', 'floppy_hard', 'hard_drive', 'drive_three', 'several_hundred', 'hundred_dollar', 'u_make', 'make_use', 'use_high', 'high_quality', 'quality_component', 'system_sell', 'ad_back', 'back_page', 'byte_pc', 'pc_magazine', 'magazine_want', 'want_see', 'want_need', 'case_power', 'power_supply', 'email_detail', 'question_thanks'] | misc_forsale_76067 |@lemmatized bare:1 case:4 power:4 supply:4 motherboard:3 ram:2 coprocessor:2 everything:1 else:1 add:1 like:1 u:2 make:2 micronics:2 slot:1 intel:1 cpu:1 sram:1 cache:1 use:2 simms:1 worth:2 alone:2 cyrix:1 math:1 norton:1 si:1 rating:1 late:1 version:1 phoenix:1 bios:1 standard:1 desktop:1 usual:1 connector:1 room:1 five:1 floppy:1 hard:1 drive:1 three:1 visible:1 two:1 internal:1 new:1 cpus:1 often:1 command:1 several:1 hundred:1 dollar:1 premium:1 clone:1 motherboards:1 high:1 quality:1 component:1 know:1 reliable:1 compatible:1 oemed:1 system:1 sell:1 gateway:1 zeos:1 various:1 point:1 past:1 check:1 ad:1 back:1 page:1 byte:1 pc:1 magazine:1 want:2 see:1 price:2 differential:1 complete:1 less:1 need:1 board:1 fully:1 guarantee:1 email:1 detail:1 question:1 thanks:1 |@bigram case_power:4 power_supply:4 everything_else:1 u_make:2 slot_motherboard:1 intel_cpu:1 ram_use:1 use_simms:1 math_coprocessor:1 norton_si:1 late_version:1 phoenix_bios:1 floppy_hard:1 hard_drive:1 drive_three:1 several_hundred:1 hundred_dollar:1 make_use:1 use_high:1 high_quality:1 quality_component:1 system_sell:1 ad_back:1 back_page:1 byte_pc:1 pc_magazine:1 magazine_want:1 want_see:1 want_need:1 email_detail:1 question_thanks:1 |
4,556 | In the past, I have used named pipes to communicate between processes using
the XtAddInput function to set up the event handling in Motif. Does anybody
know of a way to do this with message passing ( IPC ) ? I tried it here and
no luck so far. | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/comp.windows.x/67340 | 5 | comp_windows_x_67340 | [('in', 'IN'), ('the', 'DT'), ('past', 'NN'), ('have', 'VBP'), ('used', 'VBN'), ('named', 'VBN'), ('pipes', 'NNS'), ('to', 'TO'), ('communicate', 'VB'), ('between', 'IN'), ('processes', 'NNS'), ('using', 'VBG'), ('the', 'DT'), ('xtaddinput', 'NN'), ('function', 'NN'), ('to', 'TO'), ('set', 'VB'), ('up', 'RP'), ('the', 'DT'), ('event', 'NN'), ('handling', 'NN'), ('in', 'IN'), ('motif', 'NN'), ('does', 'VBZ'), ('anybody', 'NN'), ('know', 'VB'), ('of', 'IN'), ('way', 'NN'), ('to', 'TO'), ('do', 'VB'), ('this', 'DT'), ('with', 'IN'), ('message', 'NN'), ('passing', 'VBG'), ('ipc', 'JJ'), ('tried', 'VBD'), ('it', 'PRP'), ('here', 'RB'), ('and', 'CC'), ('no', 'DT'), ('luck', 'NN'), ('so', 'RB'), ('far', 'RB')] | ['past', 'use', 'name', 'pipe', 'communicate', 'process', 'use', 'xtaddinput', 'function', 'set', 'event', 'handling', 'motif', 'anybody', 'know', 'way', 'message', 'pass', 'ipc', 'try', 'luck', 'far'] | ['use_name', 'process_use', 'anybody_know', 'know_way'] | comp_windows_x_67340 |@lemmatized past:1 use:2 name:1 pipe:1 communicate:1 process:1 xtaddinput:1 function:1 set:1 event:1 handling:1 motif:1 anybody:1 know:1 way:1 message:1 pass:1 ipc:1 try:1 luck:1 far:1 |@bigram use_name:1 process_use:1 anybody_know:1 know_way:1 |
4,557 |
Excuse me? This has *already* happened. There's a couple of humps in
the tent already. Ask the folks at Qualcomm what became of the
non-trivial encryption scheme they proposed for use in their CDMA
digitial cellular phone standard? There *already* are restrictions in
place. | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/sci.crypt/15270 | 11 | sci_crypt_15270 | [('excuse', 'VB'), ('me', 'PRP'), ('this', 'DT'), ('has', 'VBZ'), ('already', 'RB'), ('happened', 'VBN'), ('there', 'EX'), ('couple', 'NN'), ('of', 'IN'), ('humps', 'NNS'), ('in', 'IN'), ('the', 'DT'), ('tent', 'NN'), ('already', 'RB'), ('ask', 'VBZ'), ('the', 'DT'), ('folks', 'NNS'), ('at', 'IN'), ('qualcomm', 'JJ'), ('what', 'WP'), ('became', 'VBD'), ('of', 'IN'), ('the', 'DT'), ('non', 'JJ'), ('trivial', 'JJ'), ('encryption', 'NN'), ('scheme', 'NN'), ('they', 'PRP'), ('proposed', 'VBD'), ('for', 'IN'), ('use', 'NN'), ('in', 'IN'), ('their', 'PRP$'), ('cdma', 'NN'), ('digitial', 'JJ'), ('cellular', 'JJ'), ('phone', 'NN'), ('standard', 'NN'), ('there', 'EX'), ('already', 'RB'), ('are', 'VBP'), ('restrictions', 'NNS'), ('in', 'IN'), ('place', 'NN')] | ['excuse', 'already', 'happen', 'couple', 'hump', 'tent', 'already', 'ask', 'folk', 'qualcomm', 'become', 'non', 'trivial', 'encryption', 'scheme', 'propose', 'use', 'cdma', 'digitial', 'cellular', 'phone', 'standard', 'already', 'restriction', 'place'] | ['non_trivial', 'encryption_scheme', 'propose_use', 'cellular_phone'] | sci_crypt_15270 |@lemmatized excuse:1 already:3 happen:1 couple:1 hump:1 tent:1 ask:1 folk:1 qualcomm:1 become:1 non:1 trivial:1 encryption:1 scheme:1 propose:1 use:1 cdma:1 digitial:1 cellular:1 phone:1 standard:1 restriction:1 place:1 |@bigram non_trivial:1 encryption_scheme:1 propose_use:1 cellular_phone:1 |
4,558 |
+----------------------------------------------------------------------------+
| Kevin Marshall, Operational Support, Motorola ECID, Swindon, UK. |
| E-mail : marshalk@zeus |
| Phone : +44 793 545127 (International) (0793) 545127 (Domestic) |
+----------------------------------------------------------------------------+
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/comp.os.ms-windows.misc/9827 | 2 | comp_os_ms-windows_misc_9827 | [('+----------------------------------------------------------------------------+', 'JJ'), ('kevin', 'NN'), ('marshall', 'NN'), ('operational', 'JJ'), ('support', 'NN'), ('motorola', 'NN'), ('ecid', 'NN'), ('swindon', 'NN'), ('uk', 'JJ'), ('mail', 'NN'), ('phone', 'NN'), ('44', 'CD'), ('793', 'CD'), ('545127', 'CD'), ('international', 'JJ'), ('0793', 'CD'), ('545127', 'CD'), ('domestic', 'JJ'), ('+----------------------------------------------------------------------------+', 'NN')] | ['kevin', 'marshall', 'operational', 'support', 'motorola', 'ecid', 'swindon', 'uk', 'mail', 'phone', 'international', 'domestic'] | [] | comp_os_ms-windows_misc_9827 |@lemmatized kevin:1 marshall:1 operational:1 support:1 motorola:1 ecid:1 swindon:1 uk:1 mail:1 phone:1 international:1 domestic:1 |@bigram |
4,559 |
Don't listen to this guy, he's just a crank. At first, this business
about being the "one true god" was tolerated by the rest of us,
but now it has gotten completely out of hand.
Besides, it really isn't so bad when people stop believing in you.
It's much more relaxing when mortals aren't always begging you for favors. | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/alt.atheism/53111 | 0 | alt_atheism_53111 | [('don', 'RB'), ('listen', 'VBZ'), ('to', 'TO'), ('this', 'DT'), ('guy', 'NN'), ('he', 'PRP'), ('just', 'RB'), ('crank', 'NN'), ('at', 'IN'), ('first', 'JJ'), ('this', 'DT'), ('business', 'NN'), ('about', 'IN'), ('being', 'VBG'), ('the', 'DT'), ('one', 'CD'), ('true', 'JJ'), ('god', 'NN'), ('was', 'VBD'), ('tolerated', 'VBN'), ('by', 'IN'), ('the', 'DT'), ('rest', 'NN'), ('of', 'IN'), ('us', 'PRP'), ('but', 'CC'), ('now', 'RB'), ('it', 'PRP'), ('has', 'VBZ'), ('gotten', 'VBN'), ('completely', 'RB'), ('out', 'IN'), ('of', 'IN'), ('hand', 'NN'), ('besides', 'IN'), ('it', 'PRP'), ('really', 'RB'), ('isn', 'VBZ'), ('so', 'RB'), ('bad', 'JJ'), ('when', 'WRB'), ('people', 'NNS'), ('stop', 'VBP'), ('believing', 'VBG'), ('in', 'IN'), ('you', 'PRP'), ('it', 'PRP'), ('much', 'RB'), ('more', 'RBR'), ('relaxing', 'JJ'), ('when', 'WRB'), ('mortals', 'NNS'), ('aren', 'VBP'), ('always', 'RB'), ('begging', 'VBG'), ('you', 'PRP'), ('for', 'IN'), ('favors', 'NNS')] | ['listen', 'guy', 'crank', 'first', 'business', 'one', 'true', 'god', 'tolerate', 'rest', 'u', 'get', 'completely', 'hand', 'besides', 'really', 'bad', 'people', 'stop', 'believe', 'much', 'relaxing', 'mortal', 'always', 'beg', 'favor'] | ['one_true', 'true_god', 'rest_u', 'u_get', 'really_bad', 'bad_people', 'people_stop'] | alt_atheism_53111 |@lemmatized listen:1 guy:1 crank:1 first:1 business:1 one:1 true:1 god:1 tolerate:1 rest:1 u:1 get:1 completely:1 hand:1 besides:1 really:1 bad:1 people:1 stop:1 believe:1 much:1 relaxing:1 mortal:1 always:1 beg:1 favor:1 |@bigram one_true:1 true_god:1 rest_u:1 u_get:1 really_bad:1 bad_people:1 people_stop:1 |
4,560 |
That brings up an interesting point. Anyone else catch ESPN's piece about
prospects and the relationship between age, career length, MVPs and Hall of
Fame members? It was part of their preseason special. Basically, they looked
at players that had amassed 1000 plate appearances (or ABs) by the time they
were 24, and noticed some interesting things.
For starters, they found out such players comprised the majority of MVPs in
the history of the game. They also found out such players represented the
majority of the players in the hall of fame. The kicker, though, was that
they actually did some number-crunching and found that such players' careers
lasted much longer than the careers of players not in that group. They also
found that these players produced at both a greater level of performance and
produced over twice the raw totals (HRs, etc) of the other players. The first
group outhit the second something like .282 to .260 in raw BA, and blew away
the second group in such categories as HRs, 2Bs, RBIs, etc.
It was the most impressive thing I've seen on ESPN in recent memory.
I guess Ray Knight makes his rebuttal tonight.
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/rec.sport.baseball/102623 | 9 | rec_sport_baseball_102623 | [('that', 'WDT'), ('brings', 'VBZ'), ('up', 'RP'), ('an', 'DT'), ('interesting', 'JJ'), ('point', 'NN'), ('anyone', 'NN'), ('else', 'RB'), ('catch', 'VB'), ('espn', 'NN'), ('piece', 'NN'), ('about', 'IN'), ('prospects', 'NNS'), ('and', 'CC'), ('the', 'DT'), ('relationship', 'NN'), ('between', 'IN'), ('age', 'NN'), ('career', 'NN'), ('length', 'NN'), ('mvps', 'NN'), ('and', 'CC'), ('hall', 'NN'), ('of', 'IN'), ('fame', 'NN'), ('members', 'NNS'), ('it', 'PRP'), ('was', 'VBD'), ('part', 'NN'), ('of', 'IN'), ('their', 'PRP$'), ('preseason', 'NN'), ('special', 'JJ'), ('basically', 'RB'), ('they', 'PRP'), ('looked', 'VBD'), ('at', 'IN'), ('players', 'NNS'), ('that', 'WDT'), ('had', 'VBD'), ('amassed', 'VBN'), ('1000', 'CD'), ('plate', 'NN'), ('appearances', 'NNS'), ('or', 'CC'), ('abs', 'NNS'), ('by', 'IN'), ('the', 'DT'), ('time', 'NN'), ('they', 'PRP'), ('were', 'VBD'), ('24', 'CD'), ('and', 'CC'), ('noticed', 'VBD'), ('some', 'DT'), ('interesting', 'JJ'), ('things', 'NNS'), ('for', 'IN'), ('starters', 'NNS'), ('they', 'PRP'), ('found', 'VBD'), ('out', 'RP'), ('such', 'JJ'), ('players', 'NNS'), ('comprised', 'VBD'), ('the', 'DT'), ('majority', 'NN'), ('of', 'IN'), ('mvps', 'NN'), ('in', 'IN'), ('the', 'DT'), ('history', 'NN'), ('of', 'IN'), ('the', 'DT'), ('game', 'NN'), ('they', 'PRP'), ('also', 'RB'), ('found', 'VBD'), ('out', 'RP'), ('such', 'JJ'), ('players', 'NNS'), ('represented', 'VBD'), ('the', 'DT'), ('majority', 'NN'), ('of', 'IN'), ('the', 'DT'), ('players', 'NNS'), ('in', 'IN'), ('the', 'DT'), ('hall', 'NN'), ('of', 'IN'), ('fame', 'NN'), ('the', 'DT'), ('kicker', 'NN'), ('though', 'IN'), ('was', 'VBD'), ('that', 'IN'), ('they', 'PRP'), ('actually', 'RB'), ('did', 'VBD'), ('some', 'DT'), ('number', 'NN'), ('crunching', 'NN'), ('and', 'CC'), ('found', 'VBD'), ('that', 'IN'), ('such', 'JJ'), ('players', 'NNS'), ('careers', 'NNS'), ('lasted', 'VBD'), ('much', 'RB'), ('longer', 'JJR'), ('than', 'IN'), ('the', 'DT'), ('careers', 'NNS'), ('of', 'IN'), ('players', 'NNS'), ('not', 'RB'), ('in', 'IN'), ('that', 'DT'), ('group', 'NN'), ('they', 'PRP'), ('also', 'RB'), ('found', 'VBD'), ('that', 'IN'), ('these', 'DT'), ('players', 'NNS'), ('produced', 'VBD'), ('at', 'IN'), ('both', 'DT'), ('greater', 'JJR'), ('level', 'NN'), ('of', 'IN'), ('performance', 'NN'), ('and', 'CC'), ('produced', 'VBD'), ('over', 'IN'), ('twice', 'RB'), ('the', 'DT'), ('raw', 'JJ'), ('totals', 'NNS'), ('hrs', 'VBP'), ('etc', 'NN'), ('of', 'IN'), ('the', 'DT'), ('other', 'JJ'), ('players', 'NNS'), ('the', 'DT'), ('first', 'JJ'), ('group', 'NN'), ('outhit', 'VBD'), ('the', 'DT'), ('second', 'JJ'), ('something', 'NN'), ('like', 'IN'), ('282', 'CD'), ('to', 'TO'), ('260', 'CD'), ('in', 'IN'), ('raw', 'JJ'), ('ba', 'NN'), ('and', 'CC'), ('blew', 'VB'), ('away', 'RB'), ('the', 'DT'), ('second', 'JJ'), ('group', 'NN'), ('in', 'IN'), ('such', 'JJ'), ('categories', 'NNS'), ('as', 'IN'), ('hrs', 'NN'), ('2bs', 'CD'), ('rbis', 'NN'), ('etc', 'NN'), ('it', 'PRP'), ('was', 'VBD'), ('the', 'DT'), ('most', 'RBS'), ('impressive', 'JJ'), ('thing', 'NN'), ('ve', 'NN'), ('seen', 'VBN'), ('on', 'IN'), ('espn', 'NN'), ('in', 'IN'), ('recent', 'JJ'), ('memory', 'NN'), ('guess', 'NN'), ('ray', 'NN'), ('knight', 'VBD'), ('makes', 'VBZ'), ('his', 'PRP$'), ('rebuttal', 'JJ'), ('tonight', 'NN')] | ['bring', 'interesting', 'point', 'anyone', 'else', 'catch', 'espn', 'piece', 'prospect', 'relationship', 'age', 'career', 'length', 'mvp', 'hall', 'fame', 'member', 'part', 'preseason', 'special', 'basically', 'look', 'player', 'amass', 'plate', 'appearance', 'ab', 'time', 'notice', 'interesting', 'thing', 'starter', 'find', 'player', 'comprise', 'majority', 'mvp', 'history', 'game', 'also', 'find', 'player', 'represent', 'majority', 'player', 'hall', 'fame', 'kicker', 'though', 'actually', 'number', 'crunching', 'find', 'player', 'career', 'last', 'much', 'long', 'career', 'player', 'group', 'also', 'find', 'player', 'produce', 'great', 'level', 'performance', 'produce', 'twice', 'raw', 'total', 'hrs', 'etc', 'player', 'first', 'group', 'outhit', 'second', 'something', 'like', 'raw', 'ba', 'blow', 'away', 'second', 'group', 'category', 'hr', 'rbi', 'etc', 'impressive', 'thing', 'see', 'espn', 'recent', 'memory', 'guess', 'ray', 'knight', 'make', 'rebuttal', 'tonight'] | ['interesting_point', 'anyone_else', 'hall_fame', 'interesting_thing', 'game_also', 'also_find', 'hall_fame', 'much_long', 'group_also', 'also_find', 'level_performance', 'first_group', 'something_like', 'blow_away', 'hr_rbi', 'thing_see'] | rec_sport_baseball_102623 |@lemmatized bring:1 interesting:2 point:1 anyone:1 else:1 catch:1 espn:2 piece:1 prospect:1 relationship:1 age:1 career:3 length:1 mvp:2 hall:2 fame:2 member:1 part:1 preseason:1 special:1 basically:1 look:1 player:8 amass:1 plate:1 appearance:1 ab:1 time:1 notice:1 thing:2 starter:1 find:4 comprise:1 majority:2 history:1 game:1 also:2 represent:1 kicker:1 though:1 actually:1 number:1 crunching:1 last:1 much:1 long:1 group:3 produce:2 great:1 level:1 performance:1 twice:1 raw:2 total:1 hrs:1 etc:2 first:1 outhit:1 second:2 something:1 like:1 ba:1 blow:1 away:1 category:1 hr:1 rbi:1 impressive:1 see:1 recent:1 memory:1 guess:1 ray:1 knight:1 make:1 rebuttal:1 tonight:1 |@bigram interesting_point:1 anyone_else:1 hall_fame:2 interesting_thing:1 game_also:1 also_find:2 much_long:1 group_also:1 level_performance:1 first_group:1 something_like:1 blow_away:1 hr_rbi:1 thing_see:1 |
4,561 |
Do you really need to switch to a DX2/66 instead of a DX50? As I
understand it, DX50's can have local bus devices (on the mother-board?)
but not local bus slots. And according to what I been told, many
systems go beyond the VESA local bus standard in order to provide DX50
systems with a local bus slot capability. I have definitly seen a
mother board with 2 local bus slots which claimed to be able to
support any CPU, including the DX2/66 and DX50. Can someone throw
some more informed light on this issue?
You will need to check with peripheral makers to see if their boards
will work at 50 MHz. Some will with some motherboards.
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/comp.sys.ibm.pc.hardware/60152 | 3 | comp_sys_ibm_pc_hardware_60152 | [('do', 'VB'), ('you', 'PRP'), ('really', 'RB'), ('need', 'VB'), ('to', 'TO'), ('switch', 'VB'), ('to', 'TO'), ('dx2', 'VB'), ('66', 'CD'), ('instead', 'RB'), ('of', 'IN'), ('dx50', 'NN'), ('as', 'IN'), ('understand', 'NN'), ('it', 'PRP'), ('dx50', 'VBZ'), ('can', 'MD'), ('have', 'VB'), ('local', 'JJ'), ('bus', 'NN'), ('devices', 'NNS'), ('on', 'IN'), ('the', 'DT'), ('mother', 'NN'), ('board', 'NN'), ('?)', 'NN'), ('but', 'CC'), ('not', 'RB'), ('local', 'JJ'), ('bus', 'NN'), ('slots', 'NNS'), ('and', 'CC'), ('according', 'VBG'), ('to', 'TO'), ('what', 'WP'), ('been', 'VBN'), ('told', 'VBD'), ('many', 'JJ'), ('systems', 'NNS'), ('go', 'VBP'), ('beyond', 'IN'), ('the', 'DT'), ('vesa', 'JJ'), ('local', 'JJ'), ('bus', 'NN'), ('standard', 'NN'), ('in', 'IN'), ('order', 'NN'), ('to', 'TO'), ('provide', 'VB'), ('dx50', 'JJ'), ('systems', 'NNS'), ('with', 'IN'), ('local', 'JJ'), ('bus', 'NN'), ('slot', 'NN'), ('capability', 'NN'), ('have', 'VBP'), ('definitly', 'RB'), ('seen', 'VBN'), ('mother', 'RB'), ('board', 'NN'), ('with', 'IN'), ('local', 'JJ'), ('bus', 'NN'), ('slots', 'NNS'), ('which', 'WDT'), ('claimed', 'VBD'), ('to', 'TO'), ('be', 'VB'), ('able', 'JJ'), ('to', 'TO'), ('support', 'VB'), ('any', 'DT'), ('cpu', 'NN'), ('including', 'VBG'), ('the', 'DT'), ('dx2', 'NN'), ('66', 'CD'), ('and', 'CC'), ('dx50', 'NN'), ('can', 'MD'), ('someone', 'NN'), ('throw', 'VB'), ('some', 'DT'), ('more', 'RBR'), ('informed', 'JJ'), ('light', 'NN'), ('on', 'IN'), ('this', 'DT'), ('issue', 'NN'), ('you', 'PRP'), ('will', 'MD'), ('need', 'VB'), ('to', 'TO'), ('check', 'VB'), ('with', 'IN'), ('peripheral', 'JJ'), ('makers', 'NNS'), ('to', 'TO'), ('see', 'VB'), ('if', 'IN'), ('their', 'PRP$'), ('boards', 'NNS'), ('will', 'MD'), ('work', 'VB'), ('at', 'IN'), ('50', 'CD'), ('mhz', 'CC'), ('some', 'DT'), ('will', 'MD'), ('with', 'IN'), ('some', 'DT'), ('motherboards', 'NNS')] | ['really', 'need', 'switch', 'instead', 'understand', 'local', 'bus', 'device', 'mother', 'board', 'local', 'bus', 'slot', 'accord', 'tell', 'many', 'system', 'go', 'beyond', 'vesa', 'local', 'bus', 'standard', 'order', 'provide', 'system', 'local', 'bus', 'slot', 'capability', 'definitly', 'see', 'mother', 'board', 'local', 'bus', 'slot', 'claim', 'able', 'support', 'cpu', 'include', 'someone', 'throw', 'informed', 'light', 'issue', 'need', 'check', 'peripheral', 'maker', 'see', 'board', 'work', 'mhz', 'motherboards'] | ['really_need', 'local_bus', 'mother_board', 'local_bus', 'bus_slot', 'tell_many', 'many_system', 'system_go', 'go_beyond', 'vesa_local', 'local_bus', 'order_provide', 'local_bus', 'bus_slot', 'mother_board', 'local_bus', 'bus_slot', 'able_support', 'board_work'] | comp_sys_ibm_pc_hardware_60152 |@lemmatized really:1 need:2 switch:1 instead:1 understand:1 local:5 bus:5 device:1 mother:2 board:3 slot:3 accord:1 tell:1 many:1 system:2 go:1 beyond:1 vesa:1 standard:1 order:1 provide:1 capability:1 definitly:1 see:2 claim:1 able:1 support:1 cpu:1 include:1 someone:1 throw:1 informed:1 light:1 issue:1 check:1 peripheral:1 maker:1 work:1 mhz:1 motherboards:1 |@bigram really_need:1 local_bus:5 mother_board:2 bus_slot:3 tell_many:1 many_system:1 system_go:1 go_beyond:1 vesa_local:1 order_provide:1 able_support:1 board_work:1 |
4,562 | Are the Serbs doing the work of God? Hmm...
I've been wondering if anyone would ever ask the question,
Are the governments of the United States and Europe not moving
to end the ethnic cleansing by the Serbs because the targets are
muslims?
Can/Does God use those who are not following him to accomplish
tasks for him? Esp those tasks that are punative? | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/soc.religion.christian/20880 | 15 | soc_religion_christian_20880 | [('are', 'VBP'), ('the', 'DT'), ('serbs', 'JJ'), ('doing', 'VBG'), ('the', 'DT'), ('work', 'NN'), ('of', 'IN'), ('god', 'JJ'), ('hmm', 'NN'), ('...', ':'), ('ve', 'RB'), ('been', 'VBN'), ('wondering', 'VBG'), ('if', 'IN'), ('anyone', 'NN'), ('would', 'MD'), ('ever', 'RB'), ('ask', 'VB'), ('the', 'DT'), ('question', 'NN'), ('are', 'VBP'), ('the', 'DT'), ('governments', 'NNS'), ('of', 'IN'), ('the', 'DT'), ('united', 'JJ'), ('states', 'NNS'), ('and', 'CC'), ('europe', 'VBP'), ('not', 'RB'), ('moving', 'VBG'), ('to', 'TO'), ('end', 'VB'), ('the', 'DT'), ('ethnic', 'JJ'), ('cleansing', 'NN'), ('by', 'IN'), ('the', 'DT'), ('serbs', 'NN'), ('because', 'IN'), ('the', 'DT'), ('targets', 'NNS'), ('are', 'VBP'), ('muslims', 'NNS'), ('can', 'MD'), ('does', 'VBZ'), ('god', 'VB'), ('use', 'VB'), ('those', 'DT'), ('who', 'WP'), ('are', 'VBP'), ('not', 'RB'), ('following', 'VBG'), ('him', 'PRP'), ('to', 'TO'), ('accomplish', 'VB'), ('tasks', 'NNS'), ('for', 'IN'), ('him', 'PRP'), ('esp', 'VBP'), ('those', 'DT'), ('tasks', 'NNS'), ('that', 'WDT'), ('are', 'VBP'), ('punative', 'JJ')] | ['serbs', 'work', 'god', 'hmm', 'wonder', 'anyone', 'would', 'ever', 'ask', 'question', 'government', 'united', 'state', 'europe', 'move', 'end', 'ethnic', 'cleansing', 'serb', 'target', 'muslim', 'god', 'use', 'follow', 'accomplish', 'task', 'esp', 'task', 'punative'] | ['work_god', 'wonder_anyone', 'anyone_would', 'would_ever', 'ever_ask', 'ask_question', 'question_government', 'united_state', 'state_europe', 'ethnic_cleansing', 'god_use', 'use_follow', 'accomplish_task'] | soc_religion_christian_20880 |@lemmatized serbs:1 work:1 god:2 hmm:1 wonder:1 anyone:1 would:1 ever:1 ask:1 question:1 government:1 united:1 state:1 europe:1 move:1 end:1 ethnic:1 cleansing:1 serb:1 target:1 muslim:1 use:1 follow:1 accomplish:1 task:2 esp:1 punative:1 |@bigram work_god:1 wonder_anyone:1 anyone_would:1 would_ever:1 ever_ask:1 ask_question:1 question_government:1 united_state:1 state_europe:1 ethnic_cleansing:1 god_use:1 use_follow:1 accomplish_task:1 |
4,563 |
I had a kz440 and thought it was the best $100 bike I've ever
ridden. And mind you, I've ridden many bikes.
You must be mistaken. No thread in this group has ever had a point.
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/rec.motorcycles/104534 | 8 | rec_motorcycles_104534 | [('had', 'VBD'), ('kz440', 'VBN'), ('and', 'CC'), ('thought', 'VBD'), ('it', 'PRP'), ('was', 'VBD'), ('the', 'DT'), ('best', 'JJS'), ('100', 'CD'), ('bike', 'NN'), ('ve', 'NN'), ('ever', 'RB'), ('ridden', 'JJ'), ('and', 'CC'), ('mind', 'NN'), ('you', 'PRP'), ('ve', 'VBP'), ('ridden', 'JJ'), ('many', 'JJ'), ('bikes', 'NNS'), ('you', 'PRP'), ('must', 'MD'), ('be', 'VB'), ('mistaken', 'VBN'), ('no', 'DT'), ('thread', 'NN'), ('in', 'IN'), ('this', 'DT'), ('group', 'NN'), ('has', 'VBZ'), ('ever', 'RB'), ('had', 'VBN'), ('point', 'NN')] | ['think', 'best', 'bike', 'ever', 'ridden', 'mind', 'ridden', 'many', 'bike', 'must', 'mistake', 'thread', 'group', 'ever', 'point'] | ['think_best'] | rec_motorcycles_104534 |@lemmatized think:1 best:1 bike:2 ever:2 ridden:2 mind:1 many:1 must:1 mistake:1 thread:1 group:1 point:1 |@bigram think_best:1 |
4,564 |
[ stuff deleted ]
|> Are you calling names, or giving me a title? If the first, read your
|> paragraph above, if not I accept the title, in order to let you get into the
|> um, well, debate again.
Hasan replies:
I didnot know that "Master of wisdom" can be "name clling" too,
unless you consider yourself deserve-less !
Unless you are referring to someone else, you have in fact given me a name
I did not ask for, hence the term 'name calling'.
|> So what do you expect me to tell you to tell you, Master of Wsidom,
|> ^^^
|> ------------------------------------------------------------------
I replied:
|> If you insist on giving me names/titles I did not ask for you could at
|> least spell them correctly. /sigh.
Hasan gloats:
That was only to confuse you! (ha ha ha hey )
Hell-bent on retarding into childhood, no?
|>when you are intentionally neglecting the MOST important fact that
|>the whole israeli presence in the occupied territories is ILLEGITIMATE,
|>and hence ALL their actions, their courts, their laws are illegitimate on
|>the ground of occupied territories.
|>
>No, I am _not_ neglecting that, I'm merely asking you whether the existance
>of Israeli citicens in the WB or in Gaza invalidates those individuals
>right
^^^^^^^ are you trying to retaliate and confuse me here.
No, I really do try to spell correctly, and I apologize if I did confuse you.
I will try not to repeat that.
|> to live, a (as you so eloquently put it) human right. We can get back to the
|> question of which law should be used in the territories later. Also, you have
|> not adressed my question if the israelis also have human rights.
First, my above statement doesnot say that "the existence of israeli citizens
in the WB revoke their right of life" but it says "the israeli occupation
of the WB revoke the right of life for some/most its citizens - basically
revokes the right of for its military men". Clearly, occupation is an
undeclared war; during war, attacks against military targets are fully legitimate.
Ok, let me re-phrase the question. I have repeatedly asked you if the
Israelis have less human rights than the palestinians, and if so, why.
From your posting (where you did not directly adress my question) I inferred
that you thought so. Together with the above statement I then assumed that the
reason was the actions of the state of Israel. Re: your statement of
occupation: I'd like you to define the term, so I don't have to repeat this
'drag the answer out of hasan' procedure more than neccesary.
Secondly, surely israeli have human rights, but they ask their goverment to
protect it by withdrawing from the occupied terretories, not by further oppressing
Palestinean human rights.
I'm sorry, but the above sentence does not make sense. Please rephrase it.
|> If a state can deprive all it's citizens of human rights by its actions, then
|> tell me why _any_ human living today should have any rights at all?
Because not all states are like Israel, as oppressive, as ignorant, or as tyrant.
Oh, ok. So how about the human rights of the Syrians, Iraqis and others?
Does the name of Hama sound familiar? Or how about the kurds in Iraq and
Turkey?
How about the Same in Sweden (Ok, maybe a bit farfetched..) the Russians in
the Baltic states or the Moslem in the old USSR and Yugoslavia?
Do the serbs have any human rights remainaing, according to you?
|> |> And which system do you propose we use to solve the ME problem?
|>
|> The question is NOT which system would solve the ME problem. Why ? because
|> any system can solve it.
|> The laws of minister Sharon says kick Palestineans out of here (all palestine).
|>
|> I asked for which system should be used, that will preserve human rights for
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|> all people involved. I assumed that was obvious, but I won't repeat that
|> mistake. Now that I have straightened that out, I'm eagerly awaiting your
|> reply.
So you agree that that an israeli solution wouldnot preserve human rights.
(i am understanding this from your first statement in this paragraph).
No, I'm agreeing that to just kick all the Palestinians out of Israel proper
would probably lead to disaster for both parties. If that's what you refer
to as the 'Israeli solution' then so be it.
|> Joseph Weitz (administrator responsible for Jewish colonization)
|> said it best when writing in his diary in 1940:
|> "Between ourselves it must be clear that there is no room for both
|> peoples together in this country.... We shall not achieve our goal
|> ^^^ ^^^
|> of being an independent people with the Arabs in this small country.
|> The only solution is a Palestine, at least Western Palestine (west of
|> the Jordan river) without Arabs.... And there is no other way than
|> to transfer the Arabs from here to the neighbouring countries, to
|> transfer all of them; not one village, not one tribe, should be
|> left.... Only after this transfer will the country be able to
|> absorb the millions of our own brethren. There is no other way out."
|> DAVAR, 29 September, 1967
|> ("Courtesy" of Marc Afifi)
|>
Oh? Have you met with them personally, to read their diaries? Fascinating.
What do you _do_ for a living?
Above you wrote that you understood what i meant (underlined by ^ ):
any system can be used to solve the conflict , but not any system would
resolve it JUSTLY.
An unjust solution would be a non-solution, per definition, no?
You said the following:
For all A it holds that A have property B.
There exists an A such that property B does not hold.
Thus, either or both statements must be false.
|> Guess where that takes your logic? To never-never land.
I was merely pointing out a not so small flaw in your reasoning.
Since you claim to be logical I felt it best to point this out
before you started using your statements to prove a point or so.
Am I then to assume you are not logical?
Any quote can be misused, especially when used to stereotype all
individuals by a statement of an individual. If you use the same
methods that you credit 'Zionists' with, then where does that place you?
Oh, by the way, I'd advice you not to assume anything about my 'loyalties'.
I will and am condemning acts I find vile and inhuman, but I'll try as
long as I can not to assume those acts are by a whole people.
By zionist above do you mean the state of Israel, the government of Israel,
the leaders of Israel (political and/or religious) or the jews in
general? If you feel the need to condemn, condemn those responsible
instead. How would you feel if we started condemning you personally
based on the bombings in Egypt?
--
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/talk.politics.mideast/75406 | 17 | talk_politics_mideast_75406 | [('stuff', 'NN'), ('deleted', 'VBD'), ('|>', 'NNS'), ('are', 'VBP'), ('you', 'PRP'), ('calling', 'VBG'), ('names', 'NNS'), ('or', 'CC'), ('giving', 'VBG'), ('me', 'PRP'), ('title', 'JJ'), ('if', 'IN'), ('the', 'DT'), ('first', 'JJ'), ('read', 'VB'), ('your', 'PRP$'), ('|>', 'JJ'), ('paragraph', 'NN'), ('above', 'IN'), ('if', 'IN'), ('not', 'RB'), ('accept', 'VB'), ('the', 'DT'), ('title', 'NN'), ('in', 'IN'), ('order', 'NN'), ('to', 'TO'), ('let', 'VB'), ('you', 'PRP'), ('get', 'VB'), ('into', 'IN'), ('the', 'DT'), ('|>', 'NN'), ('um', 'RB'), ('well', 'RB'), ('debate', 'VB'), ('again', 'RB'), ('hasan', 'JJ'), ('replies', 'NNS'), ('didnot', 'VBP'), ('know', 'VB'), ('that', 'DT'), ('master', 'NN'), ('of', 'IN'), ('wisdom', 'NN'), ('can', 'MD'), ('be', 'VB'), ('name', 'JJ'), ('clling', 'VBG'), ('too', 'RB'), ('unless', 'IN'), ('you', 'PRP'), ('consider', 'VBP'), ('yourself', 'PRP'), ('deserve', 'NN'), ('less', 'JJR'), ('unless', 'IN'), ('you', 'PRP'), ('are', 'VBP'), ('referring', 'VBG'), ('to', 'TO'), ('someone', 'NN'), ('else', 'RB'), ('you', 'PRP'), ('have', 'VBP'), ('in', 'IN'), ('fact', 'NN'), ('given', 'VBN'), ('me', 'PRP'), ('name', 'NN'), ('did', 'VBD'), ('not', 'RB'), ('ask', 'VB'), ('for', 'IN'), ('hence', 'NN'), ('the', 'DT'), ('term', 'NN'), ('name', 'NN'), ('calling', 'VBG'), ("'.", 'CD'), ('|>', 'NNS'), ('so', 'RB'), ('what', 'WP'), ('do', 'VBP'), ('you', 'PRP'), ('expect', 'VB'), ('me', 'PRP'), ('to', 'TO'), ('tell', 'VB'), ('you', 'PRP'), ('to', 'TO'), ('tell', 'VB'), ('you', 'PRP'), ('master', 'JJR'), ('of', 'IN'), ('wsidom', 'NN'), ('|>', 'NNP'), ('^^^', 'NNP'), ('|>', 'NNP'), ('------------------------------------------------------------------', 'NNP'), ('replied', 'VBD'), ('|>', 'JJ'), ('if', 'IN'), ('you', 'PRP'), ('insist', 'VBP'), ('on', 'IN'), ('giving', 'VBG'), ('me', 'PRP'), ('names', 'JJ'), ('titles', 'NNS'), ('did', 'VBD'), ('not', 'RB'), ('ask', 'VB'), ('for', 'IN'), ('you', 'PRP'), ('could', 'MD'), ('at', 'IN'), ('|>', 'NNP'), ('least', 'JJS'), ('spell', 'VB'), ('them', 'PRP'), ('correctly', 'RB'), ('sigh', 'VBP'), ('hasan', 'JJ'), ('gloats', 'NNS'), ('that', 'WDT'), ('was', 'VBD'), ('only', 'RB'), ('to', 'TO'), ('confuse', 'VB'), ('you', 'PRP'), ('ha', 'VBP'), ('ha', 'JJ'), ('ha', 'NN'), ('hey', 'NN'), ('hell', 'VBP'), ('bent', 'NN'), ('on', 'IN'), ('retarding', 'VBG'), ('into', 'IN'), ('childhood', 'NN'), ('no', 'DT'), ('|>', 'NN'), ('when', 'WRB'), ('you', 'PRP'), ('are', 'VBP'), ('intentionally', 'RB'), ('neglecting', 'VBG'), ('the', 'DT'), ('most', 'RBS'), ('important', 'JJ'), ('fact', 'NN'), ('that', 'IN'), ('|>', 'VBZ'), ('the', 'DT'), ('whole', 'JJ'), ('israeli', 'JJ'), ('presence', 'NN'), ('in', 'IN'), ('the', 'DT'), ('occupied', 'JJ'), ('territories', 'NNS'), ('is', 'VBZ'), ('illegitimate', 'JJ'), ('|>', 'NNS'), ('and', 'CC'), ('hence', 'RB'), ('all', 'DT'), ('their', 'PRP$'), ('actions', 'NNS'), ('their', 'PRP$'), ('courts', 'NNS'), ('their', 'PRP$'), ('laws', 'NNS'), ('are', 'VBP'), ('illegitimate', 'JJ'), ('on', 'IN'), ('|>', 'IN'), ('the', 'DT'), ('ground', 'NN'), ('of', 'IN'), ('occupied', 'JJ'), ('territories', 'NNS'), ('|>', 'VBP'), ('no', 'DT'), ('am', 'VBP'), ('_not_', 'RB'), ('neglecting', 'VBG'), ('that', 'IN'), ('merely', 'RB'), ('asking', 'VBG'), ('you', 'PRP'), ('whether', 'IN'), ('the', 'DT'), ('existance', 'NN'), ('of', 'IN'), ('israeli', 'JJ'), ('citicens', 'NNS'), ('in', 'IN'), ('the', 'DT'), ('wb', 'NN'), ('or', 'CC'), ('in', 'IN'), ('gaza', 'JJ'), ('invalidates', 'NNS'), ('those', 'DT'), ('individuals', 'NNS'), ('right', 'JJ'), ('^^^^^^^', 'NN'), ('are', 'VBP'), ('you', 'PRP'), ('trying', 'VBG'), ('to', 'TO'), ('retaliate', 'VB'), ('and', 'CC'), ('confuse', 'VB'), ('me', 'PRP'), ('here', 'RB'), ('no', 'DT'), ('really', 'RB'), ('do', 'VBP'), ('try', 'VB'), ('to', 'TO'), ('spell', 'VB'), ('correctly', 'RB'), ('and', 'CC'), ('apologize', 'VB'), ('if', 'IN'), ('did', 'VBD'), ('confuse', 'NN'), ('you', 'PRP'), ('will', 'MD'), ('try', 'VB'), ('not', 'RB'), ('to', 'TO'), ('repeat', 'VB'), ('that', 'DT'), ('|>', 'NN'), ('to', 'TO'), ('live', 'VB'), ('as', 'IN'), ('you', 'PRP'), ('so', 'RB'), ('eloquently', 'RB'), ('put', 'VBD'), ('it', 'PRP'), ('human', 'JJ'), ('right', 'NN'), ('we', 'PRP'), ('can', 'MD'), ('get', 'VB'), ('back', 'RB'), ('to', 'TO'), ('the', 'DT'), ('|>', 'JJ'), ('question', 'NN'), ('of', 'IN'), ('which', 'WDT'), ('law', 'NN'), ('should', 'MD'), ('be', 'VB'), ('used', 'VBN'), ('in', 'IN'), ('the', 'DT'), ('territories', 'NNS'), ('later', 'RB'), ('also', 'RB'), ('you', 'PRP'), ('have', 'VBP'), ('|>', 'VBN'), ('not', 'RB'), ('adressed', 'VBN'), ('my', 'PRP$'), ('question', 'NN'), ('if', 'IN'), ('the', 'DT'), ('israelis', 'NN'), ('also', 'RB'), ('have', 'VBP'), ('human', 'JJ'), ('rights', 'NNS'), ('first', 'RB'), ('my', 'PRP$'), ('above', 'JJ'), ('statement', 'NN'), ('doesnot', 'NNS'), ('say', 'VBP'), ('that', 'IN'), ('the', 'DT'), ('existence', 'NN'), ('of', 'IN'), ('israeli', 'JJ'), ('citizens', 'NNS'), ('in', 'IN'), ('the', 'DT'), ('wb', 'NN'), ('revoke', 'VBD'), ('their', 'PRP$'), ('right', 'NN'), ('of', 'IN'), ('life', 'NN'), ('but', 'CC'), ('it', 'PRP'), ('says', 'VBZ'), ('the', 'DT'), ('israeli', 'JJ'), ('occupation', 'NN'), ('of', 'IN'), ('the', 'DT'), ('wb', 'NN'), ('revoke', 'VBD'), ('the', 'DT'), ('right', 'NN'), ('of', 'IN'), ('life', 'NN'), ('for', 'IN'), ('some', 'DT'), ('most', 'RBS'), ('its', 'PRP$'), ('citizens', 'NNS'), ('basically', 'RB'), ('revokes', 'VBP'), ('the', 'DT'), ('right', 'NN'), ('of', 'IN'), ('for', 'IN'), ('its', 'PRP$'), ('military', 'JJ'), ('men', 'NNS'), ('".', 'VBP'), ('clearly', 'RB'), ('occupation', 'NN'), ('is', 'VBZ'), ('an', 'DT'), ('undeclared', 'JJ'), ('war', 'NN'), ('during', 'IN'), ('war', 'NN'), ('attacks', 'NNS'), ('against', 'IN'), ('military', 'JJ'), ('targets', 'NNS'), ('are', 'VBP'), ('fully', 'RB'), ('legitimate', 'JJ'), ('ok', 'NN'), ('let', 'VB'), ('me', 'PRP'), ('re', 'VB'), ('phrase', 'VB'), ('the', 'DT'), ('question', 'NN'), ('have', 'VBP'), ('repeatedly', 'RB'), ('asked', 'VBN'), ('you', 'PRP'), ('if', 'IN'), ('the', 'DT'), ('israelis', 'NN'), ('have', 'VBP'), ('less', 'VBN'), ('human', 'JJ'), ('rights', 'NNS'), ('than', 'IN'), ('the', 'DT'), ('palestinians', 'NNS'), ('and', 'CC'), ('if', 'IN'), ('so', 'RB'), ('why', 'WRB'), ('from', 'IN'), ('your', 'PRP$'), ('posting', 'VBG'), ('where', 'WRB'), ('you', 'PRP'), ('did', 'VBD'), ('not', 'RB'), ('directly', 'RB'), ('adress', 'JJ'), ('my', 'PRP$'), ('question', 'NN'), ('inferred', 'VBD'), ('that', 'IN'), ('you', 'PRP'), ('thought', 'VBD'), ('so', 'RB'), ('together', 'RB'), ('with', 'IN'), ('the', 'DT'), ('above', 'JJ'), ('statement', 'NN'), ('then', 'RB'), ('assumed', 'VBD'), ('that', 'IN'), ('the', 'DT'), ('reason', 'NN'), ('was', 'VBD'), ('the', 'DT'), ('actions', 'NNS'), ('of', 'IN'), ('the', 'DT'), ('state', 'NN'), ('of', 'IN'), ('israel', 'JJ'), ('re', 'FW'), ('your', 'PRP$'), ('statement', 'NN'), ('of', 'IN'), ('occupation', 'NN'), ('like', 'IN'), ('you', 'PRP'), ('to', 'TO'), ('define', 'VB'), ('the', 'DT'), ('term', 'NN'), ('so', 'RB'), ('don', 'RB'), ('have', 'VBP'), ('to', 'TO'), ('repeat', 'VB'), ('this', 'DT'), ('drag', 'VBZ'), ('the', 'DT'), ('answer', 'NN'), ('out', 'IN'), ('of', 'IN'), ('hasan', 'JJ'), ('procedure', 'NN'), ('more', 'JJR'), ('than', 'IN'), ('neccesary', 'JJ'), ('secondly', 'RB'), ('surely', 'RB'), ('israeli', 'JJ'), ('have', 'VBP'), ('human', 'JJ'), ('rights', 'NNS'), ('but', 'CC'), ('they', 'PRP'), ('ask', 'VBP'), ('their', 'PRP$'), ('goverment', 'NN'), ('to', 'TO'), ('protect', 'VB'), ('it', 'PRP'), ('by', 'IN'), ('withdrawing', 'VBG'), ('from', 'IN'), ('the', 'DT'), ('occupied', 'JJ'), ('terretories', 'NNS'), ('not', 'RB'), ('by', 'IN'), ('further', 'JJ'), ('oppressing', 'VBG'), ('palestinean', 'JJ'), ('human', 'JJ'), ('rights', 'NNS'), ('sorry', 'NN'), ('but', 'CC'), ('the', 'DT'), ('above', 'JJ'), ('sentence', 'NN'), ('does', 'VBZ'), ('not', 'RB'), ('make', 'VB'), ('sense', 'NN'), ('please', 'NN'), ('rephrase', 'VB'), ('it', 'PRP'), ('|>', 'VB'), ('if', 'IN'), ('state', 'NN'), ('can', 'MD'), ('deprive', 'VB'), ('all', 'DT'), ('it', 'PRP'), ('citizens', 'VBZ'), ('of', 'IN'), ('human', 'JJ'), ('rights', 'NNS'), ('by', 'IN'), ('its', 'PRP$'), ('actions', 'NNS'), ('then', 'RB'), ('|>', 'NNP'), ('tell', 'VB'), ('me', 'PRP'), ('why', 'WRB'), ('_any_', 'JJ'), ('human', 'NN'), ('living', 'VBG'), ('today', 'NN'), ('should', 'MD'), ('have', 'VB'), ('any', 'DT'), ('rights', 'NNS'), ('at', 'IN'), ('all', 'DT'), ('because', 'IN'), ('not', 'RB'), ('all', 'DT'), ('states', 'NNS'), ('are', 'VBP'), ('like', 'JJ'), ('israel', 'NN'), ('as', 'RB'), ('oppressive', 'JJ'), ('as', 'IN'), ('ignorant', 'NN'), ('or', 'CC'), ('as', 'IN'), ('tyrant', 'JJ'), ('oh', 'UH'), ('ok', 'NNS'), ('so', 'IN'), ('how', 'WRB'), ('about', 'IN'), ('the', 'DT'), ('human', 'JJ'), ('rights', 'NNS'), ('of', 'IN'), ('the', 'DT'), ('syrians', 'NNS'), ('iraqis', 'VBP'), ('and', 'CC'), ('others', 'NNS'), ('does', 'VBZ'), ('the', 'DT'), ('name', 'NN'), ('of', 'IN'), ('hama', 'NN'), ('sound', 'NN'), ('familiar', 'JJ'), ('or', 'CC'), ('how', 'WRB'), ('about', 'IN'), ('the', 'DT'), ('kurds', 'NNS'), ('in', 'IN'), ('iraq', 'NN'), ('and', 'CC'), ('turkey', 'VB'), ('how', 'WRB'), ('about', 'IN'), ('the', 'DT'), ('same', 'JJ'), ('in', 'IN'), ('sweden', 'JJ'), ('ok', 'JJ'), ('maybe', 'RB'), ('bit', 'NN'), ('farfetched', 'JJ'), ('..)', 'VBZ'), ('the', 'DT'), ('russians', 'NNS'), ('in', 'IN'), ('the', 'DT'), ('baltic', 'JJ'), ('states', 'NNS'), ('or', 'CC'), ('the', 'DT'), ('moslem', 'NN'), ('in', 'IN'), ('the', 'DT'), ('old', 'JJ'), ('ussr', 'NN'), ('and', 'CC'), ('yugoslavia', 'NN'), ('do', 'VBP'), ('the', 'DT'), ('serbs', 'NNS'), ('have', 'VBP'), ('any', 'DT'), ('human', 'JJ'), ('rights', 'NNS'), ('remainaing', 'VBG'), ('according', 'VBG'), ('to', 'TO'), ('you', 'PRP'), ('|>', 'VB'), ('|>', 'NNS'), ('and', 'CC'), ('which', 'WDT'), ('system', 'NN'), ('do', 'VBP'), ('you', 'PRP'), ('propose', 'VB'), ('we', 'PRP'), ('use', 'VBP'), ('to', 'TO'), ('solve', 'VB'), ('the', 'DT'), ('me', 'PRP'), ('problem', 'NN'), ('|>', 'NN'), ('|>', 'VBD'), ('the', 'DT'), ('question', 'NN'), ('is', 'VBZ'), ('not', 'RB'), ('which', 'WDT'), ('system', 'NN'), ('would', 'MD'), ('solve', 'VB'), ('the', 'DT'), ('me', 'PRP'), ('problem', 'NN'), ('why', 'WRB'), ('because', 'IN'), ('|>', 'NN'), ('any', 'DT'), ('system', 'NN'), ('can', 'MD'), ('solve', 'VB'), ('it', 'PRP'), ('|>', 'VBZ'), ('the', 'DT'), ('laws', 'NNS'), ('of', 'IN'), ('minister', 'NN'), ('sharon', 'NN'), ('says', 'VBZ'), ('kick', 'VB'), ('palestineans', 'NNS'), ('out', 'IN'), ('of', 'IN'), ('here', 'RB'), ('all', 'DT'), ('palestine', 'NN'), (').', 'NNP'), ('|>', 'NNP'), ('|>', 'NNP'), ('asked', 'VBD'), ('for', 'IN'), ('which', 'WDT'), ('system', 'NN'), ('should', 'MD'), ('be', 'VB'), ('used', 'VBN'), ('that', 'DT'), ('will', 'MD'), ('preserve', 'VB'), ('human', 'JJ'), ('rights', 'NNS'), ('for', 'IN'), ('^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^', 'JJ'), ('|>', 'NNP'), ('all', 'DT'), ('people', 'NNS'), ('involved', 'VBN'), ('assumed', 'VBD'), ('that', 'DT'), ('was', 'VBD'), ('obvious', 'JJ'), ('but', 'CC'), ('won', 'VBD'), ('repeat', 'NN'), ('that', 'IN'), ('|>', 'JJ'), ('mistake', 'NN'), ('now', 'RB'), ('that', 'DT'), ('have', 'VBP'), ('straightened', 'VBN'), ('that', 'IN'), ('out', 'RP'), ('eagerly', 'RB'), ('awaiting', 'VBG'), ('your', 'PRP$'), ('|>', 'NN'), ('reply', 'NN'), ('so', 'IN'), ('you', 'PRP'), ('agree', 'VBP'), ('that', 'IN'), ('that', 'DT'), ('an', 'DT'), ('israeli', 'JJ'), ('solution', 'NN'), ('wouldnot', 'NN'), ('preserve', 'VB'), ('human', 'JJ'), ('rights', 'NNS'), ('am', 'VBP'), ('understanding', 'VBG'), ('this', 'DT'), ('from', 'IN'), ('your', 'PRP$'), ('first', 'JJ'), ('statement', 'NN'), ('in', 'IN'), ('this', 'DT'), ('paragraph', 'NN'), (').', 'VBZ'), ('no', 'DT'), ('agreeing', 'VBG'), ('that', 'DT'), ('to', 'TO'), ('just', 'RB'), ('kick', 'VB'), ('all', 'PDT'), ('the', 'DT'), ('palestinians', 'NNS'), ('out', 'IN'), ('of', 'IN'), ('israel', 'JJ'), ('proper', 'NN'), ('would', 'MD'), ('probably', 'RB'), ('lead', 'VB'), ('to', 'TO'), ('disaster', 'NN'), ('for', 'IN'), ('both', 'DT'), ('parties', 'NNS'), ('if', 'IN'), ('that', 'DT'), ('what', 'WP'), ('you', 'PRP'), ('refer', 'VBP'), ('to', 'TO'), ('as', 'IN'), ('the', 'DT'), ('israeli', 'JJ'), ('solution', 'NN'), ('then', 'RB'), ('so', 'RB'), ('be', 'VB'), ('it', 'PRP'), ('|>', 'NNP'), ('joseph', 'VBZ'), ('weitz', 'JJ'), ('administrator', 'NN'), ('responsible', 'JJ'), ('for', 'IN'), ('jewish', 'JJ'), ('colonization', 'NN'), ('|>', 'NN'), ('said', 'VBD'), ('it', 'PRP'), ('best', 'JJS'), ('when', 'WRB'), ('writing', 'VBG'), ('in', 'IN'), ('his', 'PRP$'), ('diary', 'NN'), ('in', 'IN'), ('1940', 'CD'), ('|>', 'NN'), ('between', 'IN'), ('ourselves', 'NNS'), ('it', 'PRP'), ('must', 'MD'), ('be', 'VB'), ('clear', 'JJ'), ('that', 'IN'), ('there', 'EX'), ('is', 'VBZ'), ('no', 'DT'), ('room', 'NN'), ('for', 'IN'), ('both', 'DT'), ('|>', 'NNP'), ('peoples', 'VBZ'), ('together', 'RB'), ('in', 'IN'), ('this', 'DT'), ('country', 'NN'), ('....', 'VBZ'), ('we', 'PRP'), ('shall', 'MD'), ('not', 'RB'), ('achieve', 'VB'), ('our', 'PRP$'), ('goal', 'NN'), ('|>', 'NNP'), ('^^^', 'NNP'), ('^^^', 'NNP'), ('|>', 'NNP'), ('of', 'IN'), ('being', 'VBG'), ('an', 'DT'), ('independent', 'JJ'), ('people', 'NNS'), ('with', 'IN'), ('the', 'DT'), ('arabs', 'NNS'), ('in', 'IN'), ('this', 'DT'), ('small', 'JJ'), ('country', 'NN'), ('|>', 'VBD'), ('the', 'DT'), ('only', 'JJ'), ('solution', 'NN'), ('is', 'VBZ'), ('palestine', 'JJ'), ('at', 'IN'), ('least', 'JJS'), ('western', 'JJ'), ('palestine', 'JJ'), ('west', 'NN'), ('of', 'IN'), ('|>', 'NNP'), ('the', 'DT'), ('jordan', 'NN'), ('river', 'NN'), ('without', 'IN'), ('arabs', 'NNS'), ('....', 'CD'), ('and', 'CC'), ('there', 'EX'), ('is', 'VBZ'), ('no', 'DT'), ('other', 'JJ'), ('way', 'NN'), ('than', 'IN'), ('|>', 'NN'), ('to', 'TO'), ('transfer', 'VB'), ('the', 'DT'), ('arabs', 'NNS'), ('from', 'IN'), ('here', 'RB'), ('to', 'TO'), ('the', 'DT'), ('neighbouring', 'JJ'), ('countries', 'NNS'), ('to', 'TO'), ('|>', 'VB'), ('transfer', 'VB'), ('all', 'DT'), ('of', 'IN'), ('them', 'PRP'), ('not', 'RB'), ('one', 'CD'), ('village', 'NN'), ('not', 'RB'), ('one', 'CD'), ('tribe', 'NN'), ('should', 'MD'), ('be', 'VB'), ('|>', 'JJ'), ('left', 'NN'), ('....', 'NNP'), ('only', 'RB'), ('after', 'IN'), ('this', 'DT'), ('transfer', 'NN'), ('will', 'MD'), ('the', 'DT'), ('country', 'NN'), ('be', 'VB'), ('able', 'JJ'), ('to', 'TO'), ('|>', 'VB'), ('absorb', 'VB'), ('the', 'DT'), ('millions', 'NNS'), ('of', 'IN'), ('our', 'PRP$'), ('own', 'JJ'), ('brethren', 'NN'), ('there', 'EX'), ('is', 'VBZ'), ('no', 'DT'), ('other', 'JJ'), ('way', 'NN'), ('out', 'IN'), ('."', 'NNP'), ('|>', 'NNP'), ('davar', 'VBD'), ('29', 'CD'), ('september', 'NN'), ('1967', 'CD'), ('|>', 'NNP'), ('("', 'NNP'), ('courtesy', 'NN'), ('of', 'IN'), ('marc', 'NN'), ('afifi', 'NN'), ('|>', 'NNP'), ('oh', 'RB'), ('have', 'VBP'), ('you', 'PRP'), ('met', 'VBN'), ('with', 'IN'), ('them', 'PRP'), ('personally', 'RB'), ('to', 'TO'), ('read', 'VB'), ('their', 'PRP$'), ('diaries', 'NNS'), ('fascinating', 'VBG'), ('what', 'WP'), ('do', 'VBP'), ('you', 'PRP'), ('_do_', 'VB'), ('for', 'IN'), ('living', 'NN'), ('above', 'IN'), ('you', 'PRP'), ('wrote', 'VBD'), ('that', 'IN'), ('you', 'PRP'), ('understood', 'VBP'), ('what', 'WP'), ('meant', 'NN'), ('underlined', 'VBN'), ('by', 'IN'), ('):', 'NNP'), ('any', 'DT'), ('system', 'NN'), ('can', 'MD'), ('be', 'VB'), ('used', 'VBN'), ('to', 'TO'), ('solve', 'VB'), ('the', 'DT'), ('conflict', 'NN'), ('but', 'CC'), ('not', 'RB'), ('any', 'DT'), ('system', 'NN'), ('would', 'MD'), ('resolve', 'VB'), ('it', 'PRP'), ('justly', 'RB'), ('an', 'DT'), ('unjust', 'JJ'), ('solution', 'NN'), ('would', 'MD'), ('be', 'VB'), ('non', 'JJ'), ('solution', 'NN'), ('per', 'IN'), ('definition', 'NN'), ('no', 'DT'), ('you', 'PRP'), ('said', 'VBD'), ('the', 'DT'), ('following', 'VBG'), ('for', 'IN'), ('all', 'DT'), ('it', 'PRP'), ('holds', 'VBZ'), ('that', 'WDT'), ('have', 'VBP'), ('property', 'NN'), ('there', 'EX'), ('exists', 'VBZ'), ('an', 'DT'), ('such', 'JJ'), ('that', 'IN'), ('property', 'NN'), ('does', 'VBZ'), ('not', 'RB'), ('hold', 'VB'), ('thus', 'RB'), ('either', 'RB'), ('or', 'CC'), ('both', 'DT'), ('statements', 'NNS'), ('must', 'MD'), ('be', 'VB'), ('false', 'JJ'), ('|>', 'NNP'), ('guess', 'NN'), ('where', 'WRB'), ('that', 'WDT'), ('takes', 'VBZ'), ('your', 'PRP$'), ('logic', 'NN'), ('to', 'TO'), ('never', 'RB'), ('never', 'RB'), ('land', 'NN'), ('was', 'VBD'), ('merely', 'RB'), ('pointing', 'VBG'), ('out', 'RP'), ('not', 'RB'), ('so', 'RB'), ('small', 'JJ'), ('flaw', 'NN'), ('in', 'IN'), ('your', 'PRP$'), ('reasoning', 'NN'), ('since', 'IN'), ('you', 'PRP'), ('claim', 'VBP'), ('to', 'TO'), ('be', 'VB'), ('logical', 'JJ'), ('felt', 'VBD'), ('it', 'PRP'), ('best', 'JJS'), ('to', 'TO'), ('point', 'VB'), ('this', 'DT'), ('out', 'RP'), ('before', 'IN'), ('you', 'PRP'), ('started', 'VBD'), ('using', 'VBG'), ('your', 'PRP$'), ('statements', 'NNS'), ('to', 'TO'), ('prove', 'VB'), ('point', 'NN'), ('or', 'CC'), ('so', 'RB'), ('am', 'VBP'), ('then', 'RB'), ('to', 'TO'), ('assume', 'VB'), ('you', 'PRP'), ('are', 'VBP'), ('not', 'RB'), ('logical', 'JJ'), ('any', 'DT'), ('quote', 'NN'), ('can', 'MD'), ('be', 'VB'), ('misused', 'VBN'), ('especially', 'RB'), ('when', 'WRB'), ('used', 'VBN'), ('to', 'TO'), ('stereotype', 'VB'), ('all', 'DT'), ('individuals', 'NNS'), ('by', 'IN'), ('statement', 'NN'), ('of', 'IN'), ('an', 'DT'), ('individual', 'JJ'), ('if', 'IN'), ('you', 'PRP'), ('use', 'VBP'), ('the', 'DT'), ('same', 'JJ'), ('methods', 'NNS'), ('that', 'IN'), ('you', 'PRP'), ('credit', 'NN'), ('zionists', 'NNS'), ('with', 'IN'), ('then', 'RB'), ('where', 'WRB'), ('does', 'VBZ'), ('that', 'IN'), ('place', 'NN'), ('you', 'PRP'), ('oh', 'VBP'), ('by', 'IN'), ('the', 'DT'), ('way', 'NN'), ('advice', 'NN'), ('you', 'PRP'), ('not', 'RB'), ('to', 'TO'), ('assume', 'VB'), ('anything', 'NN'), ('about', 'IN'), ('my', 'PRP$'), ('loyalties', 'NNS'), ("'.", 'POS'), ('will', 'MD'), ('and', 'CC'), ('am', 'VBP'), ('condemning', 'VBG'), ('acts', 'NNS'), ('find', 'VBP'), ('vile', 'JJ'), ('and', 'CC'), ('inhuman', 'JJ'), ('but', 'CC'), ('ll', 'JJ'), ('try', 'NN'), ('as', 'RB'), ('long', 'RB'), ('as', 'IN'), ('can', 'MD'), ('not', 'RB'), ('to', 'TO'), ('assume', 'VB'), ('those', 'DT'), ('acts', 'NNS'), ('are', 'VBP'), ('by', 'IN'), ('whole', 'JJ'), ('people', 'NNS'), ('by', 'IN'), ('zionist', 'NN'), ('above', 'IN'), ('do', 'VBP'), ('you', 'PRP'), ('mean', 'VB'), ('the', 'DT'), ('state', 'NN'), ('of', 'IN'), ('israel', 'NN'), ('the', 'DT'), ('government', 'NN'), ('of', 'IN'), ('israel', 'NN'), ('the', 'DT'), ('leaders', 'NNS'), ('of', 'IN'), ('israel', 'JJ'), ('political', 'JJ'), ('and', 'CC'), ('or', 'CC'), ('religious', 'JJ'), ('or', 'CC'), ('the', 'DT'), ('jews', 'NNS'), ('in', 'IN'), ('general', 'JJ'), ('if', 'IN'), ('you', 'PRP'), ('feel', 'VBP'), ('the', 'DT'), ('need', 'NN'), ('to', 'TO'), ('condemn', 'VB'), ('condemn', 'NNS'), ('those', 'DT'), ('responsible', 'JJ'), ('instead', 'RB'), ('how', 'WRB'), ('would', 'MD'), ('you', 'PRP'), ('feel', 'VB'), ('if', 'IN'), ('we', 'PRP'), ('started', 'VBD'), ('condemning', 'VBG'), ('you', 'PRP'), ('personally', 'RB'), ('based', 'VBN'), ('on', 'IN'), ('the', 'DT'), ('bombings', 'NNS'), ('in', 'IN'), ('egypt', 'NN'), ('--', ':')] | ['stuff', 'delete', 'call', 'name', 'give', 'title', 'first', 'read', 'paragraph', 'accept', 'title', 'order', 'let', 'get', 'um', 'well', 'debate', 'hasan', 'reply', 'didnot', 'know', 'master', 'wisdom', 'name', 'clling', 'unless', 'consider', 'deserve', 'less', 'unless', 'refer', 'someone', 'else', 'fact', 'give', 'name', 'ask', 'hence', 'term', 'name', 'call', 'expect', 'tell', 'tell', 'master', 'wsidom', 'reply', 'insist', 'give', 'names', 'title', 'ask', 'could', 'least', 'spell', 'correctly', 'sigh', 'hasan', 'gloat', 'confuse', 'ha', 'ha', 'ha', 'hey', 'hell', 'bent', 'retard', 'childhood', 'intentionally', 'neglect', 'important', 'fact', 'whole', 'israeli', 'presence', 'occupied', 'territory', 'illegitimate', 'hence', 'action', 'court', 'law', 'illegitimate', 'ground', 'occupied', 'territory', 'neglect', 'merely', 'ask', 'whether', 'existance', 'israeli', 'citicens', 'wb', 'gaza', 'invalidates', 'individual', 'right', 'try', 'retaliate', 'confuse', 'really', 'try', 'spell', 'correctly', 'apologize', 'confuse', 'try', 'repeat', 'live', 'eloquently', 'put', 'human', 'right', 'get', 'back', 'question', 'law', 'use', 'territory', 'later', 'also', 'adressed', 'question', 'israeli', 'also', 'human', 'right', 'first', 'statement', 'doesnot', 'say', 'existence', 'israeli', 'citizen', 'wb', 'revoke', 'right', 'life', 'say', 'israeli', 'occupation', 'wb', 'revoke', 'right', 'life', 'citizen', 'basically', 'revoke', 'right', 'military', 'men', 'clearly', 'occupation', 'undeclared', 'war', 'war', 'attack', 'military', 'target', 'fully', 'legitimate', 'ok', 'let', 'phrase', 'question', 'repeatedly', 'ask', 'israeli', 'less', 'human', 'right', 'palestinian', 'post', 'directly', 'adress', 'question', 'infer', 'think', 'together', 'statement', 'assume', 'reason', 'action', 'state', 'israel', 'statement', 'occupation', 'like', 'define', 'term', 'repeat', 'drag', 'answer', 'hasan', 'procedure', 'neccesary', 'secondly', 'surely', 'israeli', 'human', 'right', 'ask', 'goverment', 'protect', 'withdraw', 'occupied', 'terretories', 'oppress', 'palestinean', 'human', 'right', 'sorry', 'sentence', 'make', 'sense', 'please', 'rephrase', 'state', 'deprive', 'citizens', 'human', 'right', 'action', 'tell', 'human', 'live', 'today', 'right', 'state', 'like', 'israel', 'oppressive', 'ignorant', 'tyrant', 'oh', 'ok', 'human', 'right', 'syrian', 'iraqis', 'others', 'name', 'hama', 'sound', 'familiar', 'kurd', 'iraq', 'turkey', 'sweden', 'ok', 'maybe', 'bit', 'farfetched', 'russian', 'baltic', 'state', 'moslem', 'old', 'ussr', 'yugoslavia', 'serb', 'human', 'right', 'remainaing', 'accord', 'system', 'propose', 'use', 'solve', 'problem', 'question', 'system', 'would', 'solve', 'problem', 'system', 'solve', 'law', 'minister', 'sharon', 'say', 'kick', 'palestineans', 'palestine', 'ask', 'system', 'use', 'preserve', 'human', 'right', 'people', 'involve', 'assume', 'obvious', 'win', 'repeat', 'mistake', 'straighten', 'eagerly', 'await', 'reply', 'agree', 'israeli', 'solution', 'wouldnot', 'preserve', 'human', 'right', 'understand', 'first', 'statement', 'paragraph', 'agree', 'kick', 'palestinian', 'israel', 'proper', 'would', 'probably', 'lead', 'disaster', 'party', 'refer', 'israeli', 'solution', 'joseph', 'weitz', 'administrator', 'responsible', 'jewish', 'colonization', 'say', 'best', 'write', 'diary', 'must', 'clear', 'room', 'people', 'together', 'country', 'shall', 'achieve', 'goal', 'independent', 'people', 'arab', 'small', 'country', 'solution', 'palestine', 'least', 'western', 'palestine', 'west', 'jordan', 'river', 'without', 'arab', 'way', 'transfer', 'arab', 'neighbouring', 'country', 'transfer', 'one', 'village', 'one', 'tribe', 'left', 'transfer', 'country', 'able', 'absorb', 'million', 'brother', 'way', 'davar', 'september', 'courtesy', 'marc', 'afifi', 'oh', 'meet', 'personally', 'read', 'diary', 'fascinate', 'living', 'write', 'understand', 'meant', 'underline', 'system', 'use', 'solve', 'conflict', 'system', 'would', 'resolve', 'justly', 'unjust', 'solution', 'would', 'non', 'solution', 'per', 'definition', 'say', 'follow', 'hold', 'property', 'exist', 'property', 'hold', 'thus', 'either', 'statement', 'must', 'false', 'guess', 'take', 'logic', 'never', 'never', 'land', 'merely', 'point', 'small', 'flaw', 'reasoning', 'since', 'claim', 'logical', 'felt', 'best', 'point', 'start', 'use', 'statement', 'prove', 'point', 'assume', 'logical', 'quote', 'misuse', 'especially', 'use', 'stereotype', 'individual', 'statement', 'individual', 'use', 'method', 'credit', 'zionist', 'place', 'oh', 'way', 'advice', 'assume', 'anything', 'loyalty', 'condemn', 'act', 'find', 'vile', 'inhuman', 'try', 'long', 'assume', 'act', 'whole', 'people', 'zionist', 'mean', 'state', 'israel', 'government', 'israel', 'leader', 'israel', 'political', 'religious', 'jew', 'general', 'feel', 'need', 'condemn', 'condemn', 'responsible', 'instead', 'would', 'feel', 'start', 'condemn', 'personally', 'base', 'bombing', 'egypt'] | ['stuff_delete', 'call_name', 'name_give', 'give_title', 'first_read', 'order_let', 'let_get', 'master_wisdom', 'someone_else', 'give_name', 'name_ask', 'name_call', 'tell_tell', 'title_ask', 'ask_could', 'ha_ha', 'ha_ha', 'occupied_territory', 'court_law', 'occupied_territory', 'ask_whether', 'individual_right', 'really_try', 'human_right', 'right_get', 'get_back', 'back_question', 'human_right', 'right_first', 'first_statement', 'israeli_citizen', 'wb_revoke', 'revoke_right', 'right_life', 'life_say', 'say_israeli', 'israeli_occupation', 'wb_revoke', 'revoke_right', 'right_life', 'revoke_right', 'right_military', 'military_men', 'undeclared_war', 'war_war', 'attack_military', 'military_target', 'ok_let', 'human_right', 'state_israel', 'define_term', 'human_right', 'human_right', 'make_sense', 'human_right', 'right_state', 'state_like', 'human_right', 'sound_familiar', 'human_right', 'propose_use', 'use_solve', 'solve_problem', 'system_would', 'solve_problem', 'problem_system', 'ask_system', 'system_use', 'human_right', 'right_people', 'people_involve', 'human_right', 'first_statement', 'would_probably', 'say_best', 'achieve_goal', 'small_country', 'jordan_river', 'system_use', 'use_solve', 'system_would', 'solution_would', 'say_follow', 'guess_take', 'never_never', 'merely_point', 'start_use', 'prove_point', 'use_method', 'oh_way', 'state_israel', 'feel_need', 'would_feel'] | talk_politics_mideast_75406 |@lemmatized stuff:1 delete:1 call:2 name:5 give:3 title:3 first:3 read:2 paragraph:2 accept:1 order:1 let:2 get:2 um:1 well:1 debate:1 hasan:3 reply:3 didnot:1 know:1 master:2 wisdom:1 clling:1 unless:2 consider:1 deserve:1 less:2 refer:2 someone:1 else:1 fact:2 ask:6 hence:2 term:2 expect:1 tell:3 wsidom:1 insist:1 names:1 could:1 least:2 spell:2 correctly:2 sigh:1 gloat:1 confuse:3 ha:3 hey:1 hell:1 bent:1 retard:1 childhood:1 intentionally:1 neglect:2 important:1 whole:2 israeli:9 presence:1 occupied:3 territory:3 illegitimate:2 action:3 court:1 law:3 ground:1 merely:2 whether:1 existance:1 citicens:1 wb:3 gaza:1 invalidates:1 individual:3 right:15 try:4 retaliate:1 really:1 apologize:1 repeat:3 live:2 eloquently:1 put:1 human:11 back:1 question:5 use:7 later:1 also:2 adressed:1 statement:7 doesnot:1 say:5 existence:1 citizen:2 revoke:3 life:2 occupation:3 basically:1 military:2 men:1 clearly:1 undeclared:1 war:2 attack:1 target:1 fully:1 legitimate:1 ok:3 phrase:1 repeatedly:1 palestinian:2 post:1 directly:1 adress:1 infer:1 think:1 together:2 assume:5 reason:1 state:5 israel:6 like:2 define:1 drag:1 answer:1 procedure:1 neccesary:1 secondly:1 surely:1 goverment:1 protect:1 withdraw:1 terretories:1 oppress:1 palestinean:1 sorry:1 sentence:1 make:1 sense:1 please:1 rephrase:1 deprive:1 citizens:1 today:1 oppressive:1 ignorant:1 tyrant:1 oh:3 syrian:1 iraqis:1 others:1 hama:1 sound:1 familiar:1 kurd:1 iraq:1 turkey:1 sweden:1 maybe:1 bit:1 farfetched:1 russian:1 baltic:1 moslem:1 old:1 ussr:1 yugoslavia:1 serb:1 remainaing:1 accord:1 system:6 propose:1 solve:4 problem:2 would:5 minister:1 sharon:1 kick:2 palestineans:1 palestine:3 preserve:2 people:4 involve:1 obvious:1 win:1 mistake:1 straighten:1 eagerly:1 await:1 agree:2 solution:5 wouldnot:1 understand:2 proper:1 probably:1 lead:1 disaster:1 party:1 joseph:1 weitz:1 administrator:1 responsible:2 jewish:1 colonization:1 best:2 write:2 diary:2 must:2 clear:1 room:1 country:4 shall:1 achieve:1 goal:1 independent:1 arab:3 small:2 western:1 west:1 jordan:1 river:1 without:1 way:3 transfer:3 neighbouring:1 one:2 village:1 tribe:1 left:1 able:1 absorb:1 million:1 brother:1 davar:1 september:1 courtesy:1 marc:1 afifi:1 meet:1 personally:2 fascinate:1 living:1 meant:1 underline:1 conflict:1 resolve:1 justly:1 unjust:1 non:1 per:1 definition:1 follow:1 hold:2 property:2 exist:1 thus:1 either:1 false:1 guess:1 take:1 logic:1 never:2 land:1 point:3 flaw:1 reasoning:1 since:1 claim:1 logical:2 felt:1 start:2 prove:1 quote:1 misuse:1 especially:1 stereotype:1 method:1 credit:1 zionist:2 place:1 advice:1 anything:1 loyalty:1 condemn:4 act:2 find:1 vile:1 inhuman:1 long:1 mean:1 government:1 leader:1 political:1 religious:1 jew:1 general:1 feel:2 need:1 instead:1 base:1 bombing:1 egypt:1 |@bigram stuff_delete:1 call_name:1 name_give:1 give_title:1 first_read:1 order_let:1 let_get:1 master_wisdom:1 someone_else:1 give_name:1 name_ask:1 name_call:1 tell_tell:1 title_ask:1 ask_could:1 ha_ha:2 occupied_territory:2 court_law:1 ask_whether:1 individual_right:1 really_try:1 human_right:10 right_get:1 get_back:1 back_question:1 right_first:1 first_statement:2 israeli_citizen:1 wb_revoke:2 revoke_right:3 right_life:2 life_say:1 say_israeli:1 israeli_occupation:1 right_military:1 military_men:1 undeclared_war:1 war_war:1 attack_military:1 military_target:1 ok_let:1 state_israel:2 define_term:1 make_sense:1 right_state:1 state_like:1 sound_familiar:1 propose_use:1 use_solve:2 solve_problem:2 system_would:2 problem_system:1 ask_system:1 system_use:2 right_people:1 people_involve:1 would_probably:1 say_best:1 achieve_goal:1 small_country:1 jordan_river:1 solution_would:1 say_follow:1 guess_take:1 never_never:1 merely_point:1 start_use:1 prove_point:1 use_method:1 oh_way:1 feel_need:1 would_feel:1 |
4,565 | As the subject suggests the Flames were not impressive this afternoon,
dropping a 6-3 decision to the LA Kings. Most of the Flames neglected
to show up, especially in their own zone, as the Kings hit at least
five posts! The Flames best line was probably
Skrudland-Paslawski-Berube (which tells how bad the Flames were). Gary
Suter scored a great goal (in fact all three Flame goals were scored
by D-men - Yawney and Dahlquist getting the others), but also made
some bonehead plays. For the Kings, Pat Conacher was especially
impressive.
The games was VERY chippy, as Dan Mirouelli lost control early and
never recovered it; there were high-sticks, cross-checks, punches,
hits from behind. Fleury got a game misconduct for rubbing out Warren
Rychel from behind. Flames dominated the game physically, but failed
to take advantage due to horrendous defensive lapses (I don't think
Vernon can be blamed for any of the goals). Calgary went with 7 D-men,
as Roger Johansson played LW; he looked lost IMHO - I hope King
inserts Chris Lindbergh, Paul Kruse, or Sergei Makarov for Wednesday's
game. Gretzky left the game in the 2nd period with a charley-horse; no
idea how serious - he didn't return.
I still think the Flames should win this series, but they better
buckle down. | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/rec.sport.hockey/53651 | 10 | rec_sport_hockey_53651 | [('as', 'IN'), ('the', 'DT'), ('subject', 'NN'), ('suggests', 'VBZ'), ('the', 'DT'), ('flames', 'NNS'), ('were', 'VBD'), ('not', 'RB'), ('impressive', 'JJ'), ('this', 'DT'), ('afternoon', 'NN'), ('dropping', 'VBG'), ('decision', 'NN'), ('to', 'TO'), ('the', 'DT'), ('la', 'JJ'), ('kings', 'NNS'), ('most', 'JJS'), ('of', 'IN'), ('the', 'DT'), ('flames', 'NNS'), ('neglected', 'VBD'), ('to', 'TO'), ('show', 'VB'), ('up', 'RP'), ('especially', 'RB'), ('in', 'IN'), ('their', 'PRP$'), ('own', 'JJ'), ('zone', 'NN'), ('as', 'IN'), ('the', 'DT'), ('kings', 'NNS'), ('hit', 'VBN'), ('at', 'IN'), ('least', 'JJS'), ('five', 'CD'), ('posts', 'NNS'), ('the', 'DT'), ('flames', 'NNS'), ('best', 'JJS'), ('line', 'NN'), ('was', 'VBD'), ('probably', 'RB'), ('skrudland', 'JJ'), ('paslawski', 'NN'), ('berube', 'NN'), ('which', 'WDT'), ('tells', 'VBZ'), ('how', 'WRB'), ('bad', 'JJ'), ('the', 'DT'), ('flames', 'NNS'), ('were', 'VBD'), (').', 'JJ'), ('gary', 'JJ'), ('suter', 'NN'), ('scored', 'VBD'), ('great', 'JJ'), ('goal', 'NN'), ('in', 'IN'), ('fact', 'NN'), ('all', 'DT'), ('three', 'CD'), ('flame', 'NN'), ('goals', 'NNS'), ('were', 'VBD'), ('scored', 'VBN'), ('by', 'IN'), ('men', 'NNS'), ('yawney', 'NNS'), ('and', 'CC'), ('dahlquist', 'NN'), ('getting', 'VBG'), ('the', 'DT'), ('others', 'NNS'), ('),', 'VBP'), ('but', 'CC'), ('also', 'RB'), ('made', 'VBD'), ('some', 'DT'), ('bonehead', 'NN'), ('plays', 'NNS'), ('for', 'IN'), ('the', 'DT'), ('kings', 'NNS'), ('pat', 'VBP'), ('conacher', 'NN'), ('was', 'VBD'), ('especially', 'RB'), ('impressive', 'JJ'), ('the', 'DT'), ('games', 'NNS'), ('was', 'VBD'), ('very', 'RB'), ('chippy', 'JJ'), ('as', 'IN'), ('dan', 'NN'), ('mirouelli', 'NN'), ('lost', 'VBD'), ('control', 'NN'), ('early', 'JJ'), ('and', 'CC'), ('never', 'RB'), ('recovered', 'VBD'), ('it', 'PRP'), ('there', 'EX'), ('were', 'VBD'), ('high', 'JJ'), ('sticks', 'NNS'), ('cross', 'VBP'), ('checks', 'NNS'), ('punches', 'NNS'), ('hits', 'NNS'), ('from', 'IN'), ('behind', 'IN'), ('fleury', 'NN'), ('got', 'VBD'), ('game', 'NN'), ('misconduct', 'NN'), ('for', 'IN'), ('rubbing', 'VBG'), ('out', 'RP'), ('warren', 'NNS'), ('rychel', 'VBP'), ('from', 'IN'), ('behind', 'IN'), ('flames', 'NNS'), ('dominated', 'VBD'), ('the', 'DT'), ('game', 'NN'), ('physically', 'RB'), ('but', 'CC'), ('failed', 'VBD'), ('to', 'TO'), ('take', 'VB'), ('advantage', 'NN'), ('due', 'JJ'), ('to', 'TO'), ('horrendous', 'JJ'), ('defensive', 'JJ'), ('lapses', 'NNS'), ('don', 'VBP'), ('think', 'VBP'), ('vernon', 'NNS'), ('can', 'MD'), ('be', 'VB'), ('blamed', 'VBN'), ('for', 'IN'), ('any', 'DT'), ('of', 'IN'), ('the', 'DT'), ('goals', 'NNS'), (').', 'VBP'), ('calgary', 'JJ'), ('went', 'VBD'), ('with', 'IN'), ('men', 'NNS'), ('as', 'IN'), ('roger', 'NN'), ('johansson', 'NN'), ('played', 'VBD'), ('lw', 'NN'), ('he', 'PRP'), ('looked', 'VBD'), ('lost', 'VBN'), ('imho', 'JJ'), ('hope', 'NN'), ('king', 'VBG'), ('inserts', 'NNS'), ('chris', 'NN'), ('lindbergh', 'NN'), ('paul', 'NN'), ('kruse', 'NN'), ('or', 'CC'), ('sergei', 'NN'), ('makarov', 'NN'), ('for', 'IN'), ('wednesday', 'JJ'), ('game', 'NN'), ('gretzky', 'NN'), ('left', 'VBD'), ('the', 'DT'), ('game', 'NN'), ('in', 'IN'), ('the', 'DT'), ('2nd', 'JJ'), ('period', 'NN'), ('with', 'IN'), ('charley', 'JJ'), ('horse', 'NN'), ('no', 'DT'), ('idea', 'NN'), ('how', 'WRB'), ('serious', 'JJ'), ('he', 'PRP'), ('didn', 'VBZ'), ('return', 'NN'), ('still', 'RB'), ('think', 'VBP'), ('the', 'DT'), ('flames', 'NNS'), ('should', 'MD'), ('win', 'VB'), ('this', 'DT'), ('series', 'NN'), ('but', 'CC'), ('they', 'PRP'), ('better', 'VBP'), ('buckle', 'VBP'), ('down', 'RP')] | ['subject', 'suggest', 'flame', 'impressive', 'afternoon', 'drop', 'decision', 'la', 'king', 'flame', 'neglect', 'show', 'especially', 'zone', 'king', 'hit', 'least', 'five', 'post', 'flame', 'best', 'line', 'probably', 'skrudland', 'paslawski', 'berube', 'tell', 'bad', 'flame', 'gary', 'suter', 'score', 'great', 'goal', 'fact', 'three', 'flame', 'goal', 'score', 'men', 'yawney', 'dahlquist', 'get', 'others', 'also', 'make', 'bonehead', 'play', 'king', 'pat', 'conacher', 'especially', 'impressive', 'game', 'chippy', 'dan', 'mirouelli', 'lose', 'control', 'early', 'never', 'recover', 'high', 'stick', 'cross', 'check', 'punch', 'hit', 'behind', 'fleury', 'get', 'game', 'misconduct', 'rub', 'warren', 'rychel', 'behind', 'flame', 'dominate', 'game', 'physically', 'fail', 'take', 'advantage', 'due', 'horrendous', 'defensive', 'lapse', 'think', 'vernon', 'blame', 'goal', 'calgary', 'go', 'men', 'roger', 'johansson', 'play', 'lw', 'look', 'lose', 'imho', 'hope', 'king', 'insert', 'chris', 'lindbergh', 'paul', 'kruse', 'sergei', 'makarov', 'wednesday', 'game', 'gretzky', 'leave', 'game', 'period', 'charley', 'horse', 'idea', 'serious', 'return', 'still', 'think', 'flame', 'win', 'series', 'better', 'buckle'] | ['la_king', 'king_flame', 'post_flame', 'goal_score', 'also_make', 'high_stick', 'cross_check', 'get_game', 'game_misconduct', 'fail_take', 'take_advantage', 'still_think', 'win_series'] | rec_sport_hockey_53651 |@lemmatized subject:1 suggest:1 flame:7 impressive:2 afternoon:1 drop:1 decision:1 la:1 king:4 neglect:1 show:1 especially:2 zone:1 hit:2 least:1 five:1 post:1 best:1 line:1 probably:1 skrudland:1 paslawski:1 berube:1 tell:1 bad:1 gary:1 suter:1 score:2 great:1 goal:3 fact:1 three:1 men:2 yawney:1 dahlquist:1 get:2 others:1 also:1 make:1 bonehead:1 play:2 pat:1 conacher:1 game:5 chippy:1 dan:1 mirouelli:1 lose:2 control:1 early:1 never:1 recover:1 high:1 stick:1 cross:1 check:1 punch:1 behind:2 fleury:1 misconduct:1 rub:1 warren:1 rychel:1 dominate:1 physically:1 fail:1 take:1 advantage:1 due:1 horrendous:1 defensive:1 lapse:1 think:2 vernon:1 blame:1 calgary:1 go:1 roger:1 johansson:1 lw:1 look:1 imho:1 hope:1 insert:1 chris:1 lindbergh:1 paul:1 kruse:1 sergei:1 makarov:1 wednesday:1 gretzky:1 leave:1 period:1 charley:1 horse:1 idea:1 serious:1 return:1 still:1 win:1 series:1 better:1 buckle:1 |@bigram la_king:1 king_flame:1 post_flame:1 goal_score:1 also_make:1 high_stick:1 cross_check:1 get_game:1 game_misconduct:1 fail_take:1 take_advantage:1 still_think:1 win_series:1 |
4,566 |
OTOH, some of us get lucky-- I've unplugged and replugged SCSI and ADB
quite often, and never blown anything. I blew out the ADB by shorting
the cable, though.
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/comp.sys.mac.hardware/51573 | 4 | comp_sys_mac_hardware_51573 | [('otoh', 'IN'), ('some', 'DT'), ('of', 'IN'), ('us', 'PRP'), ('get', 'VBP'), ('lucky', 'JJ'), ('--', ':'), ('ve', 'NN'), ('unplugged', 'JJ'), ('and', 'CC'), ('replugged', 'VBD'), ('scsi', 'NNS'), ('and', 'CC'), ('adb', 'JJ'), ('quite', 'RB'), ('often', 'RB'), ('and', 'CC'), ('never', 'RB'), ('blown', 'VBN'), ('anything', 'NN'), ('blew', 'VBD'), ('out', 'IN'), ('the', 'DT'), ('adb', 'NN'), ('by', 'IN'), ('shorting', 'VBG'), ('the', 'DT'), ('cable', 'NN'), ('though', 'IN')] | ['otoh', 'u', 'get', 'lucky', 'unplugged', 'replugged', 'scsi', 'adb', 'quite', 'often', 'never', 'blow', 'anything', 'blow', 'adb', 'short', 'cable', 'though'] | ['u_get', 'get_lucky'] | comp_sys_mac_hardware_51573 |@lemmatized otoh:1 u:1 get:1 lucky:1 unplugged:1 replugged:1 scsi:1 adb:2 quite:1 often:1 never:1 blow:2 anything:1 short:1 cable:1 though:1 |@bigram u_get:1 get_lucky:1 |
4,567 |
Nope, you're confusing separate programs. Atlas was the first-generation
US ICBM; Titan I was the second-generation one; Titan II, which all the
Titan launchers are based on, was the third-generation heavy ICBM. There
was essentially nothing in common between these three programs.
(Yes, *three* programs. Despite the similarity of names, Titan I and
Titan II were completely different missiles. They didn't even use the
same fuels, never mind the same launch facilities.)
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/sci.space/61105 | 14 | sci_space_61105 | [('nope', 'NN'), ('you', 'PRP'), ('re', 'VBP'), ('confusing', 'VBG'), ('separate', 'JJ'), ('programs', 'NNS'), ('atlas', 'WDT'), ('was', 'VBD'), ('the', 'DT'), ('first', 'JJ'), ('generation', 'NN'), ('us', 'PRP'), ('icbm', 'VBP'), ('titan', 'NN'), ('was', 'VBD'), ('the', 'DT'), ('second', 'JJ'), ('generation', 'NN'), ('one', 'CD'), ('titan', 'NN'), ('ii', 'NN'), ('which', 'WDT'), ('all', 'PDT'), ('the', 'DT'), ('titan', 'NN'), ('launchers', 'NNS'), ('are', 'VBP'), ('based', 'VBN'), ('on', 'IN'), ('was', 'VBD'), ('the', 'DT'), ('third', 'JJ'), ('generation', 'NN'), ('heavy', 'JJ'), ('icbm', 'NN'), ('there', 'EX'), ('was', 'VBD'), ('essentially', 'RB'), ('nothing', 'NN'), ('in', 'IN'), ('common', 'JJ'), ('between', 'IN'), ('these', 'DT'), ('three', 'CD'), ('programs', 'NNS'), ('yes', 'VBP'), ('three', 'CD'), ('programs', 'NNS'), ('despite', 'IN'), ('the', 'DT'), ('similarity', 'NN'), ('of', 'IN'), ('names', 'NNS'), ('titan', 'JJ'), ('and', 'CC'), ('titan', 'JJ'), ('ii', 'NN'), ('were', 'VBD'), ('completely', 'RB'), ('different', 'JJ'), ('missiles', 'NNS'), ('they', 'PRP'), ('didn', 'VBP'), ('even', 'RB'), ('use', 'VBP'), ('the', 'DT'), ('same', 'JJ'), ('fuels', 'NNS'), ('never', 'RB'), ('mind', 'VBP'), ('the', 'DT'), ('same', 'JJ'), ('launch', 'NN'), ('facilities', 'NNS'), ('.)', 'VBP')] | ['nope', 'confuse', 'separate', 'program', 'atlas', 'first', 'generation', 'u', 'icbm', 'titan', 'second', 'generation', 'one', 'titan', 'ii', 'titan', 'launcher', 'base', 'third', 'generation', 'heavy', 'icbm', 'essentially', 'nothing', 'common', 'three', 'program', 'yes', 'three', 'program', 'despite', 'similarity', 'name', 'titan', 'titan', 'ii', 'completely', 'different', 'missile', 'even', 'use', 'fuel', 'never', 'mind', 'launch', 'facility'] | ['completely_different', 'even_use', 'never_mind'] | sci_space_61105 |@lemmatized nope:1 confuse:1 separate:1 program:3 atlas:1 first:1 generation:3 u:1 icbm:2 titan:5 second:1 one:1 ii:2 launcher:1 base:1 third:1 heavy:1 essentially:1 nothing:1 common:1 three:2 yes:1 despite:1 similarity:1 name:1 completely:1 different:1 missile:1 even:1 use:1 fuel:1 never:1 mind:1 launch:1 facility:1 |@bigram completely_different:1 even_use:1 never_mind:1 |
4,568 | Lowenstein is NOT Jewish. However, there is a long list including
Hank Greenberg, Moe Berg, Rod Carew (a convert), the Sherry brothers,
Art Shamsky, and Ron Blomberg. | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/rec.sport.baseball/104806 | 9 | rec_sport_baseball_104806 | [('lowenstein', 'NN'), ('is', 'VBZ'), ('not', 'RB'), ('jewish', 'JJ'), ('however', 'RB'), ('there', 'EX'), ('is', 'VBZ'), ('long', 'JJ'), ('list', 'NN'), ('including', 'VBG'), ('hank', 'JJ'), ('greenberg', 'NN'), ('moe', 'NN'), ('berg', 'NN'), ('rod', 'NN'), ('carew', 'VBD'), ('convert', 'JJ'), ('),', 'NNP'), ('the', 'DT'), ('sherry', 'NN'), ('brothers', 'NNS'), ('art', 'VBP'), ('shamsky', 'NN'), ('and', 'CC'), ('ron', 'NN'), ('blomberg', 'NN')] | ['lowenstein', 'jewish', 'however', 'long', 'list', 'include', 'hank', 'greenberg', 'moe', 'berg', 'rod', 'carew', 'convert', 'sherry', 'brother', 'art', 'shamsky', 'ron', 'blomberg'] | ['long_list', 'hank_greenberg'] | rec_sport_baseball_104806 |@lemmatized lowenstein:1 jewish:1 however:1 long:1 list:1 include:1 hank:1 greenberg:1 moe:1 berg:1 rod:1 carew:1 convert:1 sherry:1 brother:1 art:1 shamsky:1 ron:1 blomberg:1 |@bigram long_list:1 hank_greenberg:1 |
4,569 |
It may have been passed to Toronto, but I've even seen an octopus at
the Aud -- last year's Bruins-Sabres game. I knew all about the
Detroit version, but seeing at the Aud was a bit puzzling. :-)
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/rec.sport.hockey/53813 | 10 | rec_sport_hockey_53813 | [('it', 'PRP'), ('may', 'MD'), ('have', 'VB'), ('been', 'VBN'), ('passed', 'VBN'), ('to', 'TO'), ('toronto', 'VB'), ('but', 'CC'), ('ve', 'VB'), ('even', 'RB'), ('seen', 'VBN'), ('an', 'DT'), ('octopus', 'NN'), ('at', 'IN'), ('the', 'DT'), ('aud', 'NN'), ('--', ':'), ('last', 'JJ'), ('year', 'NN'), ('bruins', 'NNS'), ('sabres', 'NNS'), ('game', 'NN'), ('knew', 'VBD'), ('all', 'DT'), ('about', 'IN'), ('the', 'DT'), ('detroit', 'JJ'), ('version', 'NN'), ('but', 'CC'), ('seeing', 'VBG'), ('at', 'IN'), ('the', 'DT'), ('aud', 'NN'), ('was', 'VBD'), ('bit', 'RB'), ('puzzling', 'JJ'), (':-)', 'JJ')] | ['may', 'pass', 'toronto', 'even', 'see', 'octopus', 'aud', 'last', 'year', 'bruin', 'sabre', 'game', 'know', 'detroit', 'version', 'see', 'aud', 'bit', 'puzzling'] | ['even_see', 'last_year'] | rec_sport_hockey_53813 |@lemmatized may:1 pass:1 toronto:1 even:1 see:2 octopus:1 aud:2 last:1 year:1 bruin:1 sabre:1 game:1 know:1 detroit:1 version:1 bit:1 puzzling:1 |@bigram even_see:1 last_year:1 |
4,570 |
.. and Chuck Yeager earlier flights with the X-1...
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/sci.space/60245 | 14 | sci_space_60245 | [('..', 'NN'), ('and', 'CC'), ('chuck', 'NN'), ('yeager', 'NN'), ('earlier', 'RBR'), ('flights', 'NNS'), ('with', 'IN'), ('the', 'DT'), ('...', ':')] | ['chuck', 'yeager', 'earlier', 'flight'] | [] | sci_space_60245 |@lemmatized chuck:1 yeager:1 earlier:1 flight:1 |@bigram |
4,571 |
A traffic citation is an accusation of having committed a crime.
That's why they have to go through the motions of having a trial if you
want one, you are still innocent until proven guilty. Cops are not the
only ones who can accuse people of committing crimes, anyone who
witnesses a crime can do so.
Go to the Highway Patrol and explain the situation, give them a
description of the car and the license number, and tell them the
specific violation of the law which you witnessed and wish to prosecute
(ie, search the Vehicle Code and have the section number handy). Fill
out the ticket and sign it. It will go through the same system any
ticket a cop writes goes through. If contested, you will have to
appear in court to prosecute. Your word will not carry the same weight
as a cop's.
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/rec.motorcycles/104602 | 8 | rec_motorcycles_104602 | [('traffic', 'NN'), ('citation', 'NN'), ('is', 'VBZ'), ('an', 'DT'), ('accusation', 'NN'), ('of', 'IN'), ('having', 'VBG'), ('committed', 'VBN'), ('crime', 'NN'), ('that', 'WDT'), ('why', 'WRB'), ('they', 'PRP'), ('have', 'VBP'), ('to', 'TO'), ('go', 'VB'), ('through', 'IN'), ('the', 'DT'), ('motions', 'NNS'), ('of', 'IN'), ('having', 'VBG'), ('trial', 'NN'), ('if', 'IN'), ('you', 'PRP'), ('want', 'VBP'), ('one', 'CD'), ('you', 'PRP'), ('are', 'VBP'), ('still', 'RB'), ('innocent', 'JJ'), ('until', 'IN'), ('proven', 'RB'), ('guilty', 'JJ'), ('cops', 'NNS'), ('are', 'VBP'), ('not', 'RB'), ('the', 'DT'), ('only', 'JJ'), ('ones', 'NNS'), ('who', 'WP'), ('can', 'MD'), ('accuse', 'VB'), ('people', 'NNS'), ('of', 'IN'), ('committing', 'VBG'), ('crimes', 'NNS'), ('anyone', 'NN'), ('who', 'WP'), ('witnesses', 'VBZ'), ('crime', 'NN'), ('can', 'MD'), ('do', 'VB'), ('so', 'RB'), ('go', 'VB'), ('to', 'TO'), ('the', 'DT'), ('highway', 'NN'), ('patrol', 'NN'), ('and', 'CC'), ('explain', 'VB'), ('the', 'DT'), ('situation', 'NN'), ('give', 'VB'), ('them', 'PRP'), ('description', 'NN'), ('of', 'IN'), ('the', 'DT'), ('car', 'NN'), ('and', 'CC'), ('the', 'DT'), ('license', 'NN'), ('number', 'NN'), ('and', 'CC'), ('tell', 'VB'), ('them', 'PRP'), ('the', 'DT'), ('specific', 'JJ'), ('violation', 'NN'), ('of', 'IN'), ('the', 'DT'), ('law', 'NN'), ('which', 'WDT'), ('you', 'PRP'), ('witnessed', 'VBD'), ('and', 'CC'), ('wish', 'JJ'), ('to', 'TO'), ('prosecute', 'VB'), ('ie', 'JJ'), ('search', 'NN'), ('the', 'DT'), ('vehicle', 'NN'), ('code', 'NN'), ('and', 'CC'), ('have', 'VBP'), ('the', 'DT'), ('section', 'NN'), ('number', 'NN'), ('handy', 'JJ'), (').', 'NNP'), ('fill', 'NN'), ('out', 'RP'), ('the', 'DT'), ('ticket', 'NN'), ('and', 'CC'), ('sign', 'NN'), ('it', 'PRP'), ('it', 'PRP'), ('will', 'MD'), ('go', 'VB'), ('through', 'IN'), ('the', 'DT'), ('same', 'JJ'), ('system', 'NN'), ('any', 'DT'), ('ticket', 'NN'), ('cop', 'NN'), ('writes', 'VBZ'), ('goes', 'VBZ'), ('through', 'IN'), ('if', 'IN'), ('contested', 'VBN'), ('you', 'PRP'), ('will', 'MD'), ('have', 'VB'), ('to', 'TO'), ('appear', 'VB'), ('in', 'IN'), ('court', 'NN'), ('to', 'TO'), ('prosecute', 'VB'), ('your', 'PRP$'), ('word', 'NN'), ('will', 'MD'), ('not', 'RB'), ('carry', 'VB'), ('the', 'DT'), ('same', 'JJ'), ('weight', 'NN'), ('as', 'IN'), ('cop', 'NN')] | ['traffic', 'citation', 'accusation', 'commit', 'crime', 'go', 'motion', 'trial', 'want', 'one', 'still', 'innocent', 'proven', 'guilty', 'cop', 'one', 'accuse', 'people', 'commit', 'crime', 'anyone', 'witness', 'crime', 'go', 'highway', 'patrol', 'explain', 'situation', 'give', 'description', 'car', 'license', 'number', 'tell', 'specific', 'violation', 'law', 'witness', 'wish', 'prosecute', 'ie', 'search', 'vehicle', 'code', 'section', 'number', 'handy', 'fill', 'ticket', 'sign', 'go', 'system', 'ticket', 'cop', 'write', 'go', 'contest', 'appear', 'court', 'prosecute', 'word', 'carry', 'weight', 'cop'] | ['commit_crime', 'want_one', 'one_still', 'innocent_proven', 'proven_guilty', 'people_commit', 'commit_crime', 'give_description', 'number_tell', 'violation_law', 'vehicle_code', 'carry_weight'] | rec_motorcycles_104602 |@lemmatized traffic:1 citation:1 accusation:1 commit:2 crime:3 go:4 motion:1 trial:1 want:1 one:2 still:1 innocent:1 proven:1 guilty:1 cop:3 accuse:1 people:1 anyone:1 witness:2 highway:1 patrol:1 explain:1 situation:1 give:1 description:1 car:1 license:1 number:2 tell:1 specific:1 violation:1 law:1 wish:1 prosecute:2 ie:1 search:1 vehicle:1 code:1 section:1 handy:1 fill:1 ticket:2 sign:1 system:1 write:1 contest:1 appear:1 court:1 word:1 carry:1 weight:1 |@bigram commit_crime:2 want_one:1 one_still:1 innocent_proven:1 proven_guilty:1 people_commit:1 give_description:1 number_tell:1 violation_law:1 vehicle_code:1 carry_weight:1 |
4,572 |
What group is this? This is not a MAC group.
Why the spec list again? We are talking SCSI on a PC, not on a MAC or
a UNIX box. And we are talking ISA bus, or possibly EISA or VLB.
This isin't comp.periphs.SCSI.
Tell me what the performance figures are with a single SCSI drive on a PC
with an ISA (or EISA or VLB) bus.
Theoretical performance figures are not relevant to this group or this
debate. I'm sure that there are some platforms out there that can
handle the 40 megs/sec of SCSI xyz wide'n'fast, but the PC isin't one of
them.
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/comp.sys.ibm.pc.hardware/60383 | 3 | comp_sys_ibm_pc_hardware_60383 | [('what', 'WP'), ('group', 'NN'), ('is', 'VBZ'), ('this', 'DT'), ('this', 'DT'), ('is', 'VBZ'), ('not', 'RB'), ('mac', 'JJ'), ('group', 'NN'), ('why', 'WRB'), ('the', 'DT'), ('spec', 'NN'), ('list', 'NN'), ('again', 'RB'), ('we', 'PRP'), ('are', 'VBP'), ('talking', 'VBG'), ('scsi', 'NN'), ('on', 'IN'), ('pc', 'NN'), ('not', 'RB'), ('on', 'IN'), ('mac', 'NN'), ('or', 'CC'), ('unix', 'JJ'), ('box', 'NN'), ('and', 'CC'), ('we', 'PRP'), ('are', 'VBP'), ('talking', 'VBG'), ('isa', 'JJ'), ('bus', 'NN'), ('or', 'CC'), ('possibly', 'RB'), ('eisa', 'VB'), ('or', 'CC'), ('vlb', 'VB'), ('this', 'DT'), ('isin', 'NN'), ('comp', 'NN'), ('periphs', 'NN'), ('scsi', 'NN'), ('tell', 'VB'), ('me', 'PRP'), ('what', 'WP'), ('the', 'DT'), ('performance', 'NN'), ('figures', 'NNS'), ('are', 'VBP'), ('with', 'IN'), ('single', 'JJ'), ('scsi', 'NNS'), ('drive', 'VBP'), ('on', 'IN'), ('pc', 'NN'), ('with', 'IN'), ('an', 'DT'), ('isa', 'NN'), ('or', 'CC'), ('eisa', 'NN'), ('or', 'CC'), ('vlb', 'NN'), ('bus', 'JJ'), ('theoretical', 'JJ'), ('performance', 'NN'), ('figures', 'NNS'), ('are', 'VBP'), ('not', 'RB'), ('relevant', 'JJ'), ('to', 'TO'), ('this', 'DT'), ('group', 'NN'), ('or', 'CC'), ('this', 'DT'), ('debate', 'NN'), ('sure', 'NN'), ('that', 'IN'), ('there', 'EX'), ('are', 'VBP'), ('some', 'DT'), ('platforms', 'NNS'), ('out', 'RP'), ('there', 'RB'), ('that', 'IN'), ('can', 'MD'), ('handle', 'VB'), ('the', 'DT'), ('40', 'CD'), ('megs', 'NNS'), ('sec', 'NN'), ('of', 'IN'), ('scsi', 'JJ'), ('xyz', 'NNP'), ('wide', 'JJ'), ('fast', 'RB'), ('but', 'CC'), ('the', 'DT'), ('pc', 'NN'), ('isin', 'VBZ'), ('one', 'CD'), ('of', 'IN'), ('them', 'PRP')] | ['group', 'mac', 'group', 'spec', 'list', 'talk', 'scsi', 'pc', 'mac', 'unix', 'box', 'talk', 'isa', 'bus', 'possibly', 'eisa', 'vlb', 'isin', 'comp', 'periphs', 'scsi', 'tell', 'performance', 'figure', 'single', 'scsi', 'drive', 'pc', 'isa', 'eisa', 'vlb', 'bus', 'theoretical', 'performance', 'figure', 'relevant', 'group', 'debate', 'sure', 'platform', 'handle', 'meg', 'sec', 'scsi', 'xyz', 'wide', 'fast', 'pc', 'isin', 'one'] | ['talk_scsi', 'pc_mac', 'unix_box', 'isa_bus', 'eisa_vlb', 'scsi_drive', 'isa_eisa', 'eisa_vlb', 'meg_sec', 'sec_scsi', 'wide_fast'] | comp_sys_ibm_pc_hardware_60383 |@lemmatized group:3 mac:2 spec:1 list:1 talk:2 scsi:4 pc:3 unix:1 box:1 isa:2 bus:2 possibly:1 eisa:2 vlb:2 isin:2 comp:1 periphs:1 tell:1 performance:2 figure:2 single:1 drive:1 theoretical:1 relevant:1 debate:1 sure:1 platform:1 handle:1 meg:1 sec:1 xyz:1 wide:1 fast:1 one:1 |@bigram talk_scsi:1 pc_mac:1 unix_box:1 isa_bus:1 eisa_vlb:2 scsi_drive:1 isa_eisa:1 meg_sec:1 sec_scsi:1 wide_fast:1 |
4,573 |
Ending an embargo does not _we_ must sell anything at all.
You seem to oppose ending the embargo. You know, it is difficult for Europeans
to sell weapons when there is an embargo in place.
But if this was the reason, and if furthermore both sides are equal, wouldn't
all us racist Americans be favoring the good Christians (Serbs) instead
of the non-Christians we really seem to favor?
--
"On the first day after Christmas my truelove served to me... Leftover Turkey!
On the second day after Christmas my truelove served to me... Turkey Casserole
that she made from Leftover Turkey.
[days 3-4 deleted] ... Flaming Turkey Wings! ...
-- Pizza Hut commercial (and M*tlu/A*gic bait) | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/talk.politics.mideast/76229 | 17 | talk_politics_mideast_76229 | [('ending', 'VBG'), ('an', 'DT'), ('embargo', 'NN'), ('does', 'VBZ'), ('not', 'RB'), ('_we_', 'VB'), ('must', 'MD'), ('sell', 'VB'), ('anything', 'NN'), ('at', 'IN'), ('all', 'DT'), ('you', 'PRP'), ('seem', 'VBP'), ('to', 'TO'), ('oppose', 'VB'), ('ending', 'VBG'), ('the', 'DT'), ('embargo', 'NN'), ('you', 'PRP'), ('know', 'VBP'), ('it', 'PRP'), ('is', 'VBZ'), ('difficult', 'JJ'), ('for', 'IN'), ('europeans', 'NNS'), ('to', 'TO'), ('sell', 'VB'), ('weapons', 'NNS'), ('when', 'WRB'), ('there', 'EX'), ('is', 'VBZ'), ('an', 'DT'), ('embargo', 'NN'), ('in', 'IN'), ('place', 'NN'), ('but', 'CC'), ('if', 'IN'), ('this', 'DT'), ('was', 'VBD'), ('the', 'DT'), ('reason', 'NN'), ('and', 'CC'), ('if', 'IN'), ('furthermore', 'RB'), ('both', 'DT'), ('sides', 'NNS'), ('are', 'VBP'), ('equal', 'JJ'), ('wouldn', 'IN'), ('all', 'DT'), ('us', 'PRP'), ('racist', 'VBP'), ('americans', 'NNS'), ('be', 'VB'), ('favoring', 'VBG'), ('the', 'DT'), ('good', 'JJ'), ('christians', 'NNS'), ('serbs', 'VBP'), ('instead', 'RB'), ('of', 'IN'), ('the', 'DT'), ('non', 'JJ'), ('christians', 'NNS'), ('we', 'PRP'), ('really', 'RB'), ('seem', 'VBP'), ('to', 'TO'), ('favor', 'VB'), ('--', ':'), ('on', 'IN'), ('the', 'DT'), ('first', 'JJ'), ('day', 'NN'), ('after', 'IN'), ('christmas', 'NN'), ('my', 'PRP$'), ('truelove', 'NN'), ('served', 'VBD'), ('to', 'TO'), ('me', 'PRP'), ('...', ':'), ('leftover', 'RB'), ('turkey', 'NN'), ('on', 'IN'), ('the', 'DT'), ('second', 'JJ'), ('day', 'NN'), ('after', 'IN'), ('christmas', 'NN'), ('my', 'PRP$'), ('truelove', 'NN'), ('served', 'VBD'), ('to', 'TO'), ('me', 'PRP'), ('...', ':'), ('turkey', 'JJ'), ('casserole', 'NN'), ('that', 'IN'), ('she', 'PRP'), ('made', 'VBD'), ('from', 'IN'), ('leftover', 'JJ'), ('turkey', 'JJ'), ('days', 'NNS'), ('deleted', 'VBD'), ('...', ':'), ('flaming', 'VBG'), ('turkey', 'JJ'), ('wings', 'NNS'), ('...', ':'), ('--', ':'), ('pizza', 'VB'), ('hut', 'JJ'), ('commercial', 'JJ'), ('and', 'CC'), ('tlu', 'JJ'), ('gic', 'NN'), ('bait', 'NN')] | ['end', 'embargo', 'must', 'sell', 'anything', 'seem', 'oppose', 'end', 'embargo', 'know', 'difficult', 'european', 'sell', 'weapon', 'embargo', 'place', 'reason', 'furthermore', 'side', 'equal', 'u', 'racist', 'american', 'favor', 'good', 'christian', 'serbs', 'instead', 'non', 'christian', 'really', 'seem', 'favor', 'first', 'day', 'christmas', 'truelove', 'serve', 'leftover', 'turkey', 'second', 'day', 'christmas', 'truelove', 'serve', 'turkey', 'casserole', 'make', 'leftover', 'turkey', 'day', 'delete', 'flame', 'turkey', 'wing', 'pizza', 'hut', 'commercial', 'tlu', 'gic', 'bait'] | ['must_sell', 'sell_anything', 'know_difficult', 'good_christian', 'non_christian', 'first_day', 'day_christmas', 'christmas_truelove', 'truelove_serve', 'serve_leftover', 'leftover_turkey', 'turkey_second', 'second_day', 'day_christmas', 'christmas_truelove', 'truelove_serve', 'serve_turkey', 'turkey_casserole', 'casserole_make', 'make_leftover', 'leftover_turkey', 'turkey_day', 'day_delete', 'delete_flame', 'flame_turkey', 'turkey_wing', 'wing_pizza', 'pizza_hut', 'hut_commercial', 'commercial_tlu', 'gic_bait'] | talk_politics_mideast_76229 |@lemmatized end:2 embargo:3 must:1 sell:2 anything:1 seem:2 oppose:1 know:1 difficult:1 european:1 weapon:1 place:1 reason:1 furthermore:1 side:1 equal:1 u:1 racist:1 american:1 favor:2 good:1 christian:2 serbs:1 instead:1 non:1 really:1 first:1 day:3 christmas:2 truelove:2 serve:2 leftover:2 turkey:4 second:1 casserole:1 make:1 delete:1 flame:1 wing:1 pizza:1 hut:1 commercial:1 tlu:1 gic:1 bait:1 |@bigram must_sell:1 sell_anything:1 know_difficult:1 good_christian:1 non_christian:1 first_day:1 day_christmas:2 christmas_truelove:2 truelove_serve:2 serve_leftover:1 leftover_turkey:2 turkey_second:1 second_day:1 serve_turkey:1 turkey_casserole:1 casserole_make:1 make_leftover:1 turkey_day:1 day_delete:1 delete_flame:1 flame_turkey:1 turkey_wing:1 wing_pizza:1 pizza_hut:1 hut_commercial:1 commercial_tlu:1 gic_bait:1 |
4,574 |
Going into the ninth with a 3 run lead, ...2 runs score...runners on
first and second...RD throws, "there's a drive waaaaaayyyyyyy back,
Puckett to the wall, leaps, He CAUGHT THE BALL!!!! WHAT A CATCH BY KIRBY!!
TWINS WIN!" and RD gets the save. His line 1 IP, 2 walks, 2 hits, and
one robbed home run... | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/rec.sport.baseball/104336 | 9 | rec_sport_baseball_104336 | [('going', 'VBG'), ('into', 'IN'), ('the', 'DT'), ('ninth', 'JJ'), ('with', 'IN'), ('run', 'JJ'), ('lead', 'NN'), ('...', ':'), ('runs', 'VBZ'), ('score', 'NN'), ('...', ':'), ('runners', 'NNS'), ('on', 'IN'), ('first', 'JJ'), ('and', 'CC'), ('second', 'JJ'), ('...', ':'), ('rd', 'NN'), ('throws', 'VBZ'), ('there', 'EX'), ('drive', 'JJ'), ('waaaaaayyyyyyy', 'NN'), ('back', 'RB'), ('puckett', 'NN'), ('to', 'TO'), ('the', 'DT'), ('wall', 'NN'), ('leaps', 'VBZ'), ('he', 'PRP'), ('caught', 'VBD'), ('the', 'DT'), ('ball', 'NN'), ('!!!!', 'VBZ'), ('what', 'WP'), ('catch', 'NN'), ('by', 'IN'), ('kirby', 'JJ'), ('!!', 'NN'), ('twins', 'NNS'), ('win', 'VBP'), ('!"', 'JJ'), ('and', 'CC'), ('rd', 'JJ'), ('gets', 'VBZ'), ('the', 'DT'), ('save', 'NN'), ('his', 'PRP$'), ('line', 'NN'), ('ip', 'NN'), ('walks', 'NNS'), ('hits', 'NNS'), ('and', 'CC'), ('one', 'CD'), ('robbed', 'VBD'), ('home', 'NN'), ('run', 'NN'), ('...', ':')] | ['go', 'ninth', 'run', 'lead', 'run', 'score', 'runner', 'first', 'second', 'rd', 'throw', 'drive', 'waaaaaayyyyyyy', 'back', 'puckett', 'wall', 'leap', 'catch', 'ball', 'catch', 'kirby', 'twin', 'win', 'rd', 'get', 'save', 'line', 'ip', 'walk', 'hit', 'one', 'rob', 'home', 'run'] | ['run_score', 'runner_first', 'first_second', 'catch_ball', 'hit_one', 'home_run'] | rec_sport_baseball_104336 |@lemmatized go:1 ninth:1 run:3 lead:1 score:1 runner:1 first:1 second:1 rd:2 throw:1 drive:1 waaaaaayyyyyyy:1 back:1 puckett:1 wall:1 leap:1 catch:2 ball:1 kirby:1 twin:1 win:1 get:1 save:1 line:1 ip:1 walk:1 hit:1 one:1 rob:1 home:1 |@bigram run_score:1 runner_first:1 first_second:1 catch_ball:1 hit_one:1 home_run:1 |
4,575 | null | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/comp.sys.mac.hardware/51493 | 4 | comp_sys_mac_hardware_51493 | [] | [] | [] | comp_sys_mac_hardware_51493 |@lemmatized |@bigram |
4,576 |
[... stuff deleted ...]
I have to agree here. As I heard on TSN tonight, "You want to pick
someone else, but you just don't see how you can". And I'm a Bruins
fan. Maybe this year will be different, but it doesn't look good.
Time will tell, though.
[... lots more deleted ...]
Randy | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/rec.sport.hockey/52596 | 10 | rec_sport_hockey_52596 | [('[...', 'JJ'), ('stuff', 'NN'), ('deleted', 'VBD'), ('...]', 'NNS'), ('have', 'VBP'), ('to', 'TO'), ('agree', 'VB'), ('here', 'RB'), ('as', 'RB'), ('heard', 'VBN'), ('on', 'IN'), ('tsn', 'NN'), ('tonight', 'NN'), ('you', 'PRP'), ('want', 'VBP'), ('to', 'TO'), ('pick', 'VB'), ('someone', 'NN'), ('else', 'RB'), ('but', 'CC'), ('you', 'PRP'), ('just', 'RB'), ('don', 'VB'), ('see', 'VB'), ('how', 'WRB'), ('you', 'PRP'), ('can', 'MD'), ('".', 'VB'), ('and', 'CC'), ('bruins', 'VBZ'), ('fan', 'NN'), ('maybe', 'RB'), ('this', 'DT'), ('year', 'NN'), ('will', 'MD'), ('be', 'VB'), ('different', 'JJ'), ('but', 'CC'), ('it', 'PRP'), ('doesn', 'VBZ'), ('look', 'VB'), ('good', 'JJ'), ('time', 'NN'), ('will', 'MD'), ('tell', 'VB'), ('though', 'IN'), ('[...', 'JJ'), ('lots', 'NNS'), ('more', 'RBR'), ('deleted', 'JJ'), ('...]', 'CD'), ('randy', 'NN')] | ['stuff', 'delete', 'agree', 'hear', 'tsn', 'tonight', 'want', 'pick', 'someone', 'else', 'see', 'bruins', 'fan', 'maybe', 'year', 'different', 'look', 'good', 'time', 'tell', 'though', 'lot', 'deleted', 'randy'] | ['stuff_delete', 'want_pick', 'someone_else', 'else_see', 'maybe_year', 'look_good', 'good_time', 'time_tell'] | rec_sport_hockey_52596 |@lemmatized stuff:1 delete:1 agree:1 hear:1 tsn:1 tonight:1 want:1 pick:1 someone:1 else:1 see:1 bruins:1 fan:1 maybe:1 year:1 different:1 look:1 good:1 time:1 tell:1 though:1 lot:1 deleted:1 randy:1 |@bigram stuff_delete:1 want_pick:1 someone_else:1 else_see:1 maybe_year:1 look_good:1 good_time:1 time_tell:1 |
4,577 | Dear friend,
The RISC means "reduced instruction set computer". The RISC usually has
small instruction set so as to reduce the circuit complex and can increase
the clock rate to have a high performance. You can read some books about
computer architecture for more information about RISC. | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/comp.os.ms-windows.misc/9582 | 2 | comp_os_ms-windows_misc_9582 | [('dear', 'JJ'), ('friend', 'VBP'), ('the', 'DT'), ('risc', 'NN'), ('means', 'VBZ'), ('reduced', 'JJ'), ('instruction', 'NN'), ('set', 'VBN'), ('computer', 'NN'), ('".', 'VBZ'), ('the', 'DT'), ('risc', 'NN'), ('usually', 'RB'), ('has', 'VBZ'), ('small', 'JJ'), ('instruction', 'NN'), ('set', 'VBN'), ('so', 'RB'), ('as', 'IN'), ('to', 'TO'), ('reduce', 'VB'), ('the', 'DT'), ('circuit', 'NN'), ('complex', 'NN'), ('and', 'CC'), ('can', 'MD'), ('increase', 'VB'), ('the', 'DT'), ('clock', 'NN'), ('rate', 'NN'), ('to', 'TO'), ('have', 'VB'), ('high', 'JJ'), ('performance', 'NN'), ('you', 'PRP'), ('can', 'MD'), ('read', 'VB'), ('some', 'DT'), ('books', 'NNS'), ('about', 'IN'), ('computer', 'NN'), ('architecture', 'NN'), ('for', 'IN'), ('more', 'JJR'), ('information', 'NN'), ('about', 'IN'), ('risc', 'NN')] | ['dear', 'friend', 'risc', 'mean', 'reduced', 'instruction', 'set', 'computer', 'risc', 'usually', 'small', 'instruction', 'set', 'reduce', 'circuit', 'complex', 'increase', 'clock', 'rate', 'high', 'performance', 'read', 'book', 'computer', 'architecture', 'information', 'risc'] | ['dear_friend', 'reduced_instruction', 'instruction_set', 'set_computer', 'instruction_set', 'clock_rate', 'rate_high', 'high_performance', 'read_book'] | comp_os_ms-windows_misc_9582 |@lemmatized dear:1 friend:1 risc:3 mean:1 reduced:1 instruction:2 set:2 computer:2 usually:1 small:1 reduce:1 circuit:1 complex:1 increase:1 clock:1 rate:1 high:1 performance:1 read:1 book:1 architecture:1 information:1 |@bigram dear_friend:1 reduced_instruction:1 instruction_set:2 set_computer:1 clock_rate:1 rate_high:1 high_performance:1 read_book:1 |
4,578 | From: Center for Policy Research <cpr>
Subject: Poem by Erich Fried
Poem by German-Jewish poet Erich Fried (Holocaust survivor)
Ein Jude an die zionistischen Kaempfer - 1988
von Erich Fried
Was wollt ihr eigentlich ? Wollt ihr wirklich die uebertreffen
die euch niedergetreten haben vor einem Menschenalter in euer
eigenes Blut und in euren eigenen Kot ?
*
Wollt ihr die alten Foltern jetzt an andere weitergeben mit allen
blutigen dreckigen Einzelheiten mit allem brutalen Genuss die
Folterknechte wie unsere Vaeter sie damals erlitten haben ?
*
Wollt jetzt wirklich ihr die neue Gestapo sein die neue Wehrmacht
die neue SA and SS und aus den Palaestinensern die neuen Juden
machen ?
*
Aber dann will auch ich weil ich damals vor fuenfzig Jahren selbst
als ein Judenkind gepeinigt wurde von euren Peinigern ein neuer
Jude sein mit diesen neuen Juden zu denen ihr die Palaestinenser
macht
*
Und ich will sie zurueckfuehren helfen als freie Menschen in ihr
eigenes Land Palaestina aus dem ihr sie vertrieben habt oder in
dem ihr sie quaelt ihr Hakenkreuzlehrlinge ihr Narren und
Wechselbaelge der Weltgeschichte denen der Davidstern auf euren
Fahnen sich immer schneller verwandelt in das verfluchte Zeichen
mit den vier Fuessen das ihr nun nicht sehen wollt aber dessen Weg
ihr heut geht !
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/talk.politics.mideast/76262 | 17 | talk_politics_mideast_76262 | [('from', 'IN'), ('center', 'NN'), ('for', 'IN'), ('policy', 'NN'), ('research', 'NN'), ('cpr', 'NN'), ('subject', 'JJ'), ('poem', 'NN'), ('by', 'IN'), ('erich', 'JJ'), ('fried', 'VBN'), ('poem', 'NN'), ('by', 'IN'), ('german', 'JJ'), ('jewish', 'JJ'), ('poet', 'NN'), ('erich', 'NN'), ('fried', 'VBD'), ('holocaust', 'JJ'), ('survivor', 'NN'), ('ein', 'NN'), ('jude', 'VBP'), ('an', 'DT'), ('die', 'NN'), ('zionistischen', 'NN'), ('kaempfer', 'NN'), ('1988', 'CD'), ('von', 'NN'), ('erich', 'FW'), ('fried', 'VBD'), ('was', 'VBD'), ('wollt', 'JJ'), ('ihr', 'NN'), ('eigentlich', 'JJ'), ('wollt', 'NN'), ('ihr', 'NN'), ('wirklich', 'NN'), ('die', 'VBP'), ('uebertreffen', 'JJ'), ('die', 'NN'), ('euch', 'JJ'), ('niedergetreten', 'JJ'), ('haben', 'NN'), ('vor', 'NN'), ('einem', 'VBP'), ('menschenalter', 'NN'), ('in', 'IN'), ('euer', 'NN'), ('eigenes', 'NNS'), ('blut', 'VBP'), ('und', 'NN'), ('in', 'IN'), ('euren', 'JJ'), ('eigenen', 'NN'), ('kot', 'NN'), ('wollt', 'NN'), ('ihr', 'NN'), ('die', 'NN'), ('alten', 'JJ'), ('foltern', 'JJ'), ('jetzt', 'NN'), ('an', 'DT'), ('andere', 'JJ'), ('weitergeben', 'NN'), ('mit', 'NN'), ('allen', 'IN'), ('blutigen', 'NN'), ('dreckigen', 'NN'), ('einzelheiten', 'JJ'), ('mit', 'NN'), ('allem', 'NN'), ('brutalen', 'VBN'), ('genuss', 'NN'), ('die', 'NN'), ('folterknechte', 'NN'), ('wie', 'NN'), ('unsere', 'JJ'), ('vaeter', 'NN'), ('sie', 'NN'), ('damals', 'NNS'), ('erlitten', 'VBP'), ('haben', 'JJ'), ('wollt', 'NN'), ('jetzt', 'NN'), ('wirklich', 'JJ'), ('ihr', 'NN'), ('die', 'NN'), ('neue', 'JJ'), ('gestapo', 'NN'), ('sein', 'NN'), ('die', 'VBZ'), ('neue', 'JJ'), ('wehrmacht', 'NN'), ('die', 'NN'), ('neue', 'JJ'), ('sa', 'NN'), ('and', 'CC'), ('ss', 'NN'), ('und', 'NN'), ('aus', 'VBD'), ('den', 'JJ'), ('palaestinensern', 'NN'), ('die', 'NN'), ('neuen', 'JJ'), ('juden', 'NN'), ('machen', 'NN'), ('aber', 'VBP'), ('dann', 'NN'), ('will', 'MD'), ('auch', 'VB'), ('ich', 'JJ'), ('weil', 'NN'), ('ich', 'JJ'), ('damals', 'NNS'), ('vor', 'VBP'), ('fuenfzig', 'JJ'), ('jahren', 'NN'), ('selbst', 'NN'), ('als', 'NNS'), ('ein', 'VBP'), ('judenkind', 'NN'), ('gepeinigt', 'NN'), ('wurde', 'NN'), ('von', 'NN'), ('euren', 'NN'), ('peinigern', 'JJ'), ('ein', 'NN'), ('neuer', 'JJ'), ('jude', 'NN'), ('sein', 'JJ'), ('mit', 'NN'), ('diesen', 'NN'), ('neuen', 'JJ'), ('juden', 'NN'), ('zu', 'NN'), ('denen', 'NN'), ('ihr', 'NN'), ('die', 'VBP'), ('palaestinenser', 'NN'), ('macht', 'NN'), ('und', 'NN'), ('ich', 'NN'), ('will', 'MD'), ('sie', 'VB'), ('zurueckfuehren', 'NNP'), ('helfen', 'NN'), ('als', 'NNS'), ('freie', 'VBP'), ('menschen', 'NN'), ('in', 'IN'), ('ihr', 'NN'), ('eigenes', 'NNS'), ('land', 'VBP'), ('palaestina', 'NNS'), ('aus', 'VBP'), ('dem', 'JJ'), ('ihr', 'NN'), ('sie', 'NN'), ('vertrieben', 'NN'), ('habt', 'NN'), ('oder', 'NN'), ('in', 'IN'), ('dem', 'NN'), ('ihr', 'NN'), ('sie', 'NN'), ('quaelt', 'VBD'), ('ihr', 'JJ'), ('hakenkreuzlehrlinge', 'NN'), ('ihr', 'NN'), ('narren', 'NNS'), ('und', 'IN'), ('wechselbaelge', 'JJ'), ('der', 'NN'), ('weltgeschichte', 'NN'), ('denen', 'NN'), ('der', 'NN'), ('davidstern', 'JJ'), ('auf', 'JJ'), ('euren', 'NNS'), ('fahnen', 'VBP'), ('sich', 'JJ'), ('immer', 'NN'), ('schneller', 'NN'), ('verwandelt', 'NN'), ('in', 'IN'), ('das', 'JJ'), ('verfluchte', 'NN'), ('zeichen', 'NN'), ('mit', 'NN'), ('den', 'NN'), ('vier', 'NN'), ('fuessen', 'VBN'), ('das', 'JJ'), ('ihr', 'NN'), ('nun', 'NN'), ('nicht', 'NN'), ('sehen', 'NN'), ('wollt', 'VBZ'), ('aber', 'JJ'), ('dessen', 'JJ'), ('weg', 'NN'), ('ihr', 'NN'), ('heut', 'NN'), ('geht', 'NN')] | ['center', 'policy', 'research', 'cpr', 'subject', 'poem', 'erich', 'fry', 'poem', 'german', 'jewish', 'poet', 'erich', 'fry', 'holocaust', 'survivor', 'ein', 'jude', 'die', 'zionistischen', 'kaempfer', 'von', 'erich', 'fry', 'wollt', 'ihr', 'eigentlich', 'wollt', 'ihr', 'wirklich', 'die', 'uebertreffen', 'die', 'euch', 'niedergetreten', 'haben', 'vor', 'einem', 'menschenalter', 'euer', 'eigenes', 'blut', 'und', 'euren', 'eigenen', 'kot', 'wollt', 'ihr', 'die', 'alten', 'foltern', 'jetzt', 'andere', 'weitergeben', 'mit', 'allen', 'blutigen', 'dreckigen', 'einzelheiten', 'mit', 'allem', 'brutalen', 'genus', 'die', 'folterknechte', 'wie', 'unsere', 'vaeter', 'sie', 'damals', 'erlitten', 'haben', 'wollt', 'jetzt', 'wirklich', 'ihr', 'die', 'neue', 'gestapo', 'sein', 'die', 'neue', 'wehrmacht', 'die', 'neue', 'sa', 'und', 'aus', 'den', 'palaestinensern', 'die', 'neuen', 'juden', 'machen', 'aber', 'dann', 'auch', 'ich', 'weil', 'ich', 'damals', 'vor', 'fuenfzig', 'jahren', 'selbst', 'al', 'ein', 'judenkind', 'gepeinigt', 'wurde', 'von', 'euren', 'peinigern', 'ein', 'neuer', 'jude', 'sein', 'mit', 'diesen', 'neuen', 'juden', 'zu', 'denen', 'ihr', 'die', 'palaestinenser', 'macht', 'und', 'ich', 'sie', 'zurueckfuehren', 'helfen', 'al', 'freie', 'menschen', 'ihr', 'eigenes', 'land', 'palaestina', 'aus', 'dem', 'ihr', 'sie', 'vertrieben', 'habt', 'oder', 'dem', 'ihr', 'sie', 'quaelt', 'ihr', 'hakenkreuzlehrlinge', 'ihr', 'narren', 'und', 'wechselbaelge', 'der', 'weltgeschichte', 'denen', 'der', 'davidstern', 'auf', 'euren', 'fahnen', 'sich', 'immer', 'schneller', 'verwandelt', 'das', 'verfluchte', 'zeichen', 'mit', 'den', 'vier', 'fuessen', 'das', 'ihr', 'nun', 'nicht', 'sehen', 'wollt', 'aber', 'dessen', 'weg', 'ihr', 'heut', 'geht'] | ['center_policy', 'policy_research', 'research_cpr', 'cpr_subject'] | talk_politics_mideast_76262 |@lemmatized center:1 policy:1 research:1 cpr:1 subject:1 poem:2 erich:3 fry:3 german:1 jewish:1 poet:1 holocaust:1 survivor:1 ein:3 jude:2 die:10 zionistischen:1 kaempfer:1 von:2 wollt:5 ihr:12 eigentlich:1 wirklich:2 uebertreffen:1 euch:1 niedergetreten:1 haben:2 vor:2 einem:1 menschenalter:1 euer:1 eigenes:2 blut:1 und:4 euren:3 eigenen:1 kot:1 alten:1 foltern:1 jetzt:2 andere:1 weitergeben:1 mit:4 allen:1 blutigen:1 dreckigen:1 einzelheiten:1 allem:1 brutalen:1 genus:1 folterknechte:1 wie:1 unsere:1 vaeter:1 sie:4 damals:2 erlitten:1 neue:3 gestapo:1 sein:2 wehrmacht:1 sa:1 aus:2 den:2 palaestinensern:1 neuen:2 juden:2 machen:1 aber:2 dann:1 auch:1 ich:3 weil:1 fuenfzig:1 jahren:1 selbst:1 al:2 judenkind:1 gepeinigt:1 wurde:1 peinigern:1 neuer:1 diesen:1 zu:1 denen:2 palaestinenser:1 macht:1 zurueckfuehren:1 helfen:1 freie:1 menschen:1 land:1 palaestina:1 dem:2 vertrieben:1 habt:1 oder:1 quaelt:1 hakenkreuzlehrlinge:1 narren:1 wechselbaelge:1 der:2 weltgeschichte:1 davidstern:1 auf:1 fahnen:1 sich:1 immer:1 schneller:1 verwandelt:1 das:2 verfluchte:1 zeichen:1 vier:1 fuessen:1 nun:1 nicht:1 sehen:1 dessen:1 weg:1 heut:1 geht:1 |@bigram center_policy:1 policy_research:1 research_cpr:1 cpr_subject:1 |
4,579 |
I recall seeing a post some time ago saying that if the details of
an encryption scheme couldn't be revealed, then the encryption
scheme is worthless. I believe the statement was in response to
somebody saying that they had some new snazzy scheme, but the
algorithm was a secret.
Does this algorithm depend on the fact that the scheme is secret or
is it for the stated reasons above?
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/sci.crypt/15384 | 11 | sci_crypt_15384 | [('recall', 'NN'), ('seeing', 'VBG'), ('post', 'VB'), ('some', 'DT'), ('time', 'NN'), ('ago', 'IN'), ('saying', 'VBG'), ('that', 'IN'), ('if', 'IN'), ('the', 'DT'), ('details', 'NNS'), ('of', 'IN'), ('an', 'DT'), ('encryption', 'NN'), ('scheme', 'NN'), ('couldn', 'NN'), ('be', 'VB'), ('revealed', 'VBN'), ('then', 'RB'), ('the', 'DT'), ('encryption', 'NN'), ('scheme', 'NN'), ('is', 'VBZ'), ('worthless', 'JJ'), ('believe', 'VBP'), ('the', 'DT'), ('statement', 'NN'), ('was', 'VBD'), ('in', 'IN'), ('response', 'NN'), ('to', 'TO'), ('somebody', 'NN'), ('saying', 'VBG'), ('that', 'IN'), ('they', 'PRP'), ('had', 'VBD'), ('some', 'DT'), ('new', 'JJ'), ('snazzy', 'JJ'), ('scheme', 'NN'), ('but', 'CC'), ('the', 'DT'), ('algorithm', 'NN'), ('was', 'VBD'), ('secret', 'JJ'), ('does', 'VBZ'), ('this', 'DT'), ('algorithm', 'JJ'), ('depend', 'NN'), ('on', 'IN'), ('the', 'DT'), ('fact', 'NN'), ('that', 'IN'), ('the', 'DT'), ('scheme', 'NN'), ('is', 'VBZ'), ('secret', 'JJ'), ('or', 'CC'), ('is', 'VBZ'), ('it', 'PRP'), ('for', 'IN'), ('the', 'DT'), ('stated', 'JJ'), ('reasons', 'NNS'), ('above', 'IN')] | ['recall', 'see', 'post', 'time', 'ago', 'say', 'detail', 'encryption', 'scheme', 'reveal', 'encryption', 'scheme', 'worthless', 'believe', 'statement', 'response', 'somebody', 'say', 'new', 'snazzy', 'scheme', 'algorithm', 'secret', 'algorithm', 'depend', 'fact', 'scheme', 'secret', 'stated', 'reason'] | ['recall_see', 'see_post', 'post_time', 'time_ago', 'ago_say', 'encryption_scheme', 'encryption_scheme', 'believe_statement', 'say_new', 'algorithm_secret', 'secret_algorithm'] | sci_crypt_15384 |@lemmatized recall:1 see:1 post:1 time:1 ago:1 say:2 detail:1 encryption:2 scheme:4 reveal:1 worthless:1 believe:1 statement:1 response:1 somebody:1 new:1 snazzy:1 algorithm:2 secret:2 depend:1 fact:1 stated:1 reason:1 |@bigram recall_see:1 see_post:1 post_time:1 time_ago:1 ago_say:1 encryption_scheme:2 believe_statement:1 say_new:1 algorithm_secret:1 secret_algorithm:1 |
4,580 |
Lebanese resistance forces detonated a bomb under an Israeli occupation
patrol in Lebanese territory two days ago. Three soldiers were killed and
two wounded. In "retaliation", Israeli and Israeli-backed forces wounded
8 civilians by bombarding several Lebanese villages. Ironically, the Israeli
government justifies its occupation in Lebanon by claiming that it is
necessary to prevent such bombardments of Israeli villages!!
Congratulations to the brave men of the Lebanese resistance! With every
Israeli son that you place in the grave you are underlining the moral
bankruptcy of Israel's occupation and drawing attention to the Israeli
government's policy of reckless disregard for civilian life.
Brad Hernlem ([email protected])
Very nice. Three people are murdered, and Bradly is overjoyed. When I
hear about deaths in the middle east, be it Jewish or Arab deaths, I
feel sadness, and only hope that soon this all stops. Apparently, my
view point is not acceptable to people like you Bradly.
Hernlem, you disgust me. | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/talk.politics.mideast/75895 | 17 | talk_politics_mideast_75895 | [('lebanese', 'JJ'), ('resistance', 'NN'), ('forces', 'NNS'), ('detonated', 'VBD'), ('bomb', 'NN'), ('under', 'IN'), ('an', 'DT'), ('israeli', 'JJ'), ('occupation', 'NN'), ('patrol', 'NN'), ('in', 'IN'), ('lebanese', 'JJ'), ('territory', 'JJ'), ('two', 'CD'), ('days', 'NNS'), ('ago', 'RB'), ('three', 'CD'), ('soldiers', 'NNS'), ('were', 'VBD'), ('killed', 'VBN'), ('and', 'CC'), ('two', 'CD'), ('wounded', 'VBD'), ('in', 'IN'), ('retaliation', 'NN'), ('",', 'NNP'), ('israeli', 'NN'), ('and', 'CC'), ('israeli', 'JJ'), ('backed', 'VBD'), ('forces', 'NNS'), ('wounded', 'VBD'), ('civilians', 'NNS'), ('by', 'IN'), ('bombarding', 'VBG'), ('several', 'JJ'), ('lebanese', 'JJ'), ('villages', 'NNS'), ('ironically', 'RB'), ('the', 'DT'), ('israeli', 'JJ'), ('government', 'NN'), ('justifies', 'VBZ'), ('its', 'PRP$'), ('occupation', 'NN'), ('in', 'IN'), ('lebanon', 'NN'), ('by', 'IN'), ('claiming', 'VBG'), ('that', 'IN'), ('it', 'PRP'), ('is', 'VBZ'), ('necessary', 'JJ'), ('to', 'TO'), ('prevent', 'VB'), ('such', 'JJ'), ('bombardments', 'NNS'), ('of', 'IN'), ('israeli', 'JJ'), ('villages', 'NNS'), ('!!', 'VBP'), ('congratulations', 'NNS'), ('to', 'TO'), ('the', 'DT'), ('brave', 'JJ'), ('men', 'NNS'), ('of', 'IN'), ('the', 'DT'), ('lebanese', 'JJ'), ('resistance', 'NN'), ('with', 'IN'), ('every', 'DT'), ('israeli', 'JJ'), ('son', 'NN'), ('that', 'IN'), ('you', 'PRP'), ('place', 'VBP'), ('in', 'IN'), ('the', 'DT'), ('grave', 'NN'), ('you', 'PRP'), ('are', 'VBP'), ('underlining', 'VBG'), ('the', 'DT'), ('moral', 'JJ'), ('bankruptcy', 'NN'), ('of', 'IN'), ('israel', 'JJ'), ('occupation', 'NN'), ('and', 'CC'), ('drawing', 'VBG'), ('attention', 'NN'), ('to', 'TO'), ('the', 'DT'), ('israeli', 'JJ'), ('government', 'NN'), ('policy', 'NN'), ('of', 'IN'), ('reckless', 'JJ'), ('disregard', 'NN'), ('for', 'IN'), ('civilian', 'JJ'), ('life', 'NN'), ('brad', 'NN'), ('hernlem', 'JJ'), ('very', 'RB'), ('nice', 'JJ'), ('three', 'CD'), ('people', 'NNS'), ('are', 'VBP'), ('murdered', 'VBN'), ('and', 'CC'), ('bradly', 'RB'), ('is', 'VBZ'), ('overjoyed', 'VBN'), ('when', 'WRB'), ('hear', 'JJ'), ('about', 'IN'), ('deaths', 'NNS'), ('in', 'IN'), ('the', 'DT'), ('middle', 'JJ'), ('east', 'NN'), ('be', 'VB'), ('it', 'PRP'), ('jewish', 'JJ'), ('or', 'CC'), ('arab', 'JJ'), ('deaths', 'NNS'), ('feel', 'VB'), ('sadness', 'NN'), ('and', 'CC'), ('only', 'RB'), ('hope', 'VBP'), ('that', 'IN'), ('soon', 'RB'), ('this', 'DT'), ('all', 'DT'), ('stops', 'VBZ'), ('apparently', 'RB'), ('my', 'PRP$'), ('view', 'NN'), ('point', 'NN'), ('is', 'VBZ'), ('not', 'RB'), ('acceptable', 'JJ'), ('to', 'TO'), ('people', 'NNS'), ('like', 'IN'), ('you', 'PRP'), ('bradly', 'RB'), ('hernlem', 'VBP'), ('you', 'PRP'), ('disgust', 'VBP'), ('me', 'PRP')] | ['lebanese', 'resistance', 'force', 'detonate', 'bomb', 'israeli', 'occupation', 'patrol', 'lebanese', 'territory', 'two', 'day', 'ago', 'three', 'soldier', 'kill', 'two', 'wound', 'retaliation', 'israeli', 'israeli', 'back', 'force', 'wound', 'civilian', 'bombard', 'several', 'lebanese', 'village', 'ironically', 'israeli', 'government', 'justify', 'occupation', 'lebanon', 'claim', 'necessary', 'prevent', 'bombardment', 'israeli', 'village', 'congratulation', 'brave', 'men', 'lebanese', 'resistance', 'every', 'israeli', 'son', 'place', 'grave', 'underline', 'moral', 'bankruptcy', 'israel', 'occupation', 'draw', 'attention', 'israeli', 'government', 'policy', 'reckless', 'disregard', 'civilian', 'life', 'brad', 'hernlem', 'nice', 'three', 'people', 'murder', 'bradly', 'overjoy', 'hear', 'death', 'middle', 'east', 'jewish', 'arab', 'death', 'feel', 'sadness', 'hope', 'soon', 'stop', 'apparently', 'view', 'point', 'acceptable', 'people', 'like', 'bradly', 'hernlem', 'disgust'] | ['lebanese_resistance', 'israeli_occupation', 'lebanese_territory', 'two_day', 'day_ago', 'three_soldier', 'soldier_kill', 'kill_two', 'lebanese_village', 'israeli_government', 'lebanese_resistance', 'israeli_government', 'government_policy', 'three_people', 'middle_east', 'people_like'] | talk_politics_mideast_75895 |@lemmatized lebanese:4 resistance:2 force:2 detonate:1 bomb:1 israeli:7 occupation:3 patrol:1 territory:1 two:2 day:1 ago:1 three:2 soldier:1 kill:1 wound:2 retaliation:1 back:1 civilian:2 bombard:1 several:1 village:2 ironically:1 government:2 justify:1 lebanon:1 claim:1 necessary:1 prevent:1 bombardment:1 congratulation:1 brave:1 men:1 every:1 son:1 place:1 grave:1 underline:1 moral:1 bankruptcy:1 israel:1 draw:1 attention:1 policy:1 reckless:1 disregard:1 life:1 brad:1 hernlem:2 nice:1 people:2 murder:1 bradly:2 overjoy:1 hear:1 death:2 middle:1 east:1 jewish:1 arab:1 feel:1 sadness:1 hope:1 soon:1 stop:1 apparently:1 view:1 point:1 acceptable:1 like:1 disgust:1 |@bigram lebanese_resistance:2 israeli_occupation:1 lebanese_territory:1 two_day:1 day_ago:1 three_soldier:1 soldier_kill:1 kill_two:1 lebanese_village:1 israeli_government:2 government_policy:1 three_people:1 middle_east:1 people_like:1 |
4,581 | null | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/soc.religion.christian/20487 | 15 | soc_religion_christian_20487 | [] | [] | [] | soc_religion_christian_20487 |@lemmatized |@bigram |
4,582 | Tampa Bay 1 1 0--2
Philadelphia 3 2 1--6
First period
1, Philadelphia, Carkner 3 (unassisted) 1:24.
2, Philadelphia, Hawgood 9 (Recchi, Lindros) pp, 5:56.
3, Philadelphia, Lindros 37 (Recchi, Hawgood) pp, 9:52.
4, Tampa Bay, Beers 12 (Zamuner, Chambers) pp, 15:06.
Second period
5, Tampa Bay, Andersson 13 (Hamrlik, Lafreniere) pp, 1:58.
6, Philadelphia, Conroy 3 (Butsayev, Faust) 12:10.
7, Philadelphia, Beranek 13 (Galley, Hawgood) pp, 18:53.
Third period
8, Philadelphia, Recchi 51 (Brind'Amour, Galley) pp, 17:56.
Philadelphia: 6 Power play: 5-4
Scorer G A Pts
--------------- --- --- ---
Beranek 1 0 1
Brind'Amour 0 1 1
Butsayev 0 1 1
Carkner 1 0 1
Conroy 1 0 1
Faust 0 1 1
Galley 0 2 2
Hawgood 1 2 3
Lindros 1 1 2
Recchi 1 2 3
Tampa Bay: 2 Power play: 7-2
Scorer G A Pts
--------------- --- --- ---
Andersson 1 0 1
Beers 1 0 1
Chambers 0 1 1
Hamrlik 0 1 1
Lafreniere 0 1 1
Zamuner 0 1 1
-----------------------------------------
Vancouver 1 0 0--1
Detroit 2 2 1--5
First period
1, Detroit, Kozlov 4 (Fedorov, Chiasson) 5:20.
2, Detroit, Drake 17 (Ciccarelli, Coffey) pp, 7:48.
3, Vancouver, Ronning 24 (Slegr, Bure) pp, 17:35.
Second period
4, Detroit, Sheppard 30 (Drake, Hiller) 6:54.
5, Detroit, Ciccarelli 38 (Chiasson, Drake) pp, 12:13.
Third period
6, Detroit, Ysebaert 31 (Fedorov, Cheveldae) sh, 4:59.
Detroit: 5 Power play: 5-2 Special goals: pp: 2 sh: 1 Total: 3
Scorer G A Pts
--------------- --- --- ---
Cheveldae 0 1 1
Chiasson 0 2 2
Ciccarelli 1 1 2
Coffey 0 1 1
Drake 1 2 3
Fedorov 0 2 2
Hiller 0 1 1
Kozlov 1 0 1
Sheppard 1 0 1
Ysebaert 1 0 1
Vancouver: 1 Power play: 6-1
Scorer G A Pts
--------------- --- --- ---
Bure 0 1 1
Ronning 1 0 1
Slegr 0 1 1
-----------------------------------------
Buffalo 1 1 0--2
Boston 1 1 1--3
First period
1, Buffalo, Audette 12 (Corkum, Wood) 16:40.
2, Boston, Juneau 30 (Neely, Oates) 18:39.
Second period
3, Buffalo, Errey 9 (LaFontaine, Khmylev) 10:51.
4, Boston, Douris 3 (D.Sweeney, Bourque) 17:57.
Third period
5, Boston, Donato 12 (unassisted) 17:42.
Boston: 3 Power play: 4-0
Scorer G A Pts
--------------- --- --- ---
Bourque 0 1 1
Donato 1 0 1
Douris 1 0 1
Juneau 1 0 1
Neely 0 1 1
Oates 0 1 1
Sweeney D 0 1 1
Buffalo: 2 Power play: 5-0
Scorer G A Pts
--------------- --- --- ---
Audette 1 0 1
Corkum 0 1 1
Errey 1 0 1
Khmylev 0 1 1
LaFontaine 0 1 1
Wood 0 1 1
-----------------------------------------
Calgary 1 1 0 1--3
San Jose 0 2 0 0--2
First period
1, Calgary, Suter 21 (Reichel, MacInnis) pp, 17:47.
Second period
2, San Jose, Zmolek 5 (Odgers, Evason) 3:03.
3, San Jose, Kisio 24 (Garpenlov, Gaudreau) pp, 7:23.
4, Calgary, Lindberg 9 (MacInnis) pp, 12:43.
Third period
No scoring.
Overtime
5, Calgary, Fleury 31 (Otto, Yawney) 3:06.
Calgary: 3 Power play: 8-2
Scorer G A Pts
--------------- --- --- ---
Fleury 1 0 1
Lindberg 1 0 1
MacInnis 0 2 2
Otto 0 1 1
Reichel 0 1 1
Suter 1 0 1
Yawney 0 1 1
San Jose: 2 Power play: 9-1
Scorer G A Pts
--------------- --- --- ---
Evason 0 1 1
Garpenlov 0 1 1
Gaudreau 0 1 1
Kisio 1 0 1
Odgers 0 1 1
Zmolek 1 0 1
-----------------------------------------
Pittsburgh 0 3 2--5
Quebec 2 1 0--3
First period
1, Quebec, Kamensky 15 (Huffman) 6:05.
2, Quebec, Young 27 (Lapointe, Huffman) 16:52.
Second period
3, Pittsburgh, Mullen 29 (Lemieux, Murphy) 3:54.
4, Pittsburgh, Lemieux 60 (Tocchet, U.Samuelsson) 5:07.
5, Pittsburgh, Lemieux 61 (Tocchet, Stevens) 8:12.
6, Quebec, Young 28 (Sundin, Kovalenko) pp, 14:52.
Third period
7, Pittsburgh, Tippett 4 (unassisted) sh, 3:52.
8, Pittsburgh, Tippett 5 (McEachern, Mullen) 8:25.
Pittsburgh: 5 Power play: 1-0 Special goals: sh: 1 Total: 1
Scorer G A Pts
--------------- --- --- ---
Lemieux 2 1 3
McEachern 0 1 1
Mullen 1 1 2
Murphy 0 1 1
Samuelsson U 0 1 1
Stevens 0 1 1
Tippett 2 0 2
Tocchet 0 2 2
Quebec: 3 Power play: 4-1
Scorer G A Pts
--------------- --- --- ---
Huffman 0 2 2
Kamensky 1 0 1
Kovalenko 0 1 1
Lapointe 0 1 1
Sundin 0 1 1
Young 2 0 2
-----------------------------------------
New Jersey 0 0 0--0
Toronto 0 0 1--1
First period
No scoring.
Second period
No scoring.
Third period
1, Toronto, Gilmour 32 (Andreychuk, Anderson) 16:22.
Toronto: 1 Power play: 5-0
Scorer G A Pts
--------------- --- --- ---
Anderson 0 1 1
Andreychuk 0 1 1
Gilmour 1 0 1
New Jersey: 0 Power play: 3-0
No scoring
-----------------------------------------
Ottawa 1 0 2--3
Hartford 5 1 1--7
First period
1, Ottawa, Maciver 17 (Baker, Luongo) 4:22.
2, Hartford, Kron 11 (Nylander, Gosselin) 5:13.
3, Hartford, Burt 4 (Cassels, Verbeek) 7:59.
4, Hartford, Cunneyworth 4 (Yake, Nylander) 9:59.
5, Hartford, Sanderson 42 (Cassels, Houda) 11:11.
6, Hartford, Verbeek 35 (Cassels, Zalapski) pp, 15:50.
Second period
7, Hartford, Sanderson 43 (Cassels, Zalapski) pp, 18:38.
Third period
8, Hartford, Kron 12 (Poulin, Burt) 4:57.
9, Ottawa, Turgeon 23 (Lamb) 8:57.
10, Ottawa, Baker 17 (Luongo, Maciver) pp, 16:17.
Hartford: 7 Power play: 3-2
Scorer G A Pts
--------------- --- --- ---
Burt 1 1 2
Cassels 0 4 4
Cunneyworth 1 0 1
Gosselin 0 1 1
Houda 0 1 1
Kron 2 0 2
Nylander 0 2 2
Poulin 0 1 1
Sanderson 2 0 2
Verbeek 1 1 2
Yake 0 1 1
Zalapski 0 2 2
Ottawa: 3 Power play: 7-1
Scorer G A Pts
--------------- --- --- ---
Baker 1 1 2
Lamb 0 1 1
Luongo 0 2 2
Maciver 1 1 2
Turgeon 1 0 1
-----------------------------------------
Winnipeg 1 3 2--6
Edmonton 1 0 3--4
First period
1, Winnipeg, Tkachuk 27 (Housley, Zhamnov) pp, 14:38.
2, Edmonton, Klima 31 (Ciger, Elik) 16:05.
Second period
3, Winnipeg, King 8 (unassisted) 3:54.
4, Winnipeg, Zhamnov 21 (Selanne) 10:25.
5, Winnipeg, Domi 5 (Selanne, Housley) 18:44.
Third period
6, Edmonton, Manson 15 (unassisted) 10:58.
7, Winnipeg, Eagles 8 (Numminen, Bautin) pp, 14:13.
8, Winnipeg, Zhamnov 22 (Ulanov, Selanne) 15:27.
9, Edmonton, Gelinas 8 (Kravchuk, Ranford) 16:48.
10, Edmonton, Kravchuk 10 (Buchberger) 18:42.
Winnipeg: 6 Power play: 5-2
Scorer G A Pts
--------------- --- --- ---
Bautin 0 1 1
Domi 1 0 1
Eagles 1 0 1
Housley 0 2 2
King 1 0 1
Numminen 0 1 1
Selanne 0 3 3
Tkachuk 1 0 1
Ulanov 0 1 1
Zhamnov 2 1 3
Edmonton: 4 Power play: 3-0
Scorer G A Pts
--------------- --- --- ---
Buchberger 0 1 1
Ciger 0 1 1
Elik 0 1 1
Gelinas 1 0 1
Klima 1 0 1
Kravchuk 1 1 2
Manson 1 0 1
Ranford 0 1 1
-----------------------------------------
Chicago 0 3 0 0--3
St. Louis 1 2 0 0--3
First period
1, St. Louis, Shanahan 46 (Janney, Hull) pp, 4:09.
Second period
2, Chicago, Murphy 4 (Chelios, Roenick) pp, 0:50.
3, St. Louis, Shanahan 47 (Hedican, Janney) 1:18.
4, Chicago, Noonan 16 (Murphy, Chelios) pp, 5:24.
5, St. Louis, Bozon 6, ps, 12:13.
6, Chicago, Roenick 43 (Sutter, Murphy) pp, 18:39.
Third period
No scoring.
Overtime
No scoring.
St. Louis: 3 Power play: 4-1 Special goals: pp: 1 ps: 1 Total: 2
Scorer G A Pts
--------------- --- --- ---
Bozon 1 0 1
Chelios 0 1 1
Hedican 0 1 1
Hull 0 1 1
Janney 0 2 2
Murphy 0 1 1
Shanahan 2 0 2
Chicago: 3 Power play: 3-3
Scorer G A Pts
--------------- --- --- ---
Chelios 0 2 2
Murphy 1 2 3
Noonan 1 0 1
Roenick 1 1 2
Sutter 0 1 1
-----------------------------------------
Montreal 0 1 2--3
NY Islanders 0 2 0--2
First period
No scoring.
Second period
1, Montreal, Brunet 10 (Carbonneau, Daigneault) 4:39.
2, NY Islanders, Turgeon 51 (Thomas, Kurvers) pp, 9:14.
3, NY Islanders, Mullen 16 (unassisted) 15:13.
Third period
4, Montreal, Bellows 38 (Desjardins, Dipietro) 3:01.
5, Montreal, Damphousse 38 (Desjardins, Bellows) pp, 10:11.
Montreal: 3 Power play: 5-1
Scorer G A Pts
--------------- --- --- ---
Bellows 1 1 2
Brunet 1 0 1
Carbonneau 0 1 1
Daigneault 0 1 1
Damphousse 1 0 1
Desjardins 0 2 2
Dipietro 0 1 1
NY Islanders: 2 Power play: 5-1
Scorer G A Pts
--------------- --- --- ---
Kurvers 0 1 1
Mullen 1 0 1
Thomas 0 1 1
Turgeon 1 0 1
-----------------------------------------
Minnesota 2 1 0--3
Los Angeles 0 0 0--0
First period
1, Minnesota, Dahlen 33 (unassisted) 2:34.
2, Minnesota, Courtnall 33 (Dahlen, Modano) pp, 9:30.
Second period
3, Minnesota, McPhee 14 (Sjodin, Hatcher) pp, 7:24.
Third period
No scoring.
Minnesota: 3 Power play: 11-2
Scorer G A Pts
--------------- --- --- ---
Courtnall 1 0 1
Dahlen 1 1 2
Hatcher 0 1 1
McPhee 1 0 1
Modano 0 1 1
Sjodin 0 1 1 | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/rec.sport.hockey/52560 | 10 | rec_sport_hockey_52560 | [('tampa', 'NN'), ('bay', 'NN'), ('--', ':'), ('philadelphia', 'NN'), ('--', ':'), ('first', 'JJ'), ('period', 'NN'), ('philadelphia', 'NN'), ('carkner', 'NN'), ('unassisted', 'VBD'), ('24', 'CD'), ('philadelphia', 'NN'), ('hawgood', 'NN'), ('recchi', 'NN'), ('lindros', 'VBD'), ('pp', 'JJ'), ('56', 'CD'), ('philadelphia', 'NN'), ('lindros', 'VBD'), ('37', 'CD'), ('recchi', 'NNS'), ('hawgood', 'VBD'), ('pp', 'JJ'), ('52', 'CD'), ('tampa', 'NN'), ('bay', 'NN'), ('beers', 'NNS'), ('12', 'CD'), ('zamuner', 'NN'), ('chambers', 'NNS'), ('pp', 'VBP'), ('15', 'CD'), ('06', 'CD'), ('second', 'JJ'), ('period', 'NN'), ('tampa', 'NN'), ('bay', 'NN'), ('andersson', 'NN'), ('13', 'CD'), ('hamrlik', 'NN'), ('lafreniere', 'RB'), ('pp', 'VBZ'), ('58', 'CD'), ('philadelphia', 'NN'), ('conroy', 'NN'), ('butsayev', 'NN'), ('faust', 'VBD'), ('12', 'CD'), ('10', 'CD'), ('philadelphia', 'NN'), ('beranek', 'NN'), ('13', 'CD'), ('galley', 'NN'), ('hawgood', 'NN'), ('pp', 'VBD'), ('18', 'CD'), ('53', 'CD'), ('third', 'JJ'), ('period', 'NN'), ('philadelphia', 'VBD'), ('recchi', 'JJ'), ('51', 'CD'), ('brind', 'IN'), ('amour', 'JJ'), ('galley', 'NN'), ('pp', 'VBD'), ('17', 'CD'), ('56', 'CD'), ('philadelphia', 'NN'), ('power', 'NN'), ('play', 'NN'), ('scorer', 'NN'), ('pts', 'NNS'), ('---------------', 'VBP'), ('---', 'JJ'), ('---', 'NNP'), ('---', 'NNP'), ('beranek', 'NN'), ('brind', 'IN'), ('amour', 'JJ'), ('butsayev', 'NN'), ('carkner', 'NN'), ('conroy', 'NN'), ('faust', 'NN'), ('galley', 'NN'), ('hawgood', 'NN'), ('lindros', 'NNS'), ('recchi', 'VBP'), ('tampa', 'JJ'), ('bay', 'NN'), ('power', 'NN'), ('play', 'NN'), ('scorer', 'NN'), ('pts', 'NNS'), ('---------------', 'VBP'), ('---', 'JJ'), ('---', 'NNP'), ('---', 'NNP'), ('andersson', 'NN'), ('beers', 'NNS'), ('chambers', 'NNS'), ('hamrlik', 'VBP'), ('lafreniere', 'JJ'), ('zamuner', 'NN'), ('-----------------------------------------', 'NN'), ('vancouver', 'NN'), ('--', ':'), ('detroit', 'NN'), ('--', ':'), ('first', 'JJ'), ('period', 'NN'), ('detroit', 'NN'), ('kozlov', 'NN'), ('fedorov', 'VBD'), ('chiasson', 'JJ'), ('20', 'CD'), ('detroit', 'NNS'), ('drake', 'VBP'), ('17', 'CD'), ('ciccarelli', 'NN'), ('coffey', 'NN'), ('pp', 'NN'), ('48', 'CD'), ('vancouver', 'NN'), ('ronning', 'VBG'), ('24', 'CD'), ('slegr', 'JJ'), ('bure', 'NN'), ('pp', 'VBD'), ('17', 'CD'), ('35', 'CD'), ('second', 'JJ'), ('period', 'NN'), ('detroit', 'VBZ'), ('sheppard', 'RB'), ('30', 'CD'), ('drake', 'NN'), ('hiller', 'NN'), ('54', 'CD'), ('detroit', 'JJ'), ('ciccarelli', 'NN'), ('38', 'CD'), ('chiasson', 'NN'), ('drake', 'NN'), ('pp', 'VBD'), ('12', 'CD'), ('13', 'CD'), ('third', 'JJ'), ('period', 'NN'), ('detroit', 'VBD'), ('ysebaert', 'JJ'), ('31', 'CD'), ('fedorov', 'JJ'), ('cheveldae', 'NN'), ('sh', 'VBD'), ('59', 'CD'), ('detroit', 'JJ'), ('power', 'NN'), ('play', 'NN'), ('special', 'JJ'), ('goals', 'NNS'), ('pp', 'VBP'), ('sh', 'JJ'), ('total', 'JJ'), ('scorer', 'NN'), ('pts', 'NNS'), ('---------------', 'VBP'), ('---', 'JJ'), ('---', 'NNP'), ('---', 'NNP'), ('cheveldae', 'NN'), ('chiasson', 'NN'), ('ciccarelli', 'NN'), ('coffey', 'NNS'), ('drake', 'VBP'), ('fedorov', 'JJ'), ('hiller', 'NN'), ('kozlov', 'NN'), ('sheppard', 'NN'), ('ysebaert', 'NN'), ('vancouver', 'NN'), ('power', 'NN'), ('play', 'NN'), ('scorer', 'NN'), ('pts', 'NNS'), ('---------------', 'VBP'), ('---', 'JJ'), ('---', 'NNP'), ('---', 'NNP'), ('bure', 'NN'), ('ronning', 'VBG'), ('slegr', 'JJ'), ('-----------------------------------------', 'NNP'), ('buffalo', 'NN'), ('--', ':'), ('boston', 'NN'), ('--', ':'), ('first', 'JJ'), ('period', 'NN'), ('buffalo', 'NN'), ('audette', 'NN'), ('12', 'CD'), ('corkum', 'NN'), ('wood', 'VBD'), ('16', 'CD'), ('40', 'CD'), ('boston', 'NN'), ('juneau', 'NN'), ('30', 'CD'), ('neely', 'RB'), ('oates', 'VBZ'), ('18', 'CD'), ('39', 'CD'), ('second', 'JJ'), ('period', 'NN'), ('buffalo', 'NN'), ('errey', 'JJ'), ('lafontaine', 'JJ'), ('khmylev', 'NN'), ('10', 'CD'), ('51', 'CD'), ('boston', 'NN'), ('douris', 'NN'), ('sweeney', 'NN'), ('bourque', 'NN'), ('17', 'CD'), ('57', 'CD'), ('third', 'JJ'), ('period', 'NN'), ('boston', 'VBD'), ('donato', '$'), ('12', 'CD'), ('unassisted', 'JJ'), ('17', 'CD'), ('42', 'CD'), ('boston', 'NN'), ('power', 'NN'), ('play', 'NN'), ('scorer', 'NN'), ('pts', 'NNS'), ('---------------', 'VBP'), ('---', 'JJ'), ('---', 'NNP'), ('---', 'NNP'), ('bourque', 'NN'), ('donato', 'NN'), ('douris', 'NN'), ('juneau', 'NN'), ('neely', 'RB'), ('oates', 'VBZ'), ('sweeney', 'NN'), ('buffalo', 'NN'), ('power', 'NN'), ('play', 'NN'), ('scorer', 'NN'), ('pts', 'NNS'), ('---------------', 'VBP'), ('---', 'JJ'), ('---', 'NNP'), ('---', 'NNP'), ('audette', 'NN'), ('corkum', 'NN'), ('errey', 'VBP'), ('khmylev', 'JJ'), ('lafontaine', 'NN'), ('wood', 'NN'), ('-----------------------------------------', 'NNP'), ('calgary', 'NN'), ('--', ':'), ('san', 'JJ'), ('jose', 'NN'), ('--', ':'), ('first', 'JJ'), ('period', 'NN'), ('calgary', 'JJ'), ('suter', 'NN'), ('21', 'CD'), ('reichel', 'NN'), ('macinnis', 'NN'), ('pp', 'VBD'), ('17', 'CD'), ('47', 'CD'), ('second', 'JJ'), ('period', 'NN'), ('san', 'VBD'), ('jose', 'JJ'), ('zmolek', 'NN'), ('odgers', 'NNS'), ('evason', 'VBP'), ('03', 'CD'), ('san', 'JJ'), ('jose', 'JJ'), ('kisio', 'NN'), ('24', 'CD'), ('garpenlov', 'NN'), ('gaudreau', 'NN'), ('pp', 'VBD'), ('23', 'CD'), ('calgary', 'JJ'), ('lindberg', 'NN'), ('macinnis', 'NN'), ('pp', 'VBD'), ('12', 'CD'), ('43', 'CD'), ('third', 'JJ'), ('period', 'NN'), ('no', 'DT'), ('scoring', 'VBG'), ('overtime', 'RB'), ('calgary', 'JJ'), ('fleury', 'NN'), ('31', 'CD'), ('otto', 'NN'), ('yawney', 'NN'), ('06', 'CD'), ('calgary', 'JJ'), ('power', 'NN'), ('play', 'NN'), ('scorer', 'NN'), ('pts', 'NNS'), ('---------------', 'VBP'), ('---', 'JJ'), ('---', 'NNP'), ('---', 'NNP'), ('fleury', 'NN'), ('lindberg', 'NN'), ('macinnis', 'NN'), ('otto', 'IN'), ('reichel', 'NN'), ('suter', 'NN'), ('yawney', 'NN'), ('san', 'NN'), ('jose', 'NN'), ('power', 'NN'), ('play', 'NN'), ('scorer', 'NN'), ('pts', 'NNS'), ('---------------', 'VBP'), ('---', 'JJ'), ('---', 'NNP'), ('---', 'NNP'), ('evason', 'NN'), ('garpenlov', 'NN'), ('gaudreau', 'NN'), ('kisio', 'NN'), ('odgers', 'NNS'), ('zmolek', 'VBP'), ('-----------------------------------------', 'JJ'), ('pittsburgh', 'NN'), ('--', ':'), ('quebec', 'NN'), ('--', ':'), ('first', 'JJ'), ('period', 'NN'), ('quebec', 'NN'), ('kamensky', 'VBD'), ('15', 'CD'), ('huffman', 'NN'), ('05', 'CD'), ('quebec', 'NN'), ('young', 'JJ'), ('27', 'CD'), ('lapointe', 'JJ'), ('huffman', 'NN'), ('16', 'CD'), ('52', 'CD'), ('second', 'JJ'), ('period', 'NN'), ('pittsburgh', 'VBD'), ('mullen', '$'), ('29', 'CD'), ('lemieux', 'NN'), ('murphy', 'NN'), ('54', 'CD'), ('pittsburgh', 'NN'), ('lemieux', 'VBD'), ('60', 'CD'), ('tocchet', 'NN'), ('samuelsson', 'NN'), ('07', 'CD'), ('pittsburgh', 'NN'), ('lemieux', 'VBD'), ('61', 'CD'), ('tocchet', 'NN'), ('stevens', 'NNS'), ('12', 'CD'), ('quebec', 'NN'), ('young', 'JJ'), ('28', 'CD'), ('sundin', 'JJ'), ('kovalenko', 'NN'), ('pp', 'VBD'), ('14', 'CD'), ('52', 'CD'), ('third', 'JJ'), ('period', 'NN'), ('pittsburgh', 'IN'), ('tippett', 'NN'), ('unassisted', 'VBD'), ('sh', 'JJ'), ('52', 'CD'), ('pittsburgh', 'NN'), ('tippett', 'NN'), ('mceachern', 'JJ'), ('mullen', 'VBN'), ('25', 'CD'), ('pittsburgh', 'NN'), ('power', 'NN'), ('play', 'VBP'), ('special', 'JJ'), ('goals', 'NNS'), ('sh', 'VBP'), ('total', 'JJ'), ('scorer', 'NN'), ('pts', 'NNS'), ('---------------', 'VBP'), ('---', 'JJ'), ('---', 'NNP'), ('---', 'NNP'), ('lemieux', 'VBZ'), ('mceachern', 'JJ'), ('mullen', 'VBN'), ('murphy', 'NN'), ('samuelsson', 'NN'), ('stevens', 'VBZ'), ('tippett', 'JJ'), ('tocchet', 'NN'), ('quebec', 'NN'), ('power', 'NN'), ('play', 'NN'), ('scorer', 'NN'), ('pts', 'NNS'), ('---------------', 'VBP'), ('---', 'JJ'), ('---', 'NNP'), ('---', 'NNP'), ('huffman', 'NN'), ('kamensky', 'NN'), ('kovalenko', 'NN'), ('lapointe', 'NN'), ('sundin', 'NN'), ('young', 'JJ'), ('-----------------------------------------', 'NNP'), ('new', 'JJ'), ('jersey', 'NN'), ('--', ':'), ('toronto', 'NN'), ('--', ':'), ('first', 'JJ'), ('period', 'NN'), ('no', 'DT'), ('scoring', 'VBG'), ('second', 'JJ'), ('period', 'NN'), ('no', 'DT'), ('scoring', 'JJ'), ('third', 'JJ'), ('period', 'NN'), ('toronto', 'IN'), ('gilmour', 'JJ'), ('32', 'CD'), ('andreychuk', 'JJ'), ('anderson', 'NN'), ('16', 'CD'), ('22', 'CD'), ('toronto', 'NN'), ('power', 'NN'), ('play', 'NN'), ('scorer', 'NN'), ('pts', 'NNS'), ('---------------', 'VBP'), ('---', 'JJ'), ('---', 'NNP'), ('---', 'NNP'), ('anderson', 'NN'), ('andreychuk', 'RB'), ('gilmour', 'JJ'), ('new', 'JJ'), ('jersey', 'NN'), ('power', 'NN'), ('play', 'NN'), ('no', 'DT'), ('scoring', 'VBG'), ('-----------------------------------------', 'NN'), ('ottawa', 'NN'), ('--', ':'), ('hartford', 'NN'), ('--', ':'), ('first', 'JJ'), ('period', 'NN'), ('ottawa', 'NN'), ('maciver', 'RB'), ('17', 'CD'), ('baker', 'NN'), ('luongo', 'VBD'), ('22', 'CD'), ('hartford', 'NN'), ('kron', 'NN'), ('11', 'CD'), ('nylander', 'NN'), ('gosselin', 'NN'), ('13', 'CD'), ('hartford', 'NN'), ('burt', 'NN'), ('cassels', 'NNS'), ('verbeek', 'VBP'), ('59', 'CD'), ('hartford', 'NN'), ('cunneyworth', 'NN'), ('yake', 'VB'), ('nylander', 'JJR'), ('59', 'CD'), ('hartford', 'NN'), ('sanderson', 'NN'), ('42', 'CD'), ('cassels', 'NNS'), ('houda', 'VBP'), ('11', 'CD'), ('11', 'CD'), ('hartford', 'NN'), ('verbeek', 'NN'), ('35', 'CD'), ('cassels', 'NNS'), ('zalapski', 'VBP'), ('pp', 'JJ'), ('15', 'CD'), ('50', 'CD'), ('second', 'JJ'), ('period', 'NN'), ('hartford', 'NN'), ('sanderson', 'NN'), ('43', 'CD'), ('cassels', 'NNS'), ('zalapski', 'VBP'), ('pp', 'JJ'), ('18', 'CD'), ('38', 'CD'), ('third', 'JJ'), ('period', 'NN'), ('hartford', 'NN'), ('kron', 'VBZ'), ('12', 'CD'), ('poulin', 'NN'), ('burt', 'NN'), ('57', 'CD'), ('ottawa', 'NN'), ('turgeon', 'NN'), ('23', 'CD'), ('lamb', 'NN'), ('57', 'CD'), ('10', 'CD'), ('ottawa', 'NN'), ('baker', 'NN'), ('17', 'CD'), ('luongo', 'NN'), ('maciver', 'NN'), ('pp', 'VBD'), ('16', 'CD'), ('17', 'CD'), ('hartford', 'NN'), ('power', 'NN'), ('play', 'NN'), ('scorer', 'NN'), ('pts', 'NNS'), ('---------------', 'VBP'), ('---', 'JJ'), ('---', 'NNP'), ('---', 'NNP'), ('burt', 'NN'), ('cassels', 'NNS'), ('cunneyworth', 'VBP'), ('gosselin', 'JJ'), ('houda', 'NN'), ('kron', 'NN'), ('nylander', 'NN'), ('poulin', 'NN'), ('sanderson', 'NN'), ('verbeek', 'JJ'), ('yake', 'NN'), ('zalapski', 'NN'), ('ottawa', 'NN'), ('power', 'NN'), ('play', 'NN'), ('scorer', 'NN'), ('pts', 'NNS'), ('---------------', 'VBP'), ('---', 'JJ'), ('---', 'NNP'), ('---', 'NNP'), ('baker', 'NN'), ('lamb', 'NN'), ('luongo', 'NN'), ('maciver', 'NN'), ('turgeon', 'NN'), ('-----------------------------------------', 'NNP'), ('winnipeg', 'NN'), ('--', ':'), ('edmonton', 'NN'), ('--', ':'), ('first', 'JJ'), ('period', 'NN'), ('winnipeg', 'NN'), ('tkachuk', 'VBD'), ('27', 'CD'), ('housley', 'NN'), ('zhamnov', 'NN'), ('pp', 'VBD'), ('14', 'CD'), ('38', 'CD'), ('edmonton', 'NN'), ('klima', 'VBD'), ('31', 'CD'), ('ciger', 'NN'), ('elik', 'VBD'), ('16', 'CD'), ('05', 'CD'), ('second', 'JJ'), ('period', 'NN'), ('winnipeg', 'VBD'), ('king', 'VBG'), ('unassisted', 'JJ'), ('54', 'CD'), ('winnipeg', 'NN'), ('zhamnov', 'NN'), ('21', 'CD'), ('selanne', 'NN'), ('10', 'CD'), ('25', 'CD'), ('winnipeg', 'NN'), ('domi', 'NN'), ('selanne', 'NN'), ('housley', 'VBD'), ('18', 'CD'), ('44', 'CD'), ('third', 'JJ'), ('period', 'NN'), ('edmonton', 'VBD'), ('manson', '$'), ('15', 'CD'), ('unassisted', 'JJ'), ('10', 'CD'), ('58', 'CD'), ('winnipeg', 'NN'), ('eagles', 'NNS'), ('numminen', 'VBP'), ('bautin', 'JJ'), ('pp', 'NN'), ('14', 'CD'), ('13', 'CD'), ('winnipeg', 'NN'), ('zhamnov', 'NN'), ('22', 'CD'), ('ulanov', 'JJ'), ('selanne', 'VBD'), ('15', 'CD'), ('27', 'CD'), ('edmonton', 'NN'), ('gelinas', 'NNS'), ('kravchuk', 'VBP'), ('ranford', 'NN'), ('16', 'CD'), ('48', 'CD'), ('10', 'CD'), ('edmonton', 'NN'), ('kravchuk', 'VBD'), ('10', 'CD'), ('buchberger', 'NN'), ('18', 'CD'), ('42', 'CD'), ('winnipeg', 'NN'), ('power', 'NN'), ('play', 'NN'), ('scorer', 'NN'), ('pts', 'NNS'), ('---------------', 'VBP'), ('---', 'JJ'), ('---', 'NNP'), ('---', 'NNP'), ('bautin', 'NN'), ('domi', 'NN'), ('eagles', 'VBZ'), ('housley', 'RB'), ('king', 'VBG'), ('numminen', 'JJ'), ('selanne', 'NN'), ('tkachuk', 'NN'), ('ulanov', 'JJ'), ('zhamnov', 'NNP'), ('edmonton', 'NN'), ('power', 'NN'), ('play', 'NN'), ('scorer', 'NN'), ('pts', 'NNS'), ('---------------', 'VBP'), ('---', 'JJ'), ('---', 'NNP'), ('---', 'NNP'), ('buchberger', 'NN'), ('ciger', 'NN'), ('elik', 'VBP'), ('gelinas', 'NNS'), ('klima', 'VB'), ('kravchuk', 'NNS'), ('manson', 'JJ'), ('ranford', 'NN'), ('-----------------------------------------', 'NNP'), ('chicago', 'NN'), ('--', ':'), ('st', 'JJ'), ('louis', 'NN'), ('--', ':'), ('first', 'JJ'), ('period', 'NN'), ('st', 'NN'), ('louis', 'VBD'), ('shanahan', 'JJ'), ('46', 'CD'), ('janney', 'NN'), ('hull', 'NN'), ('pp', 'NN'), ('09', 'CD'), ('second', 'JJ'), ('period', 'NN'), ('chicago', 'NN'), ('murphy', 'NN'), ('chelios', 'NNS'), ('roenick', 'VBP'), ('pp', 'NN'), ('50', 'CD'), ('st', 'NN'), ('louis', 'NN'), ('shanahan', 'VBD'), ('47', 'CD'), ('hedican', 'JJ'), ('janney', 'NN'), ('18', 'CD'), ('chicago', 'NN'), ('noonan', 'NN'), ('16', 'CD'), ('murphy', 'NN'), ('chelios', 'NNS'), ('pp', 'VBP'), ('24', 'CD'), ('st', 'NN'), ('louis', 'NN'), ('bozon', 'NN'), ('ps', 'VBD'), ('12', 'CD'), ('13', 'CD'), ('chicago', 'NNS'), ('roenick', 'VBD'), ('43', 'CD'), ('sutter', 'NN'), ('murphy', 'NN'), ('pp', 'VBD'), ('18', 'CD'), ('39', 'CD'), ('third', 'JJ'), ('period', 'NN'), ('no', 'DT'), ('scoring', 'VBG'), ('overtime', 'RB'), ('no', 'DT'), ('scoring', 'VBG'), ('st', 'RB'), ('louis', 'JJ'), ('power', 'NN'), ('play', 'NN'), ('special', 'JJ'), ('goals', 'NNS'), ('pp', 'VBP'), ('ps', 'JJ'), ('total', 'JJ'), ('scorer', 'NN'), ('pts', 'NNS'), ('---------------', 'VBP'), ('---', 'JJ'), ('---', 'NNP'), ('---', 'NNP'), ('bozon', 'NN'), ('chelios', 'NNS'), ('hedican', 'JJ'), ('hull', 'NN'), ('janney', 'NN'), ('murphy', 'NN'), ('shanahan', 'NN'), ('chicago', 'NN'), ('power', 'NN'), ('play', 'NN'), ('scorer', 'NN'), ('pts', 'NNS'), ('---------------', 'VBP'), ('---', 'JJ'), ('---', 'NNP'), ('---', 'NNP'), ('chelios', 'NNS'), ('murphy', 'NN'), ('noonan', 'RB'), ('roenick', 'JJ'), ('sutter', 'NN'), ('-----------------------------------------', 'NNP'), ('montreal', 'NN'), ('--', ':'), ('ny', 'JJ'), ('islanders', 'NNS'), ('--', ':'), ('first', 'JJ'), ('period', 'NN'), ('no', 'DT'), ('scoring', 'VBG'), ('second', 'JJ'), ('period', 'NN'), ('montreal', 'JJ'), ('brunet', 'NN'), ('10', 'CD'), ('carbonneau', 'NN'), ('daigneault', 'NN'), ('39', 'CD'), ('ny', 'JJ'), ('islanders', 'NNS'), ('turgeon', 'VBP'), ('51', 'CD'), ('thomas', 'NN'), ('kurvers', 'NNS'), ('pp', 'VBP'), ('14', 'CD'), ('ny', 'JJ'), ('islanders', 'NNS'), ('mullen', 'VBP'), ('16', 'CD'), ('unassisted', 'JJ'), ('15', 'CD'), ('13', 'CD'), ('third', 'JJ'), ('period', 'NN'), ('montreal', 'NN'), ('bellows', 'VBZ'), ('38', 'CD'), ('desjardins', 'NNS'), ('dipietro', 'JJ'), ('01', 'CD'), ('montreal', 'NN'), ('damphousse', 'NN'), ('38', 'CD'), ('desjardins', 'NNS'), ('bellows', 'VBZ'), ('pp', 'VBP'), ('10', 'CD'), ('11', 'CD'), ('montreal', 'NN'), ('power', 'NN'), ('play', 'NN'), ('scorer', 'NN'), ('pts', 'NNS'), ('---------------', 'VBP'), ('---', 'JJ'), ('---', 'NNP'), ('---', 'NNP'), ('bellows', 'VBZ'), ('brunet', 'NN'), ('carbonneau', 'NN'), ('daigneault', 'NN'), ('damphousse', 'NN'), ('desjardins', 'VBZ'), ('dipietro', 'JJ'), ('ny', 'NN'), ('islanders', 'NNS'), ('power', 'NN'), ('play', 'VBP'), ('scorer', 'NN'), ('pts', 'NNS'), ('---------------', 'VBP'), ('---', 'JJ'), ('---', 'NNP'), ('---', 'NNP'), ('kurvers', 'NNS'), ('mullen', 'VBP'), ('thomas', 'JJ'), ('turgeon', 'NN'), ('-----------------------------------------', 'NNP'), ('minnesota', 'NN'), ('--', ':'), ('los', 'JJ'), ('angeles', 'NNS'), ('--', ':'), ('first', 'JJ'), ('period', 'NN'), ('minnesota', 'NN'), ('dahlen', 'VBZ'), ('33', 'CD'), ('unassisted', 'JJ'), ('34', 'CD'), ('minnesota', 'NN'), ('courtnall', 'NN'), ('33', 'CD'), ('dahlen', 'NN'), ('modano', 'NN'), ('pp', 'VBD'), ('30', 'CD'), ('second', 'JJ'), ('period', 'NN'), ('minnesota', 'VBD'), ('mcphee', '$'), ('14', 'CD'), ('sjodin', 'NN'), ('hatcher', 'NN'), ('pp', 'NN'), ('24', 'CD'), ('third', 'JJ'), ('period', 'NN'), ('no', 'DT'), ('scoring', 'VBG'), ('minnesota', 'NN'), ('power', 'NN'), ('play', 'NN'), ('11', 'CD'), ('scorer', 'NN'), ('pts', 'NNS'), ('---------------', 'VBP'), ('---', 'JJ'), ('---', 'NNP'), ('---', 'NNP'), ('courtnall', 'NN'), ('dahlen', 'VBZ'), ('hatcher', 'PRP$'), ('mcphee', 'JJ'), ('modano', 'NN'), ('sjodin', 'NN')] | ['tampa', 'bay', 'philadelphia', 'first', 'period', 'philadelphia', 'carkner', 'unassisted', 'philadelphia', 'hawgood', 'recchi', 'lindros', 'pp', 'philadelphia', 'lindros', 'recchi', 'hawgood', 'pp', 'tampa', 'bay', 'beer', 'zamuner', 'chamber', 'pp', 'second', 'period', 'tampa', 'bay', 'andersson', 'hamrlik', 'lafreniere', 'pp', 'philadelphia', 'conroy', 'butsayev', 'faust', 'philadelphia', 'beranek', 'galley', 'hawgood', 'pp', 'third', 'period', 'philadelphia', 'recchi', 'brind', 'amour', 'galley', 'pp', 'philadelphia', 'power', 'play', 'scorer', 'pt', 'beranek', 'brind', 'amour', 'butsayev', 'carkner', 'conroy', 'faust', 'galley', 'hawgood', 'lindros', 'recchi', 'tampa', 'bay', 'power', 'play', 'scorer', 'pt', 'andersson', 'beer', 'chamber', 'hamrlik', 'lafreniere', 'zamuner', 'vancouver', 'detroit', 'first', 'period', 'detroit', 'kozlov', 'fedorov', 'chiasson', 'detroit', 'drake', 'ciccarelli', 'coffey', 'pp', 'vancouver', 'ronning', 'slegr', 'bure', 'pp', 'second', 'period', 'detroit', 'sheppard', 'drake', 'hiller', 'detroit', 'ciccarelli', 'chiasson', 'drake', 'pp', 'third', 'period', 'detroit', 'ysebaert', 'fedorov', 'cheveldae', 'sh', 'detroit', 'power', 'play', 'special', 'goal', 'pp', 'sh', 'total', 'scorer', 'pt', 'cheveldae', 'chiasson', 'ciccarelli', 'coffey', 'drake', 'fedorov', 'hiller', 'kozlov', 'sheppard', 'ysebaert', 'vancouver', 'power', 'play', 'scorer', 'pt', 'bure', 'ronning', 'slegr', 'buffalo', 'boston', 'first', 'period', 'buffalo', 'audette', 'corkum', 'wood', 'boston', 'juneau', 'neely', 'oates', 'second', 'period', 'buffalo', 'errey', 'lafontaine', 'khmylev', 'boston', 'douris', 'sweeney', 'bourque', 'third', 'period', 'boston', 'donato', 'unassisted', 'boston', 'power', 'play', 'scorer', 'pt', 'bourque', 'donato', 'douris', 'juneau', 'neely', 'oates', 'sweeney', 'buffalo', 'power', 'play', 'scorer', 'pt', 'audette', 'corkum', 'errey', 'khmylev', 'lafontaine', 'wood', 'calgary', 'san', 'jose', 'first', 'period', 'calgary', 'suter', 'reichel', 'macinnis', 'pp', 'second', 'period', 'san', 'jose', 'zmolek', 'odgers', 'evason', 'san', 'jose', 'kisio', 'garpenlov', 'gaudreau', 'pp', 'calgary', 'lindberg', 'macinnis', 'pp', 'third', 'period', 'score', 'overtime', 'calgary', 'fleury', 'otto', 'yawney', 'calgary', 'power', 'play', 'scorer', 'pt', 'fleury', 'lindberg', 'macinnis', 'otto', 'reichel', 'suter', 'yawney', 'san', 'jose', 'power', 'play', 'scorer', 'pt', 'evason', 'garpenlov', 'gaudreau', 'kisio', 'odgers', 'zmolek', 'pittsburgh', 'quebec', 'first', 'period', 'quebec', 'kamensky', 'huffman', 'quebec', 'young', 'lapointe', 'huffman', 'second', 'period', 'pittsburgh', 'mullen', 'lemieux', 'murphy', 'pittsburgh', 'lemieux', 'tocchet', 'samuelsson', 'pittsburgh', 'lemieux', 'tocchet', 'stevens', 'quebec', 'young', 'sundin', 'kovalenko', 'pp', 'third', 'period', 'pittsburgh', 'tippett', 'unassisted', 'sh', 'pittsburgh', 'tippett', 'mceachern', 'mullen', 'pittsburgh', 'power', 'play', 'special', 'goal', 'sh', 'total', 'scorer', 'pt', 'lemieux', 'mceachern', 'mullen', 'murphy', 'samuelsson', 'stevens', 'tippett', 'tocchet', 'quebec', 'power', 'play', 'scorer', 'pt', 'huffman', 'kamensky', 'kovalenko', 'lapointe', 'sundin', 'young', 'new', 'jersey', 'toronto', 'first', 'period', 'score', 'second', 'period', 'scoring', 'third', 'period', 'toronto', 'gilmour', 'andreychuk', 'anderson', 'toronto', 'power', 'play', 'scorer', 'pt', 'anderson', 'andreychuk', 'gilmour', 'new', 'jersey', 'power', 'play', 'score', 'ottawa', 'hartford', 'first', 'period', 'ottawa', 'maciver', 'baker', 'luongo', 'hartford', 'kron', 'nylander', 'gosselin', 'hartford', 'burt', 'cassels', 'verbeek', 'hartford', 'cunneyworth', 'yake', 'nylander', 'hartford', 'sanderson', 'cassels', 'houda', 'hartford', 'verbeek', 'cassels', 'zalapski', 'pp', 'second', 'period', 'hartford', 'sanderson', 'cassels', 'zalapski', 'pp', 'third', 'period', 'hartford', 'kron', 'poulin', 'burt', 'ottawa', 'turgeon', 'lamb', 'ottawa', 'baker', 'luongo', 'maciver', 'pp', 'hartford', 'power', 'play', 'scorer', 'pt', 'burt', 'cassels', 'cunneyworth', 'gosselin', 'houda', 'kron', 'nylander', 'poulin', 'sanderson', 'verbeek', 'yake', 'zalapski', 'ottawa', 'power', 'play', 'scorer', 'pt', 'baker', 'lamb', 'luongo', 'maciver', 'turgeon', 'winnipeg', 'edmonton', 'first', 'period', 'winnipeg', 'tkachuk', 'housley', 'zhamnov', 'pp', 'edmonton', 'klima', 'ciger', 'elik', 'second', 'period', 'winnipeg', 'king', 'unassisted', 'winnipeg', 'zhamnov', 'selanne', 'winnipeg', 'domi', 'selanne', 'housley', 'third', 'period', 'edmonton', 'manson', 'unassisted', 'winnipeg', 'eagle', 'numminen', 'bautin', 'pp', 'winnipeg', 'zhamnov', 'ulanov', 'selanne', 'edmonton', 'gelinas', 'kravchuk', 'ranford', 'edmonton', 'kravchuk', 'buchberger', 'winnipeg', 'power', 'play', 'scorer', 'pt', 'bautin', 'domi', 'eagle', 'housley', 'king', 'numminen', 'selanne', 'tkachuk', 'ulanov', 'zhamnov', 'edmonton', 'power', 'play', 'scorer', 'pt', 'buchberger', 'ciger', 'elik', 'gelinas', 'klima', 'kravchuk', 'manson', 'ranford', 'chicago', 'st', 'louis', 'first', 'period', 'st', 'louis', 'shanahan', 'janney', 'hull', 'pp', 'second', 'period', 'chicago', 'murphy', 'chelios', 'roenick', 'pp', 'st', 'louis', 'shanahan', 'hedican', 'janney', 'chicago', 'noonan', 'murphy', 'chelios', 'pp', 'st', 'louis', 'bozon', 'ps', 'chicago', 'roenick', 'sutter', 'murphy', 'pp', 'third', 'period', 'score', 'overtime', 'score', 'st', 'louis', 'power', 'play', 'special', 'goal', 'pp', 'ps', 'total', 'scorer', 'pt', 'bozon', 'chelios', 'hedican', 'hull', 'janney', 'murphy', 'shanahan', 'chicago', 'power', 'play', 'scorer', 'pt', 'chelios', 'murphy', 'noonan', 'roenick', 'sutter', 'montreal', 'ny', 'islander', 'first', 'period', 'score', 'second', 'period', 'montreal', 'brunet', 'carbonneau', 'daigneault', 'ny', 'islander', 'turgeon', 'thomas', 'kurvers', 'pp', 'ny', 'islander', 'mullen', 'unassisted', 'third', 'period', 'montreal', 'bellow', 'desjardins', 'dipietro', 'montreal', 'damphousse', 'desjardins', 'bellow', 'pp', 'montreal', 'power', 'play', 'scorer', 'pt', 'bellow', 'brunet', 'carbonneau', 'daigneault', 'damphousse', 'desjardins', 'dipietro', 'ny', 'islander', 'power', 'play', 'scorer', 'pt', 'kurvers', 'mullen', 'thomas', 'turgeon', 'minnesota', 'los', 'angeles', 'first', 'period', 'minnesota', 'dahlen', 'unassisted', 'minnesota', 'courtnall', 'dahlen', 'modano', 'pp', 'second', 'period', 'minnesota', 'mcphee', 'sjodin', 'hatcher', 'pp', 'third', 'period', 'score', 'minnesota', 'power', 'play', 'scorer', 'pt', 'courtnall', 'dahlen', 'hatcher', 'mcphee', 'modano', 'sjodin'] | ['tampa_bay', 'first_period', 'period_philadelphia', 'pp_philadelphia', 'lindros_recchi', 'tampa_bay', 'pp_second', 'second_period', 'tampa_bay', 'pp_philadelphia', 'pp_third', 'third_period', 'period_philadelphia', 'brind_amour', 'pp_philadelphia', 'power_play', 'play_scorer', 'scorer_pt', 'beranek_brind', 'brind_amour', 'lindros_recchi', 'tampa_bay', 'power_play', 'play_scorer', 'scorer_pt', 'first_period', 'period_detroit', 'ciccarelli_coffey', 'coffey_pp', 'pp_vancouver', 'vancouver_ronning', 'pp_second', 'second_period', 'period_detroit', 'pp_third', 'third_period', 'period_detroit', 'power_play', 'play_special', 'special_goal', 'goal_pp', 'pp_sh', 'sh_total', 'total_scorer', 'scorer_pt', 'ciccarelli_coffey', 'power_play', 'play_scorer', 'scorer_pt', 'buffalo_boston', 'first_period', 'neely_oates', 'second_period', 'third_period', 'period_boston', 'power_play', 'play_scorer', 'scorer_pt', 'neely_oates', 'power_play', 'play_scorer', 'scorer_pt', 'san_jose', 'first_period', 'period_calgary', 'pp_second', 'second_period', 'san_jose', 'san_jose', 'pp_third', 'third_period', 'period_score', 'calgary_power', 'power_play', 'play_scorer', 'scorer_pt', 'san_jose', 'power_play', 'play_scorer', 'scorer_pt', 'first_period', 'second_period', 'period_pittsburgh', 'pittsburgh_lemieux', 'pittsburgh_lemieux', 'pp_third', 'third_period', 'period_pittsburgh', 'power_play', 'play_special', 'special_goal', 'sh_total', 'total_scorer', 'scorer_pt', 'power_play', 'play_scorer', 'scorer_pt', 'new_jersey', 'first_period', 'period_score', 'score_second', 'second_period', 'period_scoring', 'scoring_third', 'third_period', 'power_play', 'play_scorer', 'scorer_pt', 'new_jersey', 'jersey_power', 'power_play', 'play_score', 'first_period', 'sanderson_cassels', 'pp_second', 'second_period', 'period_hartford', 'sanderson_cassels', 'pp_third', 'third_period', 'period_hartford', 'power_play', 'play_scorer', 'scorer_pt', 'power_play', 'play_scorer', 'scorer_pt', 'first_period', 'period_winnipeg', 'second_period', 'period_winnipeg', 'third_period', 'power_play', 'play_scorer', 'scorer_pt', 'power_play', 'play_scorer', 'scorer_pt', 'chicago_st', 'st_louis', 'first_period', 'period_st', 'st_louis', 'louis_shanahan', 'pp_second', 'second_period', 'period_chicago', 'murphy_chelios', 'pp_st', 'st_louis', 'louis_shanahan', 'murphy_chelios', 'chelios_pp', 'pp_st', 'st_louis', 'pp_third', 'third_period', 'period_score', 'st_louis', 'power_play', 'play_special', 'special_goal', 'goal_pp', 'total_scorer', 'scorer_pt', 'chicago_power', 'power_play', 'play_scorer', 'scorer_pt', 'ny_islander', 'first_period', 'period_score', 'score_second', 'second_period', 'ny_islander', 'islander_turgeon', 'pp_ny', 'ny_islander', 'third_period', 'power_play', 'play_scorer', 'scorer_pt', 'ny_islander', 'power_play', 'play_scorer', 'scorer_pt', 'thomas_turgeon', 'los_angeles', 'first_period', 'pp_second', 'second_period', 'pp_third', 'third_period', 'period_score', 'power_play', 'play_scorer', 'scorer_pt'] | rec_sport_hockey_52560 |@lemmatized tampa:4 bay:4 philadelphia:8 first:11 period:33 carkner:2 unassisted:7 hawgood:4 recchi:4 lindros:3 pp:28 beer:2 zamuner:2 chamber:2 second:11 andersson:2 hamrlik:2 lafreniere:2 conroy:2 butsayev:2 faust:2 beranek:2 galley:3 third:11 brind:2 amour:2 power:21 play:21 scorer:20 pt:20 vancouver:3 detroit:7 kozlov:2 fedorov:3 chiasson:3 drake:4 ciccarelli:3 coffey:2 ronning:2 slegr:2 bure:2 sheppard:2 hiller:2 ysebaert:2 cheveldae:2 sh:4 special:3 goal:3 total:3 buffalo:4 boston:5 audette:2 corkum:2 wood:2 juneau:2 neely:2 oates:2 errey:2 lafontaine:2 khmylev:2 douris:2 sweeney:2 bourque:2 donato:2 calgary:5 san:4 jose:4 suter:2 reichel:2 macinnis:3 zmolek:2 odgers:2 evason:2 kisio:2 garpenlov:2 gaudreau:2 lindberg:2 score:7 overtime:2 fleury:2 otto:2 yawney:2 pittsburgh:7 quebec:5 kamensky:2 huffman:3 young:3 lapointe:2 mullen:5 lemieux:4 murphy:7 tocchet:3 samuelsson:2 stevens:2 sundin:2 kovalenko:2 tippett:3 mceachern:2 new:2 jersey:2 toronto:3 scoring:1 gilmour:2 andreychuk:2 anderson:2 ottawa:5 hartford:9 maciver:3 baker:3 luongo:3 kron:3 nylander:3 gosselin:2 burt:3 cassels:5 verbeek:3 cunneyworth:2 yake:2 sanderson:3 houda:2 zalapski:3 poulin:2 turgeon:4 lamb:2 winnipeg:8 edmonton:6 tkachuk:2 housley:3 zhamnov:4 klima:2 ciger:2 elik:2 king:2 selanne:4 domi:2 manson:2 eagle:2 numminen:2 bautin:2 ulanov:2 gelinas:2 kravchuk:3 ranford:2 buchberger:2 chicago:5 st:5 louis:5 shanahan:3 janney:3 hull:2 chelios:4 roenick:3 hedican:2 noonan:2 bozon:2 ps:2 sutter:2 montreal:5 ny:4 islander:4 brunet:2 carbonneau:2 daigneault:2 thomas:2 kurvers:2 bellow:3 desjardins:3 dipietro:2 damphousse:2 minnesota:5 los:1 angeles:1 dahlen:3 courtnall:2 modano:2 mcphee:2 sjodin:2 hatcher:2 |@bigram tampa_bay:4 first_period:11 period_philadelphia:2 pp_philadelphia:3 lindros_recchi:2 pp_second:6 second_period:11 pp_third:7 third_period:11 brind_amour:2 power_play:21 play_scorer:17 scorer_pt:20 beranek_brind:1 period_detroit:3 ciccarelli_coffey:2 coffey_pp:1 pp_vancouver:1 vancouver_ronning:1 play_special:3 special_goal:3 goal_pp:2 pp_sh:1 sh_total:2 total_scorer:3 buffalo_boston:1 neely_oates:2 period_boston:1 san_jose:4 period_calgary:1 period_score:5 calgary_power:1 period_pittsburgh:2 pittsburgh_lemieux:2 new_jersey:2 score_second:2 period_scoring:1 scoring_third:1 jersey_power:1 play_score:1 sanderson_cassels:2 period_hartford:2 period_winnipeg:2 chicago_st:1 st_louis:5 period_st:1 louis_shanahan:2 period_chicago:1 murphy_chelios:2 pp_st:2 chelios_pp:1 chicago_power:1 ny_islander:4 islander_turgeon:1 pp_ny:1 thomas_turgeon:1 los_angeles:1 |
4,583 | Check out Image Pals v1.2 from U-Lead (until May, special $99 intro price,
310-523-9393). It has the basic image processing tools for all major formats,
does screen grabbing, and allows all your image files to be calalogged into
a thumbnail database. It's great!
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/comp.graphics/38409 | 1 | comp_graphics_38409 | [('check', 'VB'), ('out', 'RP'), ('image', 'NN'), ('pals', 'NNS'), ('v1', 'VBP'), ('from', 'IN'), ('lead', 'NN'), ('until', 'IN'), ('may', 'MD'), ('special', 'VB'), ('99', 'CD'), ('intro', 'JJ'), ('price', 'NN'), ('310', 'CD'), ('523', 'CD'), ('9393', 'CD'), (').', 'NN'), ('it', 'PRP'), ('has', 'VBZ'), ('the', 'DT'), ('basic', 'JJ'), ('image', 'NN'), ('processing', 'NN'), ('tools', 'NNS'), ('for', 'IN'), ('all', 'DT'), ('major', 'JJ'), ('formats', 'NNS'), ('does', 'VBZ'), ('screen', 'JJ'), ('grabbing', 'VBG'), ('and', 'CC'), ('allows', 'VBZ'), ('all', 'DT'), ('your', 'PRP$'), ('image', 'NN'), ('files', 'NNS'), ('to', 'TO'), ('be', 'VB'), ('calalogged', 'VBN'), ('into', 'IN'), ('thumbnail', 'JJ'), ('database', 'NN'), ('it', 'PRP'), ('great', 'JJ')] | ['check', 'image', 'pal', 'lead', 'may', 'special', 'intro', 'price', 'basic', 'image', 'processing', 'tool', 'major', 'format', 'screen', 'grab', 'allow', 'image', 'file', 'calalogged', 'thumbnail', 'database', 'great'] | ['image_processing', 'image_file'] | comp_graphics_38409 |@lemmatized check:1 image:3 pal:1 lead:1 may:1 special:1 intro:1 price:1 basic:1 processing:1 tool:1 major:1 format:1 screen:1 grab:1 allow:1 file:1 calalogged:1 thumbnail:1 database:1 great:1 |@bigram image_processing:1 image_file:1 |
4,584 |
This actually supports Bill's speculation - IF there is a backdoor in
RSAREF and IF PKP is supported secretly by the NSA, then it is more
than natural that they will welcome ANY public-key implementation that
uses RSAREF and will strongly oppose themselves against ANY
implementation that doesn't.
I personally cannot see how one could put a backdoor in a
long-precision modular arithmetic library that comes in source, but,
of course, the fact that -I- cannot see it means nothing...
Regards,
Vesselin | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/sci.crypt/14993 | 11 | sci_crypt_14993 | [('this', 'DT'), ('actually', 'RB'), ('supports', 'VBZ'), ('bill', 'NN'), ('speculation', 'NN'), ('if', 'IN'), ('there', 'EX'), ('is', 'VBZ'), ('backdoor', 'NN'), ('in', 'IN'), ('rsaref', 'NN'), ('and', 'CC'), ('if', 'IN'), ('pkp', 'NN'), ('is', 'VBZ'), ('supported', 'VBN'), ('secretly', 'RB'), ('by', 'IN'), ('the', 'DT'), ('nsa', 'NN'), ('then', 'RB'), ('it', 'PRP'), ('is', 'VBZ'), ('more', 'RBR'), ('than', 'IN'), ('natural', 'JJ'), ('that', 'IN'), ('they', 'PRP'), ('will', 'MD'), ('welcome', 'VB'), ('any', 'DT'), ('public', 'JJ'), ('key', 'JJ'), ('implementation', 'NN'), ('that', 'WDT'), ('uses', 'VBZ'), ('rsaref', 'NN'), ('and', 'CC'), ('will', 'MD'), ('strongly', 'RB'), ('oppose', 'VB'), ('themselves', 'PRP'), ('against', 'IN'), ('any', 'DT'), ('implementation', 'NN'), ('that', 'IN'), ('doesn', 'VBZ'), ('personally', 'RB'), ('cannot', 'JJ'), ('see', 'VB'), ('how', 'WRB'), ('one', 'CD'), ('could', 'MD'), ('put', 'VB'), ('backdoor', 'RP'), ('in', 'IN'), ('long', 'JJ'), ('precision', 'NN'), ('modular', 'JJ'), ('arithmetic', 'JJ'), ('library', 'NN'), ('that', 'WDT'), ('comes', 'VBZ'), ('in', 'IN'), ('source', 'NN'), ('but', 'CC'), ('of', 'IN'), ('course', 'NN'), ('the', 'DT'), ('fact', 'NN'), ('that', 'IN'), ('cannot', 'NN'), ('see', 'VB'), ('it', 'PRP'), ('means', 'VBZ'), ('nothing', 'NN'), ('...', ':'), ('regards', 'NNS'), ('vesselin', 'VBP')] | ['actually', 'support', 'bill', 'speculation', 'backdoor', 'rsaref', 'pkp', 'support', 'secretly', 'nsa', 'natural', 'welcome', 'public', 'key', 'implementation', 'use', 'rsaref', 'strongly', 'oppose', 'implementation', 'personally', 'cannot', 'see', 'one', 'could', 'put', 'backdoor', 'long', 'precision', 'modular', 'arithmetic', 'library', 'come', 'source', 'course', 'fact', 'cannot', 'see', 'mean', 'nothing', 'regard', 'vesselin'] | ['actually_support', 'public_key', 'cannot_see', 'see_one', 'one_could', 'could_put', 'come_source', 'cannot_see', 'see_mean', 'mean_nothing', 'regard_vesselin'] | sci_crypt_14993 |@lemmatized actually:1 support:2 bill:1 speculation:1 backdoor:2 rsaref:2 pkp:1 secretly:1 nsa:1 natural:1 welcome:1 public:1 key:1 implementation:2 use:1 strongly:1 oppose:1 personally:1 cannot:2 see:2 one:1 could:1 put:1 long:1 precision:1 modular:1 arithmetic:1 library:1 come:1 source:1 course:1 fact:1 mean:1 nothing:1 regard:1 vesselin:1 |@bigram actually_support:1 public_key:1 cannot_see:2 see_one:1 one_could:1 could_put:1 come_source:1 see_mean:1 mean_nothing:1 regard_vesselin:1 |
4,585 |
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
The "used to kill" is the heart of the misinformation. It's one
of those technically accurate phrasings that conveys the wrong impression.
What Mr. Quiqley is more than aware of, I'm sure, is that when people
read this they think violent arguments where one member of the family
grabs a gun and shoots another, thereby creating a tragic situation
which could easily have been avoided had the gun not been there, or
a tragic accident, especially involving a child.
Unfortunately, that's not the way things stack up. The majority
of that 43 "times" (37 I believe) are suicides. That is, someone
intentionally took a firearm and shot themselves intending to kill
themselves. And why it's popular to try and blame suicides on guns,
the evidence doesn't support this. Internal studies, as well as
comparative studies with other countries, indicate that cultural
factors far outweigh whether a person will kill themselves or not.
(Japan, for instance, has a slightly higher rate than the U.S. There
people jump off buildings.)
According to the National Crime Survey, 40% of violent crime
is commited by "non-strangers," which mistakenly has been generalized
regarding the King County study to mean, "Friends and family." That
is, Mr. Quigley, and others who quote this statistic, are banking on
the mental image that a "Friend, family member, or child," equates
to a loving relationship, and that it was cut short in a moment of
anger. Unfortunately, all too often husbands beat and kill wives,
children assault parents, or vice-versa. Most rapes are commited by
someone known to the victim, for instance. Essentially, that a gun
was used against a "friend" or family member doesn't mean they
weren't trying to hurt the other person. Crime is highest among
poor urban families, and those are also the areas most "at risk"
for family problems, especially violent ones. A son in a gang may
not be as loving toward his parents if they disapprove than a suburban
kid might.
Finally, it hinges on the fallacy that a dead intruder is the
only value of a self-defense firearm. Using the minimum figures I
worked out using the NCS I got about an 80:1 ratio between deadly
self-defenses (justifiable homicides) and with-gun self-defenses.
Between the FBI Uniform Crime report and the NCS there's an enormous
amount of data and anybody with the calculator can crunch the numbers.
As such it is incorrect to assume that a dead body is the only valid
means of determining the success of such a defense, since according
to the NCS (which has been considered by many to seriously under-report
defenses) there were far more successful with-gun defenses than intruders
killed.
Not it also confines itself to the home, where attack by a "friend
or family member" is far, far more likely, and excludes any defense
which occurs outside the home. (I believe a large number occur in
businesses.)
I have not seen the exact data for this, so I can't comment. I
will point out Canada's and Japan's suicide rate as indications that
culture far more than firearm availability affect suicide rates.
There was also a comparative study between Canada (for what
it's worth, considering the difficulty of comparing across cultural
lines) published in the New England Journal of Medicine (I can get the
exact cite if you need it) that concluded that restrictive firearm laws
would not significantly impact the over-all suicide rate.
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/talk.politics.guns/54730 | 16 | talk_politics_guns_54730 | [('^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^', 'IN'), ('the', 'DT'), ('used', 'VBN'), ('to', 'TO'), ('kill', 'VB'), ('is', 'VBZ'), ('the', 'DT'), ('heart', 'NN'), ('of', 'IN'), ('the', 'DT'), ('misinformation', 'NN'), ('it', 'PRP'), ('one', 'CD'), ('of', 'IN'), ('those', 'DT'), ('technically', 'JJ'), ('accurate', 'JJ'), ('phrasings', 'NNS'), ('that', 'WDT'), ('conveys', 'VBP'), ('the', 'DT'), ('wrong', 'JJ'), ('impression', 'NN'), ('what', 'WP'), ('mr', 'NN'), ('quiqley', 'NN'), ('is', 'VBZ'), ('more', 'JJR'), ('than', 'IN'), ('aware', 'NN'), ('of', 'IN'), ('sure', 'JJ'), ('is', 'VBZ'), ('that', 'IN'), ('when', 'WRB'), ('people', 'NNS'), ('read', 'VBP'), ('this', 'DT'), ('they', 'PRP'), ('think', 'VBP'), ('violent', 'JJ'), ('arguments', 'NNS'), ('where', 'WRB'), ('one', 'CD'), ('member', 'NN'), ('of', 'IN'), ('the', 'DT'), ('family', 'NN'), ('grabs', 'NN'), ('gun', 'NN'), ('and', 'CC'), ('shoots', 'VB'), ('another', 'DT'), ('thereby', 'NN'), ('creating', 'VBG'), ('tragic', 'JJ'), ('situation', 'NN'), ('which', 'WDT'), ('could', 'MD'), ('easily', 'RB'), ('have', 'VB'), ('been', 'VBN'), ('avoided', 'VBN'), ('had', 'VBD'), ('the', 'DT'), ('gun', 'NN'), ('not', 'RB'), ('been', 'VBN'), ('there', 'RB'), ('or', 'CC'), ('tragic', 'JJ'), ('accident', 'NN'), ('especially', 'RB'), ('involving', 'VBG'), ('child', 'NN'), ('unfortunately', 'RB'), ('that', 'IN'), ('not', 'RB'), ('the', 'DT'), ('way', 'NN'), ('things', 'NNS'), ('stack', 'VBP'), ('up', 'RP'), ('the', 'DT'), ('majority', 'NN'), ('of', 'IN'), ('that', 'DT'), ('43', 'CD'), ('times', 'NNS'), ('37', 'CD'), ('believe', 'NNS'), ('are', 'VBP'), ('suicides', 'NNS'), ('that', 'WDT'), ('is', 'VBZ'), ('someone', 'NN'), ('intentionally', 'RB'), ('took', 'VBD'), ('firearm', 'NN'), ('and', 'CC'), ('shot', 'NN'), ('themselves', 'PRP'), ('intending', 'VBG'), ('to', 'TO'), ('kill', 'VB'), ('themselves', 'PRP'), ('and', 'CC'), ('why', 'WRB'), ('it', 'PRP'), ('popular', 'JJ'), ('to', 'TO'), ('try', 'VB'), ('and', 'CC'), ('blame', 'VB'), ('suicides', 'NNS'), ('on', 'IN'), ('guns', 'NNS'), ('the', 'DT'), ('evidence', 'NN'), ('doesn', 'NN'), ('support', 'NN'), ('this', 'DT'), ('internal', 'JJ'), ('studies', 'NNS'), ('as', 'RB'), ('well', 'RB'), ('as', 'IN'), ('comparative', 'JJ'), ('studies', 'NNS'), ('with', 'IN'), ('other', 'JJ'), ('countries', 'NNS'), ('indicate', 'VBP'), ('that', 'IN'), ('cultural', 'JJ'), ('factors', 'NNS'), ('far', 'RB'), ('outweigh', 'VBP'), ('whether', 'IN'), ('person', 'NN'), ('will', 'MD'), ('kill', 'VB'), ('themselves', 'PRP'), ('or', 'CC'), ('not', 'RB'), ('japan', 'VB'), ('for', 'IN'), ('instance', 'NN'), ('has', 'VBZ'), ('slightly', 'RB'), ('higher', 'JJR'), ('rate', 'NN'), ('than', 'IN'), ('the', 'DT'), ('there', 'EX'), ('people', 'NNS'), ('jump', 'VBP'), ('off', 'IN'), ('buildings', 'NNS'), ('.)', 'VBP'), ('according', 'VBG'), ('to', 'TO'), ('the', 'DT'), ('national', 'JJ'), ('crime', 'NN'), ('survey', 'NN'), ('40', 'CD'), ('of', 'IN'), ('violent', 'NN'), ('crime', 'NN'), ('is', 'VBZ'), ('commited', 'VBN'), ('by', 'IN'), ('non', 'JJ'), ('strangers', 'NNS'), (',"', 'VBP'), ('which', 'WDT'), ('mistakenly', 'RB'), ('has', 'VBZ'), ('been', 'VBN'), ('generalized', 'VBN'), ('regarding', 'VBG'), ('the', 'DT'), ('king', 'NN'), ('county', 'NN'), ('study', 'NN'), ('to', 'TO'), ('mean', 'VB'), ('friends', 'NNS'), ('and', 'CC'), ('family', 'NN'), ('."', 'NN'), ('that', 'WDT'), ('is', 'VBZ'), ('mr', 'JJ'), ('quigley', 'NN'), ('and', 'CC'), ('others', 'NNS'), ('who', 'WP'), ('quote', 'VBP'), ('this', 'DT'), ('statistic', 'JJ'), ('are', 'VBP'), ('banking', 'VBG'), ('on', 'IN'), ('the', 'DT'), ('mental', 'JJ'), ('image', 'NN'), ('that', 'WDT'), ('friend', 'VBP'), ('family', 'NN'), ('member', 'NN'), ('or', 'CC'), ('child', 'NN'), (',"', 'NN'), ('equates', 'VBZ'), ('to', 'TO'), ('loving', 'VBG'), ('relationship', 'NN'), ('and', 'CC'), ('that', 'IN'), ('it', 'PRP'), ('was', 'VBD'), ('cut', 'VBN'), ('short', 'JJ'), ('in', 'IN'), ('moment', 'NN'), ('of', 'IN'), ('anger', 'NN'), ('unfortunately', 'RB'), ('all', 'DT'), ('too', 'RB'), ('often', 'RB'), ('husbands', 'VBZ'), ('beat', 'JJ'), ('and', 'CC'), ('kill', 'JJ'), ('wives', 'NNS'), ('children', 'NNS'), ('assault', 'VBP'), ('parents', 'NNS'), ('or', 'CC'), ('vice', 'NN'), ('versa', 'NNS'), ('most', 'RBS'), ('rapes', 'NNS'), ('are', 'VBP'), ('commited', 'VBN'), ('by', 'IN'), ('someone', 'NN'), ('known', 'VBN'), ('to', 'TO'), ('the', 'DT'), ('victim', 'NN'), ('for', 'IN'), ('instance', 'NN'), ('essentially', 'RB'), ('that', 'IN'), ('gun', 'NN'), ('was', 'VBD'), ('used', 'VBN'), ('against', 'IN'), ('friend', 'NN'), ('or', 'CC'), ('family', 'NN'), ('member', 'NN'), ('doesn', 'NN'), ('mean', 'VBP'), ('they', 'PRP'), ('weren', 'VBP'), ('trying', 'VBG'), ('to', 'TO'), ('hurt', 'VB'), ('the', 'DT'), ('other', 'JJ'), ('person', 'NN'), ('crime', 'NN'), ('is', 'VBZ'), ('highest', 'JJS'), ('among', 'IN'), ('poor', 'JJ'), ('urban', 'JJ'), ('families', 'NNS'), ('and', 'CC'), ('those', 'DT'), ('are', 'VBP'), ('also', 'RB'), ('the', 'DT'), ('areas', 'NNS'), ('most', 'RBS'), ('at', 'IN'), ('risk', 'NN'), ('for', 'IN'), ('family', 'NN'), ('problems', 'NNS'), ('especially', 'RB'), ('violent', 'JJ'), ('ones', 'NNS'), ('son', 'NN'), ('in', 'IN'), ('gang', 'NN'), ('may', 'MD'), ('not', 'RB'), ('be', 'VB'), ('as', 'IN'), ('loving', 'VBG'), ('toward', 'IN'), ('his', 'PRP$'), ('parents', 'NNS'), ('if', 'IN'), ('they', 'PRP'), ('disapprove', 'VBP'), ('than', 'IN'), ('suburban', 'JJ'), ('kid', 'NN'), ('might', 'MD'), ('finally', 'RB'), ('it', 'PRP'), ('hinges', 'VBZ'), ('on', 'IN'), ('the', 'DT'), ('fallacy', 'NN'), ('that', 'WDT'), ('dead', 'JJ'), ('intruder', 'NN'), ('is', 'VBZ'), ('the', 'DT'), ('only', 'JJ'), ('value', 'NN'), ('of', 'IN'), ('self', 'NN'), ('defense', 'NN'), ('firearm', 'NN'), ('using', 'VBG'), ('the', 'DT'), ('minimum', 'JJ'), ('figures', 'NNS'), ('worked', 'VBN'), ('out', 'RP'), ('using', 'VBG'), ('the', 'DT'), ('ncs', 'NN'), ('got', 'VBD'), ('about', 'IN'), ('an', 'DT'), ('80', 'CD'), ('ratio', 'NN'), ('between', 'IN'), ('deadly', 'RB'), ('self', 'JJ'), ('defenses', 'NNS'), ('justifiable', 'JJ'), ('homicides', 'NNS'), ('and', 'CC'), ('with', 'IN'), ('gun', 'NN'), ('self', 'NN'), ('defenses', 'VBZ'), ('between', 'IN'), ('the', 'DT'), ('fbi', 'JJ'), ('uniform', 'JJ'), ('crime', 'NN'), ('report', 'NN'), ('and', 'CC'), ('the', 'DT'), ('ncs', 'NN'), ('there', 'EX'), ('an', 'DT'), ('enormous', 'JJ'), ('amount', 'NN'), ('of', 'IN'), ('data', 'NNS'), ('and', 'CC'), ('anybody', 'NN'), ('with', 'IN'), ('the', 'DT'), ('calculator', 'NN'), ('can', 'MD'), ('crunch', 'VB'), ('the', 'DT'), ('numbers', 'NNS'), ('as', 'IN'), ('such', 'JJ'), ('it', 'PRP'), ('is', 'VBZ'), ('incorrect', 'JJ'), ('to', 'TO'), ('assume', 'VB'), ('that', 'IN'), ('dead', 'JJ'), ('body', 'NN'), ('is', 'VBZ'), ('the', 'DT'), ('only', 'JJ'), ('valid', 'JJ'), ('means', 'NNS'), ('of', 'IN'), ('determining', 'VBG'), ('the', 'DT'), ('success', 'NN'), ('of', 'IN'), ('such', 'JJ'), ('defense', 'NN'), ('since', 'IN'), ('according', 'VBG'), ('to', 'TO'), ('the', 'DT'), ('ncs', 'NN'), ('which', 'WDT'), ('has', 'VBZ'), ('been', 'VBN'), ('considered', 'VBN'), ('by', 'IN'), ('many', 'JJ'), ('to', 'TO'), ('seriously', 'RB'), ('under', 'IN'), ('report', 'NN'), ('defenses', 'NNS'), ('there', 'EX'), ('were', 'VBD'), ('far', 'RB'), ('more', 'RBR'), ('successful', 'JJ'), ('with', 'IN'), ('gun', 'NN'), ('defenses', 'NNS'), ('than', 'IN'), ('intruders', 'NNS'), ('killed', 'VBN'), ('not', 'RB'), ('it', 'PRP'), ('also', 'RB'), ('confines', 'VBZ'), ('itself', 'PRP'), ('to', 'TO'), ('the', 'DT'), ('home', 'NN'), ('where', 'WRB'), ('attack', 'NN'), ('by', 'IN'), ('friend', 'NN'), ('or', 'CC'), ('family', 'NN'), ('member', 'NN'), ('is', 'VBZ'), ('far', 'RB'), ('far', 'RB'), ('more', 'RBR'), ('likely', 'JJ'), ('and', 'CC'), ('excludes', 'VBZ'), ('any', 'DT'), ('defense', 'NN'), ('which', 'WDT'), ('occurs', 'VBZ'), ('outside', 'IN'), ('the', 'DT'), ('home', 'NN'), ('believe', 'VBP'), ('large', 'JJ'), ('number', 'NN'), ('occur', 'NN'), ('in', 'IN'), ('businesses', 'NNS'), ('.)', 'NNS'), ('have', 'VBP'), ('not', 'RB'), ('seen', 'VBN'), ('the', 'DT'), ('exact', 'JJ'), ('data', 'NN'), ('for', 'IN'), ('this', 'DT'), ('so', 'RB'), ('can', 'MD'), ('comment', 'VB'), ('will', 'MD'), ('point', 'VB'), ('out', 'RP'), ('canada', 'NN'), ('and', 'CC'), ('japan', 'JJ'), ('suicide', 'NN'), ('rate', 'NN'), ('as', 'IN'), ('indications', 'NNS'), ('that', 'IN'), ('culture', 'NN'), ('far', 'RB'), ('more', 'RBR'), ('than', 'IN'), ('firearm', 'JJ'), ('availability', 'NN'), ('affect', 'JJ'), ('suicide', 'NN'), ('rates', 'NNS'), ('there', 'EX'), ('was', 'VBD'), ('also', 'RB'), ('comparative', 'JJ'), ('study', 'NN'), ('between', 'IN'), ('canada', 'NN'), ('for', 'IN'), ('what', 'WP'), ('it', 'PRP'), ('worth', 'JJ'), ('considering', 'VBG'), ('the', 'DT'), ('difficulty', 'NN'), ('of', 'IN'), ('comparing', 'VBG'), ('across', 'IN'), ('cultural', 'JJ'), ('lines', 'NNS'), ('published', 'VBN'), ('in', 'IN'), ('the', 'DT'), ('new', 'JJ'), ('england', 'JJ'), ('journal', 'NN'), ('of', 'IN'), ('medicine', 'NN'), ('can', 'MD'), ('get', 'VB'), ('the', 'DT'), ('exact', 'JJ'), ('cite', 'NN'), ('if', 'IN'), ('you', 'PRP'), ('need', 'VBP'), ('it', 'PRP'), ('that', 'WDT'), ('concluded', 'VBD'), ('that', 'IN'), ('restrictive', 'JJ'), ('firearm', 'NN'), ('laws', 'NNS'), ('would', 'MD'), ('not', 'RB'), ('significantly', 'RB'), ('impact', 'VB'), ('the', 'DT'), ('over', 'IN'), ('all', 'DT'), ('suicide', 'JJ'), ('rate', 'NN')] | ['use', 'kill', 'heart', 'misinformation', 'one', 'technically', 'accurate', 'phrasing', 'convey', 'wrong', 'impression', 'mr', 'quiqley', 'aware', 'sure', 'people', 'read', 'think', 'violent', 'argument', 'one', 'member', 'family', 'grab', 'gun', 'shoot', 'another', 'thereby', 'create', 'tragic', 'situation', 'could', 'easily', 'avoid', 'gun', 'tragic', 'accident', 'especially', 'involve', 'child', 'unfortunately', 'way', 'thing', 'stack', 'majority', 'time', 'believe', 'suicide', 'someone', 'intentionally', 'take', 'firearm', 'shot', 'intend', 'kill', 'popular', 'try', 'blame', 'suicide', 'gun', 'evidence', 'support', 'internal', 'study', 'well', 'comparative', 'study', 'country', 'indicate', 'cultural', 'factor', 'far', 'outweigh', 'whether', 'person', 'kill', 'japan', 'instance', 'slightly', 'high', 'rate', 'people', 'jump', 'building', 'accord', 'national', 'crime', 'survey', 'violent', 'crime', 'commit', 'non', 'stranger', 'mistakenly', 'generalize', 'regard', 'king', 'county', 'study', 'mean', 'friend', 'family', 'mr', 'quigley', 'others', 'quote', 'statistic', 'bank', 'mental', 'image', 'friend', 'family', 'member', 'child', 'equate', 'love', 'relationship', 'cut', 'short', 'moment', 'anger', 'unfortunately', 'often', 'husband', 'beat', 'kill', 'wife', 'child', 'assault', 'parent', 'vice', 'versa', 'rape', 'commit', 'someone', 'know', 'victim', 'instance', 'essentially', 'gun', 'use', 'friend', 'family', 'member', 'mean', 'try', 'hurt', 'person', 'crime', 'high', 'among', 'poor', 'urban', 'family', 'also', 'area', 'risk', 'family', 'problem', 'especially', 'violent', 'one', 'son', 'gang', 'may', 'love', 'toward', 'parent', 'disapprove', 'suburban', 'kid', 'might', 'finally', 'hinge', 'fallacy', 'dead', 'intruder', 'value', 'self', 'defense', 'firearm', 'use', 'minimum', 'figure', 'work', 'use', 'nc', 'get', 'ratio', 'deadly', 'self', 'defense', 'justifiable', 'homicide', 'gun', 'self', 'defenses', 'fbi', 'uniform', 'crime', 'report', 'nc', 'enormous', 'amount', 'data', 'anybody', 'calculator', 'crunch', 'number', 'incorrect', 'assume', 'dead', 'body', 'valid', 'mean', 'determine', 'success', 'defense', 'since', 'accord', 'nc', 'consider', 'many', 'seriously', 'report', 'defense', 'far', 'successful', 'gun', 'defense', 'intruder', 'kill', 'also', 'confine', 'home', 'attack', 'friend', 'family', 'member', 'far', 'far', 'likely', 'exclude', 'defense', 'occur', 'outside', 'home', 'believe', 'large', 'number', 'occur', 'business', 'see', 'exact', 'data', 'comment', 'point', 'canada', 'japan', 'suicide', 'rate', 'indication', 'culture', 'far', 'firearm', 'availability', 'affect', 'suicide', 'rate', 'also', 'comparative', 'study', 'canada', 'worth', 'consider', 'difficulty', 'compare', 'across', 'cultural', 'line', 'publish', 'new', 'england', 'journal', 'medicine', 'get', 'exact', 'cite', 'need', 'conclude', 'restrictive', 'firearm', 'law', 'would', 'significantly', 'impact', 'suicide', 'rate'] | ['use_kill', 'sure_people', 'people_read', 'read_think', 'argument_one', 'one_member', 'member_family', 'could_easily', 'way_thing', 'time_believe', 'evidence_support', 'person_kill', 'slightly_high', 'high_rate', 'national_crime', 'crime_survey', 'violent_crime', 'crime_commit', 'king_county', 'friend_family', 'friend_family', 'family_member', 'wife_child', 'vice_versa', 'someone_know', 'gun_use', 'friend_family', 'family_member', 'high_among', 'problem_especially', 'one_son', 'self_defense', 'firearm_use', 'work_use', 'self_defense', 'gun_self', 'uniform_crime', 'crime_report', 'amount_data', 'dead_body', 'mean_determine', 'consider_many', 'gun_defense', 'friend_family', 'family_member', 'far_far', 'far_likely', 'large_number', 'suicide_rate', 'suicide_rate', 'new_england', 'england_journal', 'journal_medicine', 'law_would', 'suicide_rate'] | talk_politics_guns_54730 |@lemmatized use:4 kill:5 heart:1 misinformation:1 one:3 technically:1 accurate:1 phrasing:1 convey:1 wrong:1 impression:1 mr:2 quiqley:1 aware:1 sure:1 people:2 read:1 think:1 violent:3 argument:1 member:4 family:7 grab:1 gun:6 shoot:1 another:1 thereby:1 create:1 tragic:2 situation:1 could:1 easily:1 avoid:1 accident:1 especially:2 involve:1 child:3 unfortunately:2 way:1 thing:1 stack:1 majority:1 time:1 believe:2 suicide:5 someone:2 intentionally:1 take:1 firearm:4 shot:1 intend:1 popular:1 try:2 blame:1 evidence:1 support:1 internal:1 study:4 well:1 comparative:2 country:1 indicate:1 cultural:2 factor:1 far:5 outweigh:1 whether:1 person:2 japan:2 instance:2 slightly:1 high:2 rate:4 jump:1 building:1 accord:2 national:1 crime:4 survey:1 commit:2 non:1 stranger:1 mistakenly:1 generalize:1 regard:1 king:1 county:1 mean:3 friend:4 quigley:1 others:1 quote:1 statistic:1 bank:1 mental:1 image:1 equate:1 love:2 relationship:1 cut:1 short:1 moment:1 anger:1 often:1 husband:1 beat:1 wife:1 assault:1 parent:2 vice:1 versa:1 rape:1 know:1 victim:1 essentially:1 hurt:1 among:1 poor:1 urban:1 also:3 area:1 risk:1 problem:1 son:1 gang:1 may:1 toward:1 disapprove:1 suburban:1 kid:1 might:1 finally:1 hinge:1 fallacy:1 dead:2 intruder:2 value:1 self:3 defense:6 minimum:1 figure:1 work:1 nc:3 get:2 ratio:1 deadly:1 justifiable:1 homicide:1 defenses:1 fbi:1 uniform:1 report:2 enormous:1 amount:1 data:2 anybody:1 calculator:1 crunch:1 number:2 incorrect:1 assume:1 body:1 valid:1 determine:1 success:1 since:1 consider:2 many:1 seriously:1 successful:1 confine:1 home:2 attack:1 likely:1 exclude:1 occur:2 outside:1 large:1 business:1 see:1 exact:2 comment:1 point:1 canada:2 indication:1 culture:1 availability:1 affect:1 worth:1 difficulty:1 compare:1 across:1 line:1 publish:1 new:1 england:1 journal:1 medicine:1 cite:1 need:1 conclude:1 restrictive:1 law:1 would:1 significantly:1 impact:1 |@bigram use_kill:1 sure_people:1 people_read:1 read_think:1 argument_one:1 one_member:1 member_family:1 could_easily:1 way_thing:1 time_believe:1 evidence_support:1 person_kill:1 slightly_high:1 high_rate:1 national_crime:1 crime_survey:1 violent_crime:1 crime_commit:1 king_county:1 friend_family:4 family_member:3 wife_child:1 vice_versa:1 someone_know:1 gun_use:1 high_among:1 problem_especially:1 one_son:1 self_defense:2 firearm_use:1 work_use:1 gun_self:1 uniform_crime:1 crime_report:1 amount_data:1 dead_body:1 mean_determine:1 consider_many:1 gun_defense:1 far_far:1 far_likely:1 large_number:1 suicide_rate:3 new_england:1 england_journal:1 journal_medicine:1 law_would:1 |
4,586 | As I was created in the image of Gaea, therefore I must
be the pinnacle of creation, She which Creates, She which
Births, She which Continues.
Or, to cut all the religious crap, I'm a woman, thanks.
And it's sexism that started me on the road to atheism.
--
Maddi Hausmann [email protected]
Centigram Communications Corp San Jose California 408/428-3553 | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/alt.atheism/51158 | 0 | alt_atheism_51158 | [('as', 'IN'), ('was', 'VBD'), ('created', 'VBN'), ('in', 'IN'), ('the', 'DT'), ('image', 'NN'), ('of', 'IN'), ('gaea', 'NN'), ('therefore', 'NN'), ('must', 'MD'), ('be', 'VB'), ('the', 'DT'), ('pinnacle', 'NN'), ('of', 'IN'), ('creation', 'NN'), ('she', 'PRP'), ('which', 'WDT'), ('creates', 'VBZ'), ('she', 'PRP'), ('which', 'WDT'), ('births', 'VBD'), ('she', 'PRP'), ('which', 'WDT'), ('continues', 'VBZ'), ('or', 'CC'), ('to', 'TO'), ('cut', 'VB'), ('all', 'PDT'), ('the', 'DT'), ('religious', 'JJ'), ('crap', 'NN'), ('woman', 'NN'), ('thanks', 'NNS'), ('and', 'CC'), ('it', 'PRP'), ('sexism', 'VBD'), ('that', 'IN'), ('started', 'VBD'), ('me', 'PRP'), ('on', 'IN'), ('the', 'DT'), ('road', 'NN'), ('to', 'TO'), ('atheism', 'NN'), ('--', ':'), ('maddi', 'JJ'), ('hausmann', 'NN'), ('centigram', 'NN'), ('communications', 'NNS'), ('corp', 'VBP'), ('san', 'JJ'), ('jose', 'NN'), ('california', 'NN'), ('408', 'CD'), ('428', 'CD'), ('3553', 'CD')] | ['create', 'image', 'gaea', 'therefore', 'must', 'pinnacle', 'creation', 'create', 'birth', 'continue', 'cut', 'religious', 'crap', 'woman', 'thanks', 'sexism', 'start', 'road', 'atheism', 'maddi', 'hausmann', 'centigram', 'communication', 'corp', 'san', 'jose', 'california'] | ['create_image', 'therefore_must', 'san_jose', 'jose_california'] | alt_atheism_51158 |@lemmatized create:2 image:1 gaea:1 therefore:1 must:1 pinnacle:1 creation:1 birth:1 continue:1 cut:1 religious:1 crap:1 woman:1 thanks:1 sexism:1 start:1 road:1 atheism:1 maddi:1 hausmann:1 centigram:1 communication:1 corp:1 san:1 jose:1 california:1 |@bigram create_image:1 therefore_must:1 san_jose:1 jose_california:1 |
4,587 | I am selling my Global Village Teleport 2400 bps modem w/send fax. It
connects to the mac through the ADB port. The software for sending
faxes is included. I am asking $90. However, I will consider other
reasonable offers. Please E-Mail me.
Dave | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/comp.sys.mac.hardware/51649 | 4 | comp_sys_mac_hardware_51649 | [('am', 'VBP'), ('selling', 'VBG'), ('my', 'PRP$'), ('global', 'JJ'), ('village', 'NN'), ('teleport', 'NN'), ('2400', 'CD'), ('bps', 'NN'), ('modem', 'FW'), ('send', 'VBP'), ('fax', 'NN'), ('it', 'PRP'), ('connects', 'VBZ'), ('to', 'TO'), ('the', 'DT'), ('mac', 'NN'), ('through', 'IN'), ('the', 'DT'), ('adb', 'NN'), ('port', 'NN'), ('the', 'DT'), ('software', 'NN'), ('for', 'IN'), ('sending', 'VBG'), ('faxes', 'NNS'), ('is', 'VBZ'), ('included', 'VBN'), ('am', 'VBP'), ('asking', 'VBG'), ('90', 'CD'), ('however', 'RB'), ('will', 'MD'), ('consider', 'VB'), ('other', 'JJ'), ('reasonable', 'JJ'), ('offers', 'NNS'), ('please', 'JJ'), ('mail', 'NN'), ('me', 'PRP'), ('dave', 'VBP')] | ['sell', 'global', 'village', 'teleport', 'bps', 'modem', 'send', 'fax', 'connect', 'mac', 'adb', 'port', 'software', 'send', 'fax', 'include', 'ask', 'however', 'consider', 'reasonable', 'offer', 'please', 'mail', 'dave'] | ['global_village', 'send_fax', 'connect_mac', 'send_fax', 'consider_reasonable', 'reasonable_offer', 'offer_please', 'please_mail'] | comp_sys_mac_hardware_51649 |@lemmatized sell:1 global:1 village:1 teleport:1 bps:1 modem:1 send:2 fax:2 connect:1 mac:1 adb:1 port:1 software:1 include:1 ask:1 however:1 consider:1 reasonable:1 offer:1 please:1 mail:1 dave:1 |@bigram global_village:1 send_fax:2 connect_mac:1 consider_reasonable:1 reasonable_offer:1 offer_please:1 please_mail:1 |
4,588 | Thanks to Tarl Neustaedter of MA for kindly letting me know that my
reference in prior post to Orwell and "1984" should probably have been to
Huxley and "Brave New World."
Sorry, Al. | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/sci.med/58948 | 13 | sci_med_58948 | [('thanks', 'NNS'), ('to', 'TO'), ('tarl', 'VB'), ('neustaedter', 'NN'), ('of', 'IN'), ('ma', 'NN'), ('for', 'IN'), ('kindly', 'RB'), ('letting', 'VBG'), ('me', 'PRP'), ('know', 'VBP'), ('that', 'IN'), ('my', 'PRP$'), ('reference', 'NN'), ('in', 'IN'), ('prior', 'JJ'), ('post', 'NN'), ('to', 'TO'), ('orwell', 'VB'), ('and', 'CC'), ('1984', 'CD'), ('should', 'MD'), ('probably', 'RB'), ('have', 'VB'), ('been', 'VBN'), ('to', 'TO'), ('huxley', 'VB'), ('and', 'CC'), ('brave', 'VB'), ('new', 'JJ'), ('world', 'NN'), ('."', 'NN'), ('sorry', 'NN'), ('al', 'NN')] | ['thanks', 'tarl', 'neustaedter', 'kindly', 'let', 'know', 'reference', 'prior', 'post', 'orwell', 'probably', 'huxley', 'brave', 'new', 'world', 'sorry', 'al'] | ['let_know', 'know_reference', 'prior_post', 'new_world'] | sci_med_58948 |@lemmatized thanks:1 tarl:1 neustaedter:1 kindly:1 let:1 know:1 reference:1 prior:1 post:1 orwell:1 probably:1 huxley:1 brave:1 new:1 world:1 sorry:1 al:1 |@bigram let_know:1 know_reference:1 prior_post:1 new_world:1 |
4,589 | Sorry I missed you Raymond, I was just out in Dahlgren last month...
I'm the Virtual Reality market manager for Silicon Graphics, so perhaps I
can help a little.
Unfortunately, while SGI systems were used to create the special effects
for both Terminator 2 and Lawnmower Man, those are film-quality computer
graphics, rendered in software and written to film a frame at a time. Each
frame of computer animation for those films took hours to render on
high-end parallel processing computer systems. Thus, that level of graphics
would be difficult, if not impossible, to acheive in real time (30 frames
per second).
It depends upon how serious you are and how advanced your application is.
True immersive visualization (VR), requires the rendering of complex visual
databases at anywhere from 20 to 60 newly rendered frames per second. This
is a similar requirement to that of traditional flight simulators for pilot
training. If the frame rate is too low, the user notices the stepping of
the frames as they move their head rapidly around the scene, so the motion
of the graphics is not smooth and contiguous. Thus the graphics system
must be powerful enough to sustain high frame rates while rendering complex
data representations.
Additionally, the frame rate must be constant. If the system renders 15
frames per second at one point, then 60 frames per second the next (perhaps
due to the scene in the new viewing direction being simpler than what was
visible before), the user can get heavily distracted by the medium (the
graphics computer) rather than focusing on the data. To maintain a constant
frame rate, the system must be able to run in real-time. UNIX in general
does not support real-time operation, but Silicon Graphics has modified the
UNIX kernel for its multi-processor systems to be able to support real-time
operation, bypassing the usual UNIX process priority-management schemes.
Uniprocessor systems running UNIX cannot fundamentally support real-time
operation (not Sun SPARC10, not HP 700 Series systems, not IBM RS-6000, not
even SGI's uniprocessor systems like Indigo or Crimson). Only our
multiprocessor Onyx and Challenge systems support real-time operation due
to their Symmetric Multi-Processing (SMP) shared-memory architecture.
From a graphics perspective, rendering complex virtual environments
requires advanced rendering techniques like texture mapping and real-time
multi-sample anti-aliasing. Of all of the general purpose graphics systems
on the market today, only Crimson RealityEngine and Onyx RealityEngine2
systems fully support these capabilities. The anti-aliasing is particularly
important, as the crawling jagged edges of aliased polygons is an
unfortunate distraction when immersed in a virtual environment.
You can use the general purpose graphics libraries listed above to develop
VR applications, but that is starting at a pretty low level. There are
off-the- shelf software packages available to get you going much faster,
being targeted directly at the VR application developer. Some of the most
popular are (in no particular order):
- Division Inc. (Redwood City, CA) - dVS
- Sens8 Inc. (Sausalito, CA) - WorldToolKit
- Naval Postgraduate School (Monterey, CA) - NPSnet (FREE!)
- Gemini Technology Corp (Irvine, CA) - GVS Simation Series
- Paradigm Simulation Inc. (Dallas, TX) - VisionWorks, AudioWorks
- Silicon Graphics Inc. (Mountain View,CA) - IRIS Performer
There are some others, but not off the top of my head...
There are too many to list here, but here is a smattering:
- Fake Space Labs (Menlo Park,CA) - BOOM
- Virtual Technologies Inc. (Stanford, CA) - CyberGlove
- Digital Image Design (New York, NY) - The Cricket (3D input)
- Kaiser Electro Optics (Carlsbad, CA) - Sim Eye Helmet Displays
- Virtual Research (Sunnyvale, CA) - Flight Helmet display
- Virtual Reality Inc. (Pleasantville,NY) - Head Mtd Displays, s/w
- Software Systems (San Jose, CA) - 3D Modeling software
- etc., etc., etc.
Read some of the VR books on the market:
- Virtual Reality - Ken Pimental and Ken Texiera (sp?)
- Virtual Mirage
- Artificial Reality - Myron Kreuger
- etc.
Or check out the newsgroup sci.virtual_worlds
Feel free to contact me for more info.
Regards,
Josh
--
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/comp.graphics/38257 | 1 | comp_graphics_38257 | [('sorry', 'NN'), ('missed', 'VBD'), ('you', 'PRP'), ('raymond', 'NN'), ('was', 'VBD'), ('just', 'RB'), ('out', 'RP'), ('in', 'IN'), ('dahlgren', 'NNS'), ('last', 'JJ'), ('month', 'NN'), ('...', ':'), ('the', 'DT'), ('virtual', 'JJ'), ('reality', 'NN'), ('market', 'NN'), ('manager', 'NN'), ('for', 'IN'), ('silicon', 'NN'), ('graphics', 'NNS'), ('so', 'IN'), ('perhaps', 'RB'), ('can', 'MD'), ('help', 'VB'), ('little', 'VB'), ('unfortunately', 'RB'), ('while', 'IN'), ('sgi', 'JJ'), ('systems', 'NNS'), ('were', 'VBD'), ('used', 'VBN'), ('to', 'TO'), ('create', 'VB'), ('the', 'DT'), ('special', 'JJ'), ('effects', 'NNS'), ('for', 'IN'), ('both', 'DT'), ('terminator', 'NN'), ('and', 'CC'), ('lawnmower', 'JJR'), ('man', 'NN'), ('those', 'DT'), ('are', 'VBP'), ('film', 'NN'), ('quality', 'NN'), ('computer', 'NN'), ('graphics', 'NNS'), ('rendered', 'VBN'), ('in', 'IN'), ('software', 'NN'), ('and', 'CC'), ('written', 'VBN'), ('to', 'TO'), ('film', 'NN'), ('frame', 'NN'), ('at', 'IN'), ('time', 'NN'), ('each', 'DT'), ('frame', 'NN'), ('of', 'IN'), ('computer', 'NN'), ('animation', 'NN'), ('for', 'IN'), ('those', 'DT'), ('films', 'NNS'), ('took', 'VBD'), ('hours', 'NNS'), ('to', 'TO'), ('render', 'VB'), ('on', 'IN'), ('high', 'JJ'), ('end', 'NN'), ('parallel', 'NN'), ('processing', 'NN'), ('computer', 'NN'), ('systems', 'NNS'), ('thus', 'RB'), ('that', 'IN'), ('level', 'NN'), ('of', 'IN'), ('graphics', 'NNS'), ('would', 'MD'), ('be', 'VB'), ('difficult', 'JJ'), ('if', 'IN'), ('not', 'RB'), ('impossible', 'JJ'), ('to', 'TO'), ('acheive', 'VB'), ('in', 'IN'), ('real', 'JJ'), ('time', 'NN'), ('30', 'CD'), ('frames', 'NNS'), ('per', 'IN'), ('second', 'JJ'), (').', 'NN'), ('it', 'PRP'), ('depends', 'VBZ'), ('upon', 'IN'), ('how', 'WRB'), ('serious', 'JJ'), ('you', 'PRP'), ('are', 'VBP'), ('and', 'CC'), ('how', 'WRB'), ('advanced', 'JJ'), ('your', 'PRP$'), ('application', 'NN'), ('is', 'VBZ'), ('true', 'JJ'), ('immersive', 'JJ'), ('visualization', 'NN'), ('vr', 'NN'), ('),', 'NN'), ('requires', 'VBZ'), ('the', 'DT'), ('rendering', 'NN'), ('of', 'IN'), ('complex', 'JJ'), ('visual', 'JJ'), ('databases', 'NNS'), ('at', 'IN'), ('anywhere', 'RB'), ('from', 'IN'), ('20', 'CD'), ('to', 'TO'), ('60', 'CD'), ('newly', 'RB'), ('rendered', 'VBN'), ('frames', 'NNS'), ('per', 'IN'), ('second', 'NN'), ('this', 'DT'), ('is', 'VBZ'), ('similar', 'JJ'), ('requirement', 'NN'), ('to', 'TO'), ('that', 'DT'), ('of', 'IN'), ('traditional', 'JJ'), ('flight', 'NN'), ('simulators', 'NNS'), ('for', 'IN'), ('pilot', 'NN'), ('training', 'NN'), ('if', 'IN'), ('the', 'DT'), ('frame', 'NN'), ('rate', 'NN'), ('is', 'VBZ'), ('too', 'RB'), ('low', 'JJ'), ('the', 'DT'), ('user', 'NN'), ('notices', 'VBZ'), ('the', 'DT'), ('stepping', 'NN'), ('of', 'IN'), ('the', 'DT'), ('frames', 'NNS'), ('as', 'IN'), ('they', 'PRP'), ('move', 'VBP'), ('their', 'PRP$'), ('head', 'NN'), ('rapidly', 'RB'), ('around', 'IN'), ('the', 'DT'), ('scene', 'NN'), ('so', 'IN'), ('the', 'DT'), ('motion', 'NN'), ('of', 'IN'), ('the', 'DT'), ('graphics', 'NNS'), ('is', 'VBZ'), ('not', 'RB'), ('smooth', 'JJ'), ('and', 'CC'), ('contiguous', 'JJ'), ('thus', 'RB'), ('the', 'DT'), ('graphics', 'NNS'), ('system', 'NN'), ('must', 'MD'), ('be', 'VB'), ('powerful', 'JJ'), ('enough', 'RB'), ('to', 'TO'), ('sustain', 'VB'), ('high', 'JJ'), ('frame', 'NN'), ('rates', 'NNS'), ('while', 'IN'), ('rendering', 'VBG'), ('complex', 'JJ'), ('data', 'NNS'), ('representations', 'NNS'), ('additionally', 'RB'), ('the', 'DT'), ('frame', 'NN'), ('rate', 'NN'), ('must', 'MD'), ('be', 'VB'), ('constant', 'JJ'), ('if', 'IN'), ('the', 'DT'), ('system', 'NN'), ('renders', 'VBZ'), ('15', 'CD'), ('frames', 'NNS'), ('per', 'IN'), ('second', 'NN'), ('at', 'IN'), ('one', 'CD'), ('point', 'NN'), ('then', 'RB'), ('60', 'CD'), ('frames', 'NNS'), ('per', 'IN'), ('second', 'VBP'), ('the', 'DT'), ('next', 'JJ'), ('perhaps', 'RB'), ('due', 'JJ'), ('to', 'TO'), ('the', 'DT'), ('scene', 'NN'), ('in', 'IN'), ('the', 'DT'), ('new', 'JJ'), ('viewing', 'VBG'), ('direction', 'NN'), ('being', 'VBG'), ('simpler', 'JJR'), ('than', 'IN'), ('what', 'WP'), ('was', 'VBD'), ('visible', 'JJ'), ('before', 'IN'), ('),', 'PDT'), ('the', 'DT'), ('user', 'NN'), ('can', 'MD'), ('get', 'VB'), ('heavily', 'RB'), ('distracted', 'VBN'), ('by', 'IN'), ('the', 'DT'), ('medium', 'NN'), ('the', 'DT'), ('graphics', 'NNS'), ('computer', 'NN'), ('rather', 'RB'), ('than', 'IN'), ('focusing', 'VBG'), ('on', 'IN'), ('the', 'DT'), ('data', 'NNS'), ('to', 'TO'), ('maintain', 'VB'), ('constant', 'JJ'), ('frame', 'NN'), ('rate', 'NN'), ('the', 'DT'), ('system', 'NN'), ('must', 'MD'), ('be', 'VB'), ('able', 'JJ'), ('to', 'TO'), ('run', 'VB'), ('in', 'IN'), ('real', 'JJ'), ('time', 'NN'), ('unix', 'NN'), ('in', 'IN'), ('general', 'JJ'), ('does', 'VBZ'), ('not', 'RB'), ('support', 'VB'), ('real', 'JJ'), ('time', 'NN'), ('operation', 'NN'), ('but', 'CC'), ('silicon', 'NN'), ('graphics', 'NNS'), ('has', 'VBZ'), ('modified', 'VBN'), ('the', 'DT'), ('unix', 'JJ'), ('kernel', 'NN'), ('for', 'IN'), ('its', 'PRP$'), ('multi', 'NN'), ('processor', 'NN'), ('systems', 'NNS'), ('to', 'TO'), ('be', 'VB'), ('able', 'JJ'), ('to', 'TO'), ('support', 'VB'), ('real', 'JJ'), ('time', 'NN'), ('operation', 'NN'), ('bypassing', 'VBG'), ('the', 'DT'), ('usual', 'JJ'), ('unix', 'JJ'), ('process', 'NN'), ('priority', 'NN'), ('management', 'NN'), ('schemes', 'RB'), ('uniprocessor', 'JJ'), ('systems', 'NNS'), ('running', 'VBG'), ('unix', 'JJ'), ('cannot', 'NN'), ('fundamentally', 'RB'), ('support', 'VB'), ('real', 'JJ'), ('time', 'NN'), ('operation', 'NN'), ('not', 'RB'), ('sun', 'VB'), ('sparc10', 'NN'), ('not', 'RB'), ('hp', 'VB'), ('700', 'CD'), ('series', 'NN'), ('systems', 'NNS'), ('not', 'RB'), ('ibm', 'VB'), ('rs', 'NN'), ('6000', 'CD'), ('not', 'RB'), ('even', 'RB'), ('sgi', 'VB'), ('uniprocessor', 'JJ'), ('systems', 'NNS'), ('like', 'IN'), ('indigo', 'NN'), ('or', 'CC'), ('crimson', 'NN'), (').', 'IN'), ('only', 'RB'), ('our', 'PRP$'), ('multiprocessor', 'NN'), ('onyx', 'NN'), ('and', 'CC'), ('challenge', 'NN'), ('systems', 'NNS'), ('support', 'VB'), ('real', 'JJ'), ('time', 'NN'), ('operation', 'NN'), ('due', 'JJ'), ('to', 'TO'), ('their', 'PRP$'), ('symmetric', 'JJ'), ('multi', 'NN'), ('processing', 'NN'), ('smp', 'NN'), ('shared', 'VBD'), ('memory', 'NN'), ('architecture', 'NN'), ('from', 'IN'), ('graphics', 'NNS'), ('perspective', 'JJ'), ('rendering', 'VBG'), ('complex', 'JJ'), ('virtual', 'JJ'), ('environments', 'NNS'), ('requires', 'VBZ'), ('advanced', 'JJ'), ('rendering', 'VBG'), ('techniques', 'NNS'), ('like', 'IN'), ('texture', 'NN'), ('mapping', 'NN'), ('and', 'CC'), ('real', 'JJ'), ('time', 'NN'), ('multi', 'JJ'), ('sample', 'NN'), ('anti', 'IN'), ('aliasing', 'VBG'), ('of', 'IN'), ('all', 'DT'), ('of', 'IN'), ('the', 'DT'), ('general', 'JJ'), ('purpose', 'NN'), ('graphics', 'NNS'), ('systems', 'NNS'), ('on', 'IN'), ('the', 'DT'), ('market', 'NN'), ('today', 'NN'), ('only', 'RB'), ('crimson', 'JJ'), ('realityengine', 'NN'), ('and', 'CC'), ('onyx', 'JJ'), ('realityengine2', 'NN'), ('systems', 'NNS'), ('fully', 'RB'), ('support', 'VB'), ('these', 'DT'), ('capabilities', 'NNS'), ('the', 'DT'), ('anti', 'NN'), ('aliasing', 'NN'), ('is', 'VBZ'), ('particularly', 'RB'), ('important', 'JJ'), ('as', 'IN'), ('the', 'DT'), ('crawling', 'VBG'), ('jagged', 'VBD'), ('edges', 'NNS'), ('of', 'IN'), ('aliased', 'JJ'), ('polygons', 'NNS'), ('is', 'VBZ'), ('an', 'DT'), ('unfortunate', 'JJ'), ('distraction', 'NN'), ('when', 'WRB'), ('immersed', 'VBN'), ('in', 'IN'), ('virtual', 'JJ'), ('environment', 'NN'), ('you', 'PRP'), ('can', 'MD'), ('use', 'VB'), ('the', 'DT'), ('general', 'JJ'), ('purpose', 'NN'), ('graphics', 'NNS'), ('libraries', 'NNS'), ('listed', 'VBN'), ('above', 'IN'), ('to', 'TO'), ('develop', 'VB'), ('vr', 'JJ'), ('applications', 'NNS'), ('but', 'CC'), ('that', 'DT'), ('is', 'VBZ'), ('starting', 'VBG'), ('at', 'IN'), ('pretty', 'RB'), ('low', 'JJ'), ('level', 'NN'), ('there', 'EX'), ('are', 'VBP'), ('off', 'IN'), ('the', 'DT'), ('shelf', 'NN'), ('software', 'NN'), ('packages', 'VBZ'), ('available', 'JJ'), ('to', 'TO'), ('get', 'VB'), ('you', 'PRP'), ('going', 'VBG'), ('much', 'JJ'), ('faster', 'RBR'), ('being', 'VBG'), ('targeted', 'VBN'), ('directly', 'RB'), ('at', 'IN'), ('the', 'DT'), ('vr', 'JJ'), ('application', 'NN'), ('developer', 'IN'), ('some', 'DT'), ('of', 'IN'), ('the', 'DT'), ('most', 'RBS'), ('popular', 'JJ'), ('are', 'VBP'), ('in', 'IN'), ('no', 'DT'), ('particular', 'JJ'), ('order', 'NN'), ('):', 'NNP'), ('division', 'NN'), ('inc', 'NN'), ('redwood', 'NN'), ('city', 'NN'), ('ca', 'MD'), ('dvs', 'VB'), ('sens8', 'NN'), ('inc', 'NN'), ('sausalito', 'NN'), ('ca', 'MD'), ('worldtoolkit', 'VB'), ('naval', 'JJ'), ('postgraduate', 'JJ'), ('school', 'NN'), ('monterey', 'NN'), ('ca', 'MD'), ('npsnet', 'VB'), ('free', 'JJ'), ('!)', 'NNP'), ('gemini', 'NNP'), ('technology', 'NN'), ('corp', 'NN'), ('irvine', 'NN'), ('ca', 'MD'), ('gvs', 'VB'), ('simation', 'NN'), ('series', 'NN'), ('paradigm', 'NN'), ('simulation', 'NN'), ('inc', 'NN'), ('dallas', 'NN'), ('tx', 'NN'), ('visionworks', 'NNS'), ('audioworks', 'VBZ'), ('silicon', 'NN'), ('graphics', 'NNS'), ('inc', 'VBP'), ('mountain', 'NN'), ('view', 'NN'), ('ca', 'MD'), ('iris', 'VB'), ('performer', 'NN'), ('there', 'EX'), ('are', 'VBP'), ('some', 'DT'), ('others', 'NNS'), ('but', 'CC'), ('not', 'RB'), ('off', 'IN'), ('the', 'DT'), ('top', 'NN'), ('of', 'IN'), ('my', 'PRP$'), ('head', 'NN'), ('...', ':'), ('there', 'EX'), ('are', 'VBP'), ('too', 'RB'), ('many', 'JJ'), ('to', 'TO'), ('list', 'VB'), ('here', 'RB'), ('but', 'CC'), ('here', 'RB'), ('is', 'VBZ'), ('smattering', 'VBG'), ('fake', 'JJ'), ('space', 'NN'), ('labs', 'NN'), ('menlo', 'NN'), ('park', 'NN'), ('ca', 'MD'), ('boom', 'VB'), ('virtual', 'JJ'), ('technologies', 'NNS'), ('inc', 'VBP'), ('stanford', 'NN'), ('ca', 'MD'), ('cyberglove', 'VB'), ('digital', 'JJ'), ('image', 'NN'), ('design', 'NN'), ('new', 'JJ'), ('york', 'NN'), ('ny', 'VBP'), ('the', 'DT'), ('cricket', 'NN'), ('3d', 'CD'), ('input', 'NN'), ('kaiser', 'FW'), ('electro', 'NN'), ('optics', 'NNS'), ('carlsbad', 'VBP'), ('ca', 'MD'), ('sim', 'VB'), ('eye', 'NN'), ('helmet', 'NN'), ('displays', 'VBZ'), ('virtual', 'JJ'), ('research', 'NN'), ('sunnyvale', 'NN'), ('ca', 'MD'), ('flight', 'NN'), ('helmet', 'VB'), ('display', 'NN'), ('virtual', 'JJ'), ('reality', 'NN'), ('inc', 'NN'), ('pleasantville', 'NN'), ('ny', 'JJ'), ('head', 'NN'), ('mtd', 'NN'), ('displays', 'VBZ'), ('software', 'NN'), ('systems', 'NNS'), ('san', 'VBP'), ('jose', 'JJ'), ('ca', 'MD'), ('3d', 'CD'), ('modeling', 'VBG'), ('software', 'NN'), ('etc', 'FW'), ('.,', 'NNP'), ('etc', 'FW'), ('.,', 'NNP'), ('etc', 'FW'), ('read', 'VB'), ('some', 'DT'), ('of', 'IN'), ('the', 'DT'), ('vr', 'NN'), ('books', 'NNS'), ('on', 'IN'), ('the', 'DT'), ('market', 'NN'), ('virtual', 'JJ'), ('reality', 'NN'), ('ken', 'VBN'), ('pimental', 'JJ'), ('and', 'CC'), ('ken', 'JJ'), ('texiera', 'NN'), ('sp', 'NN'), ('?)', 'NNP'), ('virtual', 'JJ'), ('mirage', 'NN'), ('artificial', 'JJ'), ('reality', 'NN'), ('myron', 'NN'), ('kreuger', 'NN'), ('etc', 'NN'), ('or', 'CC'), ('check', 'VB'), ('out', 'RP'), ('the', 'DT'), ('newsgroup', 'NN'), ('sci', 'NN'), ('virtual_worlds', 'NNS'), ('feel', 'VBP'), ('free', 'JJ'), ('to', 'TO'), ('contact', 'VB'), ('me', 'PRP'), ('for', 'IN'), ('more', 'JJR'), ('info', 'JJ'), ('regards', 'NNS'), ('josh', 'NN'), ('--', ':')] | ['sorry', 'miss', 'raymond', 'dahlgren', 'last', 'month', 'virtual', 'reality', 'market', 'manager', 'silicon', 'graphic', 'perhaps', 'help', 'little', 'unfortunately', 'sgi', 'system', 'use', 'create', 'special', 'effect', 'terminator', 'lawnmower', 'man', 'film', 'quality', 'computer', 'graphic', 'render', 'software', 'write', 'film', 'frame', 'time', 'frame', 'computer', 'animation', 'film', 'take', 'hour', 'render', 'high', 'end', 'parallel', 'processing', 'computer', 'system', 'thus', 'level', 'graphic', 'would', 'difficult', 'impossible', 'acheive', 'real', 'time', 'frame', 'per', 'second', 'depend', 'upon', 'serious', 'advanced', 'application', 'true', 'immersive', 'visualization', 'vr', 'require', 'rendering', 'complex', 'visual', 'database', 'anywhere', 'newly', 'render', 'frame', 'per', 'second', 'similar', 'requirement', 'traditional', 'flight', 'simulator', 'pilot', 'training', 'frame', 'rate', 'low', 'user', 'notice', 'stepping', 'frame', 'move', 'head', 'rapidly', 'around', 'scene', 'motion', 'graphic', 'smooth', 'contiguous', 'thus', 'graphic', 'system', 'must', 'powerful', 'enough', 'sustain', 'high', 'frame', 'rate', 'render', 'complex', 'data', 'representation', 'additionally', 'frame', 'rate', 'must', 'constant', 'system', 'render', 'frame', 'per', 'second', 'one', 'point', 'frame', 'per', 'second', 'next', 'perhaps', 'due', 'scene', 'new', 'view', 'direction', 'simple', 'visible', 'user', 'get', 'heavily', 'distract', 'medium', 'graphic', 'computer', 'rather', 'focus', 'data', 'maintain', 'constant', 'frame', 'rate', 'system', 'must', 'able', 'run', 'real', 'time', 'unix', 'general', 'support', 'real', 'time', 'operation', 'silicon', 'graphic', 'modify', 'unix', 'kernel', 'multi', 'processor', 'system', 'able', 'support', 'real', 'time', 'operation', 'bypass', 'usual', 'unix', 'process', 'priority', 'management', 'schemes', 'uniprocessor', 'system', 'run', 'unix', 'cannot', 'fundamentally', 'support', 'real', 'time', 'operation', 'sun', 'hp', 'series', 'system', 'ibm', 'r', 'even', 'sgi', 'uniprocessor', 'system', 'like', 'indigo', 'crimson', 'multiprocessor', 'onyx', 'challenge', 'system', 'support', 'real', 'time', 'operation', 'due', 'symmetric', 'multi', 'processing', 'smp', 'share', 'memory', 'architecture', 'graphic', 'perspective', 'render', 'complex', 'virtual', 'environment', 'require', 'advanced', 'render', 'technique', 'like', 'texture', 'mapping', 'real', 'time', 'multi', 'sample', 'anti', 'aliasing', 'general', 'purpose', 'graphic', 'system', 'market', 'today', 'crimson', 'realityengine', 'onyx', 'system', 'fully', 'support', 'capability', 'anti', 'aliasing', 'particularly', 'important', 'crawl', 'jag', 'edge', 'aliased', 'polygon', 'unfortunate', 'distraction', 'immerse', 'virtual', 'environment', 'use', 'general', 'purpose', 'graphic', 'library', 'list', 'develop', 'vr', 'application', 'start', 'pretty', 'low', 'level', 'shelf', 'software', 'package', 'available', 'get', 'go', 'much', 'faster', 'target', 'directly', 'vr', 'application', 'developer', 'popular', 'particular', 'order', 'division', 'inc', 'redwood', 'city', 'ca', 'dvs', 'inc', 'sausalito', 'ca', 'worldtoolkit', 'naval', 'postgraduate', 'school', 'monterey', 'ca', 'npsnet', 'free', 'gemini', 'technology', 'corp', 'irvine', 'ca', 'gvs', 'simation', 'series', 'paradigm', 'simulation', 'inc', 'dallas', 'tx', 'visionworks', 'audioworks', 'silicon', 'graphic', 'inc', 'mountain', 'view', 'ca', 'iris', 'performer', 'others', 'top', 'head', 'many', 'list', 'smatter', 'fake', 'space', 'lab', 'menlo', 'park', 'ca', 'boom', 'virtual', 'technology', 'inc', 'stanford', 'ca', 'cyberglove', 'digital', 'image', 'design', 'new', 'york', 'ny', 'cricket', 'input', 'kaiser', 'electro', 'optic', 'carlsbad', 'ca', 'sim', 'eye', 'helmet', 'display', 'virtual', 'research', 'sunnyvale', 'ca', 'flight', 'helmet', 'display', 'virtual', 'reality', 'inc', 'pleasantville', 'ny', 'head', 'mtd', 'display', 'software', 'system', 'san', 'jose', 'ca', 'model', 'software', 'etc', 'etc', 'etc', 'read', 'vr', 'book', 'market', 'virtual', 'reality', 'ken', 'pimental', 'ken', 'texiera', 'sp', 'virtual', 'mirage', 'artificial', 'reality', 'myron', 'kreuger', 'etc', 'check', 'newsgroup', 'sci', 'feel', 'free', 'contact', 'info', 'regard', 'josh'] | ['last_month', 'virtual_reality', 'silicon_graphic', 'system_use', 'use_create', 'special_effect', 'computer_graphic', 'time_frame', 'take_hour', 'high_end', 'computer_system', 'would_difficult', 'difficult_impossible', 'real_time', 'time_frame', 'frame_per', 'per_second', 'depend_upon', 'frame_per', 'per_second', 'frame_rate', 'system_must', 'frame_rate', 'frame_rate', 'frame_per', 'per_second', 'second_one', 'one_point', 'frame_per', 'per_second', 'user_get', 'frame_rate', 'system_must', 'must_able', 'able_run', 'real_time', 'support_real', 'real_time', 'time_operation', 'silicon_graphic', 'able_support', 'support_real', 'real_time', 'time_operation', 'system_run', 'run_unix', 'support_real', 'real_time', 'time_operation', 'sun_hp', 'system_ibm', 'ibm_r', 'system_like', 'system_support', 'support_real', 'real_time', 'time_operation', 'share_memory', 'real_time', 'anti_aliasing', 'general_purpose', 'anti_aliasing', 'environment_use', 'use_general', 'general_purpose', 'graphic_library', 'application_start', 'low_level', 'software_package', 'package_available', 'get_go', 'go_much', 'much_faster', 'redwood_city', 'silicon_graphic', 'mountain_view', 'view_ca', 'top_head', 'many_list', 'menlo_park', 'park_ca', 'technology_inc', 'digital_image', 'new_york', 'york_ny', 'sunnyvale_ca', 'virtual_reality', 'software_system', 'san_jose', 'jose_ca', 'etc_etc', 'etc_etc', 'virtual_reality', 'feel_free', 'free_contact', 'contact_info', 'info_regard'] | comp_graphics_38257 |@lemmatized sorry:1 miss:1 raymond:1 dahlgren:1 last:1 month:1 virtual:8 reality:4 market:3 manager:1 silicon:3 graphic:11 perhaps:2 help:1 little:1 unfortunately:1 sgi:2 system:13 use:2 create:1 special:1 effect:1 terminator:1 lawnmower:1 man:1 film:3 quality:1 computer:4 render:7 software:4 write:1 frame:11 time:8 animation:1 take:1 hour:1 high:2 end:1 parallel:1 processing:2 thus:2 level:2 would:1 difficult:1 impossible:1 acheive:1 real:7 per:4 second:4 depend:1 upon:1 serious:1 advanced:2 application:3 true:1 immersive:1 visualization:1 vr:4 require:2 rendering:1 complex:3 visual:1 database:1 anywhere:1 newly:1 similar:1 requirement:1 traditional:1 flight:2 simulator:1 pilot:1 training:1 rate:4 low:2 user:2 notice:1 stepping:1 move:1 head:3 rapidly:1 around:1 scene:2 motion:1 smooth:1 contiguous:1 must:3 powerful:1 enough:1 sustain:1 data:2 representation:1 additionally:1 constant:2 one:1 point:1 next:1 due:2 new:2 view:2 direction:1 simple:1 visible:1 get:2 heavily:1 distract:1 medium:1 rather:1 focus:1 maintain:1 able:2 run:2 unix:4 general:3 support:5 operation:4 modify:1 kernel:1 multi:3 processor:1 bypass:1 usual:1 process:1 priority:1 management:1 schemes:1 uniprocessor:2 cannot:1 fundamentally:1 sun:1 hp:1 series:2 ibm:1 r:1 even:1 like:2 indigo:1 crimson:2 multiprocessor:1 onyx:2 challenge:1 symmetric:1 smp:1 share:1 memory:1 architecture:1 perspective:1 environment:2 technique:1 texture:1 mapping:1 sample:1 anti:2 aliasing:2 purpose:2 today:1 realityengine:1 fully:1 capability:1 particularly:1 important:1 crawl:1 jag:1 edge:1 aliased:1 polygon:1 unfortunate:1 distraction:1 immerse:1 library:1 list:2 develop:1 start:1 pretty:1 shelf:1 package:1 available:1 go:1 much:1 faster:1 target:1 directly:1 developer:1 popular:1 particular:1 order:1 division:1 inc:6 redwood:1 city:1 ca:10 dvs:1 sausalito:1 worldtoolkit:1 naval:1 postgraduate:1 school:1 monterey:1 npsnet:1 free:2 gemini:1 technology:2 corp:1 irvine:1 gvs:1 simation:1 paradigm:1 simulation:1 dallas:1 tx:1 visionworks:1 audioworks:1 mountain:1 iris:1 performer:1 others:1 top:1 many:1 smatter:1 fake:1 space:1 lab:1 menlo:1 park:1 boom:1 stanford:1 cyberglove:1 digital:1 image:1 design:1 york:1 ny:2 cricket:1 input:1 kaiser:1 electro:1 optic:1 carlsbad:1 sim:1 eye:1 helmet:2 display:3 research:1 sunnyvale:1 pleasantville:1 mtd:1 san:1 jose:1 model:1 etc:4 read:1 book:1 ken:2 pimental:1 texiera:1 sp:1 mirage:1 artificial:1 myron:1 kreuger:1 check:1 newsgroup:1 sci:1 feel:1 contact:1 info:1 regard:1 josh:1 |@bigram last_month:1 virtual_reality:3 silicon_graphic:3 system_use:1 use_create:1 special_effect:1 computer_graphic:1 time_frame:2 take_hour:1 high_end:1 computer_system:1 would_difficult:1 difficult_impossible:1 real_time:7 frame_per:4 per_second:4 depend_upon:1 frame_rate:4 system_must:2 second_one:1 one_point:1 user_get:1 must_able:1 able_run:1 support_real:4 time_operation:4 able_support:1 system_run:1 run_unix:1 sun_hp:1 system_ibm:1 ibm_r:1 system_like:1 system_support:1 share_memory:1 anti_aliasing:2 general_purpose:2 environment_use:1 use_general:1 graphic_library:1 application_start:1 low_level:1 software_package:1 package_available:1 get_go:1 go_much:1 much_faster:1 redwood_city:1 mountain_view:1 view_ca:1 top_head:1 many_list:1 menlo_park:1 park_ca:1 technology_inc:1 digital_image:1 new_york:1 york_ny:1 sunnyvale_ca:1 software_system:1 san_jose:1 jose_ca:1 etc_etc:2 feel_free:1 free_contact:1 contact_info:1 info_regard:1 |
4,590 |
Well Bill, There are 2MB soldered on the logic board and 2MB in the RAM
expansion slot giving you 4MB. The only thing you can do to upgrade to
the maximum Ram is to remove the 2MB expansion and install a 6MB expansion,
giving you a total of 8MB which is the max on a 170....You can try calling
TechWorks, or any other memory vendors out of MacWeek, MacWorld...etc.... | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/comp.sys.mac.hardware/51737 | 4 | comp_sys_mac_hardware_51737 | [('well', 'RB'), ('bill', 'NN'), ('there', 'EX'), ('are', 'VBP'), ('2mb', 'CD'), ('soldered', 'VBN'), ('on', 'IN'), ('the', 'DT'), ('logic', 'JJ'), ('board', 'NN'), ('and', 'CC'), ('2mb', 'CD'), ('in', 'IN'), ('the', 'DT'), ('ram', 'JJ'), ('expansion', 'NN'), ('slot', 'NN'), ('giving', 'VBG'), ('you', 'PRP'), ('4mb', 'CD'), ('the', 'DT'), ('only', 'JJ'), ('thing', 'NN'), ('you', 'PRP'), ('can', 'MD'), ('do', 'VB'), ('to', 'TO'), ('upgrade', 'VB'), ('to', 'TO'), ('the', 'DT'), ('maximum', 'JJ'), ('ram', 'NN'), ('is', 'VBZ'), ('to', 'TO'), ('remove', 'VB'), ('the', 'DT'), ('2mb', 'CD'), ('expansion', 'NN'), ('and', 'CC'), ('install', 'VB'), ('6mb', 'CD'), ('expansion', 'NN'), ('giving', 'VBG'), ('you', 'PRP'), ('total', 'JJ'), ('of', 'IN'), ('8mb', 'CD'), ('which', 'WDT'), ('is', 'VBZ'), ('the', 'DT'), ('max', 'NN'), ('on', 'IN'), ('170', 'CD'), ('....', 'IN'), ('you', 'PRP'), ('can', 'MD'), ('try', 'VB'), ('calling', 'VBG'), ('techworks', 'NNS'), ('or', 'CC'), ('any', 'DT'), ('other', 'JJ'), ('memory', 'NN'), ('vendors', 'NNS'), ('out', 'IN'), ('of', 'IN'), ('macweek', 'JJ'), ('macworld', 'NN'), ('...', ':'), ('etc', 'NN'), ('....', 'NN')] | ['well', 'bill', 'solder', 'logic', 'board', 'ram', 'expansion', 'slot', 'give', 'thing', 'upgrade', 'maximum', 'ram', 'remove', 'expansion', 'install', 'expansion', 'give', 'total', 'max', 'try', 'call', 'techworks', 'memory', 'vendor', 'macweek', 'macworld', 'etc'] | ['logic_board', 'expansion_slot', 'try_call'] | comp_sys_mac_hardware_51737 |@lemmatized well:1 bill:1 solder:1 logic:1 board:1 ram:2 expansion:3 slot:1 give:2 thing:1 upgrade:1 maximum:1 remove:1 install:1 total:1 max:1 try:1 call:1 techworks:1 memory:1 vendor:1 macweek:1 macworld:1 etc:1 |@bigram logic_board:1 expansion_slot:1 try_call:1 |
4,591 |
As usually, you are not reading. The proposal -does- say that it is a
"voluntary program". This doesn't make it more desirable, though...
"Secure"? How do you know? Because NSA is trying to make you believe it?
"Trust us." Yeah, right.
"Otherwise you are on your own"? How do you know that tomorrow they
will not outlaw encrypring devices that don't use "their" technology?
Because they are promising you? Gee, they are not doing even that -
read the proposal again.
Regards,
Vesselin | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/sci.crypt/15396 | 11 | sci_crypt_15396 | [('as', 'IN'), ('usually', 'RB'), ('you', 'PRP'), ('are', 'VBP'), ('not', 'RB'), ('reading', 'VBG'), ('the', 'DT'), ('proposal', 'NN'), ('does', 'VBZ'), ('say', 'VB'), ('that', 'IN'), ('it', 'PRP'), ('is', 'VBZ'), ('voluntary', 'JJ'), ('program', 'NN'), ('".', 'NN'), ('this', 'DT'), ('doesn', 'NN'), ('make', 'VBP'), ('it', 'PRP'), ('more', 'RBR'), ('desirable', 'JJ'), ('though', 'IN'), ('...', ':'), ('secure', 'NN'), ('"?', 'VB'), ('how', 'WRB'), ('do', 'VB'), ('you', 'PRP'), ('know', 'VB'), ('because', 'IN'), ('nsa', 'NN'), ('is', 'VBZ'), ('trying', 'VBG'), ('to', 'TO'), ('make', 'VB'), ('you', 'PRP'), ('believe', 'VBP'), ('it', 'PRP'), ('trust', 'VBZ'), ('us', 'PRP'), ('."', 'VBP'), ('yeah', 'RB'), ('right', 'JJ'), ('otherwise', 'RB'), ('you', 'PRP'), ('are', 'VBP'), ('on', 'IN'), ('your', 'PRP$'), ('own', 'JJ'), ('"?', 'NN'), ('how', 'WRB'), ('do', 'VB'), ('you', 'PRP'), ('know', 'VB'), ('that', 'DT'), ('tomorrow', 'NN'), ('they', 'PRP'), ('will', 'MD'), ('not', 'RB'), ('outlaw', 'VB'), ('encrypring', 'VBG'), ('devices', 'NNS'), ('that', 'IN'), ('don', 'NN'), ('use', 'VBP'), ('their', 'PRP$'), ('technology', 'NN'), ('because', 'IN'), ('they', 'PRP'), ('are', 'VBP'), ('promising', 'VBG'), ('you', 'PRP'), ('gee', 'VBP'), ('they', 'PRP'), ('are', 'VBP'), ('not', 'RB'), ('doing', 'VBG'), ('even', 'RB'), ('that', 'DT'), ('read', 'VBD'), ('the', 'DT'), ('proposal', 'NN'), ('again', 'RB'), ('regards', 'NNS'), ('vesselin', 'NN')] | ['usually', 'read', 'proposal', 'say', 'voluntary', 'program', 'make', 'desirable', 'though', 'secure', 'know', 'nsa', 'try', 'make', 'believe', 'trust', 'u', 'yeah', 'right', 'otherwise', 'know', 'tomorrow', 'outlaw', 'encrypring', 'device', 'use', 'technology', 'promise', 'gee', 'even', 'read', 'proposal', 'regard', 'vesselin'] | ['read_proposal', 'voluntary_program', 'program_make', 'try_make', 'make_believe', 'trust_u', 'yeah_right', 'device_use', 'use_technology', 'even_read', 'read_proposal', 'regard_vesselin'] | sci_crypt_15396 |@lemmatized usually:1 read:2 proposal:2 say:1 voluntary:1 program:1 make:2 desirable:1 though:1 secure:1 know:2 nsa:1 try:1 believe:1 trust:1 u:1 yeah:1 right:1 otherwise:1 tomorrow:1 outlaw:1 encrypring:1 device:1 use:1 technology:1 promise:1 gee:1 even:1 regard:1 vesselin:1 |@bigram read_proposal:2 voluntary_program:1 program_make:1 try_make:1 make_believe:1 trust_u:1 yeah_right:1 device_use:1 use_technology:1 even_read:1 regard_vesselin:1 |
4,592 | Hi folks,
what exactly is the maximum memory I can put in
a Quadra 700. My manual says 20MB (with 4 x 4MB SIMMs),
but MacWarehouse and the like advertise 16MB SIMMs to
give it a total of 68MB. Who's wrong? Has anybody got
68MB?
Thanks,
Chris | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/comp.sys.mac.hardware/50444 | 4 | comp_sys_mac_hardware_50444 | [('hi', 'NN'), ('folks', 'NNS'), ('what', 'WP'), ('exactly', 'RB'), ('is', 'VBZ'), ('the', 'DT'), ('maximum', 'JJ'), ('memory', 'NN'), ('can', 'MD'), ('put', 'VB'), ('in', 'IN'), ('quadra', 'NN'), ('700', 'CD'), ('my', 'PRP$'), ('manual', 'JJ'), ('says', 'VBZ'), ('20mb', 'CD'), ('with', 'IN'), ('4mb', 'CD'), ('simms', 'JJ'), ('),', 'NNS'), ('but', 'CC'), ('macwarehouse', 'NN'), ('and', 'CC'), ('the', 'DT'), ('like', 'JJ'), ('advertise', 'NN'), ('16mb', 'CD'), ('simms', 'NN'), ('to', 'TO'), ('give', 'VB'), ('it', 'PRP'), ('total', 'JJ'), ('of', 'IN'), ('68mb', 'CD'), ('who', 'WP'), ('wrong', 'WDT'), ('has', 'VBZ'), ('anybody', 'NN'), ('got', 'VBD'), ('68mb', 'CD'), ('thanks', 'NNS'), ('chris', 'NN')] | ['hi', 'folk', 'exactly', 'maximum', 'memory', 'put', 'quadra', 'manual', 'say', 'simms', 'macwarehouse', 'like', 'advertise', 'simms', 'give', 'total', 'wrong', 'anybody', 'get', 'thanks', 'chris'] | ['hi_folk', 'manual_say', 'anybody_get'] | comp_sys_mac_hardware_50444 |@lemmatized hi:1 folk:1 exactly:1 maximum:1 memory:1 put:1 quadra:1 manual:1 say:1 simms:2 macwarehouse:1 like:1 advertise:1 give:1 total:1 wrong:1 anybody:1 get:1 thanks:1 chris:1 |@bigram hi_folk:1 manual_say:1 anybody_get:1 |
4,593 | One pair of kg1's in Oak finish with black grilles.
Includes original packaging.
$200 + shipping Firm.
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/misc.forsale/76095 | 6 | misc_forsale_76095 | [('one', 'CD'), ('pair', 'NN'), ('of', 'IN'), ('kg1', 'NN'), ('in', 'IN'), ('oak', 'JJ'), ('finish', 'NN'), ('with', 'IN'), ('black', 'JJ'), ('grilles', 'NNS'), ('includes', 'VBZ'), ('original', 'JJ'), ('packaging', 'NN'), ('200', 'CD'), ('shipping', 'NN'), ('firm', 'NN')] | ['one', 'pair', 'oak', 'finish', 'black', 'grille', 'include', 'original', 'packaging', 'shipping', 'firm'] | ['include_original', 'original_packaging'] | misc_forsale_76095 |@lemmatized one:1 pair:1 oak:1 finish:1 black:1 grille:1 include:1 original:1 packaging:1 shipping:1 firm:1 |@bigram include_original:1 original_packaging:1 |
4,594 | FOR SALE
1 Sega Genesis (including all cables, manuals, boxes)
1 controller
9 games, including all manuals and boxes:
Sonic the Hedgehog
Road Rash
John Madden Football '92
N.H.L. Hockey
Sportstalk Baseball
Bulls vs. Lakers and the N.B.A. Playoffs
John Madden Football '93
N.H.L.P.A. Hockey
Super Monaco GP II
All of the above for $300 (or best offer); price includes UPS COD
shipping.
Send e-mail to [email protected] if interested.
-eric | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/misc.forsale/76280 | 6 | misc_forsale_76280 | [('for', 'IN'), ('sale', 'NN'), ('sega', 'JJ'), ('genesis', 'NN'), ('including', 'VBG'), ('all', 'DT'), ('cables', 'NNS'), ('manuals', 'NNS'), ('boxes', 'VBP'), ('controller', 'NN'), ('games', 'NNS'), ('including', 'VBG'), ('all', 'DT'), ('manuals', 'NNS'), ('and', 'CC'), ('boxes', 'NNS'), ('sonic', 'VBD'), ('the', 'DT'), ('hedgehog', 'NN'), ('road', 'NN'), ('rash', 'NN'), ('john', 'NN'), ('madden', 'NN'), ('football', 'NN'), ('92', 'CD'), ('hockey', 'NN'), ('sportstalk', 'NN'), ('baseball', 'NN'), ('bulls', 'VBZ'), ('vs', 'JJ'), ('lakers', 'NNS'), ('and', 'CC'), ('the', 'DT'), ('playoffs', 'NNS'), ('john', 'VBP'), ('madden', 'JJ'), ('football', 'NN'), ('93', 'CD'), ('hockey', 'NN'), ('super', 'NN'), ('monaco', 'NN'), ('gp', 'NN'), ('ii', 'VBP'), ('all', 'DT'), ('of', 'IN'), ('the', 'DT'), ('above', 'NN'), ('for', 'IN'), ('300', 'CD'), ('or', 'CC'), ('best', 'JJS'), ('offer', 'NN'), (');', 'JJ'), ('price', 'NN'), ('includes', 'VBZ'), ('ups', 'JJ'), ('cod', 'NN'), ('shipping', 'VBG'), ('send', 'JJ'), ('mail', 'NN'), ('to', 'TO'), ('if', 'IN'), ('interested', 'JJ'), ('eric', 'NN')] | ['sale', 'sega', 'genesis', 'include', 'cable', 'manual', 'box', 'controller', 'game', 'include', 'manual', 'box', 'sonic', 'hedgehog', 'road', 'rash', 'john', 'madden', 'football', 'hockey', 'sportstalk', 'baseball', 'bull', 'vs', 'lakers', 'playoff', 'john', 'madden', 'football', 'hockey', 'super', 'monaco', 'gp', 'ii', 'best', 'offer', 'price', 'include', 'ups', 'cod', 'ship', 'send', 'mail', 'interested', 'eric'] | ['sega_genesis', 'game_include', 'include_manual', 'best_offer', 'price_include', 'ups_cod', 'send_mail', 'mail_interested'] | misc_forsale_76280 |@lemmatized sale:1 sega:1 genesis:1 include:3 cable:1 manual:2 box:2 controller:1 game:1 sonic:1 hedgehog:1 road:1 rash:1 john:2 madden:2 football:2 hockey:2 sportstalk:1 baseball:1 bull:1 vs:1 lakers:1 playoff:1 super:1 monaco:1 gp:1 ii:1 best:1 offer:1 price:1 ups:1 cod:1 ship:1 send:1 mail:1 interested:1 eric:1 |@bigram sega_genesis:1 game_include:1 include_manual:1 best_offer:1 price_include:1 ups_cod:1 send_mail:1 mail_interested:1 |
4,595 | Does anyone know how to size cold gas roll control thruster tanks
for sounding rockets? | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/sci.space/60801 | 14 | sci_space_60801 | [('does', 'VBZ'), ('anyone', 'NN'), ('know', 'VB'), ('how', 'WRB'), ('to', 'TO'), ('size', 'NN'), ('cold', 'NN'), ('gas', 'NN'), ('roll', 'NN'), ('control', 'NN'), ('thruster', 'NN'), ('tanks', 'NNS'), ('for', 'IN'), ('sounding', 'VBG'), ('rockets', 'NNS')] | ['anyone', 'know', 'size', 'cold', 'gas', 'roll', 'control', 'thruster', 'tank', 'sound', 'rocket'] | ['anyone_know', 'cold_gas', 'sound_rocket'] | sci_space_60801 |@lemmatized anyone:1 know:1 size:1 cold:1 gas:1 roll:1 control:1 thruster:1 tank:1 sound:1 rocket:1 |@bigram anyone_know:1 cold_gas:1 sound_rocket:1 |
4,596 |
Hey! Glad to have some serious and constructive contributors in this
newsgroup. I agree 100% on the statement above, you might argue with
Bobby for eons, and he still does not get it, so the best thing is
to spare your mental resources to discuss more interesting issues.
Cheers,
Kent | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/alt.atheism/53097 | 0 | alt_atheism_53097 | [('hey', 'NN'), ('glad', 'NN'), ('to', 'TO'), ('have', 'VB'), ('some', 'DT'), ('serious', 'JJ'), ('and', 'CC'), ('constructive', 'JJ'), ('contributors', 'NNS'), ('in', 'IN'), ('this', 'DT'), ('newsgroup', 'JJ'), ('agree', 'VBP'), ('100', 'CD'), ('on', 'IN'), ('the', 'DT'), ('statement', 'NN'), ('above', 'IN'), ('you', 'PRP'), ('might', 'MD'), ('argue', 'VB'), ('with', 'IN'), ('bobby', 'NN'), ('for', 'IN'), ('eons', 'NNS'), ('and', 'CC'), ('he', 'PRP'), ('still', 'RB'), ('does', 'VBZ'), ('not', 'RB'), ('get', 'VB'), ('it', 'PRP'), ('so', 'RB'), ('the', 'DT'), ('best', 'JJS'), ('thing', 'NN'), ('is', 'VBZ'), ('to', 'TO'), ('spare', 'VB'), ('your', 'PRP$'), ('mental', 'JJ'), ('resources', 'NNS'), ('to', 'TO'), ('discuss', 'VB'), ('more', 'JJR'), ('interesting', 'JJ'), ('issues', 'NNS'), ('cheers', 'NNS'), ('kent', 'VBD')] | ['hey', 'glad', 'serious', 'constructive', 'contributor', 'newsgroup', 'agree', 'statement', 'might', 'argue', 'bobby', 'eon', 'still', 'get', 'best', 'thing', 'spare', 'mental', 'resource', 'discuss', 'interesting', 'issue', 'cheer', 'kent'] | ['might_argue', 'still_get', 'get_best', 'best_thing', 'cheer_kent'] | alt_atheism_53097 |@lemmatized hey:1 glad:1 serious:1 constructive:1 contributor:1 newsgroup:1 agree:1 statement:1 might:1 argue:1 bobby:1 eon:1 still:1 get:1 best:1 thing:1 spare:1 mental:1 resource:1 discuss:1 interesting:1 issue:1 cheer:1 kent:1 |@bigram might_argue:1 still_get:1 get_best:1 best_thing:1 cheer_kent:1 |
4,597 |
No wonder bikers have such a horrid reputation.
Go find a HUMAN!
I agree completely. Unfortunately, the majority
of my feelings, before I can even start to think
rationally abhout the dog that is trying to kill
me, are fear.
When there's been a moment to set up, like you
said "a bit down the road" or whatever, I've
never had a problem with dogs.
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/rec.motorcycles/104383 | 8 | rec_motorcycles_104383 | [('no', 'DT'), ('wonder', 'NN'), ('bikers', 'NNS'), ('have', 'VBP'), ('such', 'JJ'), ('horrid', 'JJ'), ('reputation', 'NN'), ('go', 'VBP'), ('find', 'VB'), ('human', 'JJ'), ('agree', 'VB'), ('completely', 'RB'), ('unfortunately', 'RB'), ('the', 'DT'), ('majority', 'NN'), ('of', 'IN'), ('my', 'PRP$'), ('feelings', 'NNS'), ('before', 'IN'), ('can', 'MD'), ('even', 'RB'), ('start', 'VB'), ('to', 'TO'), ('think', 'VB'), ('rationally', 'RB'), ('abhout', 'IN'), ('the', 'DT'), ('dog', 'NN'), ('that', 'WDT'), ('is', 'VBZ'), ('trying', 'VBG'), ('to', 'TO'), ('kill', 'VB'), ('me', 'PRP'), ('are', 'VBP'), ('fear', 'JJ'), ('when', 'WRB'), ('there', 'EX'), ('been', 'VBN'), ('moment', 'NN'), ('to', 'TO'), ('set', 'VB'), ('up', 'RP'), ('like', 'IN'), ('you', 'PRP'), ('said', 'VBD'), ('bit', 'RB'), ('down', 'RP'), ('the', 'DT'), ('road', 'NN'), ('or', 'CC'), ('whatever', 'WDT'), ('ve', 'JJ'), ('never', 'RB'), ('had', 'VBD'), ('problem', 'NN'), ('with', 'IN'), ('dogs', 'NNS')] | ['wonder', 'bikers', 'horrid', 'reputation', 'go', 'find', 'human', 'agree', 'completely', 'unfortunately', 'majority', 'feeling', 'even', 'start', 'think', 'rationally', 'abhout', 'dog', 'try', 'kill', 'fear', 'moment', 'set', 'like', 'say', 'bit', 'road', 'whatever', 'never', 'problem', 'dog'] | ['go_find', 'agree_completely', 'even_start', 'start_think', 'try_kill', 'like_say', 'say_bit', 'never_problem'] | rec_motorcycles_104383 |@lemmatized wonder:1 bikers:1 horrid:1 reputation:1 go:1 find:1 human:1 agree:1 completely:1 unfortunately:1 majority:1 feeling:1 even:1 start:1 think:1 rationally:1 abhout:1 dog:2 try:1 kill:1 fear:1 moment:1 set:1 like:1 say:1 bit:1 road:1 whatever:1 never:1 problem:1 |@bigram go_find:1 agree_completely:1 even_start:1 start_think:1 try_kill:1 like_say:1 say_bit:1 never_problem:1 |
4,598 |
I would assume that the words (I saw the picture) indicated that those
SEATS will not be available for baseball games. If you look at the picture
of the diamond in the stadium, in relation to the areas marked "NOT FOR
BASEBALL", those seats just look terrible for watching baseball. Now, if
they should happen to reach the post-season, I would imagine that they
would consider opening some of those seats up, but that is surely a worry
of the future.
Sam Lubchansky [email protected]
"In the champion, people see what they'd like to be. In the loser,
they see what they actually are, and they treat him with scorn." | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/rec.sport.baseball/102700 | 9 | rec_sport_baseball_102700 | [('would', 'MD'), ('assume', 'VB'), ('that', 'IN'), ('the', 'DT'), ('words', 'NNS'), ('saw', 'VBD'), ('the', 'DT'), ('picture', 'NN'), ('indicated', 'VBD'), ('that', 'IN'), ('those', 'DT'), ('seats', 'NNS'), ('will', 'MD'), ('not', 'RB'), ('be', 'VB'), ('available', 'JJ'), ('for', 'IN'), ('baseball', 'NN'), ('games', 'NNS'), ('if', 'IN'), ('you', 'PRP'), ('look', 'VBP'), ('at', 'IN'), ('the', 'DT'), ('picture', 'NN'), ('of', 'IN'), ('the', 'DT'), ('diamond', 'NN'), ('in', 'IN'), ('the', 'DT'), ('stadium', 'NN'), ('in', 'IN'), ('relation', 'NN'), ('to', 'TO'), ('the', 'DT'), ('areas', 'NNS'), ('marked', 'VBD'), ('not', 'RB'), ('for', 'IN'), ('baseball', 'NN'), ('",', 'NNP'), ('those', 'DT'), ('seats', 'NNS'), ('just', 'RB'), ('look', 'VBP'), ('terrible', 'JJ'), ('for', 'IN'), ('watching', 'VBG'), ('baseball', 'NN'), ('now', 'RB'), ('if', 'IN'), ('they', 'PRP'), ('should', 'MD'), ('happen', 'VB'), ('to', 'TO'), ('reach', 'VB'), ('the', 'DT'), ('post', 'NN'), ('season', 'NN'), ('would', 'MD'), ('imagine', 'VB'), ('that', 'IN'), ('they', 'PRP'), ('would', 'MD'), ('consider', 'VB'), ('opening', 'VBG'), ('some', 'DT'), ('of', 'IN'), ('those', 'DT'), ('seats', 'NNS'), ('up', 'RB'), ('but', 'CC'), ('that', 'DT'), ('is', 'VBZ'), ('surely', 'RB'), ('worry', 'NN'), ('of', 'IN'), ('the', 'DT'), ('future', 'NN'), ('sam', 'NN'), ('lubchansky', 'NN'), ('in', 'IN'), ('the', 'DT'), ('champion', 'NN'), ('people', 'NNS'), ('see', 'VBP'), ('what', 'WP'), ('they', 'PRP'), ('like', 'VBP'), ('to', 'TO'), ('be', 'VB'), ('in', 'IN'), ('the', 'DT'), ('loser', 'NN'), ('they', 'PRP'), ('see', 'VBP'), ('what', 'WP'), ('they', 'PRP'), ('actually', 'RB'), ('are', 'VBP'), ('and', 'CC'), ('they', 'PRP'), ('treat', 'VBP'), ('him', 'PRP'), ('with', 'IN'), ('scorn', 'NN'), ('."', 'NN')] | ['would', 'assume', 'word', 'saw', 'picture', 'indicate', 'seat', 'available', 'baseball', 'game', 'look', 'picture', 'diamond', 'stadium', 'relation', 'area', 'mark', 'baseball', 'seat', 'look', 'terrible', 'watch', 'baseball', 'happen', 'reach', 'post', 'season', 'would', 'imagine', 'would', 'consider', 'open', 'seat', 'surely', 'worry', 'future', 'sam', 'lubchansky', 'champion', 'people', 'see', 'like', 'loser', 'see', 'actually', 'treat', 'scorn'] | ['would_assume', 'baseball_game', 'post_season', 'would_imagine', 'imagine_would', 'would_consider', 'people_see', 'see_like'] | rec_sport_baseball_102700 |@lemmatized would:3 assume:1 word:1 saw:1 picture:2 indicate:1 seat:3 available:1 baseball:3 game:1 look:2 diamond:1 stadium:1 relation:1 area:1 mark:1 terrible:1 watch:1 happen:1 reach:1 post:1 season:1 imagine:1 consider:1 open:1 surely:1 worry:1 future:1 sam:1 lubchansky:1 champion:1 people:1 see:2 like:1 loser:1 actually:1 treat:1 scorn:1 |@bigram would_assume:1 baseball_game:1 post_season:1 would_imagine:1 imagine_would:1 would_consider:1 people_see:1 see_like:1 |
4,599 | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/rec.sport.hockey/53974 | 10 | rec_sport_hockey_53974 | [] | [] | [] | rec_sport_hockey_53974 |@lemmatized |@bigram |
|
4,600 |
I really must object to that last statement. Having a lot of experience
with a '92 Grand Am coupe, I can firmly state that they do have a lot of
outstanding qualities. Very reliable throughout. Great layout of controls
and components. Very roomy considering the exterior size of the car. They
look sharp inside and out. The V6 that I drive has exceptional power and
drivability compared to other similar cars that I have driven.
All in all, it's a fun-to-drive, dependable, and reasonably priced vehicle.
Please don't knock it with a statement like that unless you back it up with
specific reasons why you feel that way.
Rob
[email protected]
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/rec.autos/102993 | 7 | rec_autos_102993 | [('really', 'RB'), ('must', 'MD'), ('object', 'VB'), ('to', 'TO'), ('that', 'DT'), ('last', 'JJ'), ('statement', 'NN'), ('having', 'VBG'), ('lot', 'NN'), ('of', 'IN'), ('experience', 'NN'), ('with', 'IN'), ('92', 'CD'), ('grand', 'JJ'), ('am', 'VBP'), ('coupe', 'NN'), ('can', 'MD'), ('firmly', 'VB'), ('state', 'NN'), ('that', 'IN'), ('they', 'PRP'), ('do', 'VBP'), ('have', 'VB'), ('lot', 'NN'), ('of', 'IN'), ('outstanding', 'JJ'), ('qualities', 'NNS'), ('very', 'RB'), ('reliable', 'JJ'), ('throughout', 'IN'), ('great', 'JJ'), ('layout', 'NN'), ('of', 'IN'), ('controls', 'NNS'), ('and', 'CC'), ('components', 'NNS'), ('very', 'RB'), ('roomy', 'VBP'), ('considering', 'VBG'), ('the', 'DT'), ('exterior', 'JJ'), ('size', 'NN'), ('of', 'IN'), ('the', 'DT'), ('car', 'NN'), ('they', 'PRP'), ('look', 'VBP'), ('sharp', 'JJ'), ('inside', 'RB'), ('and', 'CC'), ('out', 'IN'), ('the', 'DT'), ('v6', 'NN'), ('that', 'WDT'), ('drive', 'NN'), ('has', 'VBZ'), ('exceptional', 'JJ'), ('power', 'NN'), ('and', 'CC'), ('drivability', 'NN'), ('compared', 'VBN'), ('to', 'TO'), ('other', 'JJ'), ('similar', 'JJ'), ('cars', 'NNS'), ('that', 'WDT'), ('have', 'VBP'), ('driven', 'VBN'), ('all', 'DT'), ('in', 'IN'), ('all', 'DT'), ('it', 'PRP'), ('fun', 'VBD'), ('to', 'TO'), ('drive', 'VB'), ('dependable', 'JJ'), ('and', 'CC'), ('reasonably', 'RB'), ('priced', 'VBN'), ('vehicle', 'NN'), ('please', 'NN'), ('don', 'NN'), ('knock', 'VBD'), ('it', 'PRP'), ('with', 'IN'), ('statement', 'NN'), ('like', 'IN'), ('that', 'DT'), ('unless', 'IN'), ('you', 'PRP'), ('back', 'VBP'), ('it', 'PRP'), ('up', 'RP'), ('with', 'IN'), ('specific', 'JJ'), ('reasons', 'NNS'), ('why', 'WRB'), ('you', 'PRP'), ('feel', 'VBP'), ('that', 'DT'), ('way', 'NN'), ('rob', 'NN')] | ['really', 'must', 'object', 'last', 'statement', 'lot', 'experience', 'grand', 'coupe', 'firmly', 'state', 'lot', 'outstanding', 'quality', 'reliable', 'throughout', 'great', 'layout', 'control', 'component', 'roomy', 'consider', 'exterior', 'size', 'car', 'look', 'sharp', 'inside', 'drive', 'exceptional', 'power', 'drivability', 'compare', 'similar', 'car', 'drive', 'fun', 'drive', 'dependable', 'reasonably', 'price', 'vehicle', 'please', 'knock', 'statement', 'like', 'unless', 'back', 'specific', 'reason', 'feel', 'way', 'rob'] | ['last_statement', 'car_look', 'car_drive', 'fun_drive', 'statement_like', 'feel_way'] | rec_autos_102993 |@lemmatized really:1 must:1 object:1 last:1 statement:2 lot:2 experience:1 grand:1 coupe:1 firmly:1 state:1 outstanding:1 quality:1 reliable:1 throughout:1 great:1 layout:1 control:1 component:1 roomy:1 consider:1 exterior:1 size:1 car:2 look:1 sharp:1 inside:1 drive:3 exceptional:1 power:1 drivability:1 compare:1 similar:1 fun:1 dependable:1 reasonably:1 price:1 vehicle:1 please:1 knock:1 like:1 unless:1 back:1 specific:1 reason:1 feel:1 way:1 rob:1 |@bigram last_statement:1 car_look:1 car_drive:1 fun_drive:1 statement_like:1 feel_way:1 |
4,601 | ...let me point out that both GUI-based word-processors and text-based
formatters both have a language; one happens to be mouse- and
action-based, and the other symbol-based.
True, but that's beside the point. This is a fact about an abstract model
of what the GUI users are doing, not about what they actually *are* doing.
This abstract model is only apparent from the perpective of a *programmer*
of the system. (NB: some users may see it, too, but only when they put
aside the work at hand and start thinking like a programmer.)
I'm not saying that the programmer's perspective is evil or stunted. After
all, that's what I do, too! I am saying that UI designers must carefully
distinguish between the user/programmer conceptual models, and they must
ultimately serve the user of the system, not the builder of the system.
I don't recall the actual stats, but something like 1 in 5 people can be
categorized as a "symbol manipulator".
It would be interesting to know more about the meaning and basis for this
claim. At any rate, I don't think this is evidence that 20% of users think
like programmers. Bankers, financial analysts, structural engineers ---
these are all people whose work you could characterize as primarily symbol
manipulation. But what they do is not programming, and programming is not
required to do what they do. | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/comp.windows.x/66873 | 5 | comp_windows_x_66873 | [('...', ':'), ('let', 'VB'), ('me', 'PRP'), ('point', 'VB'), ('out', 'RP'), ('that', 'IN'), ('both', 'DT'), ('gui', 'NNS'), ('based', 'VBN'), ('word', 'NN'), ('processors', 'NNS'), ('and', 'CC'), ('text', 'NN'), ('based', 'VBN'), ('formatters', 'NNS'), ('both', 'DT'), ('have', 'VBP'), ('language', 'NN'), ('one', 'CD'), ('happens', 'VBZ'), ('to', 'TO'), ('be', 'VB'), ('mouse', 'NN'), ('and', 'CC'), ('action', 'NN'), ('based', 'VBN'), ('and', 'CC'), ('the', 'DT'), ('other', 'JJ'), ('symbol', 'NN'), ('based', 'VBN'), ('true', 'JJ'), ('but', 'CC'), ('that', 'DT'), ('beside', 'VBP'), ('the', 'DT'), ('point', 'NN'), ('this', 'DT'), ('is', 'VBZ'), ('fact', 'NN'), ('about', 'IN'), ('an', 'DT'), ('abstract', 'JJ'), ('model', 'NN'), ('of', 'IN'), ('what', 'WP'), ('the', 'DT'), ('gui', 'NN'), ('users', 'NNS'), ('are', 'VBP'), ('doing', 'VBG'), ('not', 'RB'), ('about', 'IN'), ('what', 'WP'), ('they', 'PRP'), ('actually', 'RB'), ('are', 'VBP'), ('doing', 'VBG'), ('this', 'DT'), ('abstract', 'JJ'), ('model', 'NN'), ('is', 'VBZ'), ('only', 'RB'), ('apparent', 'JJ'), ('from', 'IN'), ('the', 'DT'), ('perpective', 'NN'), ('of', 'IN'), ('programmer', 'NN'), ('of', 'IN'), ('the', 'DT'), ('system', 'NN'), ('nb', 'VBZ'), ('some', 'DT'), ('users', 'NNS'), ('may', 'MD'), ('see', 'VB'), ('it', 'PRP'), ('too', 'RB'), ('but', 'CC'), ('only', 'RB'), ('when', 'WRB'), ('they', 'PRP'), ('put', 'VBD'), ('aside', 'RP'), ('the', 'DT'), ('work', 'NN'), ('at', 'IN'), ('hand', 'NN'), ('and', 'CC'), ('start', 'VB'), ('thinking', 'VBG'), ('like', 'IN'), ('programmer', 'NN'), ('.)', 'NNP'), ('not', 'RB'), ('saying', 'VBG'), ('that', 'IN'), ('the', 'DT'), ('programmer', 'NN'), ('perspective', 'NN'), ('is', 'VBZ'), ('evil', 'JJ'), ('or', 'CC'), ('stunted', 'VBN'), ('after', 'IN'), ('all', 'DT'), ('that', 'DT'), ('what', 'WP'), ('do', 'VB'), ('too', 'RB'), ('am', 'VBP'), ('saying', 'VBG'), ('that', 'IN'), ('ui', 'JJ'), ('designers', 'NNS'), ('must', 'MD'), ('carefully', 'RB'), ('distinguish', 'VB'), ('between', 'IN'), ('the', 'DT'), ('user', 'NN'), ('programmer', 'NN'), ('conceptual', 'JJ'), ('models', 'NNS'), ('and', 'CC'), ('they', 'PRP'), ('must', 'MD'), ('ultimately', 'RB'), ('serve', 'VB'), ('the', 'DT'), ('user', 'NN'), ('of', 'IN'), ('the', 'DT'), ('system', 'NN'), ('not', 'RB'), ('the', 'DT'), ('builder', 'NN'), ('of', 'IN'), ('the', 'DT'), ('system', 'NN'), ('don', 'VBZ'), ('recall', 'VBP'), ('the', 'DT'), ('actual', 'JJ'), ('stats', 'NNS'), ('but', 'CC'), ('something', 'NN'), ('like', 'IN'), ('in', 'IN'), ('people', 'NNS'), ('can', 'MD'), ('be', 'VB'), ('categorized', 'VBN'), ('as', 'IN'), ('symbol', 'NN'), ('manipulator', 'NN'), ('".', 'IN'), ('it', 'PRP'), ('would', 'MD'), ('be', 'VB'), ('interesting', 'VBG'), ('to', 'TO'), ('know', 'VB'), ('more', 'JJR'), ('about', 'IN'), ('the', 'DT'), ('meaning', 'NN'), ('and', 'CC'), ('basis', 'NN'), ('for', 'IN'), ('this', 'DT'), ('claim', 'NN'), ('at', 'IN'), ('any', 'DT'), ('rate', 'NN'), ('don', 'NN'), ('think', 'VBP'), ('this', 'DT'), ('is', 'VBZ'), ('evidence', 'NN'), ('that', 'IN'), ('20', 'CD'), ('of', 'IN'), ('users', 'NNS'), ('think', 'VBP'), ('like', 'IN'), ('programmers', 'NNS'), ('bankers', 'NNS'), ('financial', 'JJ'), ('analysts', 'NNS'), ('structural', 'JJ'), ('engineers', 'NNS'), ('---', 'IN'), ('these', 'DT'), ('are', 'VBP'), ('all', 'DT'), ('people', 'NNS'), ('whose', 'WP$'), ('work', 'NN'), ('you', 'PRP'), ('could', 'MD'), ('characterize', 'VB'), ('as', 'IN'), ('primarily', 'RB'), ('symbol', 'NN'), ('manipulation', 'NN'), ('but', 'CC'), ('what', 'WP'), ('they', 'PRP'), ('do', 'VBP'), ('is', 'VBZ'), ('not', 'RB'), ('programming', 'JJ'), ('and', 'CC'), ('programming', 'NN'), ('is', 'VBZ'), ('not', 'RB'), ('required', 'VBN'), ('to', 'TO'), ('do', 'VB'), ('what', 'WP'), ('they', 'PRP'), ('do', 'VBP')] | ['let', 'point', 'gui', 'base', 'word', 'processor', 'text', 'base', 'formatters', 'language', 'one', 'happen', 'mouse', 'action', 'base', 'symbol', 'base', 'true', 'beside', 'point', 'fact', 'abstract', 'model', 'gui', 'user', 'actually', 'abstract', 'model', 'apparent', 'perpective', 'programmer', 'system', 'nb', 'user', 'may', 'see', 'put', 'aside', 'work', 'hand', 'start', 'think', 'like', 'programmer', 'say', 'programmer', 'perspective', 'evil', 'stunt', 'say', 'ui', 'designer', 'must', 'carefully', 'distinguish', 'user', 'programmer', 'conceptual', 'model', 'must', 'ultimately', 'serve', 'user', 'system', 'builder', 'system', 'recall', 'actual', 'stats', 'something', 'like', 'people', 'categorize', 'symbol', 'manipulator', 'would', 'interest', 'know', 'meaning', 'basis', 'claim', 'rate', 'think', 'evidence', 'user', 'think', 'like', 'programmer', 'banker', 'financial', 'analyst', 'structural', 'engineer', 'people', 'whose', 'work', 'could', 'characterize', 'primarily', 'symbol', 'manipulation', 'programming', 'programming', 'require'] | ['word_processor', 'one_happen', 'beside_point', 'point_fact', 'user_may', 'may_see', 'see_put', 'put_aside', 'hand_start', 'start_think', 'think_like', 'user_system', 'something_like', 'like_people', 'would_interest', 'think_like', 'people_whose', 'work_could'] | comp_windows_x_66873 |@lemmatized let:1 point:2 gui:2 base:4 word:1 processor:1 text:1 formatters:1 language:1 one:1 happen:1 mouse:1 action:1 symbol:3 true:1 beside:1 fact:1 abstract:2 model:3 user:5 actually:1 apparent:1 perpective:1 programmer:5 system:3 nb:1 may:1 see:1 put:1 aside:1 work:2 hand:1 start:1 think:3 like:3 say:2 perspective:1 evil:1 stunt:1 ui:1 designer:1 must:2 carefully:1 distinguish:1 conceptual:1 ultimately:1 serve:1 builder:1 recall:1 actual:1 stats:1 something:1 people:2 categorize:1 manipulator:1 would:1 interest:1 know:1 meaning:1 basis:1 claim:1 rate:1 evidence:1 banker:1 financial:1 analyst:1 structural:1 engineer:1 whose:1 could:1 characterize:1 primarily:1 manipulation:1 programming:2 require:1 |@bigram word_processor:1 one_happen:1 beside_point:1 point_fact:1 user_may:1 may_see:1 see_put:1 put_aside:1 hand_start:1 start_think:1 think_like:2 user_system:1 something_like:1 like_people:1 would_interest:1 people_whose:1 work_could:1 |
4,602 |
You don't have to. *It* believes in YOU.
Well, looking at our new government pals, I'm inclined to
agree. I don't much believe in our money, either. :)
Oh, ho HO! If only you knew! :)
Yup, I'm DEFINITELY checking out foreign currency, thanks to
to this newsgroup. It sure doesn't take much thinking to realize
what direction the U.S. is headed.
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/talk.politics.misc/176973 | 18 | talk_politics_misc_176973 | [('you', 'PRP'), ('don', 'VBP'), ('have', 'VBP'), ('to', 'TO'), ('it', 'PRP'), ('believes', 'VBZ'), ('in', 'IN'), ('you', 'PRP'), ('well', 'VBP'), ('looking', 'VBG'), ('at', 'IN'), ('our', 'PRP$'), ('new', 'JJ'), ('government', 'NN'), ('pals', 'NNS'), ('inclined', 'VBD'), ('to', 'TO'), ('agree', 'VB'), ('don', 'RB'), ('much', 'JJ'), ('believe', 'VBP'), ('in', 'IN'), ('our', 'PRP$'), ('money', 'NN'), ('either', 'DT'), (':)', 'NNP'), ('oh', 'MD'), ('ho', 'VB'), ('ho', 'NN'), ('if', 'IN'), ('only', 'RB'), ('you', 'PRP'), ('knew', 'VBD'), (':)', 'NNP'), ('yup', 'NNP'), ('definitely', 'RB'), ('checking', 'VBG'), ('out', 'RP'), ('foreign', 'JJ'), ('currency', 'NN'), ('thanks', 'NNS'), ('to', 'TO'), ('to', 'TO'), ('this', 'DT'), ('newsgroup', 'NN'), ('it', 'PRP'), ('sure', 'JJ'), ('doesn', 'JJ'), ('take', 'VB'), ('much', 'JJ'), ('thinking', 'NN'), ('to', 'TO'), ('realize', 'VB'), ('what', 'WP'), ('direction', 'NN'), ('the', 'DT'), ('is', 'VBZ'), ('headed', 'VBN')] | ['believe', 'well', 'look', 'new', 'government', 'pal', 'incline', 'agree', 'much', 'believe', 'money', 'either', 'oh', 'ho', 'ho', 'know', 'yup', 'definitely', 'check', 'foreign', 'currency', 'thanks', 'newsgroup', 'sure', 'take', 'much', 'thinking', 'realize', 'direction', 'head'] | ['believe_well', 'well_look', 'look_new', 'new_government', 'agree_much', 'take_much'] | talk_politics_misc_176973 |@lemmatized believe:2 well:1 look:1 new:1 government:1 pal:1 incline:1 agree:1 much:2 money:1 either:1 oh:1 ho:2 know:1 yup:1 definitely:1 check:1 foreign:1 currency:1 thanks:1 newsgroup:1 sure:1 take:1 thinking:1 realize:1 direction:1 head:1 |@bigram believe_well:1 well_look:1 look_new:1 new_government:1 agree_much:1 take_much:1 |
4,603 |
The description of the chip's operation evidently leaves out some of the
key management aspects. Either the K_P is the secret key corresponding
to a public key which is broadcast at message initiation, or it is the
result of a Diffie-Hellman key exchange or something similar. Either
way there must be some protocols beyond those described here. It isn't
clear whether they are implemented in the Clipper wiretap chip or must
be provided by other system components. | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/sci.crypt/15374 | 11 | sci_crypt_15374 | [('the', 'DT'), ('description', 'NN'), ('of', 'IN'), ('the', 'DT'), ('chip', 'NN'), ('operation', 'NN'), ('evidently', 'RB'), ('leaves', 'VBZ'), ('out', 'RP'), ('some', 'DT'), ('of', 'IN'), ('the', 'DT'), ('key', 'JJ'), ('management', 'NN'), ('aspects', 'NNS'), ('either', 'CC'), ('the', 'DT'), ('k_p', 'NN'), ('is', 'VBZ'), ('the', 'DT'), ('secret', 'JJ'), ('key', 'NN'), ('corresponding', 'VBG'), ('to', 'TO'), ('public', 'JJ'), ('key', 'NN'), ('which', 'WDT'), ('is', 'VBZ'), ('broadcast', 'VBN'), ('at', 'IN'), ('message', 'NN'), ('initiation', 'NN'), ('or', 'CC'), ('it', 'PRP'), ('is', 'VBZ'), ('the', 'DT'), ('result', 'NN'), ('of', 'IN'), ('diffie', 'NN'), ('hellman', 'NN'), ('key', 'JJ'), ('exchange', 'NN'), ('or', 'CC'), ('something', 'NN'), ('similar', 'JJ'), ('either', 'DT'), ('way', 'NN'), ('there', 'EX'), ('must', 'MD'), ('be', 'VB'), ('some', 'DT'), ('protocols', 'NNS'), ('beyond', 'IN'), ('those', 'DT'), ('described', 'VBN'), ('here', 'RB'), ('it', 'PRP'), ('isn', 'VBZ'), ('clear', 'JJ'), ('whether', 'IN'), ('they', 'PRP'), ('are', 'VBP'), ('implemented', 'VBN'), ('in', 'IN'), ('the', 'DT'), ('clipper', 'NN'), ('wiretap', 'NN'), ('chip', 'NN'), ('or', 'CC'), ('must', 'MD'), ('be', 'VB'), ('provided', 'VBN'), ('by', 'IN'), ('other', 'JJ'), ('system', 'NN'), ('components', 'NNS')] | ['description', 'chip', 'operation', 'evidently', 'leave', 'key', 'management', 'aspect', 'either', 'secret', 'key', 'correspond', 'public', 'key', 'broadcast', 'message', 'initiation', 'result', 'diffie', 'hellman', 'key', 'exchange', 'something', 'similar', 'either', 'way', 'must', 'protocol', 'beyond', 'describe', 'clear', 'whether', 'implement', 'clipper', 'wiretap', 'chip', 'must', 'provide', 'system', 'component'] | ['key_management', 'secret_key', 'key_correspond', 'public_key', 'diffie_hellman', 'key_exchange', 'something_similar', 'either_way', 'way_must', 'wiretap_chip', 'chip_must'] | sci_crypt_15374 |@lemmatized description:1 chip:2 operation:1 evidently:1 leave:1 key:4 management:1 aspect:1 either:2 secret:1 correspond:1 public:1 broadcast:1 message:1 initiation:1 result:1 diffie:1 hellman:1 exchange:1 something:1 similar:1 way:1 must:2 protocol:1 beyond:1 describe:1 clear:1 whether:1 implement:1 clipper:1 wiretap:1 provide:1 system:1 component:1 |@bigram key_management:1 secret_key:1 key_correspond:1 public_key:1 diffie_hellman:1 key_exchange:1 something_similar:1 either_way:1 way_must:1 wiretap_chip:1 chip_must:1 |
4,604 |
:In article <[email protected]>
:>Note that measures to protect yourself from
:>TEMPEST surveillance are still classified, as far as I know.
:I think this to be inaccurate. One can buy TEMPEST equipment commercially.
:Even Macs.
Sure you can buy a TEMPEST approved Mac -- if you have enough
money. I haven't had any reason to look at this type of pricing
for about 10 years, but a TEMPEST rating in 1982 would raise the
price of a $2,495.00 Radio Shack Model III to something around
$15,000.00.
Bill | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/sci.crypt/15475 | 11 | sci_crypt_15475 | [('in', 'IN'), ('article', 'NN'), (':>', 'NNP'), ('note', 'NN'), ('that', 'WDT'), ('measures', 'VBZ'), ('to', 'TO'), ('protect', 'VB'), ('yourself', 'PRP'), ('from', 'IN'), (':>', 'NNP'), ('tempest', 'JJS'), ('surveillance', 'NN'), ('are', 'VBP'), ('still', 'RB'), ('classified', 'VBN'), ('as', 'RB'), ('far', 'RB'), ('as', 'IN'), ('know', 'JJ'), ('think', 'VBP'), ('this', 'DT'), ('to', 'TO'), ('be', 'VB'), ('inaccurate', 'JJ'), ('one', 'CD'), ('can', 'MD'), ('buy', 'VB'), ('tempest', 'JJ'), ('equipment', 'NN'), ('commercially', 'RB'), ('even', 'RB'), ('macs', 'JJ'), ('sure', 'NN'), ('you', 'PRP'), ('can', 'MD'), ('buy', 'VB'), ('tempest', 'JJS'), ('approved', 'VBN'), ('mac', 'NN'), ('--', ':'), ('if', 'IN'), ('you', 'PRP'), ('have', 'VBP'), ('enough', 'JJ'), ('money', 'NN'), ('haven', 'VBN'), ('had', 'VBD'), ('any', 'DT'), ('reason', 'NN'), ('to', 'TO'), ('look', 'VB'), ('at', 'IN'), ('this', 'DT'), ('type', 'NN'), ('of', 'IN'), ('pricing', 'NN'), ('for', 'IN'), ('about', 'IN'), ('10', 'CD'), ('years', 'NNS'), ('but', 'CC'), ('tempest', 'JJS'), ('rating', 'NN'), ('in', 'IN'), ('1982', 'CD'), ('would', 'MD'), ('raise', 'VB'), ('the', 'DT'), ('price', 'NN'), ('of', 'IN'), ('495', 'CD'), ('00', 'CD'), ('radio', 'NN'), ('shack', 'NN'), ('model', 'NN'), ('iii', 'NN'), ('to', 'TO'), ('something', 'NN'), ('around', 'RB'), ('15', 'CD'), ('000', 'CD'), ('00', 'CD'), ('bill', 'NN')] | ['article', 'note', 'measure', 'protect', 'tempest', 'surveillance', 'still', 'classify', 'far', 'know', 'think', 'inaccurate', 'one', 'buy', 'tempest', 'equipment', 'commercially', 'even', 'macs', 'sure', 'buy', 'tempest', 'approve', 'mac', 'enough', 'money', 'reason', 'look', 'type', 'pricing', 'year', 'tempest', 'rating', 'would', 'raise', 'price', 'radio', 'shack', 'model', 'iii', 'something', 'around', 'bill'] | ['far_know', 'know_think', 'one_buy', 'enough_money', 'radio_shack', 'something_around'] | sci_crypt_15475 |@lemmatized article:1 note:1 measure:1 protect:1 tempest:4 surveillance:1 still:1 classify:1 far:1 know:1 think:1 inaccurate:1 one:1 buy:2 equipment:1 commercially:1 even:1 macs:1 sure:1 approve:1 mac:1 enough:1 money:1 reason:1 look:1 type:1 pricing:1 year:1 rating:1 would:1 raise:1 price:1 radio:1 shack:1 model:1 iii:1 something:1 around:1 bill:1 |@bigram far_know:1 know_think:1 one_buy:1 enough_money:1 radio_shack:1 something_around:1 |
4,605 | --
[email protected]
James Miller | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/misc.forsale/74784 | 6 | misc_forsale_74784 | [('--', ':'), ('james', 'NNS'), ('miller', 'VBP')] | ['james', 'miller'] | [] | misc_forsale_74784 |@lemmatized james:1 miller:1 |@bigram |
4,606 | Let me try sending this message again, I botched up the margins the
first time; *sorry* 'bout that :)
Does anyone out there know of any products using Motorola's Neuron(r)
chips MC143150 or MC143120. If so, what are they and are they utilizing
Standard Network Variable Types (SNVT)?
________________________________________________________________________ | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/sci.electronics/53621 | 12 | sci_electronics_53621 | [('let', 'VB'), ('me', 'PRP'), ('try', 'VB'), ('sending', 'VBG'), ('this', 'DT'), ('message', 'NN'), ('again', 'RB'), ('botched', 'VBD'), ('up', 'RP'), ('the', 'DT'), ('margins', 'NNS'), ('the', 'DT'), ('first', 'JJ'), ('time', 'NN'), ('sorry', 'NN'), ('bout', 'IN'), ('that', 'DT'), (':)', 'NN'), ('does', 'VBZ'), ('anyone', 'NN'), ('out', 'IN'), ('there', 'RB'), ('know', 'NNS'), ('of', 'IN'), ('any', 'DT'), ('products', 'NNS'), ('using', 'VBG'), ('motorola', 'NN'), ('neuron', 'FW'), ('chips', 'NNS'), ('mc143150', 'VBP'), ('or', 'CC'), ('mc143120', 'VBP'), ('if', 'IN'), ('so', 'IN'), ('what', 'WP'), ('are', 'VBP'), ('they', 'PRP'), ('and', 'CC'), ('are', 'VBP'), ('they', 'PRP'), ('utilizing', 'VBG'), ('standard', 'JJ'), ('network', 'NN'), ('variable', 'JJ'), ('types', 'NNS'), ('snvt', 'VBP'), (')?', 'CD'), ('________________________________________________________________________', 'NN')] | ['let', 'try', 'send', 'message', 'botch', 'margin', 'first', 'time', 'sorry', 'bout', 'anyone', 'know', 'product', 'use', 'motorola', 'neuron', 'chip', 'utilize', 'standard', 'network', 'variable', 'type', 'snvt'] | ['let_try', 'try_send', 'send_message', 'first_time', 'anyone_know', 'product_use'] | sci_electronics_53621 |@lemmatized let:1 try:1 send:1 message:1 botch:1 margin:1 first:1 time:1 sorry:1 bout:1 anyone:1 know:1 product:1 use:1 motorola:1 neuron:1 chip:1 utilize:1 standard:1 network:1 variable:1 type:1 snvt:1 |@bigram let_try:1 try_send:1 send_message:1 first_time:1 anyone_know:1 product_use:1 |
4,607 | This subject seems to be incredibly inflammatory. Those who subscribe to
_Biblical Archaeology Review_ will remember a spectacular letter battle set off when someone
complained about a Franklin Mint ad. (_BAR_ is a great magazine, but the
contrast between the rather scholarly articles and the incredibly sleazy ads
is extreme.) In this ad, they were hawking a doll with a head based on the
famous bust of Nefertiti, giving the face a typical doll-pink complexion.
The letter complained about this as a misrepresentation on the grounds that
Nefertiti was "a beautiful black queen." This set off an exchange of
hotheaded letters than ran for several issues, to the point where they had
an article from an Egyptologist titled "Was Cleopatra Black?" (The answer
to the title is "no"-- she was greek.)
I have to say that I hear a hysterical note in much of the complaining. I
personally have seen only one blond-haired Jesus (in the National Shrine in
Wash. DC), and I found it very jarring. Western representations vary
enourmously, but in general the image of is of a youngish male with dark
hair and beard, of a sort that can be found (modulo the nose) all up and
down the Mediterranean.
(Also, if what I remember is correct, the "Black Madonna" doesn't represent
a person with negroid features. It is black because of an accident. Joe
Buehler....?)
In the presence of all those marble statues, one is prone to forget that
greeks are rather likely to have black hair. When one crosses the bosporus,
the situation breaks down completely. Are Turks white? How about Persians,
or various groups in the indian subcontinent? Was Gandhi white? How about
the Arabs? Or picture Nassar and Sadat standing side by side. And then
there are the Ethiopians....
Those of a white racist bent are not likely to say that *any* of these
people are "white" (i.e., of the racist's "race"). If I may risk a
potentially inflammatory remark, one undercurrent of this seems to be the
identification of modern jews as members of the oppressor race. Considering
the extreme dicotomy between medieval religion on the one hand and medieval
antisemitism on the other, I don't think that this "Jesus was white" thesis
ever played the roles that some hold it did.
Representations of Jesus as black or korean or whatever are fine. It seems
awfully self-serving to insist that Jesus belongs to one's own racial group. | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/soc.religion.christian/20800 | 15 | soc_religion_christian_20800 | [('this', 'DT'), ('subject', 'NN'), ('seems', 'VBZ'), ('to', 'TO'), ('be', 'VB'), ('incredibly', 'RB'), ('inflammatory', 'JJ'), ('those', 'DT'), ('who', 'WP'), ('subscribe', 'VBP'), ('to', 'TO'), ('_biblical', 'JJ'), ('archaeology', 'NN'), ('review_', 'NN'), ('will', 'MD'), ('remember', 'VB'), ('spectacular', 'JJ'), ('letter', 'NN'), ('battle', 'NN'), ('set', 'VBN'), ('off', 'RP'), ('when', 'WRB'), ('someone', 'NN'), ('complained', 'VBD'), ('about', 'IN'), ('franklin', 'JJ'), ('mint', 'NN'), ('ad', 'NN'), ('_bar_', 'NN'), ('is', 'VBZ'), ('great', 'JJ'), ('magazine', 'NN'), ('but', 'CC'), ('the', 'DT'), ('contrast', 'NN'), ('between', 'IN'), ('the', 'DT'), ('rather', 'RB'), ('scholarly', 'JJ'), ('articles', 'NNS'), ('and', 'CC'), ('the', 'DT'), ('incredibly', 'RB'), ('sleazy', 'JJ'), ('ads', 'NNS'), ('is', 'VBZ'), ('extreme', 'JJ'), ('.)', 'NN'), ('in', 'IN'), ('this', 'DT'), ('ad', 'NN'), ('they', 'PRP'), ('were', 'VBD'), ('hawking', 'VBG'), ('doll', 'NN'), ('with', 'IN'), ('head', 'NN'), ('based', 'VBN'), ('on', 'IN'), ('the', 'DT'), ('famous', 'JJ'), ('bust', 'NN'), ('of', 'IN'), ('nefertiti', 'JJ'), ('giving', 'VBG'), ('the', 'DT'), ('face', 'NN'), ('typical', 'JJ'), ('doll', 'NN'), ('pink', 'NN'), ('complexion', 'NN'), ('the', 'DT'), ('letter', 'NN'), ('complained', 'VBD'), ('about', 'RB'), ('this', 'DT'), ('as', 'IN'), ('misrepresentation', 'NN'), ('on', 'IN'), ('the', 'DT'), ('grounds', 'NNS'), ('that', 'IN'), ('nefertiti', 'NN'), ('was', 'VBD'), ('beautiful', 'JJ'), ('black', 'JJ'), ('queen', 'NN'), ('."', 'NN'), ('this', 'DT'), ('set', 'VBD'), ('off', 'RP'), ('an', 'DT'), ('exchange', 'NN'), ('of', 'IN'), ('hotheaded', 'VBD'), ('letters', 'NNS'), ('than', 'IN'), ('ran', 'NN'), ('for', 'IN'), ('several', 'JJ'), ('issues', 'NNS'), ('to', 'TO'), ('the', 'DT'), ('point', 'NN'), ('where', 'WRB'), ('they', 'PRP'), ('had', 'VBD'), ('an', 'DT'), ('article', 'NN'), ('from', 'IN'), ('an', 'DT'), ('egyptologist', 'NN'), ('titled', 'VBN'), ('was', 'VBD'), ('cleopatra', 'JJ'), ('black', 'JJ'), ('?"', 'IN'), ('the', 'DT'), ('answer', 'NN'), ('to', 'TO'), ('the', 'DT'), ('title', 'NN'), ('is', 'VBZ'), ('no', 'DT'), ('"--', 'JJ'), ('she', 'PRP'), ('was', 'VBD'), ('greek', 'JJ'), ('.)', 'RB'), ('have', 'VBP'), ('to', 'TO'), ('say', 'VB'), ('that', 'IN'), ('hear', 'JJ'), ('hysterical', 'JJ'), ('note', 'NN'), ('in', 'IN'), ('much', 'JJ'), ('of', 'IN'), ('the', 'DT'), ('complaining', 'VBG'), ('personally', 'RB'), ('have', 'VBP'), ('seen', 'VBN'), ('only', 'RB'), ('one', 'CD'), ('blond', 'NN'), ('haired', 'VBD'), ('jesus', 'NN'), ('in', 'IN'), ('the', 'DT'), ('national', 'JJ'), ('shrine', 'NN'), ('in', 'IN'), ('wash', 'NN'), ('dc', 'NN'), ('),', 'NN'), ('and', 'CC'), ('found', 'VBD'), ('it', 'PRP'), ('very', 'RB'), ('jarring', 'VBG'), ('western', 'JJ'), ('representations', 'NNS'), ('vary', 'VBP'), ('enourmously', 'RB'), ('but', 'CC'), ('in', 'IN'), ('general', 'JJ'), ('the', 'DT'), ('image', 'NN'), ('of', 'IN'), ('is', 'VBZ'), ('of', 'IN'), ('youngish', 'JJ'), ('male', 'NN'), ('with', 'IN'), ('dark', 'JJ'), ('hair', 'NN'), ('and', 'CC'), ('beard', 'NN'), ('of', 'IN'), ('sort', 'NN'), ('that', 'WDT'), ('can', 'MD'), ('be', 'VB'), ('found', 'VBN'), ('modulo', 'IN'), ('the', 'DT'), ('nose', 'NN'), ('all', 'DT'), ('up', 'RB'), ('and', 'CC'), ('down', 'IN'), ('the', 'DT'), ('mediterranean', 'NN'), ('also', 'RB'), ('if', 'IN'), ('what', 'WP'), ('remember', 'VBP'), ('is', 'VBZ'), ('correct', 'JJ'), ('the', 'DT'), ('black', 'JJ'), ('madonna', 'NN'), ('doesn', 'NN'), ('represent', 'VBP'), ('person', 'NN'), ('with', 'IN'), ('negroid', 'JJ'), ('features', 'NNS'), ('it', 'PRP'), ('is', 'VBZ'), ('black', 'JJ'), ('because', 'IN'), ('of', 'IN'), ('an', 'DT'), ('accident', 'NN'), ('joe', 'NN'), ('buehler', 'NN'), ('....?)', 'NN'), ('in', 'IN'), ('the', 'DT'), ('presence', 'NN'), ('of', 'IN'), ('all', 'PDT'), ('those', 'DT'), ('marble', 'JJ'), ('statues', 'NNS'), ('one', 'CD'), ('is', 'VBZ'), ('prone', 'NN'), ('to', 'TO'), ('forget', 'VB'), ('that', 'DT'), ('greeks', 'NN'), ('are', 'VBP'), ('rather', 'RB'), ('likely', 'JJ'), ('to', 'TO'), ('have', 'VB'), ('black', 'JJ'), ('hair', 'NN'), ('when', 'WRB'), ('one', 'NN'), ('crosses', 'VBZ'), ('the', 'DT'), ('bosporus', 'NN'), ('the', 'DT'), ('situation', 'NN'), ('breaks', 'VBZ'), ('down', 'RP'), ('completely', 'RB'), ('are', 'VBP'), ('turks', 'NNS'), ('white', 'JJ'), ('how', 'WRB'), ('about', 'RB'), ('persians', 'VBZ'), ('or', 'CC'), ('various', 'JJ'), ('groups', 'NNS'), ('in', 'IN'), ('the', 'DT'), ('indian', 'JJ'), ('subcontinent', 'NN'), ('was', 'VBD'), ('gandhi', 'JJ'), ('white', 'JJ'), ('how', 'WRB'), ('about', 'IN'), ('the', 'DT'), ('arabs', 'NNS'), ('or', 'CC'), ('picture', 'NN'), ('nassar', 'NNS'), ('and', 'CC'), ('sadat', 'JJ'), ('standing', 'VBG'), ('side', 'NN'), ('by', 'IN'), ('side', 'NN'), ('and', 'CC'), ('then', 'RB'), ('there', 'EX'), ('are', 'VBP'), ('the', 'DT'), ('ethiopians', 'NNS'), ('....', 'VBP'), ('those', 'DT'), ('of', 'IN'), ('white', 'JJ'), ('racist', 'NN'), ('bent', 'NN'), ('are', 'VBP'), ('not', 'RB'), ('likely', 'JJ'), ('to', 'TO'), ('say', 'VB'), ('that', 'IN'), ('any', 'DT'), ('of', 'IN'), ('these', 'DT'), ('people', 'NNS'), ('are', 'VBP'), ('white', 'JJ'), ('.,', 'CD'), ('of', 'IN'), ('the', 'DT'), ('racist', 'NN'), ('race', 'NN'), ('").', 'NNP'), ('if', 'IN'), ('may', 'MD'), ('risk', 'VB'), ('potentially', 'RB'), ('inflammatory', 'JJ'), ('remark', 'NN'), ('one', 'CD'), ('undercurrent', 'NN'), ('of', 'IN'), ('this', 'DT'), ('seems', 'VBZ'), ('to', 'TO'), ('be', 'VB'), ('the', 'DT'), ('identification', 'NN'), ('of', 'IN'), ('modern', 'JJ'), ('jews', 'NNS'), ('as', 'IN'), ('members', 'NNS'), ('of', 'IN'), ('the', 'DT'), ('oppressor', 'NN'), ('race', 'NN'), ('considering', 'VBG'), ('the', 'DT'), ('extreme', 'JJ'), ('dicotomy', 'NN'), ('between', 'IN'), ('medieval', 'JJ'), ('religion', 'NN'), ('on', 'IN'), ('the', 'DT'), ('one', 'CD'), ('hand', 'NN'), ('and', 'CC'), ('medieval', 'NN'), ('antisemitism', 'NN'), ('on', 'IN'), ('the', 'DT'), ('other', 'JJ'), ('don', 'NN'), ('think', 'VBP'), ('that', 'IN'), ('this', 'DT'), ('jesus', 'NN'), ('was', 'VBD'), ('white', 'JJ'), ('thesis', 'NN'), ('ever', 'RB'), ('played', 'VBD'), ('the', 'DT'), ('roles', 'NNS'), ('that', 'IN'), ('some', 'DT'), ('hold', 'VBP'), ('it', 'PRP'), ('did', 'VBD'), ('representations', 'NNS'), ('of', 'IN'), ('jesus', 'NN'), ('as', 'IN'), ('black', 'JJ'), ('or', 'CC'), ('korean', 'JJ'), ('or', 'CC'), ('whatever', 'WDT'), ('are', 'VBP'), ('fine', 'JJ'), ('it', 'PRP'), ('seems', 'VBZ'), ('awfully', 'RB'), ('self', 'JJ'), ('serving', 'VBG'), ('to', 'TO'), ('insist', 'VB'), ('that', 'IN'), ('jesus', 'NN'), ('belongs', 'NNS'), ('to', 'TO'), ('one', 'CD'), ('own', 'JJ'), ('racial', 'JJ'), ('group', 'NN')] | ['subject', 'seem', 'incredibly', 'inflammatory', 'subscribe', 'archaeology', 'remember', 'spectacular', 'letter', 'battle', 'set', 'someone', 'complain', 'franklin', 'mint', 'ad', 'great', 'magazine', 'contrast', 'rather', 'scholarly', 'article', 'incredibly', 'sleazy', 'ad', 'extreme', 'ad', 'hawk', 'doll', 'head', 'base', 'famous', 'bust', 'nefertiti', 'give', 'face', 'typical', 'doll', 'pink', 'complexion', 'letter', 'complain', 'misrepresentation', 'ground', 'nefertiti', 'beautiful', 'black', 'queen', 'set', 'exchange', 'hotheaded', 'letter', 'ran', 'several', 'issue', 'point', 'article', 'egyptologist', 'title', 'cleopatra', 'black', 'answer', 'title', 'greek', 'say', 'hear', 'hysterical', 'note', 'much', 'complain', 'personally', 'see', 'one', 'blond', 'haired', 'jesus', 'national', 'shrine', 'wash', 'dc', 'find', 'jar', 'western', 'representation', 'vary', 'enourmously', 'general', 'image', 'youngish', 'male', 'dark', 'hair', 'beard', 'sort', 'find', 'modulo', 'nose', 'mediterranean', 'also', 'remember', 'correct', 'black', 'madonna', 'represent', 'person', 'negroid', 'feature', 'black', 'accident', 'joe', 'buehler', 'presence', 'marble', 'statue', 'one', 'prone', 'forget', 'greek', 'rather', 'likely', 'black', 'hair', 'one', 'cross', 'bosporus', 'situation', 'break', 'completely', 'turk', 'white', 'persians', 'various', 'group', 'indian', 'subcontinent', 'gandhi', 'white', 'arab', 'picture', 'nassar', 'sadat', 'stand', 'side', 'side', 'ethiopian', 'white', 'racist', 'bent', 'likely', 'say', 'people', 'white', 'racist', 'race', 'may', 'risk', 'potentially', 'inflammatory', 'remark', 'one', 'undercurrent', 'seem', 'identification', 'modern', 'jew', 'member', 'oppressor', 'race', 'consider', 'extreme', 'dicotomy', 'medieval', 'religion', 'one', 'hand', 'medieval', 'antisemitism', 'think', 'jesus', 'white', 'thesis', 'ever', 'play', 'role', 'hold', 'representation', 'jesus', 'black', 'korean', 'whatever', 'fine', 'seem', 'awfully', 'self', 'serve', 'insist', 'jesus', 'belongs', 'one', 'racial', 'group'] | ['say_hear', 'see_one', 'also_remember', 'various_group', 'side_side', 'say_people', 'religion_one', 'one_hand', 'think_jesus', 'ever_play', 'play_role'] | soc_religion_christian_20800 |@lemmatized subject:1 seem:3 incredibly:2 inflammatory:2 subscribe:1 archaeology:1 remember:2 spectacular:1 letter:3 battle:1 set:2 someone:1 complain:3 franklin:1 mint:1 ad:3 great:1 magazine:1 contrast:1 rather:2 scholarly:1 article:2 sleazy:1 extreme:2 hawk:1 doll:2 head:1 base:1 famous:1 bust:1 nefertiti:2 give:1 face:1 typical:1 pink:1 complexion:1 misrepresentation:1 ground:1 beautiful:1 black:6 queen:1 exchange:1 hotheaded:1 ran:1 several:1 issue:1 point:1 egyptologist:1 title:2 cleopatra:1 answer:1 greek:2 say:2 hear:1 hysterical:1 note:1 much:1 personally:1 see:1 one:6 blond:1 haired:1 jesus:4 national:1 shrine:1 wash:1 dc:1 find:2 jar:1 western:1 representation:2 vary:1 enourmously:1 general:1 image:1 youngish:1 male:1 dark:1 hair:2 beard:1 sort:1 modulo:1 nose:1 mediterranean:1 also:1 correct:1 madonna:1 represent:1 person:1 negroid:1 feature:1 accident:1 joe:1 buehler:1 presence:1 marble:1 statue:1 prone:1 forget:1 likely:2 cross:1 bosporus:1 situation:1 break:1 completely:1 turk:1 white:5 persians:1 various:1 group:2 indian:1 subcontinent:1 gandhi:1 arab:1 picture:1 nassar:1 sadat:1 stand:1 side:2 ethiopian:1 racist:2 bent:1 people:1 race:2 may:1 risk:1 potentially:1 remark:1 undercurrent:1 identification:1 modern:1 jew:1 member:1 oppressor:1 consider:1 dicotomy:1 medieval:2 religion:1 hand:1 antisemitism:1 think:1 thesis:1 ever:1 play:1 role:1 hold:1 korean:1 whatever:1 fine:1 awfully:1 self:1 serve:1 insist:1 belongs:1 racial:1 |@bigram say_hear:1 see_one:1 also_remember:1 various_group:1 side_side:1 say_people:1 religion_one:1 one_hand:1 think_jesus:1 ever_play:1 play_role:1 |
4,608 |
[Stuff deleted]
Will, there has been a lot of discussion going on about this over in
s.r.c.b-s.
I will make the case here though and try to help you out:
8 For by grace are ye saved through faith; and that not of yourselves: it
is the gift of God:
9 Not of works, lest any man should boast.
(Ephesians 2:8-9).
Yes, it is by God's grace and our faith that we are saved. We are not
saved by what we do. However,
15 If ye love me, keep my commandments.
(John 14:15).
Keeping Christ's commandments is a "work" per se, and a demonstration of
our love for him. Also,
6 He spake also this parable; A certain man had a fig tree planted in his
vineyard; and he came and sought fruit thereon, and found none.
7 Then said he unto the dresser of his vineyard, Behold, these three years
I come seeking fruit on this fig tree, and find none: cut it down; why
cumbereth it the ground?
8 And he answering said unto him, Lord, let it alone this year also, till I
shall dig about it, and dung it:
9 And if it bear fruit, well: and if not, then after that thou shalt cut it
down.
(Luke 13:6-9).
Again,
16 Ye have not chosen me, but I have chosen you, and ordained you, that ye
should go and bring forth fruit, and that your fruit should remain: that
whatsoever ye shall ask of the Father in my name, he may give it you.
(John 15:16).
It is clear from these verses that we are called to bring forth fruit.
What is that fruit. Well, Paul speaks of the fruit of the spirit being
love, joy, peace, patience, etc. All of these are things that are manifest
in the actions that we carry out.
If a person claims to believe in Jesus Christ, but does not do the things
Christ commanded, I dare say, that they really don't have any faith.
Asking which is more important, faith or works, is like asking which blade
on a pair of scissors is most important or like asking which leg of your
pants is more important.
Good works should come out of and be a result of our faith. To have faith,
true faith in Christ requires you to do what he commands. The parable
above speaks allegorically of a person who does bear no fruit. Christs
commands are actions, and if we don't do those actions and produce fruit,
then we shall be uprooted just like the tree.
It is a dead and useless faith which has no action behind it. Actions
prove our faith and show the genuineness of it. I can sit and talk for
days about the fact that I have so much faith in my ability to jump off a
building and not hit the ground. In other words, I can sit and tell you
all day long that I have faith in my ability to fly. I really don't have
that faith though unless I am willing to jump off the roof and take the
test. Words and talk mean nothing.
I could go on and give more scriptures and if people want me to I will, but
this should be sufficient.
Hope it helped.
Jon
----------------
sig file broken....
please try later... | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/soc.religion.christian/20764 | 15 | soc_religion_christian_20764 | [('stuff', 'NN'), ('deleted', 'VBN'), ('will', 'MD'), ('there', 'EX'), ('has', 'VBZ'), ('been', 'VBN'), ('lot', 'NN'), ('of', 'IN'), ('discussion', 'NN'), ('going', 'VBG'), ('on', 'IN'), ('about', 'IN'), ('this', 'DT'), ('over', 'NN'), ('in', 'IN'), ('will', 'MD'), ('make', 'VB'), ('the', 'DT'), ('case', 'NN'), ('here', 'RB'), ('though', 'IN'), ('and', 'CC'), ('try', 'VB'), ('to', 'TO'), ('help', 'VB'), ('you', 'PRP'), ('out', 'RP'), ('for', 'IN'), ('by', 'IN'), ('grace', 'NN'), ('are', 'VBP'), ('ye', 'VBN'), ('saved', 'VBN'), ('through', 'IN'), ('faith', 'NN'), ('and', 'CC'), ('that', 'IN'), ('not', 'RB'), ('of', 'IN'), ('yourselves', 'NNS'), ('it', 'PRP'), ('is', 'VBZ'), ('the', 'DT'), ('gift', 'NN'), ('of', 'IN'), ('god', 'NN'), ('not', 'RB'), ('of', 'IN'), ('works', 'NNS'), ('lest', 'JJS'), ('any', 'DT'), ('man', 'NN'), ('should', 'MD'), ('boast', 'VB'), ('ephesians', 'NNS'), (').', 'JJ'), ('yes', 'NNS'), ('it', 'PRP'), ('is', 'VBZ'), ('by', 'IN'), ('god', 'JJ'), ('grace', 'NN'), ('and', 'CC'), ('our', 'PRP$'), ('faith', 'NN'), ('that', 'IN'), ('we', 'PRP'), ('are', 'VBP'), ('saved', 'VBN'), ('we', 'PRP'), ('are', 'VBP'), ('not', 'RB'), ('saved', 'VBN'), ('by', 'IN'), ('what', 'WP'), ('we', 'PRP'), ('do', 'VBP'), ('however', 'RB'), ('15', 'CD'), ('if', 'IN'), ('ye', 'VBN'), ('love', 'VB'), ('me', 'PRP'), ('keep', 'VB'), ('my', 'PRP$'), ('commandments', 'NNS'), ('john', 'VBP'), ('14', 'CD'), ('15', 'CD'), (').', 'NN'), ('keeping', 'VBG'), ('christ', 'JJ'), ('commandments', 'NNS'), ('is', 'VBZ'), ('work', 'JJ'), ('per', 'IN'), ('se', 'NN'), ('and', 'CC'), ('demonstration', 'NN'), ('of', 'IN'), ('our', 'PRP$'), ('love', 'NN'), ('for', 'IN'), ('him', 'PRP'), ('also', 'RB'), ('he', 'PRP'), ('spake', 'VB'), ('also', 'RB'), ('this', 'DT'), ('parable', 'JJ'), ('certain', 'JJ'), ('man', 'NN'), ('had', 'VBD'), ('fig', 'VBN'), ('tree', 'RB'), ('planted', 'VBN'), ('in', 'IN'), ('his', 'PRP$'), ('vineyard', 'NN'), ('and', 'CC'), ('he', 'PRP'), ('came', 'VBD'), ('and', 'CC'), ('sought', 'VBD'), ('fruit', 'NN'), ('thereon', 'NN'), ('and', 'CC'), ('found', 'VBD'), ('none', 'NN'), ('then', 'RB'), ('said', 'VBD'), ('he', 'PRP'), ('unto', 'VBD'), ('the', 'DT'), ('dresser', 'NN'), ('of', 'IN'), ('his', 'PRP$'), ('vineyard', 'NN'), ('behold', 'NN'), ('these', 'DT'), ('three', 'CD'), ('years', 'NNS'), ('come', 'VBP'), ('seeking', 'VBG'), ('fruit', 'NN'), ('on', 'IN'), ('this', 'DT'), ('fig', 'NN'), ('tree', 'NN'), ('and', 'CC'), ('find', 'VB'), ('none', 'NN'), ('cut', 'NN'), ('it', 'PRP'), ('down', 'RP'), ('why', 'WRB'), ('cumbereth', 'VB'), ('it', 'PRP'), ('the', 'DT'), ('ground', 'NN'), ('and', 'CC'), ('he', 'PRP'), ('answering', 'VBG'), ('said', 'VBD'), ('unto', 'JJ'), ('him', 'PRP'), ('lord', 'JJ'), ('let', 'VB'), ('it', 'PRP'), ('alone', 'RB'), ('this', 'DT'), ('year', 'NN'), ('also', 'RB'), ('till', 'VBP'), ('shall', 'MD'), ('dig', 'VB'), ('about', 'IN'), ('it', 'PRP'), ('and', 'CC'), ('dung', 'VB'), ('it', 'PRP'), ('and', 'CC'), ('if', 'IN'), ('it', 'PRP'), ('bear', 'VBP'), ('fruit', 'RB'), ('well', 'RB'), ('and', 'CC'), ('if', 'IN'), ('not', 'RB'), ('then', 'RB'), ('after', 'IN'), ('that', 'DT'), ('thou', 'NN'), ('shalt', 'VBD'), ('cut', 'VB'), ('it', 'PRP'), ('down', 'RP'), ('luke', 'RB'), ('13', 'CD'), (').', 'NN'), ('again', 'RB'), ('16', 'CD'), ('ye', 'NNS'), ('have', 'VBP'), ('not', 'RB'), ('chosen', 'VBN'), ('me', 'PRP'), ('but', 'CC'), ('have', 'VBP'), ('chosen', 'VBN'), ('you', 'PRP'), ('and', 'CC'), ('ordained', 'VBD'), ('you', 'PRP'), ('that', 'IN'), ('ye', 'NN'), ('should', 'MD'), ('go', 'VB'), ('and', 'CC'), ('bring', 'VB'), ('forth', 'NN'), ('fruit', 'NN'), ('and', 'CC'), ('that', 'IN'), ('your', 'PRP$'), ('fruit', 'NN'), ('should', 'MD'), ('remain', 'VB'), ('that', 'IN'), ('whatsoever', 'NN'), ('ye', 'VBP'), ('shall', 'MD'), ('ask', 'VB'), ('of', 'IN'), ('the', 'DT'), ('father', 'NN'), ('in', 'IN'), ('my', 'PRP$'), ('name', 'NN'), ('he', 'PRP'), ('may', 'MD'), ('give', 'VB'), ('it', 'PRP'), ('you', 'PRP'), ('john', 'VBP'), ('15', 'CD'), ('16', 'CD'), (').', 'NN'), ('it', 'PRP'), ('is', 'VBZ'), ('clear', 'JJ'), ('from', 'IN'), ('these', 'DT'), ('verses', 'NNS'), ('that', 'IN'), ('we', 'PRP'), ('are', 'VBP'), ('called', 'VBN'), ('to', 'TO'), ('bring', 'VB'), ('forth', 'JJ'), ('fruit', 'NN'), ('what', 'WP'), ('is', 'VBZ'), ('that', 'DT'), ('fruit', 'NN'), ('well', 'RB'), ('paul', 'RB'), ('speaks', 'NN'), ('of', 'IN'), ('the', 'DT'), ('fruit', 'NN'), ('of', 'IN'), ('the', 'DT'), ('spirit', 'NN'), ('being', 'VBG'), ('love', 'VB'), ('joy', 'NN'), ('peace', 'NN'), ('patience', 'NN'), ('etc', 'FW'), ('all', 'DT'), ('of', 'IN'), ('these', 'DT'), ('are', 'VBP'), ('things', 'NNS'), ('that', 'WDT'), ('are', 'VBP'), ('manifest', 'JJS'), ('in', 'IN'), ('the', 'DT'), ('actions', 'NNS'), ('that', 'IN'), ('we', 'PRP'), ('carry', 'VBP'), ('out', 'RP'), ('if', 'IN'), ('person', 'NN'), ('claims', 'NNS'), ('to', 'TO'), ('believe', 'VB'), ('in', 'IN'), ('jesus', 'NN'), ('christ', 'NN'), ('but', 'CC'), ('does', 'VBZ'), ('not', 'RB'), ('do', 'VB'), ('the', 'DT'), ('things', 'NNS'), ('christ', 'NN'), ('commanded', 'VBD'), ('dare', 'NNS'), ('say', 'VBP'), ('that', 'IN'), ('they', 'PRP'), ('really', 'RB'), ('don', 'VBP'), ('have', 'VBP'), ('any', 'DT'), ('faith', 'NN'), ('asking', 'VBG'), ('which', 'WDT'), ('is', 'VBZ'), ('more', 'RBR'), ('important', 'JJ'), ('faith', 'NN'), ('or', 'CC'), ('works', 'VBZ'), ('is', 'VBZ'), ('like', 'IN'), ('asking', 'VBG'), ('which', 'WDT'), ('blade', 'NN'), ('on', 'IN'), ('pair', 'NN'), ('of', 'IN'), ('scissors', 'NNS'), ('is', 'VBZ'), ('most', 'RBS'), ('important', 'JJ'), ('or', 'CC'), ('like', 'IN'), ('asking', 'VBG'), ('which', 'WDT'), ('leg', 'NN'), ('of', 'IN'), ('your', 'PRP$'), ('pants', 'NNS'), ('is', 'VBZ'), ('more', 'RBR'), ('important', 'JJ'), ('good', 'JJ'), ('works', 'NNS'), ('should', 'MD'), ('come', 'VB'), ('out', 'IN'), ('of', 'IN'), ('and', 'CC'), ('be', 'VB'), ('result', 'NN'), ('of', 'IN'), ('our', 'PRP$'), ('faith', 'NN'), ('to', 'TO'), ('have', 'VB'), ('faith', 'VBN'), ('true', 'JJ'), ('faith', 'NN'), ('in', 'IN'), ('christ', 'NN'), ('requires', 'VBZ'), ('you', 'PRP'), ('to', 'TO'), ('do', 'VB'), ('what', 'WP'), ('he', 'PRP'), ('commands', 'VBZ'), ('the', 'DT'), ('parable', 'JJ'), ('above', 'IN'), ('speaks', 'NNS'), ('allegorically', 'RB'), ('of', 'IN'), ('person', 'NN'), ('who', 'WP'), ('does', 'VBZ'), ('bear', 'VB'), ('no', 'DT'), ('fruit', 'NN'), ('christs', 'VBZ'), ('commands', 'NNS'), ('are', 'VBP'), ('actions', 'NNS'), ('and', 'CC'), ('if', 'IN'), ('we', 'PRP'), ('don', 'VBP'), ('do', 'VBP'), ('those', 'DT'), ('actions', 'NNS'), ('and', 'CC'), ('produce', 'VB'), ('fruit', 'NN'), ('then', 'RB'), ('we', 'PRP'), ('shall', 'MD'), ('be', 'VB'), ('uprooted', 'JJ'), ('just', 'RB'), ('like', 'IN'), ('the', 'DT'), ('tree', 'NN'), ('it', 'PRP'), ('is', 'VBZ'), ('dead', 'JJ'), ('and', 'CC'), ('useless', 'JJ'), ('faith', 'NN'), ('which', 'WDT'), ('has', 'VBZ'), ('no', 'DT'), ('action', 'NN'), ('behind', 'IN'), ('it', 'PRP'), ('actions', 'NNS'), ('prove', 'IN'), ('our', 'PRP$'), ('faith', 'NN'), ('and', 'CC'), ('show', 'VB'), ('the', 'DT'), ('genuineness', 'NN'), ('of', 'IN'), ('it', 'PRP'), ('can', 'MD'), ('sit', 'VB'), ('and', 'CC'), ('talk', 'VB'), ('for', 'IN'), ('days', 'NNS'), ('about', 'IN'), ('the', 'DT'), ('fact', 'NN'), ('that', 'WDT'), ('have', 'VBP'), ('so', 'RB'), ('much', 'JJ'), ('faith', 'NN'), ('in', 'IN'), ('my', 'PRP$'), ('ability', 'NN'), ('to', 'TO'), ('jump', 'VB'), ('off', 'RP'), ('building', 'NN'), ('and', 'CC'), ('not', 'RB'), ('hit', 'VB'), ('the', 'DT'), ('ground', 'NN'), ('in', 'IN'), ('other', 'JJ'), ('words', 'NNS'), ('can', 'MD'), ('sit', 'VB'), ('and', 'CC'), ('tell', 'VB'), ('you', 'PRP'), ('all', 'DT'), ('day', 'NN'), ('long', 'RB'), ('that', 'DT'), ('have', 'VBP'), ('faith', 'VBN'), ('in', 'IN'), ('my', 'PRP$'), ('ability', 'NN'), ('to', 'TO'), ('fly', 'VB'), ('really', 'RB'), ('don', 'NNS'), ('have', 'VBP'), ('that', 'DT'), ('faith', 'VBP'), ('though', 'IN'), ('unless', 'IN'), ('am', 'VBP'), ('willing', 'JJ'), ('to', 'TO'), ('jump', 'VB'), ('off', 'RP'), ('the', 'DT'), ('roof', 'NN'), ('and', 'CC'), ('take', 'VB'), ('the', 'DT'), ('test', 'NN'), ('words', 'NNS'), ('and', 'CC'), ('talk', 'VB'), ('mean', 'JJ'), ('nothing', 'NN'), ('could', 'MD'), ('go', 'VB'), ('on', 'IN'), ('and', 'CC'), ('give', 'VB'), ('more', 'JJR'), ('scriptures', 'NNS'), ('and', 'CC'), ('if', 'IN'), ('people', 'NNS'), ('want', 'VBP'), ('me', 'PRP'), ('to', 'TO'), ('will', 'MD'), ('but', 'CC'), ('this', 'DT'), ('should', 'MD'), ('be', 'VB'), ('sufficient', 'JJ'), ('hope', 'NN'), ('it', 'PRP'), ('helped', 'VBD'), ('jon', 'VB'), ('----------------', 'JJ'), ('sig', 'NN'), ('file', 'NN'), ('broken', 'VBN'), ('....', 'JJ'), ('please', 'NN'), ('try', 'NN'), ('later', 'RB'), ('...', ':')] | ['stuff', 'delete', 'lot', 'discussion', 'go', 'make', 'case', 'though', 'try', 'help', 'grace', 'ye', 'save', 'faith', 'gift', 'god', 'work', 'l', 'man', 'boast', 'ephesian', 'yes', 'god', 'grace', 'faith', 'save', 'save', 'however', 'ye', 'love', 'keep', 'commandment', 'john', 'keep', 'christ', 'commandment', 'work', 'per', 'se', 'demonstration', 'love', 'also', 'spake', 'also', 'parable', 'certain', 'man', 'fig', 'tree', 'plant', 'vineyard', 'come', 'seek', 'fruit', 'thereon', 'find', 'none', 'say', 'unto', 'dresser', 'vineyard', 'behold', 'three', 'year', 'come', 'seek', 'fruit', 'fig', 'tree', 'find', 'none', 'cut', 'cumbereth', 'ground', 'answer', 'say', 'unto', 'lord', 'let', 'alone', 'year', 'also', 'till', 'shall', 'dig', 'dung', 'bear', 'fruit', 'well', 'thou', 'shalt', 'cut', 'luke', 'ye', 'choose', 'choose', 'ordain', 'ye', 'go', 'bring', 'forth', 'fruit', 'fruit', 'remain', 'whatsoever', 'ye', 'shall', 'ask', 'father', 'name', 'may', 'give', 'john', 'clear', 'verse', 'call', 'bring', 'forth', 'fruit', 'fruit', 'well', 'paul', 'speaks', 'fruit', 'spirit', 'love', 'joy', 'peace', 'patience', 'etc', 'thing', 'manifest', 'action', 'carry', 'person', 'claim', 'believe', 'jesus', 'christ', 'thing', 'christ', 'command', 'dare', 'say', 'really', 'faith', 'ask', 'important', 'faith', 'work', 'like', 'ask', 'blade', 'pair', 'scissors', 'important', 'like', 'ask', 'leg', 'pant', 'important', 'good', 'work', 'come', 'result', 'faith', 'faith', 'true', 'faith', 'christ', 'require', 'command', 'parable', 'speaks', 'allegorically', 'person', 'bear', 'fruit', 'christs', 'command', 'action', 'action', 'produce', 'fruit', 'shall', 'uprooted', 'like', 'tree', 'dead', 'useless', 'faith', 'action', 'behind', 'action', 'prove', 'faith', 'show', 'genuineness', 'sit', 'talk', 'day', 'fact', 'much', 'faith', 'ability', 'jump', 'building', 'hit', 'ground', 'word', 'sit', 'tell', 'day', 'long', 'faith', 'ability', 'fly', 'really', 'faith', 'though', 'unless', 'willing', 'jump', 'roof', 'take', 'test', 'word', 'talk', 'mean', 'nothing', 'could', 'go', 'give', 'scripture', 'people', 'want', 'sufficient', 'hope', 'help', 'jon', 'sig', 'file', 'break', 'please', 'try', 'later'] | ['stuff_delete', 'lot_discussion', 'discussion_go', 'go_make', 'make_case', 'case_though', 'though_try', 'try_help', 'save_faith', 'gift_god', 'god_work', 'yes_god', 'god_grace', 'per_se', 'come_seek', 'say_unto', 'three_year', 'year_come', 'come_seek', 'answer_say', 'say_unto', 'let_alone', 'year_also', 'thou_shalt', 'bring_forth', 'name_may', 'may_give', 'bring_forth', 'etc_thing', 'claim_believe', 'believe_jesus', 'jesus_christ', 'dare_say', 'say_really', 'faith_work', 'work_like', 'like_ask', 'like_ask', 'good_work', 'faith_faith', 'faith_christ', 'prove_faith', 'hit_ground', 'day_long', 'take_test', 'mean_nothing', 'nothing_could', 'could_go', 'go_give', 'people_want', 'hope_help', 'sig_file', 'please_try'] | soc_religion_christian_20764 |@lemmatized stuff:1 delete:1 lot:1 discussion:1 go:3 make:1 case:1 though:2 try:2 help:2 grace:2 ye:5 save:3 faith:12 gift:1 god:2 work:4 l:1 man:2 boast:1 ephesian:1 yes:1 however:1 love:3 keep:2 commandment:2 john:2 christ:4 per:1 se:1 demonstration:1 also:3 spake:1 parable:2 certain:1 fig:2 tree:3 plant:1 vineyard:2 come:3 seek:2 fruit:10 thereon:1 find:2 none:2 say:3 unto:2 dresser:1 behold:1 three:1 year:2 cut:2 cumbereth:1 ground:2 answer:1 lord:1 let:1 alone:1 till:1 shall:3 dig:1 dung:1 bear:2 well:2 thou:1 shalt:1 luke:1 choose:2 ordain:1 bring:2 forth:2 remain:1 whatsoever:1 ask:4 father:1 name:1 may:1 give:2 clear:1 verse:1 call:1 paul:1 speaks:2 spirit:1 joy:1 peace:1 patience:1 etc:1 thing:2 manifest:1 action:5 carry:1 person:2 claim:1 believe:1 jesus:1 command:3 dare:1 really:2 important:3 like:3 blade:1 pair:1 scissors:1 leg:1 pant:1 good:1 result:1 true:1 require:1 allegorically:1 christs:1 produce:1 uprooted:1 dead:1 useless:1 behind:1 prove:1 show:1 genuineness:1 sit:2 talk:2 day:2 fact:1 much:1 ability:2 jump:2 building:1 hit:1 word:2 tell:1 long:1 fly:1 unless:1 willing:1 roof:1 take:1 test:1 mean:1 nothing:1 could:1 scripture:1 people:1 want:1 sufficient:1 hope:1 jon:1 sig:1 file:1 break:1 please:1 later:1 |@bigram stuff_delete:1 lot_discussion:1 discussion_go:1 go_make:1 make_case:1 case_though:1 though_try:1 try_help:1 save_faith:1 gift_god:1 god_work:1 yes_god:1 god_grace:1 per_se:1 come_seek:2 say_unto:2 three_year:1 year_come:1 answer_say:1 let_alone:1 year_also:1 thou_shalt:1 bring_forth:2 name_may:1 may_give:1 etc_thing:1 claim_believe:1 believe_jesus:1 jesus_christ:1 dare_say:1 say_really:1 faith_work:1 work_like:1 like_ask:2 good_work:1 faith_faith:1 faith_christ:1 prove_faith:1 hit_ground:1 day_long:1 take_test:1 mean_nothing:1 nothing_could:1 could_go:1 go_give:1 people_want:1 hope_help:1 sig_file:1 please_try:1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.