diff --git a/research/.gitignore b/research/.gitignore index 934305f7..3cdaa558 100644 --- a/research/.gitignore +++ b/research/.gitignore @@ -1,3 +1,4 @@ comprehensiondatas/ asap-aes/ feedback-prize-2021/ +pretrained/ diff --git a/research/Data Augmentation with NLP.ipynb b/research/Data Augmentation with NLP.ipynb new file mode 100644 index 00000000..c7ee44ed --- /dev/null +++ b/research/Data Augmentation with NLP.ipynb @@ -0,0 +1,405 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 10, + "id": "5198b5db", + "metadata": { + "ExecuteTime": { + "end_time": "2022-02-21T11:09:49.000368Z", + "start_time": "2022-02-21T11:09:48.991377Z" + } + }, + "outputs": [], + "source": [ + "import nlpaug.augmenter.char as nac\n", + "import nlpaug.augmenter.word as naw\n", + "import nlpaug.augmenter.sentence as nas\n", + "import nlpaug.flow as nafc\n", + "import nlpaug\n", + "\n", + "from nlpaug.util import Action\n", + "\n", + "import pandas as pd" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "ef52b23c", + "metadata": { + "ExecuteTime": { + "end_time": "2022-02-21T10:51:13.388707Z", + "start_time": "2022-02-21T10:51:13.304667Z" + } + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
textlabelscorestartendsource
0In 2019 a wave of anti-abortion laws swept thi...Evidence0.9837200528abortion-florida-15-week-ban
1Though most of these laws were quickly blocked...Evidence0.934319528908abortion-florida-15-week-ban
2Three years later, American reproductive right...Evidence0.6223589081214abortion-florida-15-week-ban
3It might seem curious, then, that legislators ...Evidence0.94686612141722abortion-florida-15-week-ban
4One of this year’s unmistakable trends in anti...Evidence0.99186917222394abortion-florida-15-week-ban
.....................
3893And boy did it comeClaim0.98292825542573yosemite-falls
3894But the record rains will not end California’s...Rebuttal0.88037725732636yosemite-falls
3895Last week, Gov. Gavin Newsom extended the stat...Claim0.54148126362769yosemite-falls
3896This has been California’s second driest year ...Evidence0.47904927692925yosemite-falls
3897Severe drought conditions, worsened by climate...Claim0.47842429253080yosemite-falls
\n", + "

3898 rows × 6 columns

\n", + "
" + ], + "text/plain": [ + " text label score \\\n", + "0 In 2019 a wave of anti-abortion laws swept thi... Evidence 0.983720 \n", + "1 Though most of these laws were quickly blocked... Evidence 0.934319 \n", + "2 Three years later, American reproductive right... Evidence 0.622358 \n", + "3 It might seem curious, then, that legislators ... Evidence 0.946866 \n", + "4 One of this year’s unmistakable trends in anti... Evidence 0.991869 \n", + "... ... ... ... \n", + "3893 And boy did it come Claim 0.982928 \n", + "3894 But the record rains will not end California’s... Rebuttal 0.880377 \n", + "3895 Last week, Gov. Gavin Newsom extended the stat... Claim 0.541481 \n", + "3896 This has been California’s second driest year ... Evidence 0.479049 \n", + "3897 Severe drought conditions, worsened by climate... Claim 0.478424 \n", + "\n", + " start end source \n", + "0 0 528 abortion-florida-15-week-ban \n", + "1 528 908 abortion-florida-15-week-ban \n", + "2 908 1214 abortion-florida-15-week-ban \n", + "3 1214 1722 abortion-florida-15-week-ban \n", + "4 1722 2394 abortion-florida-15-week-ban \n", + "... ... ... ... \n", + "3893 2554 2573 yosemite-falls \n", + "3894 2573 2636 yosemite-falls \n", + "3895 2636 2769 yosemite-falls \n", + "3896 2769 2925 yosemite-falls \n", + "3897 2925 3080 yosemite-falls \n", + "\n", + "[3898 rows x 6 columns]" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df = pd.read_csv(\"datagen/nytimes/pseudo.csv\")\n", + "df" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "89d44400", + "metadata": { + "ExecuteTime": { + "end_time": "2022-02-21T10:52:22.325786Z", + "start_time": "2022-02-21T10:52:22.315786Z" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + "'In 2019 a wave of anti-abortion laws swept this country — a common enough event in the United States, where hundreds of such laws have passed during the last decade. But these grabbed the public’s attention in a way many others hadn’t. Georgia banned abortion after about six weeks of pregnancy, or about two weeks after a missed menstrual period. Ohio, Mississippi, Louisiana and Kentucky did the same, while Missouri banned the procedure at eight weeks. Alabama went the furthest, banning virtually all abortions in the state.'" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "text = df.text[0]\n", + "text" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "id": "7a3f2dff", + "metadata": { + "ExecuteTime": { + "end_time": "2022-02-21T11:10:49.272910Z", + "start_time": "2022-02-21T11:10:49.255910Z" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + "'C:/Users/Prannaya/.conda/envs/analytics/lib/site-packages/nlpaug/model/GoogleNews-vectors-negative300.bin'" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "\"/\".join(nlpaug.__file__.split(\"\\\\\")[:-1]+[\"model\", \"GoogleNews-vectors-negative300.bin\"])" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "id": "d23195a3", + "metadata": { + "ExecuteTime": { + "end_time": "2022-02-21T11:10:56.066759Z", + "start_time": "2022-02-21T11:10:55.951697Z" + } + }, + "outputs": [ + { + "ename": "FileNotFoundError", + "evalue": "[Errno 2] No such file or directory: 'C:/Users/Prannaya/.conda/envs/analytics/lib/site-packages/nlpaug/model/GoogleNews-vectors-negative300.bin'", + "output_type": "error", + "traceback": [ + "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[1;31mFileNotFoundError\u001b[0m Traceback (most recent call last)", + "Input \u001b[1;32mIn [16]\u001b[0m, in \u001b[0;36m\u001b[1;34m\u001b[0m\n\u001b[0;32m 1\u001b[0m \u001b[38;5;66;03m# model_type: word2vec, glove or fasttext\u001b[39;00m\n\u001b[1;32m----> 2\u001b[0m aug \u001b[38;5;241m=\u001b[39m \u001b[43mnaw\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mWordEmbsAug\u001b[49m\u001b[43m(\u001b[49m\n\u001b[0;32m 3\u001b[0m \u001b[43m \u001b[49m\u001b[43mmodel_type\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[38;5;124;43mword2vec\u001b[39;49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mmodel_path\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43m/\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mjoin\u001b[49m\u001b[43m(\u001b[49m\u001b[43mnlpaug\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[38;5;18;43m__file__\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43msplit\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;130;43;01m\\\\\u001b[39;49;00m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m)\u001b[49m\u001b[43m[\u001b[49m\u001b[43m:\u001b[49m\u001b[38;5;241;43m-\u001b[39;49m\u001b[38;5;241;43m1\u001b[39;49m\u001b[43m]\u001b[49m\u001b[38;5;241;43m+\u001b[39;49m\u001b[43m[\u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mmodel\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mGoogleNews-vectors-negative300.bin\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m]\u001b[49m\u001b[43m)\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 4\u001b[0m \u001b[43m \u001b[49m\u001b[43maction\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43minsert\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m)\u001b[49m\n\u001b[0;32m 5\u001b[0m augmented_text \u001b[38;5;241m=\u001b[39m aug\u001b[38;5;241m.\u001b[39maugment(text)\n\u001b[0;32m 6\u001b[0m \u001b[38;5;28mprint\u001b[39m(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mOriginal:\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n", + "File \u001b[1;32m~\\.conda\\envs\\analytics\\lib\\site-packages\\nlpaug\\augmenter\\word\\word_embs.py:88\u001b[0m, in \u001b[0;36mWordEmbsAug.__init__\u001b[1;34m(self, model_type, model_path, model, action, name, aug_min, aug_max, aug_p, top_k, n_gram_separator, stopwords, tokenizer, reverse_tokenizer, force_reload, stopwords_regex, verbose, skip_check)\u001b[0m\n\u001b[0;32m 85\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mpre_validate()\n\u001b[0;32m 87\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m model \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[1;32m---> 88\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mmodel \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mget_model\u001b[49m\u001b[43m(\u001b[49m\u001b[43mmodel_path\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mmodel_path\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mmodel_type\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mmodel_type\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mforce_reload\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mforce_reload\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 89\u001b[0m \u001b[43m \u001b[49m\u001b[43mtop_k\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mtop_k\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mskip_check\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mskip_check\u001b[49m\u001b[43m)\u001b[49m\n\u001b[0;32m 90\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[0;32m 91\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mmodel \u001b[38;5;241m=\u001b[39m model\n", + "File \u001b[1;32m~\\.conda\\envs\\analytics\\lib\\site-packages\\nlpaug\\augmenter\\word\\word_embs.py:99\u001b[0m, in \u001b[0;36mWordEmbsAug.get_model\u001b[1;34m(cls, model_path, model_type, force_reload, top_k, skip_check)\u001b[0m\n\u001b[0;32m 97\u001b[0m \u001b[38;5;129m@classmethod\u001b[39m\n\u001b[0;32m 98\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21mget_model\u001b[39m(\u001b[38;5;28mcls\u001b[39m, model_path, model_type, force_reload\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mFalse\u001b[39;00m, top_k\u001b[38;5;241m=\u001b[39m\u001b[38;5;241m100\u001b[39m, skip_check\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mFalse\u001b[39;00m):\n\u001b[1;32m---> 99\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43minit_word_embs_model\u001b[49m\u001b[43m(\u001b[49m\u001b[43mmodel_path\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mmodel_type\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mforce_reload\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mtop_k\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mtop_k\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mskip_check\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mskip_check\u001b[49m\u001b[43m)\u001b[49m\n", + "File \u001b[1;32m~\\.conda\\envs\\analytics\\lib\\site-packages\\nlpaug\\augmenter\\word\\word_embs.py:23\u001b[0m, in \u001b[0;36minit_word_embs_model\u001b[1;34m(model_path, model_type, force_reload, top_k, skip_check)\u001b[0m\n\u001b[0;32m 21\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m model_type \u001b[38;5;241m==\u001b[39m \u001b[38;5;124m'\u001b[39m\u001b[38;5;124mword2vec\u001b[39m\u001b[38;5;124m'\u001b[39m:\n\u001b[0;32m 22\u001b[0m model \u001b[38;5;241m=\u001b[39m nmw\u001b[38;5;241m.\u001b[39mWord2vec(top_k\u001b[38;5;241m=\u001b[39mtop_k, skip_check\u001b[38;5;241m=\u001b[39mskip_check)\n\u001b[1;32m---> 23\u001b[0m \u001b[43mmodel\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mread\u001b[49m\u001b[43m(\u001b[49m\u001b[43mmodel_path\u001b[49m\u001b[43m)\u001b[49m\n\u001b[0;32m 24\u001b[0m \u001b[38;5;28;01melif\u001b[39;00m model_type \u001b[38;5;241m==\u001b[39m \u001b[38;5;124m'\u001b[39m\u001b[38;5;124mglove\u001b[39m\u001b[38;5;124m'\u001b[39m:\n\u001b[0;32m 25\u001b[0m model \u001b[38;5;241m=\u001b[39m nmw\u001b[38;5;241m.\u001b[39mGloVe(top_k\u001b[38;5;241m=\u001b[39mtop_k, skip_check\u001b[38;5;241m=\u001b[39mskip_check)\n", + "File \u001b[1;32m~\\.conda\\envs\\analytics\\lib\\site-packages\\nlpaug\\model\\word_embs\\word2vec.py:24\u001b[0m, in \u001b[0;36mWord2vec.read\u001b[1;34m(self, file_path, max_num_vector)\u001b[0m\n\u001b[0;32m 23\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21mread\u001b[39m(\u001b[38;5;28mself\u001b[39m, file_path, max_num_vector\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mNone\u001b[39;00m):\n\u001b[1;32m---> 24\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mmodel \u001b[38;5;241m=\u001b[39m \u001b[43mKeyedVectors\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mload_word2vec_format\u001b[49m\u001b[43m(\u001b[49m\u001b[43mfile_path\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mbinary\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43;01mTrue\u001b[39;49;00m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mlimit\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mmax_num_vector\u001b[49m\u001b[43m)\u001b[49m\n\u001b[0;32m 25\u001b[0m \u001b[38;5;28msuper\u001b[39m()\u001b[38;5;241m.\u001b[39m_read()\n", + "File \u001b[1;32m~\\.conda\\envs\\analytics\\lib\\site-packages\\gensim\\models\\keyedvectors.py:1629\u001b[0m, in \u001b[0;36mKeyedVectors.load_word2vec_format\u001b[1;34m(cls, fname, fvocab, binary, encoding, unicode_errors, limit, datatype, no_header)\u001b[0m\n\u001b[0;32m 1582\u001b[0m \u001b[38;5;129m@classmethod\u001b[39m\n\u001b[0;32m 1583\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21mload_word2vec_format\u001b[39m(\n\u001b[0;32m 1584\u001b[0m \u001b[38;5;28mcls\u001b[39m, fname, fvocab\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mNone\u001b[39;00m, binary\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mFalse\u001b[39;00m, encoding\u001b[38;5;241m=\u001b[39m\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mutf8\u001b[39m\u001b[38;5;124m'\u001b[39m, unicode_errors\u001b[38;5;241m=\u001b[39m\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mstrict\u001b[39m\u001b[38;5;124m'\u001b[39m,\n\u001b[0;32m 1585\u001b[0m limit\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mNone\u001b[39;00m, datatype\u001b[38;5;241m=\u001b[39mREAL, no_header\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mFalse\u001b[39;00m,\n\u001b[0;32m 1586\u001b[0m ):\n\u001b[0;32m 1587\u001b[0m \u001b[38;5;124;03m\"\"\"Load KeyedVectors from a file produced by the original C word2vec-tool format.\u001b[39;00m\n\u001b[0;32m 1588\u001b[0m \n\u001b[0;32m 1589\u001b[0m \u001b[38;5;124;03m Warnings\u001b[39;00m\n\u001b[1;32m (...)\u001b[0m\n\u001b[0;32m 1627\u001b[0m \n\u001b[0;32m 1628\u001b[0m \u001b[38;5;124;03m \"\"\"\u001b[39;00m\n\u001b[1;32m-> 1629\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43m_load_word2vec_format\u001b[49m\u001b[43m(\u001b[49m\n\u001b[0;32m 1630\u001b[0m \u001b[43m \u001b[49m\u001b[38;5;28;43mcls\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mfname\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mfvocab\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mfvocab\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mbinary\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mbinary\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mencoding\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mencoding\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43municode_errors\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43municode_errors\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 1631\u001b[0m \u001b[43m \u001b[49m\u001b[43mlimit\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mlimit\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mdatatype\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mdatatype\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mno_header\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mno_header\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 1632\u001b[0m \u001b[43m \u001b[49m\u001b[43m)\u001b[49m\n", + "File \u001b[1;32m~\\.conda\\envs\\analytics\\lib\\site-packages\\gensim\\models\\keyedvectors.py:1955\u001b[0m, in \u001b[0;36m_load_word2vec_format\u001b[1;34m(cls, fname, fvocab, binary, encoding, unicode_errors, limit, datatype, no_header, binary_chunk_size)\u001b[0m\n\u001b[0;32m 1952\u001b[0m counts[word] \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mint\u001b[39m(count)\n\u001b[0;32m 1954\u001b[0m logger\u001b[38;5;241m.\u001b[39minfo(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mloading projection weights from \u001b[39m\u001b[38;5;132;01m%s\u001b[39;00m\u001b[38;5;124m\"\u001b[39m, fname)\n\u001b[1;32m-> 1955\u001b[0m \u001b[38;5;28;01mwith\u001b[39;00m \u001b[43mutils\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mopen\u001b[49m\u001b[43m(\u001b[49m\u001b[43mfname\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[38;5;124;43mrb\u001b[39;49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[43m)\u001b[49m \u001b[38;5;28;01mas\u001b[39;00m fin:\n\u001b[0;32m 1956\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m no_header:\n\u001b[0;32m 1957\u001b[0m \u001b[38;5;66;03m# deduce both vocab_size & vector_size from 1st pass over file\u001b[39;00m\n\u001b[0;32m 1958\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m binary:\n", + "File \u001b[1;32m~\\.conda\\envs\\analytics\\lib\\site-packages\\smart_open\\smart_open_lib.py:188\u001b[0m, in \u001b[0;36mopen\u001b[1;34m(uri, mode, buffering, encoding, errors, newline, closefd, opener, ignore_ext, compression, transport_params)\u001b[0m\n\u001b[0;32m 185\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m transport_params \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[0;32m 186\u001b[0m transport_params \u001b[38;5;241m=\u001b[39m {}\n\u001b[1;32m--> 188\u001b[0m fobj \u001b[38;5;241m=\u001b[39m \u001b[43m_shortcut_open\u001b[49m\u001b[43m(\u001b[49m\n\u001b[0;32m 189\u001b[0m \u001b[43m \u001b[49m\u001b[43muri\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 190\u001b[0m \u001b[43m \u001b[49m\u001b[43mmode\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 191\u001b[0m \u001b[43m \u001b[49m\u001b[43mcompression\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mcompression\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 192\u001b[0m \u001b[43m \u001b[49m\u001b[43mbuffering\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mbuffering\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 193\u001b[0m \u001b[43m \u001b[49m\u001b[43mencoding\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mencoding\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 194\u001b[0m \u001b[43m \u001b[49m\u001b[43merrors\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43merrors\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 195\u001b[0m \u001b[43m \u001b[49m\u001b[43mnewline\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mnewline\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 196\u001b[0m \u001b[43m\u001b[49m\u001b[43m)\u001b[49m\n\u001b[0;32m 197\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m fobj \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[0;32m 198\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m fobj\n", + "File \u001b[1;32m~\\.conda\\envs\\analytics\\lib\\site-packages\\smart_open\\smart_open_lib.py:361\u001b[0m, in \u001b[0;36m_shortcut_open\u001b[1;34m(uri, mode, compression, buffering, encoding, errors, newline)\u001b[0m\n\u001b[0;32m 358\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m errors \u001b[38;5;129;01mand\u001b[39;00m \u001b[38;5;124m'\u001b[39m\u001b[38;5;124mb\u001b[39m\u001b[38;5;124m'\u001b[39m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;129;01min\u001b[39;00m mode:\n\u001b[0;32m 359\u001b[0m open_kwargs[\u001b[38;5;124m'\u001b[39m\u001b[38;5;124merrors\u001b[39m\u001b[38;5;124m'\u001b[39m] \u001b[38;5;241m=\u001b[39m errors\n\u001b[1;32m--> 361\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m _builtin_open(local_path, mode, buffering\u001b[38;5;241m=\u001b[39mbuffering, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mopen_kwargs)\n", + "\u001b[1;31mFileNotFoundError\u001b[0m: [Errno 2] No such file or directory: 'C:/Users/Prannaya/.conda/envs/analytics/lib/site-packages/nlpaug/model/GoogleNews-vectors-negative300.bin'" + ] + } + ], + "source": [ + "# model_type: word2vec, glove or fasttext\n", + "aug = naw.WordEmbsAug(\n", + " model_type='word2vec', model_path=\"/\".join(nlpaug.__file__.split(\"\\\\\")[:-1]+[\"model\", \"GoogleNews-vectors-negative300.bin\"]),\n", + " action=\"insert\")\n", + "augmented_text = aug.augment(text)\n", + "print(\"Original:\")\n", + "print(text)\n", + "print(\"Augmented Text:\")\n", + "print(augmented_text)" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "ee39e0d0", + "metadata": { + "ExecuteTime": { + "end_time": "2022-02-21T10:52:55.177790Z", + "start_time": "2022-02-21T10:52:55.164791Z" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + "'C:\\\\Users\\\\Prannaya\\\\.conda\\\\envs\\\\analytics\\\\lib\\\\site-packages\\\\nlpaug\\\\augmenter\\\\char\\\\__init__.py'" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "nac.__file__" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "7877146e", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.9.7" + }, + "toc": { + "base_numbering": 1, + "nav_menu": {}, + "number_sections": true, + "sideBar": true, + "skip_h1_title": false, + "title_cell": "Table of Contents", + "title_sidebar": "Contents", + "toc_cell": false, + "toc_position": {}, + "toc_section_display": true, + "toc_window_display": false + }, + "varInspector": { + "cols": { + "lenName": 16, + "lenType": 16, + "lenVar": 40 + }, + "kernels_config": { + "python": { + "delete_cmd_postfix": "", + "delete_cmd_prefix": "del ", + "library": "var_list.py", + "varRefreshCmd": "print(var_dic_list())" + }, + "r": { + "delete_cmd_postfix": ") ", + "delete_cmd_prefix": "rm(", + "library": "var_list.r", + "varRefreshCmd": "cat(var_dic_list()) " + } + }, + "types_to_exclude": [ + "module", + "function", + "builtin_function_or_method", + "instance", + "_Feature" + ], + "window_display": false + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/research/EDA on Student Dataset.ipynb b/research/EDA on Student Dataset.ipynb new file mode 100644 index 00000000..6aee6eab --- /dev/null +++ b/research/EDA on Student Dataset.ipynb @@ -0,0 +1,628 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 6, + "id": "0aedb29d", + "metadata": { + "ExecuteTime": { + "end_time": "2022-03-01T12:35:26.609266Z", + "start_time": "2022-03-01T12:35:18.247783Z" + } + }, + "outputs": [], + "source": [ + "import np\n", + "import pandas as pd\n", + "import matplotlib.pyplot as plt\n", + "import seaborn as sns\n", + "from spacy import displacy" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "0b793141", + "metadata": { + "ExecuteTime": { + "end_time": "2022-03-01T12:35:03.583417Z", + "start_time": "2022-03-01T12:35:03.383415Z" + } + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
textlabelscorestartendsource
0In 2019 a wave of anti-abortion laws swept thi...Evidence0.9837200528abortion-florida-15-week-ban
1Though most of these laws were quickly blocked...Evidence0.934319528908abortion-florida-15-week-ban
2Three years later, American reproductive right...Evidence0.6223589081214abortion-florida-15-week-ban
3It might seem curious, then, that legislators ...Evidence0.94686612141722abortion-florida-15-week-ban
4One of this year’s unmistakable trends in anti...Evidence0.99186917222394abortion-florida-15-week-ban
.....................
3893And boy did it comeClaim0.98292825542573yosemite-falls
3894But the record rains will not end California’s...Rebuttal0.88037725732636yosemite-falls
3895Last week, Gov. Gavin Newsom extended the stat...Claim0.54148126362769yosemite-falls
3896This has been California’s second driest year ...Evidence0.47904927692925yosemite-falls
3897Severe drought conditions, worsened by climate...Claim0.47842429253080yosemite-falls
\n", + "

3898 rows × 6 columns

\n", + "
" + ], + "text/plain": [ + " text label score \\\n", + "0 In 2019 a wave of anti-abortion laws swept thi... Evidence 0.983720 \n", + "1 Though most of these laws were quickly blocked... Evidence 0.934319 \n", + "2 Three years later, American reproductive right... Evidence 0.622358 \n", + "3 It might seem curious, then, that legislators ... Evidence 0.946866 \n", + "4 One of this year’s unmistakable trends in anti... Evidence 0.991869 \n", + "... ... ... ... \n", + "3893 And boy did it come Claim 0.982928 \n", + "3894 But the record rains will not end California’s... Rebuttal 0.880377 \n", + "3895 Last week, Gov. Gavin Newsom extended the stat... Claim 0.541481 \n", + "3896 This has been California’s second driest year ... Evidence 0.479049 \n", + "3897 Severe drought conditions, worsened by climate... Claim 0.478424 \n", + "\n", + " start end source \n", + "0 0 528 abortion-florida-15-week-ban \n", + "1 528 908 abortion-florida-15-week-ban \n", + "2 908 1214 abortion-florida-15-week-ban \n", + "3 1214 1722 abortion-florida-15-week-ban \n", + "4 1722 2394 abortion-florida-15-week-ban \n", + "... ... ... ... \n", + "3893 2554 2573 yosemite-falls \n", + "3894 2573 2636 yosemite-falls \n", + "3895 2636 2769 yosemite-falls \n", + "3896 2769 2925 yosemite-falls \n", + "3897 2925 3080 yosemite-falls \n", + "\n", + "[3898 rows x 6 columns]" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df = pd.read_csv(\"datagen/nytimes/pseudo.csv\")\n", + "df" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "47915201", + "metadata": { + "ExecuteTime": { + "end_time": "2022-03-01T12:35:03.598416Z", + "start_time": "2022-03-01T12:35:03.587417Z" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + "'In 2019 a wave of anti-abortion laws swept this country — a common enough event in the United States, where hundreds of such laws have passed during the last decade. But these grabbed the public’s attention in a way many others hadn’t. Georgia banned abortion after about six weeks of pregnancy, or about two weeks after a missed menstrual period. Ohio, Mississippi, Louisiana and Kentucky did the same, while Missouri banned the procedure at eight weeks. Alabama went the furthest, banning virtually all abortions in the state.'" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.text[0]" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "f846729f", + "metadata": { + "ExecuteTime": { + "end_time": "2022-03-01T12:35:03.630414Z", + "start_time": "2022-03-01T12:35:03.606438Z" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + "source\n", + "ukraine-russia-us-troops 0.531266\n", + "uc-berkeley-admissions-court-ruling 0.585473\n", + "apple-face-computers 0.597108\n", + "smartphones-iphone-android 0.612055\n", + "ezra-klein-podcast-alex-tabarrok 0.622424\n", + " ... \n", + "babies-work-meeting 0.931796\n", + "oddity-ceramics-surrealism-art 0.939738\n", + "flight-attendants-covid 0.944585\n", + "rokia-kone-jacknife-lee-bamanan-review 0.944797\n", + "wall-street-hotel 0.966689\n", + "Name: score, Length: 159, dtype: float64" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.groupby(\"source\").score.mean().sort_values()" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "e3fbc351", + "metadata": { + "ExecuteTime": { + "end_time": "2022-03-01T12:35:29.809696Z", + "start_time": "2022-03-01T12:35:29.786666Z" + } + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + " In the last 48 hours, President Vladimir V. Putin of Russia and his officials say they have ordered back a good number of troops who were engaged in military exercises on the border with Ukraine. But there hasn’t been a lot of change on the ground.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Since the beginning of the standoff, President Biden has been clear that he will not allow American troops to come into direct combat with Russians.\n", + " Claim\n", + "\n", + "\n", + "\n", + " Why has the U.S., a country that has intervened all over the world in various contexts, taken that powerful option off the table?\n", + " Claim\n", + "\n", + "\n", + "\n", + " David E. Sanger, a White House and national security correspondent for The New York Times.\n", + " Claim\n", + "\n", + "\n", + "\n", + " While recent Russian rhetoric has stoked hopes of a diplomatic solution, U.S. and NATO officials have accused Moscow of further building up troops.\n", + " Claim\n", + "\n", + "\n", + "\n", + " President Biden’s opposition to sending U.S. forces into Ukraine reflects the mood of a war-wary Washington, as well as concerns about Russia’s nuclear arsenal.\n", + " Claim\n", + "\n", + "\n", + "\n", + " Here’s a guide to the causes behind the Ukraine crisis and where it might be headed.\n", + " Claim\n", + "\n", + "
" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "\n", + "\n" + ] + } + ], + "source": [ + "test = df[df.source=='ukraine-russia-us-troops']\n", + "doc = {\n", + " \"text\": test.text.sum(),\n", + " \"ents\": [dict(start=int(row[\"start\"]), end=int(row[\"end\"]), label=row[\"label\"]) for i, row in test.iterrows()],\n", + "}\n", + "\n", + "labels = ['Lead', 'Position', 'Evidence', 'Claim', 'Concluding Statement', 'Counterclaim', 'Rebuttal']\n", + "colors = [\"#ACDDDE\", \"#CAF1DE\", \"#E1F8DC\", \"#FEF8DD\", \"#FFE7C7\", \"#F7D8BA\", \"#D6CDEA\"]\n", + "options = {\"ents\": labels, \"colors\": dict(zip(labels, colors))}\n", + "displacy.render(doc, style=\"ent\", options=options, manual=True, jupyter=True)\n", + "print('\\n\\n')" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "da9f3e65", + "metadata": { + "ExecuteTime": { + "end_time": "2022-03-01T12:35:32.286401Z", + "start_time": "2022-03-01T12:35:32.274439Z" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + "0.7670386684061288" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.groupby(\"source\").score.mean().mean()" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "66c2d4a4", + "metadata": { + "ExecuteTime": { + "end_time": "2022-03-01T12:35:33.362946Z", + "start_time": "2022-03-01T12:35:33.344946Z" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + "count 3898.000000\n", + "mean 0.760480\n", + "std 0.197714\n", + "min 0.217844\n", + "25% 0.594941\n", + "50% 0.807805\n", + "75% 0.945076\n", + "max 0.995302\n", + "Name: score, dtype: float64" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.score.describe()" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "74c9e3cb", + "metadata": { + "ExecuteTime": { + "end_time": "2022-03-01T12:35:37.484410Z", + "start_time": "2022-03-01T12:35:36.208851Z" + } + }, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAmQAAANcCAYAAADxT7PIAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjQuMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/MnkTPAAAACXBIWXMAAAsTAAALEwEAmpwYAACpJElEQVR4nOzdZ3hcV7n28f+jXqxiFduSXOReYzuOUk1CEkhIAUJPgDSaKQmETuBwgAOHFzjUECAhDZKQTkKq06udOO69K66yZEuWLVldmpn1fpixI9uSLckzs2ek+3dduqzZs/eeR5a0dM/aa69lzjlERERExDsJXhcgIiIiMtApkImIiIh4TIFMRERExGMKZCIiIiIeUyATERER8ViS1wWciIKCAldaWup1GSISRUuXLt3rnCv0uo5wUBsmMrAcq/2K60BWWlrKkiVLvC5DRKLIzLZ7XUO4qA0TGViO1X7pkqWIiIiIxxTIRERERDymQCYiIiLiMQUyEREREY8pkImIiIh4TIFMRERExGMKZCIiIiIeUyATERER8ZgCmYiIiIjHFMhEREREPKZAJiIiIuIxBTIRERERjymQiYiIiHhMgUxERETEYwpkIiIiIh5TIBMRERHxmAKZiIiIiMcUyEREREQ8pkAmIiIi4jEFMhERERGPKZCJiIiIeEyBTERERMRjCmQiIiIiHlMgExEREfGYApmIiIiIxxTIRERERDymQCYiIiLiMQUyEREREY8pkImIiIh4TIFMRERExGMKZCIiIiIeUyATERER8ZgCmYiIiIjHFMhEREREPKZAJiIiIuIxBTIRERERjymQiYiIiHhMgUxERETEYwpkIiIiIh5TIBMRERHxmAKZiIiIiMcUyEREREQ8pkAmIiIi4jEFMhERERGPKZCJiIiIeEyBTERERMRjCmQiIiIiHlMgExEREfGYApmIiIiIxxTIRERERDymQCYiIiLiMQUyEREREY8leV2A9Nzm6gYeXlzBzBE5XDq9GIDGNh+V+1u48bFVrNlVT3Z6EnddexrTh+ceOq61w8+za6rY39TBxScNoygnndYOP4u37aPNF+DVDdW8sbmGlMQEvjB7NJ85YxQA7b4AN720kf8sr6Q4J428QalU7G/mvROGcObYPP6zvJKkROPSk4oYW5jJ31/fwtw1uwFHQWYKO/e34JyjMCuNvMwUkhKNhhYf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I++fMoQXvnUOF00b5nVZIocxMz5xynDmba7RkigiIbvqWrjqzkUkJSRw7xdOI39Qqtclxa0pxdn89bOz2LSngevvX4Y/0H8mY1Agi3Hb9jbxxbsXc+0/FuMc3HVtGX/77Cn6hZaY9alTR2DAQ4t3Hndfkf5ub2MbV925kMY2H/d8/jRG5Wd6XVLce++EQn5x2TRe21jDr59d73U5YaNrXTGqrrmdW15/h3/M30ZyovHDiyfxudmjSUlShpbYVpKbzvmThnDfwu189dyxuqQuA9aeA6185va3qaxr4Z7Pnz5g1qmMhs+cPpJNexq4fd5WJg7L5hOnDPe6pBOmv+4xpqnNx80vb+bs37zKbW9s4UMzinn1u+fy5feOVRiTuHHdeePY39zBPQu2e12KiCe21zbxqb8vYHd9K/d8/nROG63pLcLtx5dOZva4fH702GqWbt/vdTknTH/hY0Rrh59/vLmV9/72VX7/4ibOGJvPczecw+8/NYMh2f1zzhXpv04eOZj3Tijk72+8Q21jm9fliETV65tq+NDN86lr7uDeLyqMRUpSYgJ//cwsinLT+PK9S9lVF993XiqQeay+uYO/vLKZ9/zmFf7nqXWMH5LFY187i9uvLmPisCyvyxPpsx9fOpmmNh8/f3qd16WIREVLu59fzV3P5/6xiOLcdJ66/j3MGjnY67L6tdyMFO64uoy2Dj+fvf1tdte3el1Sn2lwh0fW7KrnkSU7eWRpBc3tft47oZAvv3cMZ47J19w00i+MH5rF184dx00vb+assfla0kv6reqGVp5YXskd87ew50AbV5w6gp98aAoZKfoTGw3jh2Zx9xdO4+o7F/GZ29/mgTlnMDQOryzppyWKdu5r5vm1u3l02S7WVx0gJTGBS6cXMeecMUwu0mBP6X++fv44lu3Yz3/9Zw056SmaqkXiXmuHn427G9i4u4H1uw+wuqKepTv24xycMSaPmz89S5coPTBr5GD++blTueauRXz4L/O59cpTODnOeifNuejM4WFmFwE3AYnAHc65Xx/xvIWevwRoBq51zi071jnLysrckiVLIlTxiatuaGV1RT1vltfy2qZqttQ0ATB9eA6fPGU4H5pRTG7GwF5UVvq/+pYOrv3HIlburOMb7xvPdeeNIzmx76MlzGypc64sjCWGzfHauSPFehs20LX7Amza08DKijpWV9SzqqKeTXsaDi1+nZacwMRh2Zw7oZBLpxcxYaiGmXhtfdUBvnTPEqrqW/ni2aO57rxxZKfFzjJux2q/ohLIzCwR2ARcAFQAi4FPO+fWddrnEuDrBAPZ6cBNzrnTj3Verxsz5xwtHX4q61rYua+FHfua2bmvmW21TazeVc+eA8HBzClJCZw+Oo9zJw7hvImFjNEyRzLANLf7+NFjq3l8RSXDB6dz7VmlXDhlGCPy0nt9iT5WA1lP2rkjed2GybtaO/yUVzeyruoAq0IBbH1VA+3+AAA56clMH57D9OE5TC3OYXJRNiPzMkhM0BCTWFPf3MH/m7ueh5bsJDstiU+WjeCSk4ZxUkmu57MVxEIgOxP4mXPuA6HHPwRwzv2q0z5/B15zzj0QerwRONc5V9XdeXvTmM1dXUVzu5+Aczjn8Ac49HnAgT/gQo/B7xz+gKO1w09Lu5/mDj+t7X6a2/00tfvY19TO/qZ2apvaafMFDnudtOQERuZlMKUom5OG53JSSQ4nleSQnqJlMkRe21jNn1/ezLIddQAMzkjmpOG5/OSDUxg3pGdvVGI4kB23nTuSAll0vLhuD3sOtNLmC9Da4aetw09Lh5/axnb2NLRSWdfK9tomDk76HlzgOpvpw3ODIawkt09vHsRba3bVc8tr7/Diuj20+wOkJiUwqSibktw0hmanMTgjhbTkBFKTEklLTuCCKcPIy4zsVatjtV/RGkNWAnSetruCYC/Y8fYpAQ4LZGY2B5gTetgYCm5eKwD2HnywEXjRu1p647C644jqjp6I1rwdWAHc27vDRkWglHDoSTsXi21YPP5cQoTrXgs8FJlT6/87ug6re5OHhYR0235FK5B19bbiyK65nuyDc+424LZwFBUuZrYkFt+xH4/qjq54rDsea/ZQXLZh8fo9Vt3RpbojL1oXUyuAEZ0eDwcq+7CPiEisUhsmIn0WrUC2GBhvZqPNLAW4AnjyiH2eBK62oDOA+mONHxMRiTE9aedERLoUlUuWzjmfmV0PPE/wdvC7nHNrzewroedvBeYSvMOynOC0F5+LRm1hEjOXH3pJdUdXPNYdjzV7ort2zuOyeiJev8eqO7pUd4RFbR4yEREREema1rIUERER8ZgCmYiIiIjHFMhEREREPKZAJiIiIuIxBTIRERERjymQiYiIiHhMgUxERETEYwpkIiIiIh5TIBMRERHxmAKZiIiIiMcUyEREREQ8pkAmIiIi4jEFMhERERGPKZCJiIiIeEyBTERERMRjCmQiIiIiHlMgExEREfGYApmIiIiIxxTIRERERDymQCYiIiLiMQUyEREREY8pkImIiIh4TIFMRERExGNJXhdwIgoKClxpaanXZYhIFC1dunSvc67Q6zrCQW2YyMByrPYrrgNZaWkpS5Ys8boMEYkiM9vudQ3hojZMZGA5VvulS5YiIiIiHlMgExEREfGYApmIiIiIxxTIRERERDymQCYiIiLiMQUyEREREY8pkImIiIh4TIFMRERExGMKZCIiIiIeUyATERER8ZgCmYiIiIjH4notSxk4br75ZsrLy70u44Ts2rULgJKSEs9qGDduHF//+tc9e30Ria6etJ29aZvUhkSOApnEhfLyclasWY8/I8/rUvossbkegN1t3vzaJTbv8+R1RcQ7PWk7e9o2qQ2JLAUyiRv+jDxaJl3idRl9lr5hLoBnX8PB1xeRgeV4bWdP2ya1IZGlMWQiIiIiHlMgExEREfGYApmIiIiIxxTIRERERDymQCYiIiLiMQUyEREREY8pkImIiIh4TIFMRERExGMKZCIiIiIeUyATERER8ZgCmYiIiIjHFMhEREREPKZAJiIiIuIxBTIRERERjymQiYiIiHhMgUxERETEYwpkIiIiIh5TIBMRERHxmAKZiIiIiMcUyEREREQ8pkAmIiIi4jEFMhERERGPKZCJiIiIeEyBTERERMRjCmQiIiIiHlMgC7Obb76Zm2++2esyRE6Ifo5Fwku/U7030P7PkrwuoL8pLy/3ugSRE6afY5Hw0u9U7w20/zP1kImIiIh4TIFMRERExGMKZCIiIiIeUyATERER8ZgCmYiIiIjHFMhEREREPKZAJiIiIuIxBTIRERERjymQiYiIiHhMgUxERETEYwpkIiIiIh5TIBMRERHxmAKZiIiIiMcUyEREREQ8pkAmIiIi4jEFMhERERGPKZCJiIiIeEyBTERERMRjCmQiIiIiHlMgExEREfGYApmIiIiIxxTIRERERDymQCYiIiLiMQUyERGRHqitreUb3/gGtbW1vT6mo6MjgpX1b7W1tXzpS1/i4osvpry8/LDtvf1+xDIFMhERkR64++67Wb16Nffcc0+vj9mzZ08EK+vf7r77bjZv3kxLSwv/+7//e9j23n4/YpkCmYiI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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "f, axes = plt.subplots(5,2, figsize=(10,15), sharex=True)\n", + "\n", + "for i,f in enumerate([sns.stripplot, sns.histplot, sns.kdeplot, sns.boxplot, sns.violinplot]):\n", + " for j,d in enumerate([df.score, df.rename(columns=dict(score=\"textualScore\")).groupby(\"source\").textualScore.mean()]):\n", + " f(x=d, ax=axes[i, j])" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "id": "dc15c5a7", + "metadata": { + "ExecuteTime": { + "end_time": "2022-03-01T12:35:43.759104Z", + "start_time": "2022-03-01T12:35:43.738095Z" + } + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
textualScore
00.813205
10.685687
20.809620
30.800835
40.731424
......
1540.772159
1550.844647
1560.714356
1570.670670
1580.797801
\n", + "

159 rows × 1 columns

\n", + "
" + ], + "text/plain": [ + " textualScore\n", + "0 0.813205\n", + "1 0.685687\n", + "2 0.809620\n", + "3 0.800835\n", + "4 0.731424\n", + ".. ...\n", + "154 0.772159\n", + "155 0.844647\n", + "156 0.714356\n", + "157 0.670670\n", + "158 0.797801\n", + "\n", + "[159 rows x 1 columns]" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.groupby(\"source\").score.mean().reset_index()[[\"score\"]].rename(columns={\"score\":\"textualScore\"})" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "e8b171a2", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.9.7" + }, + "toc": { + "base_numbering": 1, + "nav_menu": {}, + "number_sections": true, + "sideBar": true, + "skip_h1_title": false, + "title_cell": "Table of Contents", + "title_sidebar": "Contents", + "toc_cell": false, + "toc_position": {}, + "toc_section_display": true, + "toc_window_display": false + }, + "varInspector": { + "cols": { + "lenName": 16, + "lenType": 16, + "lenVar": 40 + }, + "kernels_config": { + "python": { + "delete_cmd_postfix": "", + "delete_cmd_prefix": "del ", + "library": "var_list.py", + "varRefreshCmd": "print(var_dic_list())" + }, + "r": { + "delete_cmd_postfix": ") ", + "delete_cmd_prefix": "rm(", + "library": "var_list.r", + "varRefreshCmd": "cat(var_dic_list()) " + } + }, + "types_to_exclude": [ + "module", + "function", + "builtin_function_or_method", + "instance", + "_Feature" + ], + "window_display": false + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/research/HuggingFaceTransformers.ipynb b/research/HuggingFaceTransformers.ipynb index bdb30eea..05281a3c 100644 --- a/research/HuggingFaceTransformers.ipynb +++ b/research/HuggingFaceTransformers.ipynb @@ -2370,7 +2370,49 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.8.12" + "version": "3.9.7" + }, + "toc": { + "base_numbering": 1, + "nav_menu": {}, + "number_sections": true, + "sideBar": true, + "skip_h1_title": false, + "title_cell": "Table of Contents", + "title_sidebar": "Contents", + "toc_cell": false, + "toc_position": {}, + "toc_section_display": true, + "toc_window_display": false + }, + "varInspector": { + "cols": { + "lenName": 16, + "lenType": 16, + "lenVar": 40 + }, + "kernels_config": { + "python": { + "delete_cmd_postfix": "", + "delete_cmd_prefix": "del ", + "library": "var_list.py", + "varRefreshCmd": "print(var_dic_list())" + }, + "r": { + "delete_cmd_postfix": ") ", + "delete_cmd_prefix": "rm(", + "library": "var_list.r", + "varRefreshCmd": "cat(var_dic_list()) " + } + }, + "types_to_exclude": [ + "module", + "function", + "builtin_function_or_method", + "instance", + "_Feature" + ], + "window_display": false }, "widgets": { "application/vnd.jupyter.widget-state+json": { diff --git a/research/LayerDrop.ipynb b/research/LayerDrop.ipynb index 5a462d54..dbda9673 100644 --- a/research/LayerDrop.ipynb +++ b/research/LayerDrop.ipynb @@ -12,9 +12,14 @@ }, { "cell_type": "code", - "execution_count": 8, + "execution_count": 1, "id": "1ae0056f-e815-4e30-b35f-f50b84c1a625", - "metadata": {}, + "metadata": { + "ExecuteTime": { + "end_time": "2022-03-01T16:24:36.197615Z", + "start_time": "2022-03-01T16:24:30.124610Z" + } + }, "outputs": [], "source": [ "from transformers import BartTokenizer, BartForSequenceClassification, BartConfig\n", @@ -24,10 +29,13 @@ }, { "cell_type": "code", - "execution_count": 7, + "execution_count": 2, "id": "3213311c-95e1-4636-bf3d-c0c9c1f69dd5", "metadata": { - "collapsed": true, + "ExecuteTime": { + "end_time": "2022-03-01T16:25:09.465544Z", + "start_time": "2022-03-01T16:25:09.437548Z" + }, "jupyter": { "outputs_hidden": true }, @@ -73,13 +81,13 @@ " \"num_hidden_layers\": 12,\n", " \"pad_token_id\": 1,\n", " \"scale_embedding\": false,\n", - " \"transformers_version\": \"4.16.1\",\n", + " \"transformers_version\": \"4.16.2\",\n", " \"use_cache\": true,\n", " \"vocab_size\": 50265\n", "}" ] }, - "execution_count": 7, + "execution_count": 2, "metadata": {}, "output_type": "execute_result" } @@ -91,13 +99,17 @@ }, { "cell_type": "code", - "execution_count": 9, + "execution_count": 3, "id": "41027d66-8015-466c-809e-3c73ec4659b6", "metadata": { - "collapsed": true, + "ExecuteTime": { + "end_time": "2022-03-01T16:25:23.333938Z", + "start_time": "2022-03-01T16:25:11.535857Z" + }, "jupyter": { "outputs_hidden": true }, + "scrolled": false, "tags": [] }, "outputs": [ @@ -502,7 +514,7 @@ ")" ] }, - "execution_count": 9, + "execution_count": 3, "metadata": {}, "output_type": "execute_result" } @@ -537,7 +549,49 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.8.12" + "version": "3.9.7" + }, + "toc": { + "base_numbering": 1, + "nav_menu": {}, + "number_sections": true, + "sideBar": true, + "skip_h1_title": false, + "title_cell": "Table of Contents", + "title_sidebar": "Contents", + "toc_cell": false, + "toc_position": {}, + "toc_section_display": true, + "toc_window_display": false + }, + "varInspector": { + "cols": { + "lenName": 16, + "lenType": 16, + "lenVar": 40 + }, + "kernels_config": { + "python": { + "delete_cmd_postfix": "", + "delete_cmd_prefix": "del ", + "library": "var_list.py", + "varRefreshCmd": "print(var_dic_list())" + }, + "r": { + "delete_cmd_postfix": ") ", + "delete_cmd_prefix": "rm(", + "library": "var_list.r", + "varRefreshCmd": "cat(var_dic_list()) " + } + }, + "types_to_exclude": [ + "module", + "function", + "builtin_function_or_method", + "instance", + "_Feature" + ], + "window_display": false } }, "nbformat": 4, diff --git a/research/RNNs.ipynb b/research/RNNs.ipynb index ae5cee8e..76c70d6f 100644 --- a/research/RNNs.ipynb +++ b/research/RNNs.ipynb @@ -2,246 +2,29 @@ "cells": [ { "cell_type": "code", - "execution_count": 1, - "id": "9588ffc0", + "execution_count": 13, "metadata": { "ExecuteTime": { - "end_time": "2022-02-20T15:05:04.563665Z", - "start_time": "2022-02-20T15:04:51.398035Z" + "end_time": "2022-03-01T13:07:41.553665Z", + "start_time": "2022-03-01T13:07:15.167948Z" } }, "outputs": [], "source": [ - "from fastai.text.all import *\n", + "import keras\n", + "from keras.preprocessing import sequence\n", + "from keras.models import Sequential\n", + "from keras.layers import Dense, Embedding, LSTM\n", "import pandas as pd\n" ] }, { "cell_type": "code", - "execution_count": 6, - "id": "58c3cd49", + "execution_count": 5, "metadata": { "ExecuteTime": { - "end_time": "2022-02-20T15:06:54.593846Z", - "start_time": "2022-02-20T15:06:51.014311Z" - } - }, - "outputs": [ - { - "data": { - "text/html": [ - "\n", - "
\n", - " \n", - " \n", - " 100.28% [573440/571827 00:01<00:00]\n", - "
\n", - " " - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
labeltextis_valid
0negativeUn-bleeping-believable! Meg Ryan doesn't even look her usual pert lovable self in this, which normally makes me forgive her shallow ticky acting schtick. Hard to believe she was the producer on this dog. Plus Kevin Kline: what kind of suicide trip has his career been on? Whoosh... Banzai!!! Finally this was directed by the guy who did Big Chill? Must be a replay of Jonestown - hollywood style. Wooofff!False
1positiveThis is a extremely well-made film. The acting, script and camera-work are all first-rate. The music is good, too, though it is mostly early in the film, when things are still relatively cheery. There are no really superstars in the cast, though several faces will be familiar. The entire cast does an excellent job with the script.<br /><br />But it is hard to watch, because there is no good end to a situation like the one presented. It is now fashionable to blame the British for setting Hindus and Muslims against each other, and then cruelly separating them into two countries. There is som...False
2negativeEvery once in a long while a movie will come along that will be so awful that I feel compelled to warn people. If I labor all my days and I can save but one soul from watching this movie, how great will be my joy.<br /><br />Where to begin my discussion of pain. For starters, there was a musical montage every five minutes. There was no character development. Every character was a stereotype. We had swearing guy, fat guy who eats donuts, goofy foreign guy, etc. The script felt as if it were being written as the movie was being shot. The production value was so incredibly low that it felt li...False
3positiveName just says it all. I watched this movie with my dad when it came out and having served in Korea he had great admiration for the man. The disappointing thing about this film is that it only concentrate on a short period of the man's life - interestingly enough the man's entire life would have made such an epic bio-pic that it is staggering to imagine the cost for production.<br /><br />Some posters elude to the flawed characteristics about the man, which are cheap shots. The theme of the movie \"Duty, Honor, Country\" are not just mere words blathered from the lips of a high-brassed offic...False
4negativeThis movie succeeds at being one of the most unique movies you've seen. However this comes from the fact that you can't make heads or tails of this mess. It almost seems as a series of challenges set up to determine whether or not you are willing to walk out of the movie and give up the money you just paid. If you don't want to feel slighted you'll sit through this horrible film and develop a real sense of pity for the actors involved, they've all seen better days, but then you realize they actually got paid quite a bit of money to do this and you'll lose pity for them just like you've alr...False
............
995negativeThere are many different versions of this one floating around, so make sure you can locate one of the unrated copies, otherwise some gore and one scene of nudity might be missing. Some versions also omit most of the opening sequence and other bits here and there. The cut I saw has the on-screen title WITCHCRAFT: EVIL ENCOUNTERS and was released by Shriek Show, who maintain the original US release title WITCHERY for the DVD release. It's a nice-looking print and seems to have all of the footage, but has some cropping/aspect ratio issues. In Italy, it was released as LA CASA 4 (WITCHCRAFT). ...True
996positiveOnce upon a time Hollywood produced live-action, G-rated movies without foul language, immorality, and gore-splattered violence. These movies neither insulted your intelligence no manipulated your emotions. The heroes differed little from the crowd. They shared the same feelings and bore the same burdens. Since the 1970s, the film industry has pretty much written off G-rated movies for adults. Basically, modern mature audiences demand large doses of embellished realism for their cinematic diet, laced heavily with vile profanity, mattress-thumping sex, and knuckle-bruising fisticuffs. These...True
997negativeWenders was great with Million $ Hotel.I don't know how he came up with this film! The idea of giving the situation after spt11 and the view of American Society is hopeful,that makes it 2 out of ten.But this is not a movie.Is that the best someone can do with a great idea(the west-east clash).There are important things going on in middle east and it is just issued on the screen of a MAC* with the fingers of an Amerian girl who is actually at the level of stupidity(because she is just ignorant about the facts).The characters are not well shaped.And the most important thing is the idea that ...True
998negativeAlthough a film with Bruce Willis is always worth watching, you better skip this one. I watched this one on television, so I didn't have to plunk down cash for it. Lucky me.<br /><br />The plot develops slowly, very slowly. Although the first 30 minutes or so are quite believable, it gets more and more unbelievable towards the end. It is highly questionable, if a seasoned soldier like Lt. Waters would disobey direct orders. And even if he would, if the rest of his platoon would. They know he puts them in direct danger, and they know they will certainly die if they follow him, but what the ...True
999positiveA compelling, honest, daring, and unforgettable psychological horror film that touches on the painful experiences of pain caused by rape - \"Descent\" is a film that went under-the-radar due to its lack of distribution because, frankly, the film is so brutal in its depictions, that if it had been released theatrically, it may have met itself to some strong biased hate.<br /><br />The film deserves to be discovered for, not only its dark themes, and not only for its amazing direction and authentic style - but most of all for its performances. Chad Faust is absolutely stunning, bringing enough...True
\n", - "

1000 rows × 3 columns

\n", - "
" - ], - "text/plain": [ - " label \\\n", - "0 negative \n", - "1 positive \n", - "2 negative \n", - "3 positive \n", - "4 negative \n", - ".. ... \n", - "995 negative \n", - "996 positive \n", - "997 negative \n", - "998 negative \n", - "999 positive \n", - "\n", - " text \\\n", - "0 Un-bleeping-believable! Meg Ryan doesn't even look her usual pert lovable self in this, which normally makes me forgive her shallow ticky acting schtick. Hard to believe she was the producer on this dog. Plus Kevin Kline: what kind of suicide trip has his career been on? Whoosh... Banzai!!! Finally this was directed by the guy who did Big Chill? Must be a replay of Jonestown - hollywood style. Wooofff! \n", - "1 This is a extremely well-made film. The acting, script and camera-work are all first-rate. The music is good, too, though it is mostly early in the film, when things are still relatively cheery. There are no really superstars in the cast, though several faces will be familiar. The entire cast does an excellent job with the script.

But it is hard to watch, because there is no good end to a situation like the one presented. It is now fashionable to blame the British for setting Hindus and Muslims against each other, and then cruelly separating them into two countries. There is som... \n", - "2 Every once in a long while a movie will come along that will be so awful that I feel compelled to warn people. If I labor all my days and I can save but one soul from watching this movie, how great will be my joy.

Where to begin my discussion of pain. For starters, there was a musical montage every five minutes. There was no character development. Every character was a stereotype. We had swearing guy, fat guy who eats donuts, goofy foreign guy, etc. The script felt as if it were being written as the movie was being shot. The production value was so incredibly low that it felt li... \n", - "3 Name just says it all. I watched this movie with my dad when it came out and having served in Korea he had great admiration for the man. The disappointing thing about this film is that it only concentrate on a short period of the man's life - interestingly enough the man's entire life would have made such an epic bio-pic that it is staggering to imagine the cost for production.

Some posters elude to the flawed characteristics about the man, which are cheap shots. The theme of the movie \"Duty, Honor, Country\" are not just mere words blathered from the lips of a high-brassed offic... \n", - "4 This movie succeeds at being one of the most unique movies you've seen. However this comes from the fact that you can't make heads or tails of this mess. It almost seems as a series of challenges set up to determine whether or not you are willing to walk out of the movie and give up the money you just paid. If you don't want to feel slighted you'll sit through this horrible film and develop a real sense of pity for the actors involved, they've all seen better days, but then you realize they actually got paid quite a bit of money to do this and you'll lose pity for them just like you've alr... \n", - ".. ... \n", - "995 There are many different versions of this one floating around, so make sure you can locate one of the unrated copies, otherwise some gore and one scene of nudity might be missing. Some versions also omit most of the opening sequence and other bits here and there. The cut I saw has the on-screen title WITCHCRAFT: EVIL ENCOUNTERS and was released by Shriek Show, who maintain the original US release title WITCHERY for the DVD release. It's a nice-looking print and seems to have all of the footage, but has some cropping/aspect ratio issues. In Italy, it was released as LA CASA 4 (WITCHCRAFT). ... \n", - "996 Once upon a time Hollywood produced live-action, G-rated movies without foul language, immorality, and gore-splattered violence. These movies neither insulted your intelligence no manipulated your emotions. The heroes differed little from the crowd. They shared the same feelings and bore the same burdens. Since the 1970s, the film industry has pretty much written off G-rated movies for adults. Basically, modern mature audiences demand large doses of embellished realism for their cinematic diet, laced heavily with vile profanity, mattress-thumping sex, and knuckle-bruising fisticuffs. These... \n", - "997 Wenders was great with Million $ Hotel.I don't know how he came up with this film! The idea of giving the situation after spt11 and the view of American Society is hopeful,that makes it 2 out of ten.But this is not a movie.Is that the best someone can do with a great idea(the west-east clash).There are important things going on in middle east and it is just issued on the screen of a MAC* with the fingers of an Amerian girl who is actually at the level of stupidity(because she is just ignorant about the facts).The characters are not well shaped.And the most important thing is the idea that ... \n", - "998 Although a film with Bruce Willis is always worth watching, you better skip this one. I watched this one on television, so I didn't have to plunk down cash for it. Lucky me.

The plot develops slowly, very slowly. Although the first 30 minutes or so are quite believable, it gets more and more unbelievable towards the end. It is highly questionable, if a seasoned soldier like Lt. Waters would disobey direct orders. And even if he would, if the rest of his platoon would. They know he puts them in direct danger, and they know they will certainly die if they follow him, but what the ... \n", - "999 A compelling, honest, daring, and unforgettable psychological horror film that touches on the painful experiences of pain caused by rape - \"Descent\" is a film that went under-the-radar due to its lack of distribution because, frankly, the film is so brutal in its depictions, that if it had been released theatrically, it may have met itself to some strong biased hate.

The film deserves to be discovered for, not only its dark themes, and not only for its amazing direction and authentic style - but most of all for its performances. Chad Faust is absolutely stunning, bringing enough... \n", - "\n", - " is_valid \n", - "0 False \n", - "1 False \n", - "2 False \n", - "3 False \n", - "4 False \n", - ".. ... \n", - "995 True \n", - "996 True \n", - "997 True \n", - "998 True \n", - "999 True \n", - "\n", - "[1000 rows x 3 columns]" - ] - }, - "execution_count": 6, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "path = untar_data(URLs.IMDB_SAMPLE)\n", - "pd.read_csv(path/'texts.csv')" - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "id": "03dab69a", - "metadata": { - "ExecuteTime": { - "end_time": "2022-02-20T15:07:36.999600Z", - "start_time": "2022-02-20T15:07:36.968626Z" - } - }, - "outputs": [ - { - "data": { - "text/plain": [ - "200" - ] - }, - "execution_count": 7, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "imdb = pd.read_csv(path/'texts.csv')\n", - "imdb.is_valid.sum()" - ] - }, - { - "cell_type": "code", - "execution_count": 22, - "id": "7e593229", - "metadata": { - "ExecuteTime": { - "end_time": "2022-02-20T15:34:02.165013Z", - "start_time": "2022-02-20T15:34:01.205152Z" + "end_time": "2022-03-01T12:25:20.288160Z", + "start_time": "2022-03-01T12:25:20.205162Z" } }, "outputs": [ @@ -266,77 +49,59 @@ " \n", " \n", " \n", - " id\n", - " discourse_id\n", - " discourse_start\n", - " discourse_end\n", " text\n", " label\n", - " discourse_type_num\n", - " predictionstring\n", - " is_valid\n", + " score\n", + " start\n", + " end\n", + " source\n", " \n", " \n", " \n", " \n", " 0\n", - " 423A1CA112E2\n", - " 1.622628e+12\n", - " 8.0\n", - " 229.0\n", - " Modern humans today are always on their phone. They are always on their phone more than 5 hours a day no stop .All they do is text back and forward and just have group Chats on social media. They even do it while driving.\n", - " Lead\n", - " Lead 1\n", - " 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44\n", - " False\n", + " In 2019 a wave of anti-abortion laws swept this country — a common enough event in the United States, where hundreds of such laws have passed during the last decade. But these grabbed the public’s attention in a way many others hadn’t. Georgia banned abortion after about six weeks of pregnancy, or about two weeks after a missed menstrual period. Ohio, Mississippi, Louisiana and Kentucky did the same, while Missouri banned the procedure at eight weeks. Alabama went the furthest, banning virtually all abortions in the state.\n", + " Evidence\n", + " 0.983720\n", + " 0\n", + " 528\n", + " abortion-florida-15-week-ban\n", " \n", " \n", " 1\n", - " 423A1CA112E2\n", - " 1.622628e+12\n", - " 230.0\n", - " 312.0\n", - " They are some really bad consequences when stuff happens when it comes to a phone.\n", - " Position\n", - " Position 1\n", - " 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59\n", - " False\n", + " Though most of these laws were quickly blocked by the courts — they were obviously unconstitutional under Roe v. Wade — the backlash to their passing was intense, especially in Georgia, a major hub of film and television production. Boycotts were threatened. Netflix and Disney spoke out. The actress Alyssa Milano even tried to get a “Lysistrata”-style sex strike off the ground.\n", + " Evidence\n", + " 0.934319\n", + " 528\n", + " 908\n", + " abortion-florida-15-week-ban\n", " \n", " \n", " 2\n", - " 423A1CA112E2\n", - " 1.622628e+12\n", - " 313.0\n", - " 401.0\n", - " Some certain areas in the United States ban phones from class rooms just because of it.\n", + " Three years later, American reproductive rights are on an even bleaker trajectory. A Supreme Court decision that’s expected to come down this summer is likely to strike down Roe v. Wade, either in deed or in word, making it possible for states with anti-abortion leadership to ban the procedure altogether.\n", " Evidence\n", - " Evidence 1\n", - " 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75\n", - " False\n", + " 0.622358\n", + " 908\n", + " 1214\n", + " abortion-florida-15-week-ban\n", " \n", " \n", " 3\n", - " 423A1CA112E2\n", - " 1.622628e+12\n", - " 402.0\n", - " 758.0\n", - " When people have phones, they know about certain apps that they have .Apps like Facebook Twitter Instagram and Snapchat. So like if a friend moves away and you want to be in contact you can still be in contact by posting videos or text messages. People always have different ways how to communicate with a phone. Phones have changed due to our generation.\n", + " It might seem curious, then, that legislators in some conservative-leaning states are spending these months before the likely downfall of Roe working to pass less extreme abortion measures than they did in 2019. Now seems like the time for anti-abortion legislators to go for broke. The fact that some of them are pursuing a different strategy offers clues about what a post-Roe America could look like, and how that landscape could be more complex — and less predetermined — than some Americans had assumed.\n", " Evidence\n", - " Evidence 2\n", - " 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138\n", - " False\n", + " 0.946866\n", + " 1214\n", + " 1722\n", + " abortion-florida-15-week-ban\n", " \n", " \n", " 4\n", - " 423A1CA112E2\n", - " 1.622628e+12\n", - " 759.0\n", - " 886.0\n", - " Driving is one of the way how to get around. People always be on their phones while doing it. Which can cause serious Problems.\n", - " Claim\n", - " Claim 1\n", - " 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162\n", - " False\n", + " One of this year’s unmistakable trends in anti-abortion legislation is the 15-week ban. Legislators in Arizona, Florida and West Virginia are now considering bills — which, as the name suggests, would ban abortion after 15 weeks of pregnancy, in violation of Roe. At first blush, it might seem these states are simply copying the Mississippi law that the Supreme Court seems likely to uphold this summer, in Dobbs v. Jackson Women’s Health Organization. But why would they hold back now, rather than try to get more draconian legislation through their legislatures? Florida even considered a six-...\n", + " Evidence\n", + " 0.991869\n", + " 1722\n", + " 2394\n", + " abortion-florida-15-week-ban\n", " \n", " \n", " ...\n", @@ -346,370 +111,187 @@ " ...\n", " ...\n", " ...\n", - " ...\n", - " ...\n", - " ...\n", " \n", " \n", - " 144288\n", - " 4C471936CD75\n", - " 1.618153e+12\n", - " 2234.0\n", - " 3203.0\n", - " if I'm not sure what college I want to attend, and I ask one friend where I should go, they might say \"George Mason\" as a suggestion. But if George Mason is not in fact the best college for me, even though the person I asked was trying to help, that one opinion could sway me to go there anyway and not have the best experience. But yet if I go to ten people to advice, including the person who suggested George Mason, they might be the only one who would say that and maybe five of the other people I asked might say Virginia Tech, and I would decide to go to Virginia Tech instead of to George...\n", - " Evidence\n", - " Evidence 2\n", - " 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 ...\n", - " True\n", + " 3893\n", + " And boy did it come\n", + " Claim\n", + " 0.982928\n", + " 2554\n", + " 2573\n", + " yosemite-falls\n", " \n", " \n", - " 144289\n", - " 4C471936CD75\n", - " 1.618153e+12\n", - " 3221.0\n", - " 4509.0\n", - " seeking multiple opinions before making a hard decision can be beneficial because of the reasons stated above. When I was in second grade, I passed the test to be admitted into the AAP (Advanced Academics Program) in my school. My best friend was also accepted, and wanted me to go to AAP with her, but I didnt really want to go into AAP. I told my parents this, and they agreed it would be best for me to stay in the normal class for on more year. Since I got my parents' opinions, I also felt more secure staying out of the advanced program even though my friend wanted me to do the opposite a...\n", - " Evidence\n", - " Evidence 3\n", - " 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 ...\n", - " True\n", + " 3894\n", + " But the record rains will not end California’s ongoing drought.\n", + " Rebuttal\n", + " 0.880377\n", + " 2573\n", + " 2636\n", + " yosemite-falls\n", " \n", " \n", - " 144290\n", - " 4C471936CD75\n", - " 1.618025e+12\n", - " 4510.0\n", - " 4570.0\n", - " it is better to seek multiple opinions instead of just one.\n", - " Position\n", - " Position 1\n", - " 828 829 830 831 832 833 834 835 836 837 838\n", - " True\n", + " 3895\n", + " Last week, Gov. Gavin Newsom extended the state’s drought emergency and asked residents to redouble their water conservation efforts.\n", + " Claim\n", + " 0.541481\n", + " 2636\n", + " 2769\n", + " yosemite-falls\n", " \n", " \n", - " 144291\n", - " 4C471936CD75\n", - " 1.618025e+12\n", - " 4570.0\n", - " 4922.0\n", - " The impact of asking people to help you make a decision can be big, like a country deciding to go to war, or small, like a third grader choosing if they want to go into the advanced program in school, but nonetheless, asking for other people's opinions instead of just one person's opinion can make a difference in someone's life, whether big or small.\n", + " 3896\n", + " This has been California’s second driest year on record, with near-record low storage in the state’s largest reservoirs, according to the governor’s office.\n", " Evidence\n", - " Evidence 4\n", - " 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902\n", - " True\n", + " 0.479049\n", + " 2769\n", + " 2925\n", + " yosemite-falls\n", " \n", " \n", - " 144292\n", - " 4C471936CD75\n", - " 1.618025e+12\n", - " 4935.0\n", - " 5825.0\n", - " there are many other reasons one might want to seek multiple opinions and pieces of advice instead of just one, but these are the two main ones that I think really make it worthwhile to ask for advice from multiple people instead of making decisions with only one piece of advice from one person. The key thing that all of these examples have shown is that it is better to seek multiple opinions from multiple different people than to only get advice from one. This is ultimately because asking multiple people for advice makes you feel better about the decisions you make and also increases the ...\n", - " Concluding Statement\n", - " Concluding Statement 1\n", - " 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1...\n", - " True\n", + " 3897\n", + " Severe drought conditions, worsened by climate change, continue to affect much of the Western United States and even the northern part of the Great Plains.\n", + " Claim\n", + " 0.478424\n", + " 2925\n", + " 3080\n", + " yosemite-falls\n", " \n", " \n", "\n", - "

144293 rows × 9 columns

\n", + "

3898 rows × 6 columns

\n", "" ], "text/plain": [ - " id discourse_id discourse_start discourse_end \\\n", - "0 423A1CA112E2 1.622628e+12 8.0 229.0 \n", - "1 423A1CA112E2 1.622628e+12 230.0 312.0 \n", - "2 423A1CA112E2 1.622628e+12 313.0 401.0 \n", - "3 423A1CA112E2 1.622628e+12 402.0 758.0 \n", - "4 423A1CA112E2 1.622628e+12 759.0 886.0 \n", - "... ... ... ... ... \n", - "144288 4C471936CD75 1.618153e+12 2234.0 3203.0 \n", - "144289 4C471936CD75 1.618153e+12 3221.0 4509.0 \n", - "144290 4C471936CD75 1.618025e+12 4510.0 4570.0 \n", - "144291 4C471936CD75 1.618025e+12 4570.0 4922.0 \n", - "144292 4C471936CD75 1.618025e+12 4935.0 5825.0 \n", - "\n", - " text \\\n", - "0 Modern humans today are always on their phone. They are always on their phone more than 5 hours a day no stop .All they do is text back and forward and just have group Chats on social media. They even do it while driving. \n", - "1 They are some really bad consequences when stuff happens when it comes to a phone. \n", - "2 Some certain areas in the United States ban phones from class rooms just because of it. \n", - "3 When people have phones, they know about certain apps that they have .Apps like Facebook Twitter Instagram and Snapchat. So like if a friend moves away and you want to be in contact you can still be in contact by posting videos or text messages. People always have different ways how to communicate with a phone. Phones have changed due to our generation. \n", - "4 Driving is one of the way how to get around. People always be on their phones while doing it. Which can cause serious Problems. \n", - "... ... \n", - "144288 if I'm not sure what college I want to attend, and I ask one friend where I should go, they might say \"George Mason\" as a suggestion. But if George Mason is not in fact the best college for me, even though the person I asked was trying to help, that one opinion could sway me to go there anyway and not have the best experience. But yet if I go to ten people to advice, including the person who suggested George Mason, they might be the only one who would say that and maybe five of the other people I asked might say Virginia Tech, and I would decide to go to Virginia Tech instead of to George... \n", - "144289 seeking multiple opinions before making a hard decision can be beneficial because of the reasons stated above. When I was in second grade, I passed the test to be admitted into the AAP (Advanced Academics Program) in my school. My best friend was also accepted, and wanted me to go to AAP with her, but I didnt really want to go into AAP. I told my parents this, and they agreed it would be best for me to stay in the normal class for on more year. Since I got my parents' opinions, I also felt more secure staying out of the advanced program even though my friend wanted me to do the opposite a... \n", - "144290 it is better to seek multiple opinions instead of just one. \n", - "144291 The impact of asking people to help you make a decision can be big, like a country deciding to go to war, or small, like a third grader choosing if they want to go into the advanced program in school, but nonetheless, asking for other people's opinions instead of just one person's opinion can make a difference in someone's life, whether big or small. \n", - "144292 there are many other reasons one might want to seek multiple opinions and pieces of advice instead of just one, but these are the two main ones that I think really make it worthwhile to ask for advice from multiple people instead of making decisions with only one piece of advice from one person. The key thing that all of these examples have shown is that it is better to seek multiple opinions from multiple different people than to only get advice from one. This is ultimately because asking multiple people for advice makes you feel better about the decisions you make and also increases the ... \n", + " text \\\n", + "0 In 2019 a wave of anti-abortion laws swept this country — a common enough event in the United States, where hundreds of such laws have passed during the last decade. But these grabbed the public’s attention in a way many others hadn’t. Georgia banned abortion after about six weeks of pregnancy, or about two weeks after a missed menstrual period. Ohio, Mississippi, Louisiana and Kentucky did the same, while Missouri banned the procedure at eight weeks. Alabama went the furthest, banning virtually all abortions in the state. \n", + "1 Though most of these laws were quickly blocked by the courts — they were obviously unconstitutional under Roe v. Wade — the backlash to their passing was intense, especially in Georgia, a major hub of film and television production. Boycotts were threatened. Netflix and Disney spoke out. The actress Alyssa Milano even tried to get a “Lysistrata”-style sex strike off the ground. \n", + "2 Three years later, American reproductive rights are on an even bleaker trajectory. A Supreme Court decision that’s expected to come down this summer is likely to strike down Roe v. Wade, either in deed or in word, making it possible for states with anti-abortion leadership to ban the procedure altogether. \n", + "3 It might seem curious, then, that legislators in some conservative-leaning states are spending these months before the likely downfall of Roe working to pass less extreme abortion measures than they did in 2019. Now seems like the time for anti-abortion legislators to go for broke. The fact that some of them are pursuing a different strategy offers clues about what a post-Roe America could look like, and how that landscape could be more complex — and less predetermined — than some Americans had assumed. \n", + "4 One of this year’s unmistakable trends in anti-abortion legislation is the 15-week ban. Legislators in Arizona, Florida and West Virginia are now considering bills — which, as the name suggests, would ban abortion after 15 weeks of pregnancy, in violation of Roe. At first blush, it might seem these states are simply copying the Mississippi law that the Supreme Court seems likely to uphold this summer, in Dobbs v. Jackson Women’s Health Organization. But why would they hold back now, rather than try to get more draconian legislation through their legislatures? Florida even considered a six-... \n", + "... ... \n", + "3893 And boy did it come \n", + "3894 But the record rains will not end California’s ongoing drought. \n", + "3895 Last week, Gov. Gavin Newsom extended the state’s drought emergency and asked residents to redouble their water conservation efforts. \n", + "3896 This has been California’s second driest year on record, with near-record low storage in the state’s largest reservoirs, according to the governor’s office. \n", + "3897 Severe drought conditions, worsened by climate change, continue to affect much of the Western United States and even the northern part of the Great Plains. \n", "\n", - " label discourse_type_num \\\n", - "0 Lead Lead 1 \n", - "1 Position Position 1 \n", - "2 Evidence Evidence 1 \n", - "3 Evidence Evidence 2 \n", - "4 Claim Claim 1 \n", - "... ... ... \n", - "144288 Evidence Evidence 2 \n", - "144289 Evidence Evidence 3 \n", - "144290 Position Position 1 \n", - "144291 Evidence Evidence 4 \n", - "144292 Concluding Statement Concluding Statement 1 \n", + " label score start end source \n", + "0 Evidence 0.983720 0 528 abortion-florida-15-week-ban \n", + "1 Evidence 0.934319 528 908 abortion-florida-15-week-ban \n", + "2 Evidence 0.622358 908 1214 abortion-florida-15-week-ban \n", + "3 Evidence 0.946866 1214 1722 abortion-florida-15-week-ban \n", + "4 Evidence 0.991869 1722 2394 abortion-florida-15-week-ban \n", + "... ... ... ... ... ... \n", + "3893 Claim 0.982928 2554 2573 yosemite-falls \n", + "3894 Rebuttal 0.880377 2573 2636 yosemite-falls \n", + "3895 Claim 0.541481 2636 2769 yosemite-falls \n", + "3896 Evidence 0.479049 2769 2925 yosemite-falls \n", + "3897 Claim 0.478424 2925 3080 yosemite-falls \n", "\n", - " predictionstring \\\n", - "0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 \n", - "1 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 \n", - "2 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 \n", - "3 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 \n", - "4 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 \n", - "... ... \n", - "144288 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 ... \n", - "144289 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 ... \n", - "144290 828 829 830 831 832 833 834 835 836 837 838 \n", - "144291 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 \n", - "144292 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1... \n", - "\n", - " is_valid \n", - "0 False \n", - "1 False \n", - "2 False \n", - "3 False \n", - "4 False \n", - "... ... \n", - "144288 True \n", - "144289 True \n", - "144290 True \n", - "144291 True \n", - "144292 True \n", - "\n", - "[144293 rows x 9 columns]" + "[3898 rows x 6 columns]" ] }, - "execution_count": 22, + "execution_count": 5, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "df = pd.read_csv(\"feedback-prize-2021/train.csv\").rename(columns={\"discourse_text\":\"text\", \"discourse_type\":\"label\"})\n", - "l = df.shape[0]\n", - "df[\"is_valid\"] = [False for i in range(int(l * 0.7))] + [True for i in range(l-int(l * 0.7))]\n", + "df = pd.read_csv(\"datagen/nytimes/pseudo.csv\")\n", "df" ] }, { "cell_type": "code", - "execution_count": 24, - "id": "64600ce4", - "metadata": { - "ExecuteTime": { - "end_time": "2022-02-20T15:40:45.428309Z", - "start_time": "2022-02-20T15:35:23.806772Z" - } - }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Due to IPython and Windows limitation, python multiprocessing isn't available now.\n", - "So `n_workers` has to be changed to 0 to avoid getting stuck\n", - "Due to IPython and Windows limitation, python multiprocessing isn't available now.\n", - "So `number_workers` is changed to 0 to avoid getting stuck\n" - ] - }, - { - "data": { - "text/html": [ - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
textcategory
0xxbos xxmaj in the year 1976 , when xxmaj viking 1 space craft was taking photographs of possiable landing spots for xxmaj viking 2 spacecraft , they found a formation in a rock that looked like a human face . xxmaj the shadows made the rock look like it had a nose , mouth , and two eyes , like a human . xxmaj this was found in a region of the xxmaj red xxmaj planet called xxmaj cydonia . xxmaj the \" head \" was nearly two miles from end to end , and it seemed to be starring back at the cameras . \\n\\n xxmaj the controllers back at the xxmaj jet xxmaj propulsion xxmaj lab were probably quite surprised when this face popped up on their screens , looking them right in the eyes . xxmaj this sensation was short lived . xxmaj scientist figured it wasEvidence
1xxbos xxmaj for me a car is very important , because if you have a car you can move to other places that you want . xxmaj but not only that , if you have an emergency you can go rapidly , or in time . xxmaj but this is not a facility in all countries and exist much problems with that , for example in xxmaj germany the street parking , driveways and home garages , this are generally forbidden , new district on the outskirts of xxmaj freiburg , near the xxmaj french and xxmaj swiss . but in xxmaj vauban 's streets are completly car free , this is so good , but with a limit , like  ▁ except the main thoroughfare , where the tram to downtown xxmaj freiburg runs . \\n\\n xxmaj in xxunk a result , 70 percent of xxmaj vauban 's familiesEvidence
" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], + "execution_count": null, + "metadata": {}, + "outputs": [], "source": [ - "dls = TextDataLoaders.from_df(df, text_col='text', label_col='label', valid_col='is_valid')\n", - "dls.show_batch(max_n=2)" + "model = Sequential(\n", + " # Create Embedding (Input) Layer (max_words) --> LSTM Layer (128)\n", + " Embedding(max_words, 128),\n", + " LSTM(128, dropout=0.2, recurrent_dropout=0.2),\n", + " # LSTM Layer (128) --> Output Layer (num_classes)\n", + " Dense(num_classes, activation='softmax')\n", + ")\n", + "\n", + "# Add optimization method, loss function and optimization value\n", + "model.compile(loss='categorical_crossentropy', \n", + " optimizer='adam', metrics=['accuracy'])\n" ] }, { "cell_type": "code", "execution_count": null, - "id": "a70494eb", - "metadata": { - "ExecuteTime": { - "end_time": "2022-02-20T15:48:43.444923Z", - "start_time": "2022-02-20T15:48:43.444923Z" - } - }, + "metadata": {}, "outputs": [], "source": [ - "learn = language_model_learner(dls, AWD_LSTM, drop_mult=0.2, metrics=[accuracy, Perplexity()]).to_fp16()" + "# \"Fit the model\" (train model), using training data (80% of dataset)\n", + "model.fit(x_train, y_train, batch_size=batch_size, \n", + " epochs=epochs, validation_data=(x_test, y_test))" ] }, { "cell_type": "code", - "execution_count": 30, - "id": "e0750ffa", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Evalute the trained model, using the test data (20% of the dataset)\n", + "score = model.evaluate(x_test, y_test, batch_size=batch_size)" + ] + }, + { + "cell_type": "code", + "execution_count": 14, "metadata": { "ExecuteTime": { - "end_time": "2022-02-20T15:48:43.351176Z", - "start_time": "2022-02-20T15:46:20.568336Z" + "end_time": "2022-03-01T13:59:18.089881Z", + "start_time": "2022-03-01T13:59:06.641455Z" } }, "outputs": [ { - "name": "stderr", + "name": "stdout", "output_type": "stream", "text": [ - "C:\\Users\\Prannaya\\.conda\\envs\\analytics\\lib\\site-packages\\torch\\cuda\\amp\\grad_scaler.py:115: UserWarning: torch.cuda.amp.GradScaler is enabled, but CUDA is not available. Disabling.\n", - " warnings.warn(\"torch.cuda.amp.GradScaler is enabled, but CUDA is not available. Disabling.\")\n" + "Downloading data from https://storage.googleapis.com/tensorflow/tf-keras-datasets/imdb.npz\n", + "17465344/17464789 [==============================] - 2s 0us/step\n", + "17473536/17464789 [==============================] - 2s 0us/step\n" ] }, { "data": { - "text/html": [ - "\n", - "
\n", - " \n", - " \n", - " 0.00% [0/1 00:00<00:00]\n", - "
\n", - " \n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
epochtrain_lossvalid_lossaccuracyperplexitytime

\n", - "\n", - "

\n", - " \n", - " \n", - " 0.00% [0/1578 00:00<00:00]\n", - "
\n", - " " - ], "text/plain": [ - "" + "array([list([1, 14, 22, 16, 43, 530, 973, 1622, 1385, 65, 458, 4468, 66, 3941, 4, 173, 36, 256, 5, 25, 100, 43, 838, 112, 50, 670, 2, 9, 35, 480, 284, 5, 150, 4, 172, 112, 167, 2, 336, 385, 39, 4, 172, 4536, 1111, 17, 546, 38, 13, 447, 4, 192, 50, 16, 6, 147, 2025, 19, 14, 22, 4, 1920, 4613, 469, 4, 22, 71, 87, 12, 16, 43, 530, 38, 76, 15, 13, 1247, 4, 22, 17, 515, 17, 12, 16, 626, 18, 2, 5, 62, 386, 12, 8, 316, 8, 106, 5, 4, 2223, 2, 16, 480, 66, 3785, 33, 4, 130, 12, 16, 38, 619, 5, 25, 124, 51, 36, 135, 48, 25, 1415, 33, 6, 22, 12, 215, 28, 77, 52, 5, 14, 407, 16, 82, 2, 8, 4, 107, 117, 2, 15, 256, 4, 2, 7, 3766, 5, 723, 36, 71, 43, 530, 476, 26, 400, 317, 46, 7, 4, 2, 1029, 13, 104, 88, 4, 381, 15, 297, 98, 32, 2071, 56, 26, 141, 6, 194, 2, 18, 4, 226, 22, 21, 134, 476, 26, 480, 5, 144, 30, 2, 18, 51, 36, 28, 224, 92, 25, 104, 4, 226, 65, 16, 38, 1334, 88, 12, 16, 283, 5, 16, 4472, 113, 103, 32, 15, 16, 2, 19, 178, 32]),\n", + " list([1, 194, 1153, 194, 2, 78, 228, 5, 6, 1463, 4369, 2, 134, 26, 4, 715, 8, 118, 1634, 14, 394, 20, 13, 119, 954, 189, 102, 5, 207, 110, 3103, 21, 14, 69, 188, 8, 30, 23, 7, 4, 249, 126, 93, 4, 114, 9, 2300, 1523, 5, 647, 4, 116, 9, 35, 2, 4, 229, 9, 340, 1322, 4, 118, 9, 4, 130, 4901, 19, 4, 1002, 5, 89, 29, 952, 46, 37, 4, 455, 9, 45, 43, 38, 1543, 1905, 398, 4, 1649, 26, 2, 5, 163, 11, 3215, 2, 4, 1153, 9, 194, 775, 7, 2, 2, 349, 2637, 148, 605, 2, 2, 15, 123, 125, 68, 2, 2, 15, 349, 165, 4362, 98, 5, 4, 228, 9, 43, 2, 1157, 15, 299, 120, 5, 120, 174, 11, 220, 175, 136, 50, 9, 4373, 228, 2, 5, 2, 656, 245, 2350, 5, 4, 2, 131, 152, 491, 18, 2, 32, 2, 1212, 14, 9, 6, 371, 78, 22, 625, 64, 1382, 9, 8, 168, 145, 23, 4, 1690, 15, 16, 4, 1355, 5, 28, 6, 52, 154, 462, 33, 89, 78, 285, 16, 145, 95]),\n", + " list([1, 14, 47, 8, 30, 31, 7, 4, 249, 108, 7, 4, 2, 54, 61, 369, 13, 71, 149, 14, 22, 112, 4, 2401, 311, 12, 16, 3711, 33, 75, 43, 1829, 296, 4, 86, 320, 35, 534, 19, 263, 4821, 1301, 4, 1873, 33, 89, 78, 12, 66, 16, 4, 360, 7, 4, 58, 316, 334, 11, 4, 1716, 43, 645, 662, 8, 257, 85, 1200, 42, 1228, 2578, 83, 68, 3912, 15, 36, 165, 1539, 278, 36, 69, 2, 780, 8, 106, 14, 2, 1338, 18, 6, 22, 12, 215, 28, 610, 40, 6, 87, 326, 23, 2300, 21, 23, 22, 12, 272, 40, 57, 31, 11, 4, 22, 47, 6, 2307, 51, 9, 170, 23, 595, 116, 595, 1352, 13, 191, 79, 638, 89, 2, 14, 9, 8, 106, 607, 624, 35, 534, 6, 227, 7, 129, 113]),\n", + " ...,\n", + " list([1, 11, 6, 230, 245, 2, 9, 6, 1225, 446, 2, 45, 2174, 84, 2, 4007, 21, 4, 912, 84, 2, 325, 725, 134, 2, 1715, 84, 5, 36, 28, 57, 1099, 21, 8, 140, 8, 703, 5, 2, 84, 56, 18, 1644, 14, 9, 31, 7, 4, 2, 1209, 2295, 2, 1008, 18, 6, 20, 207, 110, 563, 12, 8, 2901, 2, 8, 97, 6, 20, 53, 4767, 74, 4, 460, 364, 1273, 29, 270, 11, 960, 108, 45, 40, 29, 2961, 395, 11, 6, 4065, 500, 7, 2, 89, 364, 70, 29, 140, 4, 64, 4780, 11, 4, 2678, 26, 178, 4, 529, 443, 2, 5, 27, 710, 117, 2, 2, 165, 47, 84, 37, 131, 818, 14, 595, 10, 10, 61, 1242, 1209, 10, 10, 288, 2260, 1702, 34, 2901, 2, 4, 65, 496, 4, 231, 7, 790, 5, 6, 320, 234, 2766, 234, 1119, 1574, 7, 496, 4, 139, 929, 2901, 2, 2, 5, 4241, 18, 4, 2, 2, 250, 11, 1818, 2, 4, 4217, 2, 747, 1115, 372, 1890, 1006, 541, 2, 7, 4, 59, 2, 4, 3586, 2]),\n", + " list([1, 1446, 2, 69, 72, 3305, 13, 610, 930, 8, 12, 582, 23, 5, 16, 484, 685, 54, 349, 11, 4120, 2959, 45, 58, 1466, 13, 197, 12, 16, 43, 23, 2, 5, 62, 30, 145, 402, 11, 4131, 51, 575, 32, 61, 369, 71, 66, 770, 12, 1054, 75, 100, 2198, 8, 4, 105, 37, 69, 147, 712, 75, 3543, 44, 257, 390, 5, 69, 263, 514, 105, 50, 286, 1814, 23, 4, 123, 13, 161, 40, 5, 421, 4, 116, 16, 897, 13, 2, 40, 319, 2, 112, 2, 11, 4803, 121, 25, 70, 3468, 4, 719, 3798, 13, 18, 31, 62, 40, 8, 2, 4, 2, 7, 14, 123, 5, 942, 25, 8, 721, 12, 145, 5, 202, 12, 160, 580, 202, 12, 6, 52, 58, 2, 92, 401, 728, 12, 39, 14, 251, 8, 15, 251, 5, 2, 12, 38, 84, 80, 124, 12, 9, 23]),\n", + " list([1, 17, 6, 194, 337, 7, 4, 204, 22, 45, 254, 8, 106, 14, 123, 4, 2, 270, 2, 5, 2, 2, 732, 2098, 101, 405, 39, 14, 1034, 4, 1310, 9, 115, 50, 305, 12, 47, 4, 168, 5, 235, 7, 38, 111, 699, 102, 7, 4, 4039, 2, 9, 24, 6, 78, 1099, 17, 2345, 2, 21, 27, 2, 2, 5, 2, 1603, 92, 1183, 4, 1310, 7, 4, 204, 42, 97, 90, 35, 221, 109, 29, 127, 27, 118, 8, 97, 12, 157, 21, 2, 2, 9, 6, 66, 78, 1099, 4, 631, 1191, 5, 2642, 272, 191, 1070, 6, 2, 8, 2197, 2, 2, 544, 5, 383, 1271, 848, 1468, 2, 497, 2, 8, 1597, 2, 2, 21, 60, 27, 239, 9, 43, 2, 209, 405, 10, 10, 12, 764, 40, 4, 248, 20, 12, 16, 5, 174, 1791, 72, 7, 51, 6, 1739, 22, 4, 204, 131, 9])],\n", + " dtype=object)" ] }, + "execution_count": 14, "metadata": {}, - "output_type": "display_data" - }, - { - "ename": "RuntimeError", - "evalue": "[enforce fail at ..\\c10\\core\\CPUAllocator.cpp:76] data. DefaultCPUAllocator: not enough memory: you tried to allocate 4149510144 bytes.", - "output_type": "error", - "traceback": [ - "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[1;31mRuntimeError\u001b[0m Traceback (most recent call last)", - "Input \u001b[1;32mIn [30]\u001b[0m, in \u001b[0;36m\u001b[1;34m\u001b[0m\n\u001b[1;32m----> 1\u001b[0m \u001b[43mlearn\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mfit_one_cycle\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m1\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m2e-2\u001b[39;49m\u001b[43m)\u001b[49m\n", - "File \u001b[1;32m~\\.conda\\envs\\analytics\\lib\\site-packages\\fastai\\callback\\schedule.py:116\u001b[0m, in \u001b[0;36mfit_one_cycle\u001b[1;34m(self, n_epoch, lr_max, div, div_final, pct_start, wd, moms, cbs, reset_opt)\u001b[0m\n\u001b[0;32m 113\u001b[0m lr_max \u001b[38;5;241m=\u001b[39m np\u001b[38;5;241m.\u001b[39marray([h[\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mlr\u001b[39m\u001b[38;5;124m'\u001b[39m] \u001b[38;5;28;01mfor\u001b[39;00m h \u001b[38;5;129;01min\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mopt\u001b[38;5;241m.\u001b[39mhypers])\n\u001b[0;32m 114\u001b[0m scheds \u001b[38;5;241m=\u001b[39m {\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mlr\u001b[39m\u001b[38;5;124m'\u001b[39m: combined_cos(pct_start, lr_max\u001b[38;5;241m/\u001b[39mdiv, lr_max, lr_max\u001b[38;5;241m/\u001b[39mdiv_final),\n\u001b[0;32m 115\u001b[0m \u001b[38;5;124m'\u001b[39m\u001b[38;5;124mmom\u001b[39m\u001b[38;5;124m'\u001b[39m: combined_cos(pct_start, \u001b[38;5;241m*\u001b[39m(\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mmoms \u001b[38;5;28;01mif\u001b[39;00m moms \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m \u001b[38;5;28;01melse\u001b[39;00m moms))}\n\u001b[1;32m--> 116\u001b[0m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mfit\u001b[49m\u001b[43m(\u001b[49m\u001b[43mn_epoch\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mcbs\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mParamScheduler\u001b[49m\u001b[43m(\u001b[49m\u001b[43mscheds\u001b[49m\u001b[43m)\u001b[49m\u001b[38;5;241;43m+\u001b[39;49m\u001b[43mL\u001b[49m\u001b[43m(\u001b[49m\u001b[43mcbs\u001b[49m\u001b[43m)\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mreset_opt\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mreset_opt\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mwd\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mwd\u001b[49m\u001b[43m)\u001b[49m\n", - "File \u001b[1;32m~\\.conda\\envs\\analytics\\lib\\site-packages\\fastai\\learner.py:221\u001b[0m, in \u001b[0;36mLearner.fit\u001b[1;34m(self, n_epoch, lr, wd, cbs, reset_opt)\u001b[0m\n\u001b[0;32m 219\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mopt\u001b[38;5;241m.\u001b[39mset_hypers(lr\u001b[38;5;241m=\u001b[39m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mlr \u001b[38;5;28;01mif\u001b[39;00m lr \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m \u001b[38;5;28;01melse\u001b[39;00m lr)\n\u001b[0;32m 220\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mn_epoch \u001b[38;5;241m=\u001b[39m n_epoch\n\u001b[1;32m--> 221\u001b[0m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_with_events\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_do_fit\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[38;5;124;43mfit\u001b[39;49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mCancelFitException\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_end_cleanup\u001b[49m\u001b[43m)\u001b[49m\n", - "File \u001b[1;32m~\\.conda\\envs\\analytics\\lib\\site-packages\\fastai\\learner.py:163\u001b[0m, in \u001b[0;36mLearner._with_events\u001b[1;34m(self, f, event_type, ex, final)\u001b[0m\n\u001b[0;32m 162\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21m_with_events\u001b[39m(\u001b[38;5;28mself\u001b[39m, f, event_type, ex, final\u001b[38;5;241m=\u001b[39mnoop):\n\u001b[1;32m--> 163\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m: \u001b[38;5;28mself\u001b[39m(\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mbefore_\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mevent_type\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m'\u001b[39m); \u001b[43mf\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\n\u001b[0;32m 164\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m ex: \u001b[38;5;28mself\u001b[39m(\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mafter_cancel_\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mevent_type\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m'\u001b[39m)\n\u001b[0;32m 165\u001b[0m \u001b[38;5;28mself\u001b[39m(\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mafter_\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mevent_type\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m'\u001b[39m); final()\n", - "File \u001b[1;32m~\\.conda\\envs\\analytics\\lib\\site-packages\\fastai\\learner.py:212\u001b[0m, in \u001b[0;36mLearner._do_fit\u001b[1;34m(self)\u001b[0m\n\u001b[0;32m 210\u001b[0m \u001b[38;5;28;01mfor\u001b[39;00m epoch \u001b[38;5;129;01min\u001b[39;00m \u001b[38;5;28mrange\u001b[39m(\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mn_epoch):\n\u001b[0;32m 211\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mepoch\u001b[38;5;241m=\u001b[39mepoch\n\u001b[1;32m--> 212\u001b[0m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_with_events\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_do_epoch\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[38;5;124;43mepoch\u001b[39;49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mCancelEpochException\u001b[49m\u001b[43m)\u001b[49m\n", - "File \u001b[1;32m~\\.conda\\envs\\analytics\\lib\\site-packages\\fastai\\learner.py:163\u001b[0m, in \u001b[0;36mLearner._with_events\u001b[1;34m(self, f, event_type, ex, final)\u001b[0m\n\u001b[0;32m 162\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21m_with_events\u001b[39m(\u001b[38;5;28mself\u001b[39m, f, event_type, ex, final\u001b[38;5;241m=\u001b[39mnoop):\n\u001b[1;32m--> 163\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m: \u001b[38;5;28mself\u001b[39m(\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mbefore_\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mevent_type\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m'\u001b[39m); \u001b[43mf\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\n\u001b[0;32m 164\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m ex: \u001b[38;5;28mself\u001b[39m(\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mafter_cancel_\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mevent_type\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m'\u001b[39m)\n\u001b[0;32m 165\u001b[0m \u001b[38;5;28mself\u001b[39m(\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mafter_\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mevent_type\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m'\u001b[39m); final()\n", - "File \u001b[1;32m~\\.conda\\envs\\analytics\\lib\\site-packages\\fastai\\learner.py:206\u001b[0m, in \u001b[0;36mLearner._do_epoch\u001b[1;34m(self)\u001b[0m\n\u001b[0;32m 205\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21m_do_epoch\u001b[39m(\u001b[38;5;28mself\u001b[39m):\n\u001b[1;32m--> 206\u001b[0m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_do_epoch_train\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\n\u001b[0;32m 207\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_do_epoch_validate()\n", - "File \u001b[1;32m~\\.conda\\envs\\analytics\\lib\\site-packages\\fastai\\learner.py:198\u001b[0m, in \u001b[0;36mLearner._do_epoch_train\u001b[1;34m(self)\u001b[0m\n\u001b[0;32m 196\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21m_do_epoch_train\u001b[39m(\u001b[38;5;28mself\u001b[39m):\n\u001b[0;32m 197\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mdl \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mdls\u001b[38;5;241m.\u001b[39mtrain\n\u001b[1;32m--> 198\u001b[0m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_with_events\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mall_batches\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[38;5;124;43mtrain\u001b[39;49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mCancelTrainException\u001b[49m\u001b[43m)\u001b[49m\n", - "File \u001b[1;32m~\\.conda\\envs\\analytics\\lib\\site-packages\\fastai\\learner.py:163\u001b[0m, in \u001b[0;36mLearner._with_events\u001b[1;34m(self, f, event_type, ex, final)\u001b[0m\n\u001b[0;32m 162\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21m_with_events\u001b[39m(\u001b[38;5;28mself\u001b[39m, f, event_type, ex, final\u001b[38;5;241m=\u001b[39mnoop):\n\u001b[1;32m--> 163\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m: \u001b[38;5;28mself\u001b[39m(\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mbefore_\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mevent_type\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m'\u001b[39m); \u001b[43mf\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\n\u001b[0;32m 164\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m ex: \u001b[38;5;28mself\u001b[39m(\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mafter_cancel_\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mevent_type\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m'\u001b[39m)\n\u001b[0;32m 165\u001b[0m \u001b[38;5;28mself\u001b[39m(\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mafter_\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mevent_type\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m'\u001b[39m); final()\n", - "File \u001b[1;32m~\\.conda\\envs\\analytics\\lib\\site-packages\\fastai\\learner.py:169\u001b[0m, in \u001b[0;36mLearner.all_batches\u001b[1;34m(self)\u001b[0m\n\u001b[0;32m 167\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21mall_batches\u001b[39m(\u001b[38;5;28mself\u001b[39m):\n\u001b[0;32m 168\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mn_iter \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mlen\u001b[39m(\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mdl)\n\u001b[1;32m--> 169\u001b[0m \u001b[38;5;28;01mfor\u001b[39;00m o \u001b[38;5;129;01min\u001b[39;00m \u001b[38;5;28menumerate\u001b[39m(\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mdl): \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mone_batch\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mo\u001b[49m\u001b[43m)\u001b[49m\n", - "File \u001b[1;32m~\\.conda\\envs\\analytics\\lib\\site-packages\\fastai\\learner.py:194\u001b[0m, in \u001b[0;36mLearner.one_batch\u001b[1;34m(self, i, b)\u001b[0m\n\u001b[0;32m 192\u001b[0m b \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_set_device(b)\n\u001b[0;32m 193\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_split(b)\n\u001b[1;32m--> 194\u001b[0m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_with_events\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_do_one_batch\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[38;5;124;43mbatch\u001b[39;49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mCancelBatchException\u001b[49m\u001b[43m)\u001b[49m\n", - "File \u001b[1;32m~\\.conda\\envs\\analytics\\lib\\site-packages\\fastai\\learner.py:163\u001b[0m, in \u001b[0;36mLearner._with_events\u001b[1;34m(self, f, event_type, ex, final)\u001b[0m\n\u001b[0;32m 162\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21m_with_events\u001b[39m(\u001b[38;5;28mself\u001b[39m, f, event_type, ex, final\u001b[38;5;241m=\u001b[39mnoop):\n\u001b[1;32m--> 163\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m: \u001b[38;5;28mself\u001b[39m(\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mbefore_\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mevent_type\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m'\u001b[39m); \u001b[43mf\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\n\u001b[0;32m 164\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m ex: \u001b[38;5;28mself\u001b[39m(\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mafter_cancel_\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mevent_type\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m'\u001b[39m)\n\u001b[0;32m 165\u001b[0m \u001b[38;5;28mself\u001b[39m(\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mafter_\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mevent_type\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m'\u001b[39m); final()\n", - "File \u001b[1;32m~\\.conda\\envs\\analytics\\lib\\site-packages\\fastai\\learner.py:175\u001b[0m, in \u001b[0;36mLearner._do_one_batch\u001b[1;34m(self)\u001b[0m\n\u001b[0;32m 173\u001b[0m \u001b[38;5;28mself\u001b[39m(\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mafter_pred\u001b[39m\u001b[38;5;124m'\u001b[39m)\n\u001b[0;32m 174\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mlen\u001b[39m(\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39myb):\n\u001b[1;32m--> 175\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mloss_grad \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mloss_func\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mpred\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43myb\u001b[49m\u001b[43m)\u001b[49m\n\u001b[0;32m 176\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mloss \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mloss_grad\u001b[38;5;241m.\u001b[39mclone()\n\u001b[0;32m 177\u001b[0m \u001b[38;5;28mself\u001b[39m(\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mafter_loss\u001b[39m\u001b[38;5;124m'\u001b[39m)\n", - "File \u001b[1;32m~\\.conda\\envs\\analytics\\lib\\site-packages\\fastai\\losses.py:35\u001b[0m, in \u001b[0;36mBaseLoss.__call__\u001b[1;34m(self, inp, targ, **kwargs)\u001b[0m\n\u001b[0;32m 33\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m targ\u001b[38;5;241m.\u001b[39mdtype \u001b[38;5;129;01min\u001b[39;00m [torch\u001b[38;5;241m.\u001b[39mint8, torch\u001b[38;5;241m.\u001b[39mint16, torch\u001b[38;5;241m.\u001b[39mint32]: targ \u001b[38;5;241m=\u001b[39m targ\u001b[38;5;241m.\u001b[39mlong()\n\u001b[0;32m 34\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mflatten: inp \u001b[38;5;241m=\u001b[39m inp\u001b[38;5;241m.\u001b[39mview(\u001b[38;5;241m-\u001b[39m\u001b[38;5;241m1\u001b[39m,inp\u001b[38;5;241m.\u001b[39mshape[\u001b[38;5;241m-\u001b[39m\u001b[38;5;241m1\u001b[39m]) \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mis_2d \u001b[38;5;28;01melse\u001b[39;00m inp\u001b[38;5;241m.\u001b[39mview(\u001b[38;5;241m-\u001b[39m\u001b[38;5;241m1\u001b[39m)\n\u001b[1;32m---> 35\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mfunc\u001b[38;5;241m.\u001b[39m\u001b[38;5;21m__call__\u001b[39m(inp, targ\u001b[38;5;241m.\u001b[39mview(\u001b[38;5;241m-\u001b[39m\u001b[38;5;241m1\u001b[39m) \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mflatten \u001b[38;5;28;01melse\u001b[39;00m targ, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkwargs)\n", - "File \u001b[1;32m~\\.conda\\envs\\analytics\\lib\\site-packages\\torch\\nn\\modules\\module.py:1102\u001b[0m, in \u001b[0;36mModule._call_impl\u001b[1;34m(self, *input, **kwargs)\u001b[0m\n\u001b[0;32m 1098\u001b[0m \u001b[38;5;66;03m# If we don't have any hooks, we want to skip the rest of the logic in\u001b[39;00m\n\u001b[0;32m 1099\u001b[0m \u001b[38;5;66;03m# this function, and just call forward.\u001b[39;00m\n\u001b[0;32m 1100\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m (\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_backward_hooks \u001b[38;5;129;01mor\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_forward_hooks \u001b[38;5;129;01mor\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_forward_pre_hooks \u001b[38;5;129;01mor\u001b[39;00m _global_backward_hooks\n\u001b[0;32m 1101\u001b[0m \u001b[38;5;129;01mor\u001b[39;00m _global_forward_hooks \u001b[38;5;129;01mor\u001b[39;00m _global_forward_pre_hooks):\n\u001b[1;32m-> 1102\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m forward_call(\u001b[38;5;241m*\u001b[39m\u001b[38;5;28minput\u001b[39m, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkwargs)\n\u001b[0;32m 1103\u001b[0m \u001b[38;5;66;03m# Do not call functions when jit is used\u001b[39;00m\n\u001b[0;32m 1104\u001b[0m full_backward_hooks, non_full_backward_hooks \u001b[38;5;241m=\u001b[39m [], []\n", - "File \u001b[1;32m~\\.conda\\envs\\analytics\\lib\\site-packages\\torch\\nn\\modules\\loss.py:1150\u001b[0m, in \u001b[0;36mCrossEntropyLoss.forward\u001b[1;34m(self, input, target)\u001b[0m\n\u001b[0;32m 1149\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21mforward\u001b[39m(\u001b[38;5;28mself\u001b[39m, \u001b[38;5;28minput\u001b[39m: Tensor, target: Tensor) \u001b[38;5;241m-\u001b[39m\u001b[38;5;241m>\u001b[39m Tensor:\n\u001b[1;32m-> 1150\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mF\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mcross_entropy\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;28;43minput\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mtarget\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mweight\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mweight\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 1151\u001b[0m \u001b[43m \u001b[49m\u001b[43mignore_index\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mignore_index\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mreduction\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mreduction\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 1152\u001b[0m \u001b[43m \u001b[49m\u001b[43mlabel_smoothing\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mlabel_smoothing\u001b[49m\u001b[43m)\u001b[49m\n", - "File \u001b[1;32m~\\.conda\\envs\\analytics\\lib\\site-packages\\torch\\nn\\functional.py:2832\u001b[0m, in \u001b[0;36mcross_entropy\u001b[1;34m(input, target, weight, size_average, ignore_index, reduce, reduction, label_smoothing)\u001b[0m\n\u001b[0;32m 2777\u001b[0m \u001b[38;5;124mr\u001b[39m\u001b[38;5;124;03m\"\"\"This criterion computes the cross entropy loss between input and target.\u001b[39;00m\n\u001b[0;32m 2778\u001b[0m \n\u001b[0;32m 2779\u001b[0m \u001b[38;5;124;03mSee :class:`~torch.nn.CrossEntropyLoss` for details.\u001b[39;00m\n\u001b[1;32m (...)\u001b[0m\n\u001b[0;32m 2829\u001b[0m \u001b[38;5;124;03m >>> loss.backward()\u001b[39;00m\n\u001b[0;32m 2830\u001b[0m \u001b[38;5;124;03m\"\"\"\u001b[39;00m\n\u001b[0;32m 2831\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m has_torch_function_variadic(\u001b[38;5;28minput\u001b[39m, target, weight):\n\u001b[1;32m-> 2832\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mhandle_torch_function\u001b[49m\u001b[43m(\u001b[49m\n\u001b[0;32m 2833\u001b[0m \u001b[43m \u001b[49m\u001b[43mcross_entropy\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 2834\u001b[0m \u001b[43m \u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;28;43minput\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mtarget\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mweight\u001b[49m\u001b[43m)\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 2835\u001b[0m \u001b[43m \u001b[49m\u001b[38;5;28;43minput\u001b[39;49m\u001b[43m,\u001b[49m\n\u001b[0;32m 2836\u001b[0m \u001b[43m \u001b[49m\u001b[43mtarget\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 2837\u001b[0m \u001b[43m \u001b[49m\u001b[43mweight\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mweight\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 2838\u001b[0m \u001b[43m \u001b[49m\u001b[43msize_average\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43msize_average\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 2839\u001b[0m \u001b[43m \u001b[49m\u001b[43mignore_index\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mignore_index\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 2840\u001b[0m \u001b[43m \u001b[49m\u001b[43mreduce\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mreduce\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 2841\u001b[0m \u001b[43m \u001b[49m\u001b[43mreduction\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mreduction\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 2842\u001b[0m \u001b[43m \u001b[49m\u001b[43mlabel_smoothing\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mlabel_smoothing\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 2843\u001b[0m \u001b[43m \u001b[49m\u001b[43m)\u001b[49m\n\u001b[0;32m 2844\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m size_average \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m \u001b[38;5;129;01mor\u001b[39;00m reduce \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[0;32m 2845\u001b[0m reduction \u001b[38;5;241m=\u001b[39m _Reduction\u001b[38;5;241m.\u001b[39mlegacy_get_string(size_average, reduce)\n", - "File \u001b[1;32m~\\.conda\\envs\\analytics\\lib\\site-packages\\torch\\overrides.py:1355\u001b[0m, in \u001b[0;36mhandle_torch_function\u001b[1;34m(public_api, relevant_args, *args, **kwargs)\u001b[0m\n\u001b[0;32m 1349\u001b[0m warnings\u001b[38;5;241m.\u001b[39mwarn(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mDefining your `__torch_function__ as a plain method is deprecated and \u001b[39m\u001b[38;5;124m\"\u001b[39m\n\u001b[0;32m 1350\u001b[0m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mwill be an error in PyTorch 1.11, please define it as a classmethod.\u001b[39m\u001b[38;5;124m\"\u001b[39m,\n\u001b[0;32m 1351\u001b[0m \u001b[38;5;167;01mDeprecationWarning\u001b[39;00m)\n\u001b[0;32m 1353\u001b[0m \u001b[38;5;66;03m# Use `public_api` instead of `implementation` so __torch_function__\u001b[39;00m\n\u001b[0;32m 1354\u001b[0m \u001b[38;5;66;03m# implementations can do equality/identity comparisons.\u001b[39;00m\n\u001b[1;32m-> 1355\u001b[0m result \u001b[38;5;241m=\u001b[39m \u001b[43mtorch_func_method\u001b[49m\u001b[43m(\u001b[49m\u001b[43mpublic_api\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mtypes\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43margs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n\u001b[0;32m 1357\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m result \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28mNotImplemented\u001b[39m:\n\u001b[0;32m 1358\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m result\n", - "File \u001b[1;32m~\\.conda\\envs\\analytics\\lib\\site-packages\\fastai\\torch_core.py:340\u001b[0m, in \u001b[0;36mTensorBase.__torch_function__\u001b[1;34m(self, func, types, args, kwargs)\u001b[0m\n\u001b[0;32m 338\u001b[0m convert\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mFalse\u001b[39;00m\n\u001b[0;32m 339\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m _torch_handled(args, \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_opt, func): convert,types \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mtype\u001b[39m(\u001b[38;5;28mself\u001b[39m),(torch\u001b[38;5;241m.\u001b[39mTensor,)\n\u001b[1;32m--> 340\u001b[0m res \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43msuper\u001b[39;49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m__torch_function__\u001b[49m\u001b[43m(\u001b[49m\u001b[43mfunc\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mtypes\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43margs\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mkwargs\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n\u001b[0;32m 341\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m convert: res \u001b[38;5;241m=\u001b[39m convert(res)\n\u001b[0;32m 342\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28misinstance\u001b[39m(res, TensorBase): res\u001b[38;5;241m.\u001b[39mset_meta(\u001b[38;5;28mself\u001b[39m, as_copy\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mTrue\u001b[39;00m)\n", - "File \u001b[1;32m~\\.conda\\envs\\analytics\\lib\\site-packages\\torch\\_tensor.py:1051\u001b[0m, in \u001b[0;36mTensor.__torch_function__\u001b[1;34m(cls, func, types, args, kwargs)\u001b[0m\n\u001b[0;32m 1048\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mNotImplemented\u001b[39m\n\u001b[0;32m 1050\u001b[0m \u001b[38;5;28;01mwith\u001b[39;00m _C\u001b[38;5;241m.\u001b[39mDisableTorchFunction():\n\u001b[1;32m-> 1051\u001b[0m ret \u001b[38;5;241m=\u001b[39m func(\u001b[38;5;241m*\u001b[39margs, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkwargs)\n\u001b[0;32m 1052\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m func \u001b[38;5;129;01min\u001b[39;00m get_default_nowrap_functions():\n\u001b[0;32m 1053\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m ret\n", - "File \u001b[1;32m~\\.conda\\envs\\analytics\\lib\\site-packages\\torch\\nn\\functional.py:2846\u001b[0m, in \u001b[0;36mcross_entropy\u001b[1;34m(input, target, weight, size_average, ignore_index, reduce, reduction, label_smoothing)\u001b[0m\n\u001b[0;32m 2844\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m size_average \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m \u001b[38;5;129;01mor\u001b[39;00m reduce \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[0;32m 2845\u001b[0m reduction \u001b[38;5;241m=\u001b[39m _Reduction\u001b[38;5;241m.\u001b[39mlegacy_get_string(size_average, reduce)\n\u001b[1;32m-> 2846\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mtorch\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_C\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_nn\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mcross_entropy_loss\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;28;43minput\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mtarget\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mweight\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43m_Reduction\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mget_enum\u001b[49m\u001b[43m(\u001b[49m\u001b[43mreduction\u001b[49m\u001b[43m)\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mignore_index\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mlabel_smoothing\u001b[49m\u001b[43m)\u001b[49m\n", - "\u001b[1;31mRuntimeError\u001b[0m: [enforce fail at ..\\c10\\core\\CPUAllocator.cpp:76] data. DefaultCPUAllocator: not enough memory: you tried to allocate 4149510144 bytes." - ] + "output_type": "execute_result" } ], "source": [ - "learn.fit_one_cycle(1, 2e-2)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "8b252921", - "metadata": {}, - "outputs": [], - "source": [ - "learn.save(r\"langepoch1\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "879577e4", - "metadata": {}, - "outputs": [], - "source": [ - "learn_txtcls = text_classifier_learner(dls, AWD_LSTM, drop_mult=0.5, metrics=accuracy)" + "from keras.datasets import imdb\n", + "\n", + "# load the dataset but only keep the top n words, zero the rest\n", + "top_words = 5000\n", + "(X_train, y_train), (X_test, y_test) = imdb.load_data(num_words=top_words)\n", + "\n", + "X_train" ] }, { "cell_type": "code", "execution_count": null, - "id": "1eca5132", "metadata": {}, "outputs": [], "source": [] @@ -717,7 +299,7 @@ ], "metadata": { "kernelspec": { - "display_name": "Python 3 (ipykernel)", + "display_name": "Python 3", "language": "python", "name": "python3" }, diff --git a/research/Testing the Model.ipynb b/research/Testing the Model.ipynb index 6c86076e..0cf087b7 100644 --- a/research/Testing the Model.ipynb +++ b/research/Testing the Model.ipynb @@ -29,12 +29,12 @@ }, { "cell_type": "code", - "execution_count": 13, + "execution_count": 1, "id": "945df347", "metadata": { "ExecuteTime": { - "end_time": "2022-02-20T07:41:34.686070Z", - "start_time": "2022-02-20T07:41:34.676071Z" + "end_time": "2022-03-01T01:12:09.786260Z", + "start_time": "2022-03-01T01:11:54.782861Z" } }, "outputs": [], @@ -86,12 +86,12 @@ }, { "cell_type": "code", - "execution_count": 14, + "execution_count": 2, "id": "c595b142", "metadata": { "ExecuteTime": { - "end_time": "2022-02-20T07:41:51.844156Z", - "start_time": "2022-02-20T07:41:39.215602Z" + "end_time": "2022-03-01T01:13:14.215850Z", + "start_time": "2022-03-01T01:13:00.740152Z" } }, "outputs": [], @@ -111,14 +111,14 @@ }, { "cell_type": "code", - "execution_count": 15, + "execution_count": 3, "id": "a891d600", "metadata": { "ExecuteTime": { - "end_time": "2022-02-20T07:42:02.231858Z", - "start_time": "2022-02-20T07:42:01.460175Z" + "end_time": "2022-03-01T01:13:15.193582Z", + "start_time": "2022-03-01T01:13:14.263480Z" }, - "scrolled": false + "scrolled": true }, "outputs": [ { @@ -239,7 +239,7 @@ ")" ] }, - "execution_count": 15, + "execution_count": 3, "metadata": {}, "output_type": "execute_result" } @@ -260,22 +260,22 @@ }, { "cell_type": "code", - "execution_count": 16, + "execution_count": 4, "id": "af17a421", "metadata": { "ExecuteTime": { - "end_time": "2022-02-20T07:42:04.478286Z", - "start_time": "2022-02-20T07:42:04.459292Z" + "end_time": "2022-03-01T01:13:15.731805Z", + "start_time": "2022-03-01T01:13:15.243846Z" } }, "outputs": [ { "data": { "text/plain": [ - "" + "" ] }, - "execution_count": 16, + "execution_count": 4, "metadata": {}, "output_type": "execute_result" } @@ -303,12 +303,12 @@ }, { "cell_type": "code", - "execution_count": 8, + "execution_count": 5, "id": "9dffd43f", "metadata": { "ExecuteTime": { - "end_time": "2022-02-20T07:22:23.142998Z", - "start_time": "2022-02-20T07:22:21.769445Z" + "end_time": "2022-03-01T01:13:17.825879Z", + "start_time": "2022-03-01T01:13:15.782807Z" } }, "outputs": [ @@ -323,7 +323,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "878720e911f445218dbd7d022360a572", + "model_id": "b75d13e04dd84059b1ddf856370d0b50", "version_major": 2, "version_minor": 0 }, @@ -347,7 +347,7 @@ "{'text': 'In the metaverse, a user might curate a digital avatar, like a character in a video game. Through the eyes of their avatar, they would experience a digital reality as active and engaging as the physical one. Some futurists believe that soon we might attend doctor’s appointments or class there.'}" ] }, - "execution_count": 8, + "execution_count": 5, "metadata": {}, "output_type": "execute_result" } @@ -371,12 +371,12 @@ }, { "cell_type": "code", - "execution_count": 10, + "execution_count": 6, "id": "e45381c4", "metadata": { "ExecuteTime": { - "end_time": "2022-02-20T07:22:24.897215Z", - "start_time": "2022-02-20T07:22:23.430446Z" + "end_time": "2022-03-01T01:13:19.309759Z", + "start_time": "2022-03-01T01:13:17.874609Z" }, "scrolled": false }, @@ -384,7 +384,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "eb2d3f91a3044f13964b565769bcfb02", + "model_id": "4299a36bd0734ec1a4069dfa447d4730", "version_major": 2, "version_minor": 0 }, @@ -404,7 +404,7 @@ "But while the metaverse could revolutionize work and play, it is essential to remain wary of the dangers that will emerge if it subsumes daily life. {'label': 'Rebuttal', 'score': 0.8579508066177368}\n", "Virtual environments will supercharge disinformation campaigns, espionage and surveillance. Struggles for control of the metaverse’s physical infrastructure could very well aggravate global conflicts. And the supranational nature of the metaverse — where real-world borders become far less relevant — could revolutionize the way that individuals perceive and interact with nation-states. {'label': 'Evidence', 'score': 0.7309265732765198}\n", "A failure to anticipate these possibilities may put the global world order at risk of being replaced by a virtual, and perhaps less virtuous, one. {'label': 'Claim', 'score': 0.48474985361099243}\n", - "Today, glimpses of the metaverse are everywhere. Virtual concerts attract record audiences; high-end designers sell virtual fashion; and gaming has become a livelihood for people around the world. Many of the closest corollaries to a full-fledged metaverse are immersive games like Fortnite, Minecraft and Roblox, where players can socialize, shop and attend events in a virtual world. {'label': 'Lead', 'score': 0.6995190382003784}\n", + "Today, glimpses of the metaverse are everywhere. Virtual concerts attract record audiences; high-end designers sell virtual fashion; and gaming has become a livelihood for people around the world. Many of the closest corollaries to a full-fledged metaverse are immersive games like Fortnite, Minecraft and Roblox, where players can socialize, shop and attend events in a virtual world. {'label': 'Lead', 'score': 0.6995189785957336}\n", "There’s already evidence that online multiplayer games can enable the spread of disinformation and conspiracy theories. Players can use in-game communication tools to disseminate rumors or “fake news,” targeting others in difficult-to-track ways. {'label': 'Evidence', 'score': 0.6133278608322144}\n", "The metaverse could allow motivated regimes or extremist groups to go a step farther. Immersive layers of text, voice and visuals in virtual environments would provide new, convincing ways to broadcast misleading or extremist content. {'label': 'Evidence', 'score': 0.6839314699172974}\n", "In environments where individuals can be represented by pseudonymous avatars, knowing whom to trust with sensitive information will become even more difficult. This could pave the way for a new era of espionage. {'label': 'Claim', 'score': 0.5496785640716553}\n", @@ -415,7 +415,7 @@ "A constellation of technologies, including hardware, computer networks and payment tools, will support the metaverse’s functionality. The countries that maintain control over those technologies will have significant international leverage, just as countries that command things like transport routes or oil supplies do today. {'label': 'Evidence', 'score': 0.8707076907157898}\n", "China could effectively control the metaverse’s backbone in many corners of the world, thanks to its Digital Silk Road initiative, which finances some countries’ telecommunications systems. Taiwan, which dominates the semiconductor industry that supports computing needs, will likely become even more of a linchpin on the global stage. {'label': 'Evidence', 'score': 0.8933605551719666}\n", "This kind of physical infrastructure will, in turn, be vulnerable to hacking and supply chain interruptions. If people own property, earn a living, and maintain communities in the metaverse, then hardware shortages or service outages could jeopardize livelihoods or undermine social stability. {'label': 'Evidence', 'score': 0.863372266292572}\n", - "Despite these threats, the metaverse also has the potential to change global affairs for the better. International diplomacy may just as easily be conducted in virtual embassies. Smaller, less powerful nations may find themselves on a more level playing field, better able to stay in the mix in global affairs or perhaps, to forge unlikely alliances. {'label': 'Rebuttal', 'score': 0.626261830329895}\n", + "Despite these threats, the metaverse also has the potential to change global affairs for the better. International diplomacy may just as easily be conducted in virtual embassies. Smaller, less powerful nations may find themselves on a more level playing field, better able to stay in the mix in global affairs or perhaps, to forge unlikely alliances. {'label': 'Rebuttal', 'score': 0.6262617707252502}\n", "Virtual environments have also shown promise for activists resisting digital authoritarianism. On Minecraft, Reporters Without Borders has sponsored an Uncensored Library where users could see content by dissident writers that had been censored in countries like Saudi Arabia, Russia and Vietnam. It’s possible that the metaverse may bring new promise for freedom and transparency across borders. {'label': 'Evidence', 'score': 0.9809460043907166}\n", "But the metaverse’s consequences may be even more radical. {'label': 'Rebuttal', 'score': 0.8597285747528076}\n", "If it becomes as all-encompassing as some predict, the metaverse may foster virtual communities, networks and economies that transcend borders and national identities. Individuals might one day identify primarily with metaverse-based decentralized autonomous organizations with their own quasi-foreign policies. Such a transition could mandate the reconceptualization of geopolitical affairs from the ground up. {'label': 'Evidence', 'score': 0.8217823505401611}\n", @@ -440,20 +440,50 @@ }, { "cell_type": "code", - "execution_count": 11, + "execution_count": 7, "id": "31470c07", "metadata": { "ExecuteTime": { - "end_time": "2022-02-20T07:22:24.943218Z", - "start_time": "2022-02-20T07:22:24.900223Z" + "end_time": "2022-03-01T01:13:42.626556Z", + "start_time": "2022-03-01T01:13:42.586516Z" }, "scrolled": false }, "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " text label score\n", + "0 The metaverse is coming. It was once a science... Lead 0.913818\n", + "1 In the metaverse, a user might curate a digita... Evidence 0.457832\n", + "2 But while the metaverse could revolutionize wo... Rebuttal 0.857951\n", + "3 Virtual environments will supercharge disinfor... Evidence 0.730927\n", + "4 A failure to anticipate these possibilities ma... Claim 0.484750\n", + "5 Today, glimpses of the metaverse are everywher... Lead 0.699519\n", + "6 There’s already evidence that online multiplay... Evidence 0.613328\n", + "7 The metaverse could allow motivated regimes or... Evidence 0.683931\n", + "8 In environments where individuals can be repre... Claim 0.549679\n", + "9 Digital espionage has already been used by doz... Evidence 0.686262\n", + "10 Countries and corporations alike will likely a... Claim 0.816655\n", + "11 States have already used facial recognition te... Evidence 0.959065\n", + "12 Even the metaverse’s physical infrastructure w... Claim 0.963662\n", + "13 A constellation of technologies, including har... Evidence 0.870708\n", + "14 China could effectively control the metaverse’... Evidence 0.893361\n", + "15 This kind of physical infrastructure will, in ... Evidence 0.863372\n", + "16 Despite these threats, the metaverse also has ... Rebuttal 0.626262\n", + "17 Virtual environments have also shown promise f... Evidence 0.980946\n", + "18 But the metaverse’s consequences may be even m... Rebuttal 0.859729\n", + "19 If it becomes as all-encompassing as some pred... Evidence 0.821782\n", + "20 The metaverse may have been born in science fi... Position 0.460967\n" + ] + }, { "data": { "text/html": [ - "
\n", + "

The Metaverse Is Coming, and the World Is Not Ready for It

\n", + "\n", + "
\n", "\n", " The metaverse is coming. It was once a science-fiction fantasy, most notably in Neal Stephenson’s novel “Snow Crash,” of an all-encompassing virtual universe that would exist alongside the physical one. But technological advances have brought this transformation of human society close enough to reality to demand that we consider its consequences.\n", " Lead\n", @@ -485,7 +515,12 @@ "\n", "\n", "\n", - " There’s already evidence that online multiplayer games can enable the spread of disinformation and conspiracy theories. Players can use in-game communication tools to disseminate rumors or “fake news,” targeting others in difficult-to-track ways. The metaverse could allow motivated regimes or extremist groups to go a step farther. Immersive layers of text, voice and visuals in virtual environments would provide new, convincing ways to broadcast misleading or extremist content.\n", + " There’s already evidence that online multiplayer games can enable the spread of disinformation and conspiracy theories. Players can use in-game communication tools to disseminate rumors or “fake news,” targeting others in difficult-to-track ways.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The metaverse could allow motivated regimes or extremist groups to go a step farther. Immersive layers of text, voice and visuals in virtual environments would provide new, convincing ways to broadcast misleading or extremist content.\n", " Evidence\n", "\n", "\n", @@ -515,7 +550,17 @@ "\n", "\n", "\n", - " A constellation of technologies, including hardware, computer networks and payment tools, will support the metaverse’s functionality. The countries that maintain control over those technologies will have significant international leverage, just as countries that command things like transport routes or oil supplies do today. China could effectively control the metaverse’s backbone in many corners of the world, thanks to its Digital Silk Road initiative, which finances some countries’ telecommunications systems. Taiwan, which dominates the semiconductor industry that supports computing needs, will likely become even more of a linchpin on the global stage. This kind of physical infrastructure will, in turn, be vulnerable to hacking and supply chain interruptions. If people own property, earn a living, and maintain communities in the metaverse, then hardware shortages or service outages could jeopardize livelihoods or undermine social stability.\n", + " A constellation of technologies, including hardware, computer networks and payment tools, will support the metaverse’s functionality. The countries that maintain control over those technologies will have significant international leverage, just as countries that command things like transport routes or oil supplies do today.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " China could effectively control the metaverse’s backbone in many corners of the world, thanks to its Digital Silk Road initiative, which finances some countries’ telecommunications systems. Taiwan, which dominates the semiconductor industry that supports computing needs, will likely become even more of a linchpin on the global stage.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " This kind of physical infrastructure will, in turn, be vulnerable to hacking and supply chain interruptions. If people own property, earn a living, and maintain communities in the metaverse, then hardware shortages or service outages could jeopardize livelihoods or undermine social stability.\n", " Evidence\n", "\n", "\n", @@ -564,25 +609,27 @@ ], "source": [ "def displayAnnots(lst):\n", - " test = pd.DataFrame([{\"text\":i, **j} for i, j in lst])\n", - " texts = []\n", - " labels = []\n", - " for text, label in test.loc[:, :\"label\"].values:\n", - " if len(labels):\n", - " if labels[-1] == label:\n", - " texts[-1] += \" \"+text\n", - " continue\n", + " df = pd.DataFrame([{\"text\":i, **j} for i, j in lst])\n", + "# texts = []\n", + "# labels = []\n", + "# for text, label in df.loc[:, :\"label\"].values:\n", + "# if len(labels):\n", + "# if labels[-1] == label:\n", + "# texts[-1] += \" \"+text\n", + "# continue\n", "\n", - " texts.append(text)\n", - " labels.append(label)\n", + "# texts.append(text)\n", + "# labels.append(label)\n", "\n", - " df = pd.DataFrame({\"text\":texts, \"label\":labels})\n", + "# df = pd.DataFrame({\"text\":texts, \"label\":labels})\n", + " print(df)\n", " ents = functools.reduce(lambda lst, new: lst+[lst[-1]+len(new)], df.text, [0])\n", " df[\"start\"] = ents[:-1]\n", " df[\"end\"] = ents[1:]\n", " doc = {\n", " \"text\": df.text.sum(),\n", " \"ents\": [dict(start=int(row[\"start\"]), end=int(row[\"end\"]), label=row[\"label\"]) for i, row in df.iterrows()],\n", + " \"title\": \"The Metaverse Is Coming, and the World Is Not Ready for It\"\n", " }\n", "\n", " labels = ['Lead', 'Position', 'Evidence', 'Claim', 'Concluding Statement', 'Counterclaim', 'Rebuttal']\n", @@ -590,8 +637,695 @@ " options = {\"ents\": labels, \"colors\": dict(zip(labels, colors))}\n", " displacy.render(doc, style=\"ent\", options=options, manual=True, jupyter=True)\n", " print('\\n\\n')\n", + " return df\n", + "\n", + "\n", + "\n", + "meta = displayAnnots(lst)" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "7893a926", + "metadata": { + "ExecuteTime": { + "end_time": "2022-03-01T01:13:49.251485Z", + "start_time": "2022-03-01T01:13:49.223447Z" + } + }, + "outputs": [ + { + "data": { + "text/html": [ + "

The Metaverse Is Coming, and the World Is Not Ready for It

\n", + "\n", + "
\n", + "\n", + " The metaverse is coming. It was once a science-fiction fantasy, most notably in Neal Stephenson’s novel “Snow Crash,” of an all-encompassing virtual universe that would exist alongside the physical one. But technological advances have brought this transformation of human society close enough to reality to demand that we consider its consequences.\n", + " Lead\n", + "\n", + "\n", + "\n", + " In the metaverse, a user might curate a digital avatar, like a character in a video game. Through the eyes of their avatar, they would experience a digital reality as active and engaging as the physical one. Some futurists believe that soon we might attend doctor’s appointments or class there.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " But while the metaverse could revolutionize work and play, it is essential to remain wary of the dangers that will emerge if it subsumes daily life.\n", + " Rebuttal\n", + "\n", + "\n", + "\n", + " Virtual environments will supercharge disinformation campaigns, espionage and surveillance. Struggles for control of the metaverse’s physical infrastructure could very well aggravate global conflicts. And the supranational nature of the metaverse — where real-world borders become far less relevant — could revolutionize the way that individuals perceive and interact with nation-states.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " A failure to anticipate these possibilities may put the global world order at risk of being replaced by a virtual, and perhaps less virtuous, one.\n", + " Claim\n", + "\n", + "\n", + "\n", + " Today, glimpses of the metaverse are everywhere. Virtual concerts attract record audiences; high-end designers sell virtual fashion; and gaming has become a livelihood for people around the world. Many of the closest corollaries to a full-fledged metaverse are immersive games like Fortnite, Minecraft and Roblox, where players can socialize, shop and attend events in a virtual world.\n", + " Lead\n", + "\n", + "\n", + "\n", + " There’s already evidence that online multiplayer games can enable the spread of disinformation and conspiracy theories. Players can use in-game communication tools to disseminate rumors or “fake news,” targeting others in difficult-to-track ways.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The metaverse could allow motivated regimes or extremist groups to go a step farther. Immersive layers of text, voice and visuals in virtual environments would provide new, convincing ways to broadcast misleading or extremist content.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In environments where individuals can be represented by pseudonymous avatars, knowing whom to trust with sensitive information will become even more difficult. This could pave the way for a new era of espionage.\n", + " Claim\n", + "\n", + "\n", + "\n", + " Digital espionage has already been used by dozens of countries to gain access to commercial intellectual property, proprietary military technology and personal and financial information. A metaverse that contains nearly all aspects of life — work, relationships, assets, identity — could be susceptible to breaches or manipulation from across the globe.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Countries and corporations alike will likely also be able to use the metaverse to engage in surveillance with greater sophistication.\n", + " Claim\n", + "\n", + "\n", + "\n", + " States have already used facial recognition technology to monitor individuals’ behavior. Companies have used it for device-unlocking or real-time animation. Integration with the metaverse could make it — and the privacy issues it presents — even more ubiquitous. If exploited, that technology could easily be used to surveil any participant around the world.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Even the metaverse’s physical infrastructure will likely present new vulnerabilities.\n", + " Claim\n", + "\n", + "\n", + "\n", + " A constellation of technologies, including hardware, computer networks and payment tools, will support the metaverse’s functionality. The countries that maintain control over those technologies will have significant international leverage, just as countries that command things like transport routes or oil supplies do today.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " China could effectively control the metaverse’s backbone in many corners of the world, thanks to its Digital Silk Road initiative, which finances some countries’ telecommunications systems. Taiwan, which dominates the semiconductor industry that supports computing needs, will likely become even more of a linchpin on the global stage.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " This kind of physical infrastructure will, in turn, be vulnerable to hacking and supply chain interruptions. If people own property, earn a living, and maintain communities in the metaverse, then hardware shortages or service outages could jeopardize livelihoods or undermine social stability.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Despite these threats, the metaverse also has the potential to change global affairs for the better. International diplomacy may just as easily be conducted in virtual embassies. Smaller, less powerful nations may find themselves on a more level playing field, better able to stay in the mix in global affairs or perhaps, to forge unlikely alliances.\n", + " Rebuttal\n", + "\n", + "\n", + "\n", + " Virtual environments have also shown promise for activists resisting digital authoritarianism. On Minecraft, Reporters Without Borders has sponsored an Uncensored Library where users could see content by dissident writers that had been censored in countries like Saudi Arabia, Russia and Vietnam. It’s possible that the metaverse may bring new promise for freedom and transparency across borders.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " But the metaverse’s consequences may be even more radical.\n", + " Rebuttal\n", + "\n", + "\n", + "\n", + " If it becomes as all-encompassing as some predict, the metaverse may foster virtual communities, networks and economies that transcend borders and national identities. Individuals might one day identify primarily with metaverse-based decentralized autonomous organizations with their own quasi-foreign policies. Such a transition could mandate the reconceptualization of geopolitical affairs from the ground up.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The metaverse may have been born in science fiction, but it’s up to us to write a future grounded in cleareyed reality.\n", + " Position\n", + "\n", + "
" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "df = pd.DataFrame([{\"text\":i, **j} for i, j in lst])\n", + "# texts = []\n", + "# labels = []\n", + "# for text, label in df.loc[:, :\"label\"].values:\n", + "# if len(labels):\n", + "# if labels[-1] == label:\n", + "# texts[-1] += \" \"+text\n", + "# continue\n", "\n", - "displayAnnots(lst)" + "# texts.append(text)\n", + "# labels.append(label)\n", + "\n", + "# df = pd.DataFrame({\"text\":texts, \"label\":labels})\n", + "ents = functools.reduce(lambda lst, new: lst+[lst[-1]+len(new)], df.text, [0])\n", + "df[\"start\"] = ents[:-1]\n", + "df[\"end\"] = ents[1:]\n", + "doc = {\n", + " \"text\": df.text.sum(),\n", + " \"ents\": [dict(start=int(row[\"start\"]), end=int(row[\"end\"]), label=row[\"label\"]) for i, row in df.iterrows()],\n", + " \"title\": \"The Metaverse Is Coming, and the World Is Not Ready for It\"\n", + "}\n", + "\n", + "labels = ['Lead', 'Position', 'Evidence', 'Claim', 'Concluding Statement', 'Counterclaim', 'Rebuttal']\n", + "colors = [\"#ACDDDE\", \"#CAF1DE\", \"#E1F8DC\", \"#FEF8DD\", \"#FFE7C7\", \"#F7D8BA\", \"#D6CDEA\"]\n", + "options = {\"ents\": labels, \"colors\": dict(zip(labels, colors))}\n", + "\n", + "html = displacy.render(doc, style=\"ent\", options=options, manual=True)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "5af32453", + "metadata": { + "ExecuteTime": { + "end_time": "2022-03-01T01:14:08.356022Z", + "start_time": "2022-03-01T01:14:08.326993Z" + } + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
textlabelscorestartendsource
0The metaverse is coming. It was once a science...Lead0.9138180348metaverse-politics-disinformation-society
1In the metaverse, a user might curate a digita...Evidence0.457832348642metaverse-politics-disinformation-society
2But while the metaverse could revolutionize wo...Rebuttal0.857951642790metaverse-politics-disinformation-society
3Virtual environments will supercharge disinfor...Evidence0.7309277901177metaverse-politics-disinformation-society
4A failure to anticipate these possibilities ma...Claim0.48475011771323metaverse-politics-disinformation-society
5Today, glimpses of the metaverse are everywher...Lead0.69951913231708metaverse-politics-disinformation-society
6There’s already evidence that online multiplay...Evidence0.61332817081954metaverse-politics-disinformation-society
7The metaverse could allow motivated regimes or...Evidence0.68393119542188metaverse-politics-disinformation-society
8In environments where individuals can be repre...Claim0.54967921882399metaverse-politics-disinformation-society
9Digital espionage has already been used by doz...Evidence0.68626223992752metaverse-politics-disinformation-society
10Countries and corporations alike will likely a...Claim0.81665527522885metaverse-politics-disinformation-society
11States have already used facial recognition te...Evidence0.95906528853243metaverse-politics-disinformation-society
12Even the metaverse’s physical infrastructure w...Claim0.96366232433328metaverse-politics-disinformation-society
13A constellation of technologies, including har...Evidence0.87070833283653metaverse-politics-disinformation-society
14China could effectively control the metaverse’...Evidence0.89336136533988metaverse-politics-disinformation-society
15This kind of physical infrastructure will, in ...Evidence0.86337239884281metaverse-politics-disinformation-society
16Despite these threats, the metaverse also has ...Rebuttal0.62626242814631metaverse-politics-disinformation-society
17Virtual environments have also shown promise f...Evidence0.98094646315027metaverse-politics-disinformation-society
18But the metaverse’s consequences may be even m...Rebuttal0.85972950275085metaverse-politics-disinformation-society
19If it becomes as all-encompassing as some pred...Evidence0.82178250855496metaverse-politics-disinformation-society
20The metaverse may have been born in science fi...Position0.46096754965615metaverse-politics-disinformation-society
21The metaverse is coming. It was once a science...Lead0.9138180348metaverse-politics-disinformation-society
22In the metaverse, a user might curate a digita...Evidence0.457832348642metaverse-politics-disinformation-society
23But while the metaverse could revolutionize wo...Rebuttal0.857951642790metaverse-politics-disinformation-society
24Virtual environments will supercharge disinfor...Evidence0.7309277901177metaverse-politics-disinformation-society
25A failure to anticipate these possibilities ma...Claim0.48475011771323metaverse-politics-disinformation-society
26Today, glimpses of the metaverse are everywher...Lead0.69951913231708metaverse-politics-disinformation-society
27There’s already evidence that online multiplay...Evidence0.61332817081954metaverse-politics-disinformation-society
28The metaverse could allow motivated regimes or...Evidence0.68393119542188metaverse-politics-disinformation-society
29In environments where individuals can be repre...Claim0.54967921882399metaverse-politics-disinformation-society
30Digital espionage has already been used by doz...Evidence0.68626223992752metaverse-politics-disinformation-society
31Countries and corporations alike will likely a...Claim0.81665527522885metaverse-politics-disinformation-society
32States have already used facial recognition te...Evidence0.95906528853243metaverse-politics-disinformation-society
33Even the metaverse’s physical infrastructure w...Claim0.96366232433328metaverse-politics-disinformation-society
34A constellation of technologies, including har...Evidence0.87070833283653metaverse-politics-disinformation-society
35China could effectively control the metaverse’...Evidence0.89336136533988metaverse-politics-disinformation-society
36This kind of physical infrastructure will, in ...Evidence0.86337239884281metaverse-politics-disinformation-society
37Despite these threats, the metaverse also has ...Rebuttal0.62626242814631metaverse-politics-disinformation-society
38Virtual environments have also shown promise f...Evidence0.98094646315027metaverse-politics-disinformation-society
39But the metaverse’s consequences may be even m...Rebuttal0.85972950275085metaverse-politics-disinformation-society
40If it becomes as all-encompassing as some pred...Evidence0.82178250855496metaverse-politics-disinformation-society
41The metaverse may have been born in science fi...Position0.46096754965615metaverse-politics-disinformation-society
\n", + "
" + ], + "text/plain": [ + " text label score \\\n", + "0 The metaverse is coming. It was once a science... Lead 0.913818 \n", + "1 In the metaverse, a user might curate a digita... Evidence 0.457832 \n", + "2 But while the metaverse could revolutionize wo... Rebuttal 0.857951 \n", + "3 Virtual environments will supercharge disinfor... Evidence 0.730927 \n", + "4 A failure to anticipate these possibilities ma... Claim 0.484750 \n", + "5 Today, glimpses of the metaverse are everywher... Lead 0.699519 \n", + "6 There’s already evidence that online multiplay... Evidence 0.613328 \n", + "7 The metaverse could allow motivated regimes or... Evidence 0.683931 \n", + "8 In environments where individuals can be repre... Claim 0.549679 \n", + "9 Digital espionage has already been used by doz... Evidence 0.686262 \n", + "10 Countries and corporations alike will likely a... Claim 0.816655 \n", + "11 States have already used facial recognition te... Evidence 0.959065 \n", + "12 Even the metaverse’s physical infrastructure w... Claim 0.963662 \n", + "13 A constellation of technologies, including har... Evidence 0.870708 \n", + "14 China could effectively control the metaverse’... Evidence 0.893361 \n", + "15 This kind of physical infrastructure will, in ... Evidence 0.863372 \n", + "16 Despite these threats, the metaverse also has ... Rebuttal 0.626262 \n", + "17 Virtual environments have also shown promise f... Evidence 0.980946 \n", + "18 But the metaverse’s consequences may be even m... Rebuttal 0.859729 \n", + "19 If it becomes as all-encompassing as some pred... Evidence 0.821782 \n", + "20 The metaverse may have been born in science fi... Position 0.460967 \n", + "21 The metaverse is coming. It was once a science... Lead 0.913818 \n", + "22 In the metaverse, a user might curate a digita... Evidence 0.457832 \n", + "23 But while the metaverse could revolutionize wo... Rebuttal 0.857951 \n", + "24 Virtual environments will supercharge disinfor... Evidence 0.730927 \n", + "25 A failure to anticipate these possibilities ma... Claim 0.484750 \n", + "26 Today, glimpses of the metaverse are everywher... Lead 0.699519 \n", + "27 There’s already evidence that online multiplay... Evidence 0.613328 \n", + "28 The metaverse could allow motivated regimes or... Evidence 0.683931 \n", + "29 In environments where individuals can be repre... Claim 0.549679 \n", + "30 Digital espionage has already been used by doz... Evidence 0.686262 \n", + "31 Countries and corporations alike will likely a... Claim 0.816655 \n", + "32 States have already used facial recognition te... Evidence 0.959065 \n", + "33 Even the metaverse’s physical infrastructure w... Claim 0.963662 \n", + "34 A constellation of technologies, including har... Evidence 0.870708 \n", + "35 China could effectively control the metaverse’... Evidence 0.893361 \n", + "36 This kind of physical infrastructure will, in ... Evidence 0.863372 \n", + "37 Despite these threats, the metaverse also has ... Rebuttal 0.626262 \n", + "38 Virtual environments have also shown promise f... Evidence 0.980946 \n", + "39 But the metaverse’s consequences may be even m... Rebuttal 0.859729 \n", + "40 If it becomes as all-encompassing as some pred... Evidence 0.821782 \n", + "41 The metaverse may have been born in science fi... Position 0.460967 \n", + "\n", + " start end source \n", + "0 0 348 metaverse-politics-disinformation-society \n", + "1 348 642 metaverse-politics-disinformation-society \n", + "2 642 790 metaverse-politics-disinformation-society \n", + "3 790 1177 metaverse-politics-disinformation-society \n", + "4 1177 1323 metaverse-politics-disinformation-society \n", + "5 1323 1708 metaverse-politics-disinformation-society \n", + "6 1708 1954 metaverse-politics-disinformation-society \n", + "7 1954 2188 metaverse-politics-disinformation-society \n", + "8 2188 2399 metaverse-politics-disinformation-society \n", + "9 2399 2752 metaverse-politics-disinformation-society \n", + "10 2752 2885 metaverse-politics-disinformation-society \n", + "11 2885 3243 metaverse-politics-disinformation-society \n", + "12 3243 3328 metaverse-politics-disinformation-society \n", + "13 3328 3653 metaverse-politics-disinformation-society \n", + "14 3653 3988 metaverse-politics-disinformation-society \n", + "15 3988 4281 metaverse-politics-disinformation-society \n", + "16 4281 4631 metaverse-politics-disinformation-society \n", + "17 4631 5027 metaverse-politics-disinformation-society \n", + "18 5027 5085 metaverse-politics-disinformation-society \n", + "19 5085 5496 metaverse-politics-disinformation-society \n", + "20 5496 5615 metaverse-politics-disinformation-society \n", + "21 0 348 metaverse-politics-disinformation-society \n", + "22 348 642 metaverse-politics-disinformation-society \n", + "23 642 790 metaverse-politics-disinformation-society \n", + "24 790 1177 metaverse-politics-disinformation-society \n", + "25 1177 1323 metaverse-politics-disinformation-society \n", + "26 1323 1708 metaverse-politics-disinformation-society \n", + "27 1708 1954 metaverse-politics-disinformation-society \n", + "28 1954 2188 metaverse-politics-disinformation-society \n", + "29 2188 2399 metaverse-politics-disinformation-society \n", + "30 2399 2752 metaverse-politics-disinformation-society \n", + "31 2752 2885 metaverse-politics-disinformation-society \n", + "32 2885 3243 metaverse-politics-disinformation-society \n", + "33 3243 3328 metaverse-politics-disinformation-society \n", + "34 3328 3653 metaverse-politics-disinformation-society \n", + "35 3653 3988 metaverse-politics-disinformation-society \n", + "36 3988 4281 metaverse-politics-disinformation-society \n", + "37 4281 4631 metaverse-politics-disinformation-society \n", + "38 4631 5027 metaverse-politics-disinformation-society \n", + "39 5027 5085 metaverse-politics-disinformation-society \n", + "40 5085 5496 metaverse-politics-disinformation-society \n", + "41 5496 5615 metaverse-politics-disinformation-society " + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "meta[\"source\"] = \"metaverse-politics-disinformation-society\"\n", + "pd.concat([meta, meta], ignore_index=True)" ] }, { @@ -604,12 +1338,12 @@ }, { "cell_type": "code", - "execution_count": 12, + "execution_count": 14, "id": "bf8610ac", "metadata": { "ExecuteTime": { - "end_time": "2022-02-20T07:33:42.288912Z", - "start_time": "2022-02-20T07:22:24.946224Z" + "end_time": "2022-02-21T07:34:53.987504Z", + "start_time": "2022-02-21T07:23:15.717537Z" }, "scrolled": false }, @@ -617,7 +1351,7 @@ { "data": { "text/html": [ - "

nytimes\\abortion-florida-15-week-ban.txt

" + "

abortion-florida-15-week-ban.txt

" ], "text/plain": [ "" @@ -637,7 +1371,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "54e95617da8445df9c315fc40eadded9", + "model_id": "81632b5696124c80b7707f74d1514770", "version_major": 2, "version_minor": 0 }, @@ -658,7 +1392,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "4119df7557b941a7acd1ffe73fc6ff88", + "model_id": "e54bfee985f64b5a84642c4b3c6abbdb", "version_major": 2, "version_minor": 0 }, @@ -683,7 +1417,19 @@ "This raises the possibility that, at least for a time after Roe is decimated, there could be not two Americas when it comes to abortion, but three: one in which almost any abortion is a crime, one in which abortion is broadly available and one in which abortion is heavily restricted but not altogether unavailable. {'label': 'Evidence', 'score': 0.7294458150863647}\n", "At some point that third America, if it comes to be, also will be threatened. Because after Roe is gone, leaders in the national anti-abortion movement will push for abortion to be banned from the moment of fertilization. The movement’s ultimate goal has always been the legal recognition of fetal personhood, which would functionally ban abortion across the nation. That would never be possible through the democratic process, but the anti-abortion movement is now betting that it might be through the Supreme Court, with its new conservative supermajority. For decades, anti-abortion leaders have downplayed the fetal personhood goal because doing so made it easier to win public support for their cause, help Republicans get elected and reassure Supreme Court justices anxious about public backlash. But with the makeup of this court — which will not shift once President Biden replaces the retiring Justice Stephen Breyer — they could well get their wish. {'label': 'Evidence', 'score': 0.9697002172470093}\n", "In the meantime, the anti-abortion movement will want to score as many wins as possible in red and purple states, hoping that 15-week bans will eventually lead to outlawing virtually all abortions. {'label': 'Claim', 'score': 0.5033977627754211}\n", - "The recent rash of anti-abortion laws reflects the uncertainty of America’s future. The writing may be on the wall for Roe v. Wade, but when it comes to what happens next, the public might still have a say. {'label': 'Evidence', 'score': 0.33576706051826477}\n" + "The recent rash of anti-abortion laws reflects the uncertainty of America’s future. The writing may be on the wall for Roe v. Wade, but when it comes to what happens next, the public might still have a say. {'label': 'Evidence', 'score': 0.33576706051826477}\n", + " text label score\n", + "0 In 2019 a wave of anti-abortion laws swept thi... Evidence 0.983720\n", + "1 Though most of these laws were quickly blocked... Evidence 0.934319\n", + "2 Three years later, American reproductive right... Evidence 0.622358\n", + "3 It might seem curious, then, that legislators ... Evidence 0.946866\n", + "4 One of this year’s unmistakable trends in anti... Evidence 0.991869\n", + "5 The answer is that 15-week bans are a way for ... Evidence 0.941124\n", + "6 Fifteen-week bans are a trial balloon to see w... Evidence 0.986689\n", + "7 This raises the possibility that, at least for... Evidence 0.729446\n", + "8 At some point that third America, if it comes ... Evidence 0.969700\n", + "9 In the meantime, the anti-abortion movement wi... Claim 0.503398\n", + "10 The recent rash of anti-abortion laws reflects... Evidence 0.335767\n" ] }, { @@ -691,7 +1437,47 @@ "text/html": [ "
\n", "\n", - " In 2019 a wave of anti-abortion laws swept this country — a common enough event in the United States, where hundreds of such laws have passed during the last decade. But these grabbed the public’s attention in a way many others hadn’t. Georgia banned abortion after about six weeks of pregnancy, or about two weeks after a missed menstrual period. Ohio, Mississippi, Louisiana and Kentucky did the same, while Missouri banned the procedure at eight weeks. Alabama went the furthest, banning virtually all abortions in the state. Though most of these laws were quickly blocked by the courts — they were obviously unconstitutional under Roe v. Wade — the backlash to their passing was intense, especially in Georgia, a major hub of film and television production. Boycotts were threatened. Netflix and Disney spoke out. The actress Alyssa Milano even tried to get a “Lysistrata”-style sex strike off the ground. Three years later, American reproductive rights are on an even bleaker trajectory. A Supreme Court decision that’s expected to come down this summer is likely to strike down Roe v. Wade, either in deed or in word, making it possible for states with anti-abortion leadership to ban the procedure altogether. It might seem curious, then, that legislators in some conservative-leaning states are spending these months before the likely downfall of Roe working to pass less extreme abortion measures than they did in 2019. Now seems like the time for anti-abortion legislators to go for broke. The fact that some of them are pursuing a different strategy offers clues about what a post-Roe America could look like, and how that landscape could be more complex — and less predetermined — than some Americans had assumed. One of this year’s unmistakable trends in anti-abortion legislation is the 15-week ban. Legislators in Arizona, Florida and West Virginia are now considering bills — which, as the name suggests, would ban abortion after 15 weeks of pregnancy, in violation of Roe. At first blush, it might seem these states are simply copying the Mississippi law that the Supreme Court seems likely to uphold this summer, in Dobbs v. Jackson Women’s Health Organization. But why would they hold back now, rather than try to get more draconian legislation through their legislatures? Florida even considered a six-week ban in recent months but did not end up acting on it. What is going on? The answer is that 15-week bans are a way for Republicans to test public reaction in states that are still somewhat politically contested. Arizona has two Democratic senators and went for Joe Biden in 2020. Elections in Florida have been decided by a handful of votes. Their Republican governors might worry that if they go too far, they might trigger a backlash that could threaten their hold on power. Among the political realities at play: Some battleground states have constitutions that have been interpreted to protect abortion, while in others a majority of people likely oppose criminalizing the procedure. Fifteen-week bans are a trial balloon to see what voters will tolerate — and they may end up being a step toward more bans on abortion from the moment of fertilization. You can bet these lawmakers will be watching the public reaction to the Dobbs decision this summer. If the reaction is relatively muted — as it has been, in much of the country, to Texas’s six-week abortion ban, which has now been in effect for nearly six months — they likely will keep pushing more sweeping laws, until, perhaps, they reach an absolute ban. Conversely, if enough people revolt at the destruction of abortion rights, lawmakers in states like Florida may not feel as comfortable pushing further. This raises the possibility that, at least for a time after Roe is decimated, there could be not two Americas when it comes to abortion, but three: one in which almost any abortion is a crime, one in which abortion is broadly available and one in which abortion is heavily restricted but not altogether unavailable. At some point that third America, if it comes to be, also will be threatened. Because after Roe is gone, leaders in the national anti-abortion movement will push for abortion to be banned from the moment of fertilization. The movement’s ultimate goal has always been the legal recognition of fetal personhood, which would functionally ban abortion across the nation. That would never be possible through the democratic process, but the anti-abortion movement is now betting that it might be through the Supreme Court, with its new conservative supermajority. For decades, anti-abortion leaders have downplayed the fetal personhood goal because doing so made it easier to win public support for their cause, help Republicans get elected and reassure Supreme Court justices anxious about public backlash. But with the makeup of this court — which will not shift once President Biden replaces the retiring Justice Stephen Breyer — they could well get their wish.\n", + " In 2019 a wave of anti-abortion laws swept this country — a common enough event in the United States, where hundreds of such laws have passed during the last decade. But these grabbed the public’s attention in a way many others hadn’t. Georgia banned abortion after about six weeks of pregnancy, or about two weeks after a missed menstrual period. Ohio, Mississippi, Louisiana and Kentucky did the same, while Missouri banned the procedure at eight weeks. Alabama went the furthest, banning virtually all abortions in the state.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Though most of these laws were quickly blocked by the courts — they were obviously unconstitutional under Roe v. Wade — the backlash to their passing was intense, especially in Georgia, a major hub of film and television production. Boycotts were threatened. Netflix and Disney spoke out. The actress Alyssa Milano even tried to get a “Lysistrata”-style sex strike off the ground.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Three years later, American reproductive rights are on an even bleaker trajectory. A Supreme Court decision that’s expected to come down this summer is likely to strike down Roe v. Wade, either in deed or in word, making it possible for states with anti-abortion leadership to ban the procedure altogether.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " It might seem curious, then, that legislators in some conservative-leaning states are spending these months before the likely downfall of Roe working to pass less extreme abortion measures than they did in 2019. Now seems like the time for anti-abortion legislators to go for broke. The fact that some of them are pursuing a different strategy offers clues about what a post-Roe America could look like, and how that landscape could be more complex — and less predetermined — than some Americans had assumed.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " One of this year’s unmistakable trends in anti-abortion legislation is the 15-week ban. Legislators in Arizona, Florida and West Virginia are now considering bills — which, as the name suggests, would ban abortion after 15 weeks of pregnancy, in violation of Roe. At first blush, it might seem these states are simply copying the Mississippi law that the Supreme Court seems likely to uphold this summer, in Dobbs v. Jackson Women’s Health Organization. But why would they hold back now, rather than try to get more draconian legislation through their legislatures? Florida even considered a six-week ban in recent months but did not end up acting on it. What is going on?\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The answer is that 15-week bans are a way for Republicans to test public reaction in states that are still somewhat politically contested. Arizona has two Democratic senators and went for Joe Biden in 2020. Elections in Florida have been decided by a handful of votes. Their Republican governors might worry that if they go too far, they might trigger a backlash that could threaten their hold on power. Among the political realities at play: Some battleground states have constitutions that have been interpreted to protect abortion, while in others a majority of people likely oppose criminalizing the procedure.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Fifteen-week bans are a trial balloon to see what voters will tolerate — and they may end up being a step toward more bans on abortion from the moment of fertilization. You can bet these lawmakers will be watching the public reaction to the Dobbs decision this summer. If the reaction is relatively muted — as it has been, in much of the country, to Texas’s six-week abortion ban, which has now been in effect for nearly six months — they likely will keep pushing more sweeping laws, until, perhaps, they reach an absolute ban. Conversely, if enough people revolt at the destruction of abortion rights, lawmakers in states like Florida may not feel as comfortable pushing further.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " This raises the possibility that, at least for a time after Roe is decimated, there could be not two Americas when it comes to abortion, but three: one in which almost any abortion is a crime, one in which abortion is broadly available and one in which abortion is heavily restricted but not altogether unavailable.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " At some point that third America, if it comes to be, also will be threatened. Because after Roe is gone, leaders in the national anti-abortion movement will push for abortion to be banned from the moment of fertilization. The movement’s ultimate goal has always been the legal recognition of fetal personhood, which would functionally ban abortion across the nation. That would never be possible through the democratic process, but the anti-abortion movement is now betting that it might be through the Supreme Court, with its new conservative supermajority. For decades, anti-abortion leaders have downplayed the fetal personhood goal because doing so made it easier to win public support for their cause, help Republicans get elected and reassure Supreme Court justices anxious about public backlash. But with the makeup of this court — which will not shift once President Biden replaces the retiring Justice Stephen Breyer — they could well get their wish.\n", " Evidence\n", "\n", "\n", @@ -725,7 +1511,7 @@ { "data": { "text/html": [ - "

nytimes\\adhd-dating-relationships.txt

" + "

adhd-dating-relationships.txt

" ], "text/plain": [ "" @@ -745,7 +1531,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "f3e09c5bbab0442e8a6fa248d4933dfb", + "model_id": "7f3b2a33638e401a83d4c87919cd4186", "version_major": 2, "version_minor": 0 }, @@ -766,7 +1552,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "8e560b3d6379432bb34bb8b07c9c1aef", + "model_id": "d1cc2277463e4e3d89b39936ade16bbb", "version_major": 2, "version_minor": 0 }, @@ -796,7 +1582,7 @@ "Those who struggle with impulsivity might take unnecessary risks, or they might opt for immediate rewards, such as the pleasure of playing a video game, instead of focusing on mundane tasks that need to get done. People with A.D.H.D. are also often forgetful about what they’re supposed to be doing and tend to have big, emotional reactions that are stronger than what a situation might warrant — which can lead to explosive conflict. {'label': 'Evidence', 'score': 0.9453351497650146}\n", "Contrary to the assumption that people with A.D.H.D. are always unfocused, many can focus intently on the things that interest them. But if they are especially attentive to a loved one during a relationship’s honeymoon phase and that intense interest eventually fades, a pattern can emerge where the non-A.D.H.D. partner feels unloved. {'label': 'Rebuttal', 'score': 0.5643227696418762}\n", "“If your partner is chronically distracted, that means they are also distracted from you,” said Melissa Orlov, a marriage consultant who leads seminars for couples who are struggling with relationship difficulties, in part because of A.D.H.D. “That becomes very confusing and then it angers the partner because they feel like they’re not really being paid attention to. You’re like, ‘What, don’t you love me anymore? This isn’t the way it used to be.’” {'label': 'Evidence', 'score': 0.977691650390625}\n", - "While this can be incredibly frustrating to the partner who does not have A.D.H.D., understanding these symptoms is a step toward embracing feelings of compassion and empathy over continual resentment. {'label': 'Claim', 'score': 0.356620192527771}\n", + "While this can be incredibly frustrating to the partner who does not have A.D.H.D., understanding these symptoms is a step toward embracing feelings of compassion and empathy over continual resentment. {'label': 'Claim', 'score': 0.3566201627254486}\n", "“Our loved ones with A.D.H.D. cannot help behaving the way they do,” Dr. Barkley said. It is a biological disorder, he added, “not a lifestyle choice. It is not simply something they could change in their mind over time if they wanted to.” {'label': 'Evidence', 'score': 0.8530932068824768}\n", "Dr. Alicia Hart, 34, a primary care doctor, met her husband when she was 18. They both said “I love you” within three days and “were in a committed serious relationship from then on,” she said. “People thought we were nuts. I mean, we met at a frat party.” {'label': 'Evidence', 'score': 0.8626720309257507}\n", "The couple, who live in Portland, Ore., with their three kids, both have A.D.H.D. {'label': 'Claim', 'score': 0.5417895913124084}\n", @@ -805,32 +1591,77 @@ "Robyn Aaron, a 36-year-old mother of two who was diagnosed with A.D.H.D. last year, said she and her husband now have a weekly meeting to stay organized, but they try to make it as fun as possible. {'label': 'Evidence', 'score': 0.7682572603225708}\n", "“We treat it like a date night — pour a glass of wine, maybe even light a candle,” said Ms. Aaron, who lives in Lisbon, Iowa. “He gives the check-in on finances; I give the skinny on the calendar.” {'label': 'Evidence', 'score': 0.9567814469337463}\n", "They also discuss their ongoing do-it-yourself projects, upcoming trips and any needs or wants. {'label': 'Claim', 'score': 0.7843818664550781}\n", - "“It’s become even more important to us since the pandemic began to connect in this way, and it’s super helpful for my coping strategies with A.D.H.D., too,” she added. {'label': 'Evidence', 'score': 0.42012250423431396}\n", + "“It’s become even more important to us since the pandemic began to connect in this way, and it’s super helpful for my coping strategies with A.D.H.D., too,” she added. {'label': 'Evidence', 'score': 0.42012256383895874}\n", "In the book “A.D.H.D. After Dark: Better Sex Life, Better Relationship,” Ari Tuckman, the author, psychologist and sex therapist, surveyed more than 3,000 adults in couples where one partner had A.D.H.D. He found that the people who felt that their partners put in the most effort at either managing their own A.D.H.D. or supporting a partner with A.D.H.D. had almost twice as much sex as those who said their partners put in the least effort. {'label': 'Evidence', 'score': 0.9432650804519653}\n", "For some partners with A.D.H.D., it can be hard to accept the need for change and can also be difficult to be optimistic that new strategies will make a difference, especially if medications or past strategies haven’t worked. {'label': 'Evidence', 'score': 0.4553253948688507}\n", "But it’s worth continuing to educate yourself about the different options available to people with A.D.H.D., or perhaps even seeking out a different clinician from the one you’ve been seeing, he added. {'label': 'Rebuttal', 'score': 0.8457597494125366}\n", - "Dr. Tuckman also advised both partners to choose their battles. {'label': 'Claim', 'score': 0.8409712910652161}\n", - "“A.D.H.D. doesn’t invent new problems, it just exacerbates the universal ones,” he said. “It’s the stuff that every other couple argues about, just more often.” {'label': 'Evidence', 'score': 0.3971693515777588}\n", - "It is within your right to insist that your partner get the kids to school on time, for example, and ideally you will find a way to make that happen. But, Dr. Tuckman cautioned, “you only get a small number of deal breakers.” {'label': 'Evidence', 'score': 0.6487324237823486}\n" + "Dr. Tuckman also advised both partners to choose their battles. {'label': 'Claim', 'score': 0.8409714102745056}\n", + "“A.D.H.D. doesn’t invent new problems, it just exacerbates the universal ones,” he said. “It’s the stuff that every other couple argues about, just more often.” {'label': 'Evidence', 'score': 0.3971693515777588}\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ + "It is within your right to insist that your partner get the kids to school on time, for example, and ideally you will find a way to make that happen. But, Dr. Tuckman cautioned, “you only get a small number of deal breakers.” {'label': 'Evidence', 'score': 0.6487324237823486}\n", "Experts agree that medication alone is not the best way to manage A.D.H.D., but it can complement other strategies like cognitive behavioral therapy, coaching, mindfulness and exercise. {'label': 'Claim', 'score': 0.2920837700366974}\n", "It wasn’t until he had been married for 16 years that Taylor Weeks, 36, finally realized that A.D.H.D. had been at the root of so much of the discord between him and his wife. {'label': 'Evidence', 'score': 0.4984033703804016}\n", "As far back as he can remember, he struggled with time blindness and forgetfulness, continually dropping the ball and then chastising himself for it. {'label': 'Claim', 'score': 0.4741550087928772}\n", - "“It has always been kind of a huge stressor for my wife,” said Mr. Weeks, who lives in Rio Rancho, N.M. “She’s constantly been frustrated with me.” {'label': 'Evidence', 'score': 0.7237757444381714}\n", + "“It has always been kind of a huge stressor for my wife,” said Mr. Weeks, who lives in Rio Rancho, N.M. “She’s constantly been frustrated with me.” {'label': 'Evidence', 'score': 0.7237758040428162}\n", "He is now seeing a psychologist, taking medication for the A.D.H.D. symptoms and practicing mindfulness to help ease his anxiety. {'label': 'Evidence', 'score': 0.504638135433197}\n", "He still struggles with forgetfulness, but his mind feels more clear. {'label': 'Claim', 'score': 0.6290214657783508}\n", - "“Before, I felt like I always had a bunch of thoughts going through my mind all the time,” he said. “But when it came down to try to articulate what I’m thinking, it was really difficult for me to get that out of my head and get my point across.” {'label': 'Evidence', 'score': 0.7120636105537415}\n", + "“Before, I felt like I always had a bunch of thoughts going through my mind all the time,” he said. “But when it came down to try to articulate what I’m thinking, it was really difficult for me to get that out of my head and get my point across.” {'label': 'Evidence', 'score': 0.7120636701583862}\n", "His wife is noticing, he added, and told him he’s easier to communicate with and seems more engaged with their four children. {'label': 'Evidence', 'score': 0.6189450621604919}\n", "Mr. Lawson’s relationship also improved after he was eventually diagnosed with A.D.H.D. and prescribed a medication that improved his memory and ability to focus. {'label': 'Claim', 'score': 0.5649112462997437}\n", "“It’s literally like a blanket has been removed from my head,” he said. {'label': 'Evidence', 'score': 0.5057408213615417}\n", "Just as important, they also attended couples therapy and learned how to better relate to each other and develop strategies to get things done at home. {'label': 'Claim', 'score': 0.554645836353302}\n", "Ms. Salamis, for her part, worked to break old patterns of behavior where she would continually check up on her partner or try to manage every aspect of their household. There was no need to do so anymore, because he was actually doing the things that needed to get done. {'label': 'Evidence', 'score': 0.8503020405769348}\n", - "It has been a long road to get to this point, Mr. Lawson continued, but now, he said, “I can be the guy she fell in love with.” {'label': 'Evidence', 'score': 0.3072226643562317}\n" + "It has been a long road to get to this point, Mr. Lawson continued, but now, he said, “I can be the guy she fell in love with.” {'label': 'Evidence', 'score': 0.3072226643562317}\n", + " text label score\n", + "0 When Chris Lawson began dating Alexandra Salam... Evidence 0.756307\n", + "1 But after they moved in together in 2015, thin... Rebuttal 0.857026\n", + "2 He became more distracted and forgetful. Wheth... Evidence 0.971398\n", + "3 “I was responsible for nothing,” Mr. Lawson, 5... Claim 0.360517\n", + "4 Ms. Salamis, who is not one to mince words, de... Evidence 0.681147\n", + "5 But when she brought up her frustrations, Mr. ... Rebuttal 0.827443\n", + "6 Then in 2019, at a friend’s suggestion, the pa... Evidence 0.522584\n", + "7 “We both kind of looked at each other and our ... Evidence 0.594882\n", + "8 The couple, who live in Ottawa, had discovered... Evidence 0.753940\n", + "9 When one or both members of a couple have A.D.... Evidence 0.890111\n", + "10 Forums like the one found on the popular websi... Evidence 0.945606\n", + "11 People with A.D.H.D. may lack self-awareness, ... Evidence 0.723661\n", + "12 Those who struggle with impulsivity might take... Evidence 0.945335\n", + "13 Contrary to the assumption that people with A.... Rebuttal 0.564323\n", + "14 “If your partner is chronically distracted, th... Evidence 0.977692\n", + "15 While this can be incredibly frustrating to th... Claim 0.356620\n", + "16 “Our loved ones with A.D.H.D. cannot help beha... Evidence 0.853093\n", + "17 Dr. Alicia Hart, 34, a primary care doctor, me... Evidence 0.862672\n", + "18 The couple, who live in Portland, Ore., with t... Claim 0.541790\n", + "19 Most of their conflict has revolved around sch... Evidence 0.911522\n", + "20 By playing to their individual strengths, they... Evidence 0.975865\n", + "21 Robyn Aaron, a 36-year-old mother of two who w... Evidence 0.768257\n", + "22 “We treat it like a date night — pour a glass ... Evidence 0.956781\n", + "23 They also discuss their ongoing do-it-yourself... Claim 0.784382\n", + "24 “It’s become even more important to us since t... Evidence 0.420123\n", + "25 In the book “A.D.H.D. After Dark: Better Sex L... Evidence 0.943265\n", + "26 For some partners with A.D.H.D., it can be har... Evidence 0.455325\n", + "27 But it’s worth continuing to educate yourself ... Rebuttal 0.845760\n", + "28 Dr. Tuckman also advised both partners to choo... Claim 0.840971\n", + "29 “A.D.H.D. doesn’t invent new problems, it just... Evidence 0.397169\n", + "30 It is within your right to insist that your pa... Evidence 0.648732\n", + "31 Experts agree that medication alone is not the... Claim 0.292084\n", + "32 It wasn’t until he had been married for 16 yea... Evidence 0.498403\n", + "33 As far back as he can remember, he struggled w... Claim 0.474155\n", + "34 “It has always been kind of a huge stressor fo... Evidence 0.723776\n", + "35 He is now seeing a psychologist, taking medica... Evidence 0.504638\n", + "36 He still struggles with forgetfulness, but his... Claim 0.629021\n", + "37 “Before, I felt like I always had a bunch of t... Evidence 0.712064\n", + "38 His wife is noticing, he added, and told him h... Evidence 0.618945\n", + "39 Mr. Lawson’s relationship also improved after ... Claim 0.564911\n", + "40 “It’s literally like a blanket has been remove... Evidence 0.505741\n", + "41 Just as important, they also attended couples ... Claim 0.554646\n", + "42 Ms. Salamis, for her part, worked to break old... Evidence 0.850302\n", + "43 It has been a long road to get to this point, ... Evidence 0.307223\n" ] }, { @@ -868,112 +1699,192 @@ "\n", "\n", "\n", - " Then in 2019, at a friend’s suggestion, the pair read an article about how attention deficit hyperactivity disorder, or A.D.H.D., can affect romantic relationships. “We both kind of looked at each other and our jaws dropped,” Ms. Salamis said. The couple, who live in Ottawa, had discovered something millions of others have realized, often after years of conflict: One of them — in this case, Mr. Lawson — most likely had A.D.H.D., a neurodevelopmental disorder often characterized by inattention, disorganization, hyperactivity and impulsivity. When one or both members of a couple have A.D.H.D., the relationship typically has unique challenges, which are usually exacerbated when the disorder goes undiagnosed, experts say. Studies suggest that people with A.D.H.D. have higher levels of interpersonal problems than their peers do, and marriages that include adults with A.D.H.D. are more likely to be unsatisfying. Forums like the one found on the popular website A.D.H.D. and Marriage are often filled with stories of frazzled, emotionally spent spouses stuck in unhealthy, yearslong patterns. But if a couple makes a strong effort to learn more about the disorder, manage its symptoms and find more effective ways to communicate, they can revitalize their relationship. People with A.D.H.D. may lack self-awareness, which can make it difficult to recognize how they are coming across to other people or how their behavior contributes to the problems they’re experiencing in their relationships, according to Russell A. Barkley, a psychologist and the author of “Taking Charge of Adult A.D.H.D.” Those who struggle with impulsivity might take unnecessary risks, or they might opt for immediate rewards, such as the pleasure of playing a video game, instead of focusing on mundane tasks that need to get done. People with A.D.H.D. are also often forgetful about what they’re supposed to be doing and tend to have big, emotional reactions that are stronger than what a situation might warrant — which can lead to explosive conflict.\n", + " Then in 2019, at a friend’s suggestion, the pair read an article about how attention deficit hyperactivity disorder, or A.D.H.D., can affect romantic relationships.\n", " Evidence\n", "\n", "\n", - "\n", - " Contrary to the assumption that people with A.D.H.D. are always unfocused, many can focus intently on the things that interest them. But if they are especially attentive to a loved one during a relationship’s honeymoon phase and that intense interest eventually fades, a pattern can emerge where the non-A.D.H.D. partner feels unloved.\n", - " Rebuttal\n", - "\n", - "\n", "\n", - " “If your partner is chronically distracted, that means they are also distracted from you,” said Melissa Orlov, a marriage consultant who leads seminars for couples who are struggling with relationship difficulties, in part because of A.D.H.D. “That becomes very confusing and then it angers the partner because they feel like they’re not really being paid attention to. You’re like, ‘What, don’t you love me anymore? This isn’t the way it used to be.’”\n", + " “We both kind of looked at each other and our jaws dropped,” Ms. Salamis said.\n", " Evidence\n", "\n", "\n", - "\n", - " While this can be incredibly frustrating to the partner who does not have A.D.H.D., understanding these symptoms is a step toward embracing feelings of compassion and empathy over continual resentment.\n", - " Claim\n", - "\n", - "\n", "\n", - " “Our loved ones with A.D.H.D. cannot help behaving the way they do,” Dr. Barkley said. It is a biological disorder, he added, “not a lifestyle choice. It is not simply something they could change in their mind over time if they wanted to.” Dr. Alicia Hart, 34, a primary care doctor, met her husband when she was 18. They both said “I love you” within three days and “were in a committed serious relationship from then on,” she said. “People thought we were nuts. I mean, we met at a frat party.”\n", + " The couple, who live in Ottawa, had discovered something millions of others have realized, often after years of conflict: One of them — in this case, Mr. Lawson — most likely had A.D.H.D., a neurodevelopmental disorder often characterized by inattention, disorganization, hyperactivity and impulsivity.\n", " Evidence\n", "\n", "\n", - "\n", - " The couple, who live in Portland, Ore., with their three kids, both have A.D.H.D.\n", - " Claim\n", + "\n", + " When one or both members of a couple have A.D.H.D., the relationship typically has unique challenges, which are usually exacerbated when the disorder goes undiagnosed, experts say. Studies suggest that people with A.D.H.D. have higher levels of interpersonal problems than their peers do, and marriages that include adults with A.D.H.D. are more likely to be unsatisfying.\n", + " Evidence\n", "\n", "\n", "\n", - " Most of their conflict has revolved around scheduling mishaps, “threatening to record conversations to prove that they happened or me starting another overambitious project without thinking it through or thinking of the impact on him,” Dr. Hart said in an email. “I also hate being late and have developed one million strategies to avoid this, where he has literally no concept of time and cannot be on time to save his life.” By playing to their individual strengths, they’re able to keep the household running. He pays the bills and manages all the finances. She keeps track of the daily routine, setting alarms on their smart speaker to help him remember things like lunchtime. They use a shared online calendar and a wall calendar, too. Robyn Aaron, a 36-year-old mother of two who was diagnosed with A.D.H.D. last year, said she and her husband now have a weekly meeting to stay organized, but they try to make it as fun as possible. “We treat it like a date night — pour a glass of wine, maybe even light a candle,” said Ms. Aaron, who lives in Lisbon, Iowa. “He gives the check-in on finances; I give the skinny on the calendar.”\n", + " Forums like the one found on the popular website A.D.H.D. and Marriage are often filled with stories of frazzled, emotionally spent spouses stuck in unhealthy, yearslong patterns. But if a couple makes a strong effort to learn more about the disorder, manage its symptoms and find more effective ways to communicate, they can revitalize their relationship.\n", " Evidence\n", "\n", "\n", - "\n", - " They also discuss their ongoing do-it-yourself projects, upcoming trips and any needs or wants.\n", - " Claim\n", + "\n", + " People with A.D.H.D. may lack self-awareness, which can make it difficult to recognize how they are coming across to other people or how their behavior contributes to the problems they’re experiencing in their relationships, according to Russell A. Barkley, a psychologist and the author of “Taking Charge of Adult A.D.H.D.”\n", + " Evidence\n", "\n", "\n", "\n", - " “It’s become even more important to us since the pandemic began to connect in this way, and it’s super helpful for my coping strategies with A.D.H.D., too,” she added. In the book “A.D.H.D. After Dark: Better Sex Life, Better Relationship,” Ari Tuckman, the author, psychologist and sex therapist, surveyed more than 3,000 adults in couples where one partner had A.D.H.D. He found that the people who felt that their partners put in the most effort at either managing their own A.D.H.D. or supporting a partner with A.D.H.D. had almost twice as much sex as those who said their partners put in the least effort. For some partners with A.D.H.D., it can be hard to accept the need for change and can also be difficult to be optimistic that new strategies will make a difference, especially if medications or past strategies haven’t worked.\n", + " Those who struggle with impulsivity might take unnecessary risks, or they might opt for immediate rewards, such as the pleasure of playing a video game, instead of focusing on mundane tasks that need to get done. People with A.D.H.D. are also often forgetful about what they’re supposed to be doing and tend to have big, emotional reactions that are stronger than what a situation might warrant — which can lead to explosive conflict.\n", " Evidence\n", "\n", "\n", "\n", - " But it’s worth continuing to educate yourself about the different options available to people with A.D.H.D., or perhaps even seeking out a different clinician from the one you’ve been seeing, he added.\n", + " Contrary to the assumption that people with A.D.H.D. are always unfocused, many can focus intently on the things that interest them. But if they are especially attentive to a loved one during a relationship’s honeymoon phase and that intense interest eventually fades, a pattern can emerge where the non-A.D.H.D. partner feels unloved.\n", " Rebuttal\n", "\n", "\n", - "\n", - " Dr. Tuckman also advised both partners to choose their battles.\n", - " Claim\n", - "\n", - "\n", "\n", - " “A.D.H.D. doesn’t invent new problems, it just exacerbates the universal ones,” he said. “It’s the stuff that every other couple argues about, just more often.” It is within your right to insist that your partner get the kids to school on time, for example, and ideally you will find a way to make that happen. But, Dr. Tuckman cautioned, “you only get a small number of deal breakers.”\n", + " “If your partner is chronically distracted, that means they are also distracted from you,” said Melissa Orlov, a marriage consultant who leads seminars for couples who are struggling with relationship difficulties, in part because of A.D.H.D. “That becomes very confusing and then it angers the partner because they feel like they’re not really being paid attention to. You’re like, ‘What, don’t you love me anymore? This isn’t the way it used to be.’”\n", " Evidence\n", "\n", "\n", "\n", - " Experts agree that medication alone is not the best way to manage A.D.H.D., but it can complement other strategies like cognitive behavioral therapy, coaching, mindfulness and exercise.\n", + " While this can be incredibly frustrating to the partner who does not have A.D.H.D., understanding these symptoms is a step toward embracing feelings of compassion and empathy over continual resentment.\n", " Claim\n", "\n", "\n", "\n", - " It wasn’t until he had been married for 16 years that Taylor Weeks, 36, finally realized that A.D.H.D. had been at the root of so much of the discord between him and his wife.\n", + " “Our loved ones with A.D.H.D. cannot help behaving the way they do,” Dr. Barkley said. It is a biological disorder, he added, “not a lifestyle choice. It is not simply something they could change in their mind over time if they wanted to.”\n", " Evidence\n", "\n", "\n", - "\n", - " As far back as he can remember, he struggled with time blindness and forgetfulness, continually dropping the ball and then chastising himself for it.\n", - " Claim\n", - "\n", - "\n", "\n", - " “It has always been kind of a huge stressor for my wife,” said Mr. Weeks, who lives in Rio Rancho, N.M. “She’s constantly been frustrated with me.” He is now seeing a psychologist, taking medication for the A.D.H.D. symptoms and practicing mindfulness to help ease his anxiety.\n", + " Dr. Alicia Hart, 34, a primary care doctor, met her husband when she was 18. They both said “I love you” within three days and “were in a committed serious relationship from then on,” she said. “People thought we were nuts. I mean, we met at a frat party.”\n", " Evidence\n", "\n", "\n", "\n", - " He still struggles with forgetfulness, but his mind feels more clear.\n", + " The couple, who live in Portland, Ore., with their three kids, both have A.D.H.D.\n", " Claim\n", "\n", "\n", "\n", - " “Before, I felt like I always had a bunch of thoughts going through my mind all the time,” he said. “But when it came down to try to articulate what I’m thinking, it was really difficult for me to get that out of my head and get my point across.” His wife is noticing, he added, and told him he’s easier to communicate with and seems more engaged with their four children.\n", + " Most of their conflict has revolved around scheduling mishaps, “threatening to record conversations to prove that they happened or me starting another overambitious project without thinking it through or thinking of the impact on him,” Dr. Hart said in an email. “I also hate being late and have developed one million strategies to avoid this, where he has literally no concept of time and cannot be on time to save his life.”\n", " Evidence\n", "\n", "\n", - "\n", - " Mr. Lawson’s relationship also improved after he was eventually diagnosed with A.D.H.D. and prescribed a medication that improved his memory and ability to focus.\n", - " Claim\n", + "\n", + " By playing to their individual strengths, they’re able to keep the household running. He pays the bills and manages all the finances. She keeps track of the daily routine, setting alarms on their smart speaker to help him remember things like lunchtime. They use a shared online calendar and a wall calendar, too.\n", + " Evidence\n", "\n", "\n", "\n", - " “It’s literally like a blanket has been removed from my head,” he said.\n", + " Robyn Aaron, a 36-year-old mother of two who was diagnosed with A.D.H.D. last year, said she and her husband now have a weekly meeting to stay organized, but they try to make it as fun as possible.\n", " Evidence\n", "\n", "\n", - "\n", + "\n", + " “We treat it like a date night — pour a glass of wine, maybe even light a candle,” said Ms. Aaron, who lives in Lisbon, Iowa. “He gives the check-in on finances; I give the skinny on the calendar.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " They also discuss their ongoing do-it-yourself projects, upcoming trips and any needs or wants.\n", + " Claim\n", + "\n", + "\n", + "\n", + " “It’s become even more important to us since the pandemic began to connect in this way, and it’s super helpful for my coping strategies with A.D.H.D., too,” she added.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In the book “A.D.H.D. After Dark: Better Sex Life, Better Relationship,” Ari Tuckman, the author, psychologist and sex therapist, surveyed more than 3,000 adults in couples where one partner had A.D.H.D. He found that the people who felt that their partners put in the most effort at either managing their own A.D.H.D. or supporting a partner with A.D.H.D. had almost twice as much sex as those who said their partners put in the least effort.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " For some partners with A.D.H.D., it can be hard to accept the need for change and can also be difficult to be optimistic that new strategies will make a difference, especially if medications or past strategies haven’t worked.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " But it’s worth continuing to educate yourself about the different options available to people with A.D.H.D., or perhaps even seeking out a different clinician from the one you’ve been seeing, he added.\n", + " Rebuttal\n", + "\n", + "\n", + "\n", + " Dr. Tuckman also advised both partners to choose their battles.\n", + " Claim\n", + "\n", + "\n", + "\n", + " “A.D.H.D. doesn’t invent new problems, it just exacerbates the universal ones,” he said. “It’s the stuff that every other couple argues about, just more often.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " It is within your right to insist that your partner get the kids to school on time, for example, and ideally you will find a way to make that happen. But, Dr. Tuckman cautioned, “you only get a small number of deal breakers.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Experts agree that medication alone is not the best way to manage A.D.H.D., but it can complement other strategies like cognitive behavioral therapy, coaching, mindfulness and exercise.\n", + " Claim\n", + "\n", + "\n", + "\n", + " It wasn’t until he had been married for 16 years that Taylor Weeks, 36, finally realized that A.D.H.D. had been at the root of so much of the discord between him and his wife.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " As far back as he can remember, he struggled with time blindness and forgetfulness, continually dropping the ball and then chastising himself for it.\n", + " Claim\n", + "\n", + "\n", + "\n", + " “It has always been kind of a huge stressor for my wife,” said Mr. Weeks, who lives in Rio Rancho, N.M. “She’s constantly been frustrated with me.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " He is now seeing a psychologist, taking medication for the A.D.H.D. symptoms and practicing mindfulness to help ease his anxiety.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " He still struggles with forgetfulness, but his mind feels more clear.\n", + " Claim\n", + "\n", + "\n", + "\n", + " “Before, I felt like I always had a bunch of thoughts going through my mind all the time,” he said. “But when it came down to try to articulate what I’m thinking, it was really difficult for me to get that out of my head and get my point across.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " His wife is noticing, he added, and told him he’s easier to communicate with and seems more engaged with their four children.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mr. Lawson’s relationship also improved after he was eventually diagnosed with A.D.H.D. and prescribed a medication that improved his memory and ability to focus.\n", + " Claim\n", + "\n", + "\n", + "\n", + " “It’s literally like a blanket has been removed from my head,” he said.\n", + " Evidence\n", + "\n", + "\n", + "\n", " Just as important, they also attended couples therapy and learned how to better relate to each other and develop strategies to get things done at home.\n", " Claim\n", "\n", "\n", "\n", - " Ms. Salamis, for her part, worked to break old patterns of behavior where she would continually check up on her partner or try to manage every aspect of their household. There was no need to do so anymore, because he was actually doing the things that needed to get done. It has been a long road to get to this point, Mr. Lawson continued, but now, he said, “I can be the guy she fell in love with.”\n", + " Ms. Salamis, for her part, worked to break old patterns of behavior where she would continually check up on her partner or try to manage every aspect of their household. There was no need to do so anymore, because he was actually doing the things that needed to get done.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " It has been a long road to get to this point, Mr. Lawson continued, but now, he said, “I can be the guy she fell in love with.”\n", " Evidence\n", "\n", "
" @@ -997,7 +1908,7 @@ { "data": { "text/html": [ - "

nytimes\\afghanistan-boy-dies-well.txt

" + "

afghanistan-boy-dies-well.txt

" ], "text/plain": [ "" @@ -1017,7 +1928,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "f432caa65acf4fdfba5f3daedd38cfe1", + "model_id": "b4a1924b8a0f4bdeaba997b96e5a954c", "version_major": 2, "version_minor": 0 }, @@ -1038,7 +1949,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "0ad1fb78350d4bed9f2bea3f116c9c1d", + "model_id": "3de376a66bd44ee0a9f48409a69ec620", "version_major": 2, "version_minor": 0 }, @@ -1065,7 +1976,21 @@ "In Afghanistan, Haidar’s plight garnered far less attention than young Rayan’s, though the Taliban seized on the opportunity to publicize their ability to marshal an effective emergency response. {'label': 'Evidence', 'score': 0.6455936431884766}\n", "The rescue of a helpless young boy also provided an opportunity to present a nuanced and attentive side of the Taliban leadership, which is regularly subject to international admonition for its hard-line religious stance and fought a violent insurgency for decades before taking power last year. {'label': 'Evidence', 'score': 0.5551219582557678}\n", "“It is with regret that Haidar Jan left us forever,” Anas Haqqani said on Twitter shortly after the boy was removed from the well. The Taliban quickly circulated photographs purportedly showing Mr. Haqqani and Mr. Yaqoub, the oldest son of the Taliban’s leader, Mullah Omar, speaking with Haidar’s father. {'label': 'Evidence', 'score': 0.879705548286438}\n", - "The public relations blitz followed weeks of headlines and international outcry accusing the Taliban of abducting several female activists who had protested after women’s rights were rolled back under the banner of strict Islamic law. The Taliban denied abducting the women even though they were eventually released. {'label': 'Evidence', 'score': 0.9830054640769958}\n" + "The public relations blitz followed weeks of headlines and international outcry accusing the Taliban of abducting several female activists who had protested after women’s rights were rolled back under the banner of strict Islamic law. The Taliban denied abducting the women even though they were eventually released. {'label': 'Evidence', 'score': 0.9830054640769958}\n", + " text label score\n", + "0 KABUL, Afghanistan — A young boy died on Frida... Evidence 0.943040\n", + "1 The boy, Haidar Jan, who was thought to be 5, ... Evidence 0.970514\n", + "2 Around the time they discovered that Haidar wa... Evidence 0.490000\n", + "3 “Zabul officials, in coordination with Kabul o... Evidence 0.983127\n", + "4 Anas Haqqani, the brother of Sirajuddin Haqqan... Evidence 0.977204\n", + "5 Haidar’s death comes only weeks after the effo... Evidence 0.577095\n", + "6 The operation in Morocco to save Rayan, who al... Evidence 0.596437\n", + "7 Wells are commonplace in Afghanistan, with mor... Evidence 0.990913\n", + "8 Eventually, excavators dug a trench into the s... Evidence 0.933308\n", + "9 In Afghanistan, Haidar’s plight garnered far l... Evidence 0.645594\n", + "10 The rescue of a helpless young boy also provid... Evidence 0.555122\n", + "11 “It is with regret that Haidar Jan left us for... Evidence 0.879706\n", + "12 The public relations blitz followed weeks of h... Evidence 0.983005\n" ] }, { @@ -1073,7 +1998,67 @@ "text/html": [ "
\n", "\n", - " KABUL, Afghanistan — A young boy died on Friday after being trapped in a well for several days in southern Afghanistan, Taliban officials said, heralding a tragic end to a round-the-clock rescue effort led by officials at the highest levels of the country’s new government. The boy, Haidar Jan, who was thought to be 5, fell into a roughly 85-foot-deep well on Tuesday in a village near Qalat, the capital of Zabul Province. By Thursday, rescuers had sent cameras and ropes down the barely foot-wide borehole to no avail, in a scene reminiscent of an effort in Morocco this month. Around the time they discovered that Haidar was not moving, officials said, they began digging into the earth around the scene. “Zabul officials, in coordination with Kabul officials and the Zabul municipality, worked for about 70 hours and used various tools and equipment to rescue the child,” said Sharafat Wyar, the head of Zabul’s information and culture department. “When the child was rescued from the well, he was alive for a short time, but after awhile, he died.” Anas Haqqani, the brother of Sirajuddin Haqqani, the Taliban’s acting interior minister, helped lead the rescue effort, which involved the police, public works and the Taliban’s fledgling air force. The acting defense minister, Muhammad Yaqoub, was also present to assist with commanding the operation. Haidar’s death comes only weeks after the efforts to rescue a 5-year-old boy in Morocco, Rayan Oram, captivated people around the globe after he plunged into a well in his own small village. The operation in Morocco to save Rayan, who also died, was accompanied by days of vigils and internet livestreams that followed the rescue effort with thousands of viewers. Wells are commonplace in Afghanistan, with more than 70 percent of the country’s 38 million people living in rural areas. As one of the worst droughts in decades drags on into another year, Afghan farmers are digging their wells increasingly deeper to reach a quickly diminishing water table. The well into which Haidar fell on Tuesday was completely dry, Mr. Wyar said. Eventually, excavators dug a trench into the side of the well to retrieve the boy after initial attempts to pull him out failed. Videos taken from the scene during the rescuers’ early attempts showed a claustrophobic chamber already clogged with debris and ropes. In Afghanistan, Haidar’s plight garnered far less attention than young Rayan’s, though the Taliban seized on the opportunity to publicize their ability to marshal an effective emergency response. The rescue of a helpless young boy also provided an opportunity to present a nuanced and attentive side of the Taliban leadership, which is regularly subject to international admonition for its hard-line religious stance and fought a violent insurgency for decades before taking power last year. “It is with regret that Haidar Jan left us forever,” Anas Haqqani said on Twitter shortly after the boy was removed from the well. The Taliban quickly circulated photographs purportedly showing Mr. Haqqani and Mr. Yaqoub, the oldest son of the Taliban’s leader, Mullah Omar, speaking with Haidar’s father. The public relations blitz followed weeks of headlines and international outcry accusing the Taliban of abducting several female activists who had protested after women’s rights were rolled back under the banner of strict Islamic law. The Taliban denied abducting the women even though they were eventually released.\n", + " KABUL, Afghanistan — A young boy died on Friday after being trapped in a well for several days in southern Afghanistan, Taliban officials said, heralding a tragic end to a round-the-clock rescue effort led by officials at the highest levels of the country’s new government.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The boy, Haidar Jan, who was thought to be 5, fell into a roughly 85-foot-deep well on Tuesday in a village near Qalat, the capital of Zabul Province. By Thursday, rescuers had sent cameras and ropes down the barely foot-wide borehole to no avail, in a scene reminiscent of an effort in Morocco this month.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Around the time they discovered that Haidar was not moving, officials said, they began digging into the earth around the scene.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Zabul officials, in coordination with Kabul officials and the Zabul municipality, worked for about 70 hours and used various tools and equipment to rescue the child,” said Sharafat Wyar, the head of Zabul’s information and culture department. “When the child was rescued from the well, he was alive for a short time, but after awhile, he died.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Anas Haqqani, the brother of Sirajuddin Haqqani, the Taliban’s acting interior minister, helped lead the rescue effort, which involved the police, public works and the Taliban’s fledgling air force. The acting defense minister, Muhammad Yaqoub, was also present to assist with commanding the operation.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Haidar’s death comes only weeks after the efforts to rescue a 5-year-old boy in Morocco, Rayan Oram, captivated people around the globe after he plunged into a well in his own small village.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The operation in Morocco to save Rayan, who also died, was accompanied by days of vigils and internet livestreams that followed the rescue effort with thousands of viewers.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Wells are commonplace in Afghanistan, with more than 70 percent of the country’s 38 million people living in rural areas. As one of the worst droughts in decades drags on into another year, Afghan farmers are digging their wells increasingly deeper to reach a quickly diminishing water table. The well into which Haidar fell on Tuesday was completely dry, Mr. Wyar said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Eventually, excavators dug a trench into the side of the well to retrieve the boy after initial attempts to pull him out failed. Videos taken from the scene during the rescuers’ early attempts showed a claustrophobic chamber already clogged with debris and ropes.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In Afghanistan, Haidar’s plight garnered far less attention than young Rayan’s, though the Taliban seized on the opportunity to publicize their ability to marshal an effective emergency response.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The rescue of a helpless young boy also provided an opportunity to present a nuanced and attentive side of the Taliban leadership, which is regularly subject to international admonition for its hard-line religious stance and fought a violent insurgency for decades before taking power last year.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “It is with regret that Haidar Jan left us forever,” Anas Haqqani said on Twitter shortly after the boy was removed from the well. The Taliban quickly circulated photographs purportedly showing Mr. Haqqani and Mr. Yaqoub, the oldest son of the Taliban’s leader, Mullah Omar, speaking with Haidar’s father.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The public relations blitz followed weeks of headlines and international outcry accusing the Taliban of abducting several female activists who had protested after women’s rights were rolled back under the banner of strict Islamic law. The Taliban denied abducting the women even though they were eventually released.\n", " Evidence\n", "\n", "
" @@ -1097,7 +2082,7 @@ { "data": { "text/html": [ - "

nytimes\\afghanistan-immigration-visa-us.txt

" + "

afghanistan-immigration-visa-us.txt

" ], "text/plain": [ "" @@ -1117,7 +2102,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "c4b928acfa9946cd96d978b8be28c816", + "model_id": "011f9c0b033246ed8d977b41eb4926cb", "version_major": 2, "version_minor": 0 }, @@ -1138,7 +2123,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "5ec7c43c621c4fd8994cfe57bf3cac9a", + "model_id": "61110ec1fc294132bceb0c6112b67a6d", "version_major": 2, "version_minor": 0 }, @@ -1156,7 +2141,7 @@ "On Aug. 10, 2021, days before the collapse of Afghanistan’s government, Fawad Khan Safi arrived in the United States to begin his new life. {'label': 'Claim', 'score': 0.3872610032558441}\n", "Mr. Safi, who previously worked as a contractor for the United States Agency for International Development in Afghanistan, had waited an agonizing 12 months to receive his Special Immigrant Visa, or S.I.V., and make it to Texas. His ordeal lasted several months longer than the maximum nine-month visa processing period mandated by law — and yet, Mr. Safi is one of the lucky ones. {'label': 'Evidence', 'score': 0.9845075607299805}\n", "Around 60,000 Afghans who have worked with American forces and applied for visas remain in Afghanistan — many probably starving and on the run from the Taliban. Few, if any visas have ever been approved within that nine-month timeline. The system is clearly broken. {'label': 'Evidence', 'score': 0.9513683915138245}\n", - "Despite the disturbing images of last summer’s evacuation, the obstacles facing S.I.V. applicants have continued to persist. To remedy this, Congress should overhaul the current S.I.V. process and pass an improved, permanent immigration program that swiftly and efficiently resettles those who apply for it. {'label': 'Concluding Statement', 'score': 0.6522158980369568}\n", + "Despite the disturbing images of last summer’s evacuation, the obstacles facing S.I.V. applicants have continued to persist. To remedy this, Congress should overhaul the current S.I.V. process and pass an improved, permanent immigration program that swiftly and efficiently resettles those who apply for it. {'label': 'Concluding Statement', 'score': 0.652215838432312}\n", "If the S.I.V. process isn’t fixed, U.S. enemies like the Taliban will continue to persecute those who put their lives at risk to protect American troops. In the long run, partners around the world whom the United States often relies on will most likely rethink the value of a close relationship with the American government if they see that they can’t depend on its support. {'label': 'Evidence', 'score': 0.8502283692359924}\n", "Congress enacted the first S.I.V. program — for which both Iraqi and Afghan interpreters were eligible — in 2006, several years after both conflicts began. From inception, the program was unable to process applications in a timely manner, resulting in a backlog that was never resolved. As their applications languished, interpreters working for the U.S. government were targeted for retribution. After the United States withdrew most of its troops from Iraq in 2011, Iraqi interpreters faced brutal consequences, in large part because of severe delays in the processing of S.I.V. applications. {'label': 'Evidence', 'score': 0.9868857860565186}\n", "Without immediate changes to the S.I.V. program, a similar fate awaits our Afghan allies. {'label': 'Claim', 'score': 0.7046772241592407}\n", @@ -1169,7 +2154,44 @@ "By limiting S.I.V. eligibility to Iraqis and Afghans, the U.S. government also ignores a slew of other allies who have risked their lives on behalf of American troops and missions. Syrian and Yemeni interpreters, for example, accompanied U.S. forces in battle against ISIS and Al Qaeda. They have no chance at resettlement in the United States through an S.I.V. program. {'label': 'Evidence', 'score': 0.9843791127204895}\n", "Expanding a permanent S.I.V. program to apply to other conflict zones would also prevent the need to create new legislation for those countries. In the past, some country-specific programs have fallen through the legislative cracks altogether. Most recently, Congress failed to enact a Syrian S.I.V. program despite more than one attempt to introduce such a bill. Our allies deserve better, especially in light of looming future crises such as the current standoff between Russia and Ukraine. {'label': 'Evidence', 'score': 0.9417531490325928}\n", "In Texas, Mr. Safi now works at a resettlement agency, paying his fortune forward by helping other new arrivals find work and a sense of community in their new country. Tragically, though, most refugees who have applied to the S.I.V. programs will not make it to the United States. Thousands are still waiting — terrified of Taliban retribution, hiding in basements. {'label': 'Evidence', 'score': 0.968713641166687}\n", - "It’s time to bring them to America. {'label': 'Claim', 'score': 0.6750279664993286}\n" + "It’s time to bring them to America. {'label': 'Claim', 'score': 0.6750279664993286}\n", + " text label \\\n", + "0 On Aug. 10, 2021, days before the collapse of ... Claim \n", + "1 Mr. Safi, who previously worked as a contracto... Evidence \n", + "2 Around 60,000 Afghans who have worked with Ame... Evidence \n", + "3 Despite the disturbing images of last summer’s... Concluding Statement \n", + "4 If the S.I.V. process isn’t fixed, U.S. enemie... Evidence \n", + "5 Congress enacted the first S.I.V. program — fo... Evidence \n", + "6 Without immediate changes to the S.I.V. progra... Claim \n", + "7 Currently, Afghans may apply for S.I.V.s via t... Evidence \n", + "8 Unfortunately, Congress’s well-intentioned att... Evidence \n", + "9 Moreover, the responsibilities of the Departme... Evidence \n", + "10 But immediate steps can be taken to rectify th... Rebuttal \n", + "11 The Biden administration has increased resourc... Evidence \n", + "12 Currently, neither S.I.V. track allows applica... Evidence \n", + "13 By limiting S.I.V. eligibility to Iraqis and A... Evidence \n", + "14 Expanding a permanent S.I.V. program to apply ... Evidence \n", + "15 In Texas, Mr. Safi now works at a resettlement... Evidence \n", + "16 It’s time to bring them to America. Claim \n", + "\n", + " score \n", + "0 0.387261 \n", + "1 0.984508 \n", + "2 0.951368 \n", + "3 0.652216 \n", + "4 0.850228 \n", + "5 0.986886 \n", + "6 0.704677 \n", + "7 0.843458 \n", + "8 0.722799 \n", + "9 0.743260 \n", + "10 0.766689 \n", + "11 0.489774 \n", + "12 0.961204 \n", + "13 0.984379 \n", + "14 0.941753 \n", + "15 0.968714 \n", + "16 0.675028 \n" ] }, { @@ -1182,7 +2204,12 @@ "\n", "\n", "\n", - " Mr. Safi, who previously worked as a contractor for the United States Agency for International Development in Afghanistan, had waited an agonizing 12 months to receive his Special Immigrant Visa, or S.I.V., and make it to Texas. His ordeal lasted several months longer than the maximum nine-month visa processing period mandated by law — and yet, Mr. Safi is one of the lucky ones. Around 60,000 Afghans who have worked with American forces and applied for visas remain in Afghanistan — many probably starving and on the run from the Taliban. Few, if any visas have ever been approved within that nine-month timeline. The system is clearly broken.\n", + " Mr. Safi, who previously worked as a contractor for the United States Agency for International Development in Afghanistan, had waited an agonizing 12 months to receive his Special Immigrant Visa, or S.I.V., and make it to Texas. His ordeal lasted several months longer than the maximum nine-month visa processing period mandated by law — and yet, Mr. Safi is one of the lucky ones.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Around 60,000 Afghans who have worked with American forces and applied for visas remain in Afghanistan — many probably starving and on the run from the Taliban. Few, if any visas have ever been approved within that nine-month timeline. The system is clearly broken.\n", " Evidence\n", "\n", "\n", @@ -1192,7 +2219,12 @@ "\n", "\n", "\n", - " If the S.I.V. process isn’t fixed, U.S. enemies like the Taliban will continue to persecute those who put their lives at risk to protect American troops. In the long run, partners around the world whom the United States often relies on will most likely rethink the value of a close relationship with the American government if they see that they can’t depend on its support. Congress enacted the first S.I.V. program — for which both Iraqi and Afghan interpreters were eligible — in 2006, several years after both conflicts began. From inception, the program was unable to process applications in a timely manner, resulting in a backlog that was never resolved. As their applications languished, interpreters working for the U.S. government were targeted for retribution. After the United States withdrew most of its troops from Iraq in 2011, Iraqi interpreters faced brutal consequences, in large part because of severe delays in the processing of S.I.V. applications.\n", + " If the S.I.V. process isn’t fixed, U.S. enemies like the Taliban will continue to persecute those who put their lives at risk to protect American troops. In the long run, partners around the world whom the United States often relies on will most likely rethink the value of a close relationship with the American government if they see that they can’t depend on its support.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Congress enacted the first S.I.V. program — for which both Iraqi and Afghan interpreters were eligible — in 2006, several years after both conflicts began. From inception, the program was unable to process applications in a timely manner, resulting in a backlog that was never resolved. As their applications languished, interpreters working for the U.S. government were targeted for retribution. After the United States withdrew most of its troops from Iraq in 2011, Iraqi interpreters faced brutal consequences, in large part because of severe delays in the processing of S.I.V. applications.\n", " Evidence\n", "\n", "\n", @@ -1202,7 +2234,17 @@ "\n", "\n", "\n", - " Currently, Afghans may apply for S.I.V.s via two tracks: A permanent program for interpreters who worked directly with the U.S. military, limited to only 50 people annually, and a much larger but temporary program for others working for or on behalf of the U.S. government. Each program has different application requirements, deadlines and visa quotas. Unfortunately, Congress’s well-intentioned attempts to improve the S.I.V. programs have only increased their complexity, while insufficiently addressing their greatest weaknesses. Sporadic, temporary extensions have made it difficult for the executive branch to properly budget, staff and provide resources for the programs over time. For example, the State Department Office of the Inspector General found that from 2016 to 2020, the programs’ staffing numbers remained constant as a backlog grew and as Congress approved 15,500 additional visas. Moreover, the responsibilities of the Departments of State, Homeland Security, and Defense in the immigration process are poorly delineated. Basic background and security checks span multiple agencies, and the coordination between these agencies has been inadequate.\n", + " Currently, Afghans may apply for S.I.V.s via two tracks: A permanent program for interpreters who worked directly with the U.S. military, limited to only 50 people annually, and a much larger but temporary program for others working for or on behalf of the U.S. government. Each program has different application requirements, deadlines and visa quotas.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Unfortunately, Congress’s well-intentioned attempts to improve the S.I.V. programs have only increased their complexity, while insufficiently addressing their greatest weaknesses. Sporadic, temporary extensions have made it difficult for the executive branch to properly budget, staff and provide resources for the programs over time. For example, the State Department Office of the Inspector General found that from 2016 to 2020, the programs’ staffing numbers remained constant as a backlog grew and as Congress approved 15,500 additional visas.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Moreover, the responsibilities of the Departments of State, Homeland Security, and Defense in the immigration process are poorly delineated. Basic background and security checks span multiple agencies, and the coordination between these agencies has been inadequate.\n", " Evidence\n", "\n", "\n", @@ -1212,7 +2254,27 @@ "\n", "\n", "\n", - " The Biden administration has increased resources and decreased the processing time for the S.I.V. program in the last few months, but those moves fall far short of the major legislative overhaul the Afghan and Iraqi S.I.V. programs need. Congress should consolidate the multiple tracks of the S.I.V. programs into a permanent, unified framework that simplifies processing and eligibility rules. This program should allow for a more holistic security vetting process that considers context while screening effectively. Currently, neither S.I.V. track allows applicants’ former U.S. supervisors to offer helpful context when red flags come up during initial background checks. Hypothetically, consider the case of an interpreter who, at the behest of his U.S. military supervisors, contacted insurgent sympathizers to collect information or obtain cooperation during the height of the conflict. Under the existing system, such applicants are typically disapproved as security risks without being provided sufficient recourse to appeal. By limiting S.I.V. eligibility to Iraqis and Afghans, the U.S. government also ignores a slew of other allies who have risked their lives on behalf of American troops and missions. Syrian and Yemeni interpreters, for example, accompanied U.S. forces in battle against ISIS and Al Qaeda. They have no chance at resettlement in the United States through an S.I.V. program. Expanding a permanent S.I.V. program to apply to other conflict zones would also prevent the need to create new legislation for those countries. In the past, some country-specific programs have fallen through the legislative cracks altogether. Most recently, Congress failed to enact a Syrian S.I.V. program despite more than one attempt to introduce such a bill. Our allies deserve better, especially in light of looming future crises such as the current standoff between Russia and Ukraine. In Texas, Mr. Safi now works at a resettlement agency, paying his fortune forward by helping other new arrivals find work and a sense of community in their new country. Tragically, though, most refugees who have applied to the S.I.V. programs will not make it to the United States. Thousands are still waiting — terrified of Taliban retribution, hiding in basements.\n", + " The Biden administration has increased resources and decreased the processing time for the S.I.V. program in the last few months, but those moves fall far short of the major legislative overhaul the Afghan and Iraqi S.I.V. programs need. Congress should consolidate the multiple tracks of the S.I.V. programs into a permanent, unified framework that simplifies processing and eligibility rules. This program should allow for a more holistic security vetting process that considers context while screening effectively.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Currently, neither S.I.V. track allows applicants’ former U.S. supervisors to offer helpful context when red flags come up during initial background checks. Hypothetically, consider the case of an interpreter who, at the behest of his U.S. military supervisors, contacted insurgent sympathizers to collect information or obtain cooperation during the height of the conflict. Under the existing system, such applicants are typically disapproved as security risks without being provided sufficient recourse to appeal.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " By limiting S.I.V. eligibility to Iraqis and Afghans, the U.S. government also ignores a slew of other allies who have risked their lives on behalf of American troops and missions. Syrian and Yemeni interpreters, for example, accompanied U.S. forces in battle against ISIS and Al Qaeda. They have no chance at resettlement in the United States through an S.I.V. program.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Expanding a permanent S.I.V. program to apply to other conflict zones would also prevent the need to create new legislation for those countries. In the past, some country-specific programs have fallen through the legislative cracks altogether. Most recently, Congress failed to enact a Syrian S.I.V. program despite more than one attempt to introduce such a bill. Our allies deserve better, especially in light of looming future crises such as the current standoff between Russia and Ukraine.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In Texas, Mr. Safi now works at a resettlement agency, paying his fortune forward by helping other new arrivals find work and a sense of community in their new country. Tragically, though, most refugees who have applied to the S.I.V. programs will not make it to the United States. Thousands are still waiting — terrified of Taliban retribution, hiding in basements.\n", " Evidence\n", "\n", "\n", @@ -1241,7 +2303,7 @@ { "data": { "text/html": [ - "

nytimes\\ahmaud-arbery-mcmichael-trial.txt

" + "

ahmaud-arbery-mcmichael-trial.txt

" ], "text/plain": [ "" @@ -1261,7 +2323,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "8933634ab81748969d347e95c6a16978", + "model_id": "2e5c0cb7447845d59704da4854920cdd", "version_major": 2, "version_minor": 0 }, @@ -1282,7 +2344,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "eb8d350b2b7a43aaa59eaed385e834af", + "model_id": "65b541a622d6412e8b3d3086d3ab9980", "version_major": 2, "version_minor": 0 }, @@ -1300,7 +2362,7 @@ "BRUNSWICK, Ga. — Defense lawyers in the hate crimes trial of the three white men convicted of murdering Ahmaud Arbery rested their case on Friday after calling just a single witness. {'label': 'Evidence', 'score': 0.7033983469009399}\n", "None of the defendants — Travis McMichael, his father, Gregory McMichael, and their neighbor William Bryan — took the stand in their own defense. {'label': 'Evidence', 'score': 0.420257031917572}\n", "The men were convicted in state court last year of chasing Mr. Arbery through their South Georgia neighborhood and murdering him. All three were sentenced to life in prison. In the federal trial, they stand accused of pursuing and killing Mr. Arbery specifically because he was Black. {'label': 'Evidence', 'score': 0.9846514463424683}\n", - "On Friday, only the lawyer for Gregory McMichael presented evidence to the jury, in an attempt to buttress the defense’s central argument that the men chased Mr. Arbery because they suspected him of committing burglaries in the area, not because of his race. {'label': 'Evidence', 'score': 0.7622248530387878}\n", + "On Friday, only the lawyer for Gregory McMichael presented evidence to the jury, in an attempt to buttress the defense’s central argument that the men chased Mr. Arbery because they suspected him of committing burglaries in the area, not because of his race. {'label': 'Evidence', 'score': 0.7622249722480774}\n", "The single defense witness, a woman who lived in the Satilla Shores neighborhood where the defendants lived and where Mr. Arbery died, testified that on one occasion in 2019 she saw a white man who appeared suspicious under a bridge near the entrance to the neighborhood. A.J. Balbo, Mr. McMichael’s lawyer, played a recording of a call Mr. McMichael made to authorities that summer after he, too, saw a white man under the bridge whom he thought was suspicious and perhaps responsible for burglaries. The defendants have argued in both trials that they were on alert because of a rash of break-ins. {'label': 'Evidence', 'score': 0.9872564077377319}\n", "An advocate for Mr. Arbery’s family expressed skepticism about that line of argument. {'label': 'Claim', 'score': 0.4384385943412781}\n", "“The defense tried to use this witness to show that their clients aren’t racist, that they called the police on a white man and were concerned about crime, but just because you called the police on a white person doesn’t mean you’re not racist,” said Lynn Whitfield, a senior attorney with the Transformative Justice Coalition who has been sitting with Mr. Arbery’s family during the court proceedings. “They didn’t chase the white man through the neighborhood with guns and kill him.” {'label': 'Evidence', 'score': 0.9724189639091492}\n", @@ -1309,16 +2371,39 @@ "Among the prosecution’s witnesses was Kristie Ronquille, who testified on Friday morning. {'label': 'Claim', 'score': 0.6059383749961853}\n", "Ms. Ronquille said that in 2011, when she was in the Coast Guard in Pascagoula, Miss., Travis McMichael, then her supervisor, made disparaging comments about Black people after learning that she had previously dated a Black man. Crying on the stand, Ms. Ronquille said Mr. McMichael called her an “N-word lover” on more than one occasion after that. {'label': 'Evidence', 'score': 0.9884187579154968}\n", "Asked by Travis McMichael’s lawyer, Amy Lee Copeland, why she had not reported him, Ms. Ronquille said that she was new to the Coast Guard. {'label': 'Evidence', 'score': 0.5954750180244446}\n", - "“This is my supervisor — it’d be like telling on your boss,” she said. “Who do you tell on your boss to?” {'label': 'Evidence', 'score': 0.41050732135772705}\n", + "“This is my supervisor — it’d be like telling on your boss,” she said. “Who do you tell on your boss to?” {'label': 'Evidence', 'score': 0.41050735116004944}\n", "On Friday, the prosecution also called Kim Ballesteros, a neighbor of the McMichaels, who said she remembered standing at the end of a driveway, telling Gregory McMichael that she had a new rental property. Mr. McMichael told her about his own tenant, a Black woman who had rented a home from him. He said he had cut off the woman’s air-conditioning in the summer to goad her into paying her rent. {'label': 'Evidence', 'score': 0.9806168079376221}\n", "“You should have seen how fast her big fat Black ass came with the rent check,” Ms. Ballesteros recalled Mr. McMichael saying. Ms. Ballesteros said Mr. McMichael called the woman a “walrus” because she was “big and Black.” {'label': 'Evidence', 'score': 0.9449455738067627}\n", - "“I was surprised,” Ms. Ballesteros said. “It was racist and uncomfortable, and I was frankly disappointed.” {'label': 'Lead', 'score': 0.40947866439819336}\n", + "“I was surprised,” Ms. Ballesteros said. “It was racist and uncomfortable, and I was frankly disappointed.” {'label': 'Lead', 'score': 0.40947863459587097}\n", "Mr. Balbo, Gregory McMichael’s lawyer, noted that Ms. Ballesteros continued to speak with Mr. McMichael after the incident and that his client rented to African Americans. {'label': 'Evidence', 'score': 0.7997766137123108}\n", "Another witness, Carole Sears, said she recalled hearing Gregory McMichael “rant” about Black people after finding out that Julian Bond, the civil rights leader, had died. At the time, Mr. McMichael was an investigator for the local district attorney’s office and she was riding in his car because of her involvement in a legal matter in Brunswick, Ga. Ms. Sears was upset about Mr. Bond’s death, while Mr. McMichael was pleased, she said. “I wish that guy had been in the ground years ago,” Ms. Sears recalled Mr. McMichael saying. “All those Blacks are nothing but trouble and I wish they’d all die.” {'label': 'Evidence', 'score': 0.9924221634864807}\n", "Ms. Sears said she did not speak for the remainder of the ride because she was afraid. {'label': 'Claim', 'score': 0.5495681166648865}\n", - "In their opening statements this week, defense lawyers criticized the racist language their clients used, but they also insisted that use of such language is not evidence that the men killed Mr. Arbery because he was Black. {'label': 'Claim', 'score': 0.4220713973045349}\n", + "In their opening statements this week, defense lawyers criticized the racist language their clients used, but they also insisted that use of such language is not evidence that the men killed Mr. Arbery because he was Black. {'label': 'Claim', 'score': 0.42207133769989014}\n", "The men chased Mr. Arbery “not because he was a Black man, but because he was the man,” Mr. Balbo said in his opening statements. {'label': 'Evidence', 'score': 0.6425994038581848}\n", - "The jury will hear closing arguments from the government and the defendants on Monday. {'label': 'Claim', 'score': 0.5651424527168274}\n" + "The jury will hear closing arguments from the government and the defendants on Monday. {'label': 'Claim', 'score': 0.5651424527168274}\n", + " text label score\n", + "0 BRUNSWICK, Ga. — Defense lawyers in the hate c... Evidence 0.703398\n", + "1 None of the defendants — Travis McMichael, his... Evidence 0.420257\n", + "2 The men were convicted in state court last yea... Evidence 0.984651\n", + "3 On Friday, only the lawyer for Gregory McMicha... Evidence 0.762225\n", + "4 The single defense witness, a woman who lived ... Evidence 0.987256\n", + "5 An advocate for Mr. Arbery’s family expressed ... Claim 0.438439\n", + "6 “The defense tried to use this witness to show... Evidence 0.972419\n", + "7 The jury is tasked with determining whether th... Evidence 0.982763\n", + "8 The defense witness on Friday came after prose... Evidence 0.932960\n", + "9 Among the prosecution’s witnesses was Kristie ... Claim 0.605938\n", + "10 Ms. Ronquille said that in 2011, when she was ... Evidence 0.988419\n", + "11 Asked by Travis McMichael’s lawyer, Amy Lee Co... Evidence 0.595475\n", + "12 “This is my supervisor — it’d be like telling ... Evidence 0.410507\n", + "13 On Friday, the prosecution also called Kim Bal... Evidence 0.980617\n", + "14 “You should have seen how fast her big fat Bla... Evidence 0.944946\n", + "15 “I was surprised,” Ms. Ballesteros said. “It w... Lead 0.409479\n", + "16 Mr. Balbo, Gregory McMichael’s lawyer, noted t... Evidence 0.799777\n", + "17 Another witness, Carole Sears, said she recall... Evidence 0.992422\n", + "18 Ms. Sears said she did not speak for the remai... Claim 0.549568\n", + "19 In their opening statements this week, defense... Claim 0.422071\n", + "20 The men chased Mr. Arbery “not because he was ... Evidence 0.642599\n", + "21 The jury will hear closing arguments from the ... Claim 0.565142\n" ] }, { @@ -1326,7 +2411,27 @@ "text/html": [ "
\n", "\n", - " BRUNSWICK, Ga. — Defense lawyers in the hate crimes trial of the three white men convicted of murdering Ahmaud Arbery rested their case on Friday after calling just a single witness. None of the defendants — Travis McMichael, his father, Gregory McMichael, and their neighbor William Bryan — took the stand in their own defense. The men were convicted in state court last year of chasing Mr. Arbery through their South Georgia neighborhood and murdering him. All three were sentenced to life in prison. In the federal trial, they stand accused of pursuing and killing Mr. Arbery specifically because he was Black. On Friday, only the lawyer for Gregory McMichael presented evidence to the jury, in an attempt to buttress the defense’s central argument that the men chased Mr. Arbery because they suspected him of committing burglaries in the area, not because of his race. The single defense witness, a woman who lived in the Satilla Shores neighborhood where the defendants lived and where Mr. Arbery died, testified that on one occasion in 2019 she saw a white man who appeared suspicious under a bridge near the entrance to the neighborhood. A.J. Balbo, Mr. McMichael’s lawyer, played a recording of a call Mr. McMichael made to authorities that summer after he, too, saw a white man under the bridge whom he thought was suspicious and perhaps responsible for burglaries. The defendants have argued in both trials that they were on alert because of a rash of break-ins.\n", + " BRUNSWICK, Ga. — Defense lawyers in the hate crimes trial of the three white men convicted of murdering Ahmaud Arbery rested their case on Friday after calling just a single witness.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " None of the defendants — Travis McMichael, his father, Gregory McMichael, and their neighbor William Bryan — took the stand in their own defense.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The men were convicted in state court last year of chasing Mr. Arbery through their South Georgia neighborhood and murdering him. All three were sentenced to life in prison. In the federal trial, they stand accused of pursuing and killing Mr. Arbery specifically because he was Black.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " On Friday, only the lawyer for Gregory McMichael presented evidence to the jury, in an attempt to buttress the defense’s central argument that the men chased Mr. Arbery because they suspected him of committing burglaries in the area, not because of his race.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The single defense witness, a woman who lived in the Satilla Shores neighborhood where the defendants lived and where Mr. Arbery died, testified that on one occasion in 2019 she saw a white man who appeared suspicious under a bridge near the entrance to the neighborhood. A.J. Balbo, Mr. McMichael’s lawyer, played a recording of a call Mr. McMichael made to authorities that summer after he, too, saw a white man under the bridge whom he thought was suspicious and perhaps responsible for burglaries. The defendants have argued in both trials that they were on alert because of a rash of break-ins.\n", " Evidence\n", "\n", "\n", @@ -1336,7 +2441,17 @@ "\n", "\n", "\n", - " “The defense tried to use this witness to show that their clients aren’t racist, that they called the police on a white man and were concerned about crime, but just because you called the police on a white person doesn’t mean you’re not racist,” said Lynn Whitfield, a senior attorney with the Transformative Justice Coalition who has been sitting with Mr. Arbery’s family during the court proceedings. “They didn’t chase the white man through the neighborhood with guns and kill him.” The jury is tasked with determining whether the men deprived Mr. Arbery of his right to use a public street because he was Black, not whether they committed murder. The men are also charged with attempted kidnapping, and the McMichaels are charged with one count each of using a weapon during a violent crime. If convicted, they face up to life in prison. Guilty verdicts would have practical ramifications if the men’s state convictions were overturned on appeal. The defense witness on Friday came after prosecutors called 20 witnesses and introduced dozens of pieces of evidence over three and a half days, including text, WhatsApp and Facebook messages and comments containing racist language that the men posted and sent to others.\n", + " “The defense tried to use this witness to show that their clients aren’t racist, that they called the police on a white man and were concerned about crime, but just because you called the police on a white person doesn’t mean you’re not racist,” said Lynn Whitfield, a senior attorney with the Transformative Justice Coalition who has been sitting with Mr. Arbery’s family during the court proceedings. “They didn’t chase the white man through the neighborhood with guns and kill him.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The jury is tasked with determining whether the men deprived Mr. Arbery of his right to use a public street because he was Black, not whether they committed murder. The men are also charged with attempted kidnapping, and the McMichaels are charged with one count each of using a weapon during a violent crime. If convicted, they face up to life in prison. Guilty verdicts would have practical ramifications if the men’s state convictions were overturned on appeal.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The defense witness on Friday came after prosecutors called 20 witnesses and introduced dozens of pieces of evidence over three and a half days, including text, WhatsApp and Facebook messages and comments containing racist language that the men posted and sent to others.\n", " Evidence\n", "\n", "\n", @@ -1346,7 +2461,27 @@ "\n", "\n", "\n", - " Ms. Ronquille said that in 2011, when she was in the Coast Guard in Pascagoula, Miss., Travis McMichael, then her supervisor, made disparaging comments about Black people after learning that she had previously dated a Black man. Crying on the stand, Ms. Ronquille said Mr. McMichael called her an “N-word lover” on more than one occasion after that. Asked by Travis McMichael’s lawyer, Amy Lee Copeland, why she had not reported him, Ms. Ronquille said that she was new to the Coast Guard. “This is my supervisor — it’d be like telling on your boss,” she said. “Who do you tell on your boss to?” On Friday, the prosecution also called Kim Ballesteros, a neighbor of the McMichaels, who said she remembered standing at the end of a driveway, telling Gregory McMichael that she had a new rental property. Mr. McMichael told her about his own tenant, a Black woman who had rented a home from him. He said he had cut off the woman’s air-conditioning in the summer to goad her into paying her rent. “You should have seen how fast her big fat Black ass came with the rent check,” Ms. Ballesteros recalled Mr. McMichael saying. Ms. Ballesteros said Mr. McMichael called the woman a “walrus” because she was “big and Black.”\n", + " Ms. Ronquille said that in 2011, when she was in the Coast Guard in Pascagoula, Miss., Travis McMichael, then her supervisor, made disparaging comments about Black people after learning that she had previously dated a Black man. Crying on the stand, Ms. Ronquille said Mr. McMichael called her an “N-word lover” on more than one occasion after that.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Asked by Travis McMichael’s lawyer, Amy Lee Copeland, why she had not reported him, Ms. Ronquille said that she was new to the Coast Guard.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “This is my supervisor — it’d be like telling on your boss,” she said. “Who do you tell on your boss to?”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " On Friday, the prosecution also called Kim Ballesteros, a neighbor of the McMichaels, who said she remembered standing at the end of a driveway, telling Gregory McMichael that she had a new rental property. Mr. McMichael told her about his own tenant, a Black woman who had rented a home from him. He said he had cut off the woman’s air-conditioning in the summer to goad her into paying her rent.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “You should have seen how fast her big fat Black ass came with the rent check,” Ms. Ballesteros recalled Mr. McMichael saying. Ms. Ballesteros said Mr. McMichael called the woman a “walrus” because she was “big and Black.”\n", " Evidence\n", "\n", "\n", @@ -1356,12 +2491,22 @@ "\n", "\n", "\n", - " Mr. Balbo, Gregory McMichael’s lawyer, noted that Ms. Ballesteros continued to speak with Mr. McMichael after the incident and that his client rented to African Americans. Another witness, Carole Sears, said she recalled hearing Gregory McMichael “rant” about Black people after finding out that Julian Bond, the civil rights leader, had died. At the time, Mr. McMichael was an investigator for the local district attorney’s office and she was riding in his car because of her involvement in a legal matter in Brunswick, Ga. Ms. Sears was upset about Mr. Bond’s death, while Mr. McMichael was pleased, she said. “I wish that guy had been in the ground years ago,” Ms. Sears recalled Mr. McMichael saying. “All those Blacks are nothing but trouble and I wish they’d all die.”\n", + " Mr. Balbo, Gregory McMichael’s lawyer, noted that Ms. Ballesteros continued to speak with Mr. McMichael after the incident and that his client rented to African Americans.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Another witness, Carole Sears, said she recalled hearing Gregory McMichael “rant” about Black people after finding out that Julian Bond, the civil rights leader, had died. At the time, Mr. McMichael was an investigator for the local district attorney’s office and she was riding in his car because of her involvement in a legal matter in Brunswick, Ga. Ms. Sears was upset about Mr. Bond’s death, while Mr. McMichael was pleased, she said. “I wish that guy had been in the ground years ago,” Ms. Sears recalled Mr. McMichael saying. “All those Blacks are nothing but trouble and I wish they’d all die.”\n", " Evidence\n", "\n", "\n", "\n", - " Ms. Sears said she did not speak for the remainder of the ride because she was afraid. In their opening statements this week, defense lawyers criticized the racist language their clients used, but they also insisted that use of such language is not evidence that the men killed Mr. Arbery because he was Black.\n", + " Ms. Sears said she did not speak for the remainder of the ride because she was afraid.\n", + " Claim\n", + "\n", + "\n", + "\n", + " In their opening statements this week, defense lawyers criticized the racist language their clients used, but they also insisted that use of such language is not evidence that the men killed Mr. Arbery because he was Black.\n", " Claim\n", "\n", "\n", @@ -1395,7 +2540,7 @@ { "data": { "text/html": [ - "

nytimes\\ai-education-neural-networks.txt

" + "

ai-education-neural-networks.txt

" ], "text/plain": [ "" @@ -1415,7 +2560,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "6f94f8a75895464d9331b9de8a19c5df", + "model_id": "1afa6d2cf2c74dcfa3c70966bd539c31", "version_major": 2, "version_minor": 0 }, @@ -1436,7 +2581,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "662c7a1078904846b702908a39748124", + "model_id": "33c8f0a7949340bd902985552ca16a2e", "version_major": 2, "version_minor": 0 }, @@ -1472,8 +2617,57 @@ "Researchers have been building automated teaching tools since the 1970s, including robo-tutors and computerized essay graders. But progress has been slow. Building a system that can simply and clearly guide students often requires years of work, with designers struggling to define each tiny piece of behavior. {'label': 'Evidence', 'score': 0.8063941597938538}\n", "Using the methods that drove the Stanford project, researchers can significantly accelerate this work. “There is real power in data,” said Peter Foltz, a professor at the University of Colorado who has spent decades developing systems that can automatically grade prose essays. “As machines get more examples, they can generalize.” {'label': 'Evidence', 'score': 0.9277411103248596}\n", "Prose may seem very different from computer code. But in this case, it is not. In recent years, researchers have built technology that can analyze natural language in much the same way the Stanford system analyzes computer code. {'label': 'Rebuttal', 'score': 0.36829879879951477}\n", - "Although the Stanford system provides sharp feedback, it is useless if students have any questions about where they went wrong. But for Chris Piech, the Stanford professor who helped oversee the class, replacing instructors is not the goal. {'label': 'Rebuttal', 'score': 0.3199341595172882}\n", - "The new automated system is a way of reaching more students than instructors could otherwise reach on their own. And if it can clearly pinpoint problems in student code, showing the specific coding mistakes they are making and how frequently they are making them, it could help instructors better understand which students need help and how to help them. As Dr. Piech put it: “The future is symbiotic — teachers and A.I. working together.” {'label': 'Concluding Statement', 'score': 0.7887545228004456}\n" + "Although the Stanford system provides sharp feedback, it is useless if students have any questions about where they went wrong. But for Chris Piech, the Stanford professor who helped oversee the class, replacing instructors is not the goal. {'label': 'Rebuttal', 'score': 0.3199341297149658}\n", + "The new automated system is a way of reaching more students than instructors could otherwise reach on their own. And if it can clearly pinpoint problems in student code, showing the specific coding mistakes they are making and how frequently they are making them, it could help instructors better understand which students need help and how to help them. As Dr. Piech put it: “The future is symbiotic — teachers and A.I. working together.” {'label': 'Concluding Statement', 'score': 0.7887544631958008}\n", + " text label \\\n", + "0 This spring, Philips Pham was among the more t... Evidence \n", + "1 Four weeks in, Mr. Pham, a 23-year-old student... Evidence \n", + "2 It applauded his work, but also pinpointed an ... Evidence \n", + "3 The feedback was just what Mr. Pham needed. An... Claim \n", + "4 During this online class, a new kind of artifi... Evidence \n", + "5 “We’ve deployed this in the real world, and it... Evidence \n", + "6 Dr. Finn and her team designed this system sol... Claim \n", + "7 Oren Etzioni, chief executive of the Allen Ins... Evidence \n", + "8 Still, Dr. Etzioni called the Stanford project... Counterclaim \n", + "9 The online course taken by Mr. Pham and thousa... Evidence \n", + "10 This decade of data is what drove the universi... Claim \n", + "11 Dr. Finn and her team built a neural network, ... Evidence \n", + "12 The Stanford system spent hours analyzing exam... Evidence \n", + "13 “It sees many kinds of problems,” said Mike Wu... Evidence \n", + "14 This spring, the system provided 16,000 pieces... Evidence \n", + "15 Mr. Pham, an engineering student at Lund Unive... Evidence \n", + "16 The technology was effective because its role ... Claim \n", + "17 But given the right data, neural networks can ... Rebuttal \n", + "18 Researchers have been building automated teach... Evidence \n", + "19 Using the methods that drove the Stanford proj... Evidence \n", + "20 Prose may seem very different from computer co... Rebuttal \n", + "21 Although the Stanford system provides sharp fe... Rebuttal \n", + "22 The new automated system is a way of reaching ... Concluding Statement \n", + "\n", + " score \n", + "0 0.686955 \n", + "1 0.898987 \n", + "2 0.360425 \n", + "3 0.757155 \n", + "4 0.593530 \n", + "5 0.419085 \n", + "6 0.433657 \n", + "7 0.511569 \n", + "8 0.396794 \n", + "9 0.848132 \n", + "10 0.787296 \n", + "11 0.985596 \n", + "12 0.878227 \n", + "13 0.524027 \n", + "14 0.936281 \n", + "15 0.974036 \n", + "16 0.602217 \n", + "17 0.802572 \n", + "18 0.806394 \n", + "19 0.927741 \n", + "20 0.368299 \n", + "21 0.319934 \n", + "22 0.788754 \n" ] }, { @@ -1481,7 +2675,17 @@ "text/html": [ "
\n", "\n", - " This spring, Philips Pham was among the more than 12,000 people in 148 countries who took an online class called Code in Place. Run by Stanford University, the course taught the fundamentals of computer programming. Four weeks in, Mr. Pham, a 23-year-old student living at the southern tip of Sweden, typed his way through the first test, trying to write a program that could draw waves of tiny blue diamonds across a black-and-white grid. Several days later, he received a detailed critique of his code. It applauded his work, but also pinpointed an error. “Seems like you have a small mistake,” the critique noted. “Perhaps you are running into the wall after drawing the third wave.”\n", + " This spring, Philips Pham was among the more than 12,000 people in 148 countries who took an online class called Code in Place. Run by Stanford University, the course taught the fundamentals of computer programming.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Four weeks in, Mr. Pham, a 23-year-old student living at the southern tip of Sweden, typed his way through the first test, trying to write a program that could draw waves of tiny blue diamonds across a black-and-white grid. Several days later, he received a detailed critique of his code.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " It applauded his work, but also pinpointed an error. “Seems like you have a small mistake,” the critique noted. “Perhaps you are running into the wall after drawing the third wave.”\n", " Evidence\n", "\n", "\n", @@ -1491,7 +2695,12 @@ "\n", "\n", "\n", - " During this online class, a new kind of artificial intelligence offered feedback to Mr. Pham and thousands of other students who took the same test. Built by a team of Stanford researchers, this automated system points to a new future for online education, which can so easily reach thousands of people but does not always provide the guidance that many students need and crave. “We’ve deployed this in the real world, and it works better than we expected,” said Chelsea Finn, a Stanford professor and A.I. researcher who helped build the new system.\n", + " During this online class, a new kind of artificial intelligence offered feedback to Mr. Pham and thousands of other students who took the same test. Built by a team of Stanford researchers, this automated system points to a new future for online education, which can so easily reach thousands of people but does not always provide the guidance that many students need and crave.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “We’ve deployed this in the real world, and it works better than we expected,” said Chelsea Finn, a Stanford professor and A.I. researcher who helped build the new system.\n", " Evidence\n", "\n", "\n", @@ -1521,7 +2730,27 @@ "\n", "\n", "\n", - " Dr. Finn and her team built a neural network, a mathematical system that can learn skills from vast amounts of data. By pinpointing patterns in thousands of cat photos, a neural network can learn to identify a cat. By analyzing hundreds of old phone calls, it can learn to recognize spoken words. Or, by examining the way teaching assistants evaluate coding tests, it can learn to evaluate these tests on its own. The Stanford system spent hours analyzing examples from old midterms, learning from a decade of possibilities. Then it was ready to learn more. When given just a handful of extra examples from the new exam offered this spring, it could quickly grasp the task at hand. “It sees many kinds of problems,” said Mike Wu, another researcher who worked on the project. “Then it can adapt to problems it has never seen before.” This spring, the system provided 16,000 pieces of feedback, and students agreed with the feedback 97.9 percent of the time, according to a study by the Stanford researchers. By comparison, students agreed with the feedback from human instructors 96.7 percent of the time. Mr. Pham, an engineering student at Lund University in Sweden, was surprised the technology worked so well. Although the automated tool was unable to evaluate one of his programs (presumably because he had written a snippet of code unlike anything the A.I. had ever seen), it both identified specific bugs in his code, including what is known in computer programming and mathematics as a fence post error, and suggested ways of fixing them. “It is seldom you receive such well thought out feedback,” Mr. Pham said.\n", + " Dr. Finn and her team built a neural network, a mathematical system that can learn skills from vast amounts of data. By pinpointing patterns in thousands of cat photos, a neural network can learn to identify a cat. By analyzing hundreds of old phone calls, it can learn to recognize spoken words. Or, by examining the way teaching assistants evaluate coding tests, it can learn to evaluate these tests on its own.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The Stanford system spent hours analyzing examples from old midterms, learning from a decade of possibilities. Then it was ready to learn more. When given just a handful of extra examples from the new exam offered this spring, it could quickly grasp the task at hand.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “It sees many kinds of problems,” said Mike Wu, another researcher who worked on the project. “Then it can adapt to problems it has never seen before.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " This spring, the system provided 16,000 pieces of feedback, and students agreed with the feedback 97.9 percent of the time, according to a study by the Stanford researchers. By comparison, students agreed with the feedback from human instructors 96.7 percent of the time.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mr. Pham, an engineering student at Lund University in Sweden, was surprised the technology worked so well. Although the automated tool was unable to evaluate one of his programs (presumably because he had written a snippet of code unlike anything the A.I. had ever seen), it both identified specific bugs in his code, including what is known in computer programming and mathematics as a fence post error, and suggested ways of fixing them. “It is seldom you receive such well thought out feedback,” Mr. Pham said.\n", " Evidence\n", "\n", "\n", @@ -1536,12 +2765,22 @@ "\n", "\n", "\n", - " Researchers have been building automated teaching tools since the 1970s, including robo-tutors and computerized essay graders. But progress has been slow. Building a system that can simply and clearly guide students often requires years of work, with designers struggling to define each tiny piece of behavior. Using the methods that drove the Stanford project, researchers can significantly accelerate this work. “There is real power in data,” said Peter Foltz, a professor at the University of Colorado who has spent decades developing systems that can automatically grade prose essays. “As machines get more examples, they can generalize.”\n", + " Researchers have been building automated teaching tools since the 1970s, including robo-tutors and computerized essay graders. But progress has been slow. Building a system that can simply and clearly guide students often requires years of work, with designers struggling to define each tiny piece of behavior.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Using the methods that drove the Stanford project, researchers can significantly accelerate this work. “There is real power in data,” said Peter Foltz, a professor at the University of Colorado who has spent decades developing systems that can automatically grade prose essays. “As machines get more examples, they can generalize.”\n", " Evidence\n", "\n", "\n", "\n", - " Prose may seem very different from computer code. But in this case, it is not. In recent years, researchers have built technology that can analyze natural language in much the same way the Stanford system analyzes computer code. Although the Stanford system provides sharp feedback, it is useless if students have any questions about where they went wrong. But for Chris Piech, the Stanford professor who helped oversee the class, replacing instructors is not the goal.\n", + " Prose may seem very different from computer code. But in this case, it is not. In recent years, researchers have built technology that can analyze natural language in much the same way the Stanford system analyzes computer code.\n", + " Rebuttal\n", + "\n", + "\n", + "\n", + " Although the Stanford system provides sharp feedback, it is useless if students have any questions about where they went wrong. But for Chris Piech, the Stanford professor who helped oversee the class, replacing instructors is not the goal.\n", " Rebuttal\n", "\n", "\n", @@ -1570,7 +2809,7 @@ { "data": { "text/html": [ - "

nytimes\\aids-pandemic-covid.txt

" + "

aids-pandemic-covid.txt

" ], "text/plain": [ "" @@ -1590,7 +2829,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "f241f9d3876745568ff4c363b91776d8", + "model_id": "57030147f33a4465877663bb3eeb395e", "version_major": 2, "version_minor": 0 }, @@ -1611,7 +2850,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "bce2276930f142948053b257573826dc", + "model_id": "dd7192b4c67048a8b3f35db731c0a7ec", "version_major": 2, "version_minor": 0 }, @@ -1636,7 +2875,32 @@ "And once more, the desire to get back to normal and to declare the end of another pandemic, at least for some of us, is palpable after more than two years of death, suffering and hardship. Governors’ recent lifting of mask mandates reflects that. There’s a demobilization that many suggest is contingent on what might happen with new variants but could easily become permanent. Much, if not most, of the country has moved on or wants to move on from Covid-19. {'label': 'Evidence', 'score': 0.9198237657546997}\n", "It’s also clear that SARS-CoV-2 will be with us for the foreseeable future and that it, too, will follow the fault lines of social and economic inequality in America. It will persist in countries — likely many in Africa — where people have insufficient access to coronavirus vaccines. Some will blame low vaccination rates on the hesitancy of those nations’ residents rather than drug companies withholding their vaccine technology to allow for global scale-up. {'label': 'Evidence', 'score': 0.9255291819572449}\n", "There has to be a better way out of the rubble of the past two years. What would it mean to move into a future in which a common fate mattered as much as our own? It would mean no one was disposable. {'label': 'Concluding Statement', 'score': 0.3119671642780304}\n", - "The lesson of the AIDS pandemic is that it’s easy to leave people behind, even if it is at the cost of our collective peril. Coronavirus variants can develop in people with weakened immune systems who struggle to clear infections on their own, like those with untreated H.I.V. Think of the home we’ve then made for viruses like SARS-CoV-2 by impeding access to vaccines and by allowing millions to go without AIDS treatment even now. Variants can emerge because of our desire to put it all behind us. No one is truly safe until we all are. Yet might we act to save millions of people not just in the interest of self-preservation but also simply because it’s the right thing to do? That would be a signal that this pandemic has changed us. For good. {'label': 'Evidence', 'score': 0.8755511045455933}\n" + "The lesson of the AIDS pandemic is that it’s easy to leave people behind, even if it is at the cost of our collective peril. Coronavirus variants can develop in people with weakened immune systems who struggle to clear infections on their own, like those with untreated H.I.V. Think of the home we’ve then made for viruses like SARS-CoV-2 by impeding access to vaccines and by allowing millions to go without AIDS treatment even now. Variants can emerge because of our desire to put it all behind us. No one is truly safe until we all are. Yet might we act to save millions of people not just in the interest of self-preservation but also simply because it’s the right thing to do? That would be a signal that this pandemic has changed us. For good. {'label': 'Evidence', 'score': 0.8755511045455933}\n", + " text label \\\n", + "0 The early 1990s were in many ways the most ter... Evidence \n", + "1 My cousin Carl died from AIDS-related lymphoma... Evidence \n", + "2 But then we got lucky. In 1996 a new generatio... Rebuttal \n", + "3 In 1996 the writer Andrew Sullivan came to a m... Evidence \n", + "4 Of course, as Mr. Sullivan recognized, the AID... Evidence \n", + "5 The virus took root in the African American an... Evidence \n", + "6 Nearly three decades later, we’re in the midst... Evidence \n", + "7 And once more, the desire to get back to norma... Evidence \n", + "8 It’s also clear that SARS-CoV-2 will be with u... Evidence \n", + "9 There has to be a better way out of the rubble... Concluding Statement \n", + "10 The lesson of the AIDS pandemic is that it’s e... Evidence \n", + "\n", + " score \n", + "0 0.907742 \n", + "1 0.914715 \n", + "2 0.732901 \n", + "3 0.897637 \n", + "4 0.592562 \n", + "5 0.993661 \n", + "6 0.548472 \n", + "7 0.919824 \n", + "8 0.925529 \n", + "9 0.311967 \n", + "10 0.875551 \n" ] }, { @@ -1644,17 +2908,47 @@ "text/html": [ "
\n", "\n", - " The early 1990s were in many ways the most terrible of those first years of the AIDS epidemic in America. Research on the disease was in high gear, but drug after drug failed to stop H.I.V. Funerals for friends and family in their 20s, 30s, 40s and 50s continued unabated, and many of us at risk for getting sick had given up hope of a normal life. My friends and I, most of us just a few years out of college, lived in the moment because we weren’t sure of how much time we had left. My cousin Carl died from AIDS-related lymphoma in July 1995. That was also the year I found out that I, too, was H.I.V. positive. I wondered if Carl’s fate might be my own soon enough.\n", + " The early 1990s were in many ways the most terrible of those first years of the AIDS epidemic in America. Research on the disease was in high gear, but drug after drug failed to stop H.I.V. Funerals for friends and family in their 20s, 30s, 40s and 50s continued unabated, and many of us at risk for getting sick had given up hope of a normal life. My friends and I, most of us just a few years out of college, lived in the moment because we weren’t sure of how much time we had left.\n", " Evidence\n", "\n", "\n", - "\n", - " But then we got lucky. In 1996 a new generation of treatments called protease inhibitors emerged that were able to control H.I.V. Doctors talked about the Lazarus effect: watching their patients go from near death to health. I enrolled in a clinical trial and started taking the drugs that year. I am alive because of them.\n", + "\n", + " My cousin Carl died from AIDS-related lymphoma in July 1995. That was also the year I found out that I, too, was H.I.V. positive. I wondered if Carl’s fate might be my own soon enough.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " But then we got lucky. In 1996 a new generation of treatments called protease inhibitors emerged that were able to control H.I.V. Doctors talked about the Lazarus effect: watching their patients go from near death to health. I enrolled in a clinical trial and started taking the drugs that year. I am alive because of them.\n", " Rebuttal\n", "\n", "\n", "\n", - " In 1996 the writer Andrew Sullivan came to a meeting of an AIDS activist group I co-founded a few years earlier to push AIDS drug development and research forward. It was just after the data on these protease inhibitors had been unveiled at a major scientific conference. We were known as a crew of hard-core skeptics of claims by drug companies and scientists, but the data clearly showed these drugs were revolutionary. They would change the trajectory of the epidemic for many people, including me. Mr. Sullivan went on to write a piece for The New York Times Magazine titled “When Plagues End,” which was published in November of that year and rightly noted that AIDS was no longer a death sentence for all infected by the virus but a chronic manageable illness. Of course, as Mr. Sullivan recognized, the AIDS pandemic didn’t fully end. In a way it did end for many white middle-class gay men like us; we had access to these drugs and to good medical care overall and could start to think about getting back to normal. But AIDS still lingered and flourished in America in places that were easy for people like us to ignore. The virus took root in the African American and Latino communities, particularly among young gay men. It moved from New York City and San Francisco to the South and into rural areas, tracing the geography of health disparities in this country. H.I.V. also continued to ravage Africa, and the pills I was taking wouldn’t be available widely there for several years, until activists shamed the world into taking notice. Rather than acknowledge that high drug prices were keeping the pills out of the hands of others, one U.S. official said that Africans couldn’t tell time and thus the AIDS drugs would do no good there. Nearly three decades later, we’re in the midst of a different pandemic. And we’ve gotten lucky again: We have vaccines for Covid-19, and they are also revolutionary. The pandemic has changed. And once more, the desire to get back to normal and to declare the end of another pandemic, at least for some of us, is palpable after more than two years of death, suffering and hardship. Governors’ recent lifting of mask mandates reflects that. There’s a demobilization that many suggest is contingent on what might happen with new variants but could easily become permanent. Much, if not most, of the country has moved on or wants to move on from Covid-19. It’s also clear that SARS-CoV-2 will be with us for the foreseeable future and that it, too, will follow the fault lines of social and economic inequality in America. It will persist in countries — likely many in Africa — where people have insufficient access to coronavirus vaccines. Some will blame low vaccination rates on the hesitancy of those nations’ residents rather than drug companies withholding their vaccine technology to allow for global scale-up.\n", + " In 1996 the writer Andrew Sullivan came to a meeting of an AIDS activist group I co-founded a few years earlier to push AIDS drug development and research forward. It was just after the data on these protease inhibitors had been unveiled at a major scientific conference. We were known as a crew of hard-core skeptics of claims by drug companies and scientists, but the data clearly showed these drugs were revolutionary. They would change the trajectory of the epidemic for many people, including me. Mr. Sullivan went on to write a piece for The New York Times Magazine titled “When Plagues End,” which was published in November of that year and rightly noted that AIDS was no longer a death sentence for all infected by the virus but a chronic manageable illness.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Of course, as Mr. Sullivan recognized, the AIDS pandemic didn’t fully end. In a way it did end for many white middle-class gay men like us; we had access to these drugs and to good medical care overall and could start to think about getting back to normal. But AIDS still lingered and flourished in America in places that were easy for people like us to ignore.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The virus took root in the African American and Latino communities, particularly among young gay men. It moved from New York City and San Francisco to the South and into rural areas, tracing the geography of health disparities in this country. H.I.V. also continued to ravage Africa, and the pills I was taking wouldn’t be available widely there for several years, until activists shamed the world into taking notice. Rather than acknowledge that high drug prices were keeping the pills out of the hands of others, one U.S. official said that Africans couldn’t tell time and thus the AIDS drugs would do no good there.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Nearly three decades later, we’re in the midst of a different pandemic. And we’ve gotten lucky again: We have vaccines for Covid-19, and they are also revolutionary. The pandemic has changed.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " And once more, the desire to get back to normal and to declare the end of another pandemic, at least for some of us, is palpable after more than two years of death, suffering and hardship. Governors’ recent lifting of mask mandates reflects that. There’s a demobilization that many suggest is contingent on what might happen with new variants but could easily become permanent. Much, if not most, of the country has moved on or wants to move on from Covid-19.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " It’s also clear that SARS-CoV-2 will be with us for the foreseeable future and that it, too, will follow the fault lines of social and economic inequality in America. It will persist in countries — likely many in Africa — where people have insufficient access to coronavirus vaccines. Some will blame low vaccination rates on the hesitancy of those nations’ residents rather than drug companies withholding their vaccine technology to allow for global scale-up.\n", " Evidence\n", "\n", "\n", @@ -1688,7 +2982,7 @@ { "data": { "text/html": [ - "

nytimes\\allison-gollust-cnn-cuomo.txt

" + "

allison-gollust-cnn-cuomo.txt

" ], "text/plain": [ "" @@ -1708,7 +3002,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "9966bf7f2ec74a18ba514a4dd5414751", + "model_id": "9f323b48713e4a7fb98fe2e686b79fa0", "version_major": 2, "version_minor": 0 }, @@ -1729,7 +3023,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "d127e474c1fb477cb1d1991b316a7b94", + "model_id": "e20f8d8b3ea54f6bbbb46bde971e2bd8", "version_major": 2, "version_minor": 0 }, @@ -1752,14 +3046,14 @@ "The episode is the latest example of how closely entwined CNN’s leadership was with one of the country’s most prominent Democratic politicians. {'label': 'Claim', 'score': 0.7243562936782837}\n", "Producers and bookers for television news shows routinely talk with guests before their scheduled appearances and discuss questions and topics that are likely to come up on air. It is unusual, though, for a senior executive to be involved in that pre-interview process — especially when that executive previously worked for the person who’s being interviewed. {'label': 'Evidence', 'score': 0.8450614213943481}\n", "Risa Heller, a spokeswoman for Ms. Gollust, said the communications with the governor were appropriate. Ms. Gollust “in no way suggested that inclusion of these topics was a condition of the interview, nor did she suggest the interview should be limited to these subjects,” Ms. Heller said. {'label': 'Evidence', 'score': 0.7667871713638306}\n", - "She added: “WarnerMedia relying on this everyday practice as justification for dismissing Allison demonstrates how ignorant they are of journalistic practices, and further proves that her dismissal is nothing more than retaliation.” {'label': 'Evidence', 'score': 0.5841470956802368}\n", + "She added: “WarnerMedia relying on this everyday practice as justification for dismissing Allison demonstrates how ignorant they are of journalistic practices, and further proves that her dismissal is nothing more than retaliation.” {'label': 'Evidence', 'score': 0.5841471552848816}\n", "CNN, whose slogan is “the most trusted name in news,” is facing mounting questions about how its senior executives and its top-rated anchor — Chris Cuomo, the governor’s younger brother — steered coverage of Governor Cuomo, who resigned last summer. {'label': 'Evidence', 'score': 0.5109984278678894}\n", "In a memo to employees this week, Jason Kilar, the chief executive of WarnerMedia, which is CNN’s parent company, wrote that Ms. Gollust was resigning after the internal investigation found unspecified “violations of company policies, including CNN’s news standards and practices,” by her, Mr. Zucker and Chris Cuomo. {'label': 'Evidence', 'score': 0.9016107320785522}\n", "Her resignation was the latest blow to CNN, which was already reeling in the wake of Mr. Zucker’s abrupt ouster two weeks earlier. Mr. Zucker said he was leaving because he had failed to disclose a romantic relationship with Ms. Gollust. {'label': 'Evidence', 'score': 0.7394388318061829}\n", "The internal review, conducted by the law firm of Cravath Swaine & Moore, began last fall with an examination of allegations of workplace misconduct against Chris Cuomo. {'label': 'Claim', 'score': 0.5007926821708679}\n", "Mr. Zucker fired Mr. Cuomo in December, days after the network received a letter claiming that Mr. Cuomo had years earlier sexually assaulted a woman and that he later offered to air a flattering CNN segment about her employer. The woman perceived that as an effort to buy her silence. Mr. Cuomo has denied the allegations. {'label': 'Evidence', 'score': 0.9296104907989502}\n", "Mr. Cuomo also came under fire for having closely advised his brother on how to fend off a sexual misconduct scandal that ultimately forced the governor to resign. {'label': 'Claim', 'score': 0.4665948450565338}\n", - "After Mr. Cuomo’s departure from CNN, the Cravath review took on a life of its own, and it quickly upended the news network. {'label': 'Claim', 'score': 0.5201113820075989}\n", + "After Mr. Cuomo’s departure from CNN, the Cravath review took on a life of its own, and it quickly upended the news network. {'label': 'Claim', 'score': 0.5201115012168884}\n", "Investigators learned that Mr. Zucker and Ms. Gollust, who had worked closely together on and off for more than two decades, were having a romantic affair that had not been disclosed to human resources or other executives at WarnerMedia. {'label': 'Evidence', 'score': 0.5987403392791748}\n", "The Cravath investigators also uncovered extensive written communications between Governor Cuomo and Ms. Gollust, who had briefly worked for the governor in late 2012 and early 2013, the people said. {'label': 'Evidence', 'score': 0.683821439743042}\n", "It wasn’t clear what all of those communications were about. {'label': 'Claim', 'score': 0.7091872096061707}\n", @@ -1786,7 +3080,45 @@ "output_type": "stream", "text": [ "The internal investigation’s findings are especially notable because CNN journalists have repeatedly attacked Fox News personalities like Sean Hannity for having an overly close relationship with Republican leaders, in particular Mr. Trump. {'label': 'Evidence', 'score': 0.5319948196411133}\n", - "Mr. Trump, in turn, repeatedly accused CNN of being a mouthpiece for Democrats. {'label': 'Claim', 'score': 0.559249222278595}\n" + "Mr. Trump, in turn, repeatedly accused CNN of being a mouthpiece for Democrats. {'label': 'Claim', 'score': 0.559249222278595}\n", + " text label score\n", + "0 On a Saturday in March 2020, as Covid-19 was i... Evidence 0.662547\n", + "1 It was a newsworthy topic, but its path onto v... Claim 0.419594\n", + "2 Before the interview, Governor Cuomo had told ... Evidence 0.969804\n", + "3 “Done,” she wrote. Claim 0.666134\n", + "4 On Tuesday, Ms. Gollust was forced to resign f... Evidence 0.922566\n", + "5 The episode is the latest example of how close... Claim 0.724356\n", + "6 Producers and bookers for television news show... Evidence 0.845061\n", + "7 Risa Heller, a spokeswoman for Ms. Gollust, sa... Evidence 0.766787\n", + "8 She added: “WarnerMedia relying on this everyd... Evidence 0.584147\n", + "9 CNN, whose slogan is “the most trusted name in... Evidence 0.510998\n", + "10 In a memo to employees this week, Jason Kilar,... Evidence 0.901611\n", + "11 Her resignation was the latest blow to CNN, wh... Evidence 0.739439\n", + "12 The internal review, conducted by the law firm... Claim 0.500793\n", + "13 Mr. Zucker fired Mr. Cuomo in December, days a... Evidence 0.929610\n", + "14 Mr. Cuomo also came under fire for having clos... Claim 0.466595\n", + "15 After Mr. Cuomo’s departure from CNN, the Crav... Claim 0.520112\n", + "16 Investigators learned that Mr. Zucker and Ms. ... Evidence 0.598740\n", + "17 The Cravath investigators also uncovered exten... Evidence 0.683821\n", + "18 It wasn’t clear what all of those communicatio... Claim 0.709187\n", + "19 But investigators found messages during the pa... Rebuttal 0.861508\n", + "20 They said those topics included his recent pho... Evidence 0.733211\n", + "21 Ms. Gollust then sent messages to CNN staff re... Evidence 0.592160\n", + "22 The Cravath lawyers reviewed broadcast transcr... Evidence 0.517292\n", + "23 Ms. Heller, the spokeswoman for Ms. Gollust, s... Evidence 0.855992\n", + "24 It was unclear whether Mr. Zucker knew that Ms... Claim 0.506659\n", + "25 A spokesman for WarnerMedia referred The New Y... Evidence 0.673636\n", + "26 The back-to-back exits of Mr. Zucker and Ms. G... Claim 0.627177\n", + "27 WarnerMedia, which is owned by AT&T, is set to... Claim 0.554435\n", + "28 WarnerMedia has tried to keep a lid on the int... Evidence 0.504221\n", + "29 Even in conversations with CNN staff, executiv... Evidence 0.514773\n", + "30 In a pair of Zoom meetings on Wednesday with C... Evidence 0.939309\n", + "31 WarnerMedia’s top communications official, Chr... Evidence 0.661964\n", + "32 When employees pressed for more details, Ms. H... Claim 0.725704\n", + "33 “Actions were taken to defend the institution ... Claim 0.512088\n", + "34 Ms. Haubegger urged CNN’s public relations tea... Evidence 0.726324\n", + "35 The internal investigation’s findings are espe... Evidence 0.531995\n", + "36 Mr. Trump, in turn, repeatedly accused CNN of ... Claim 0.559249\n" ] }, { @@ -1824,7 +3156,32 @@ "
\n", "\n", "\n", - " Producers and bookers for television news shows routinely talk with guests before their scheduled appearances and discuss questions and topics that are likely to come up on air. It is unusual, though, for a senior executive to be involved in that pre-interview process — especially when that executive previously worked for the person who’s being interviewed. Risa Heller, a spokeswoman for Ms. Gollust, said the communications with the governor were appropriate. Ms. Gollust “in no way suggested that inclusion of these topics was a condition of the interview, nor did she suggest the interview should be limited to these subjects,” Ms. Heller said. She added: “WarnerMedia relying on this everyday practice as justification for dismissing Allison demonstrates how ignorant they are of journalistic practices, and further proves that her dismissal is nothing more than retaliation.” CNN, whose slogan is “the most trusted name in news,” is facing mounting questions about how its senior executives and its top-rated anchor — Chris Cuomo, the governor’s younger brother — steered coverage of Governor Cuomo, who resigned last summer. In a memo to employees this week, Jason Kilar, the chief executive of WarnerMedia, which is CNN’s parent company, wrote that Ms. Gollust was resigning after the internal investigation found unspecified “violations of company policies, including CNN’s news standards and practices,” by her, Mr. Zucker and Chris Cuomo. Her resignation was the latest blow to CNN, which was already reeling in the wake of Mr. Zucker’s abrupt ouster two weeks earlier. Mr. Zucker said he was leaving because he had failed to disclose a romantic relationship with Ms. Gollust.\n", + " Producers and bookers for television news shows routinely talk with guests before their scheduled appearances and discuss questions and topics that are likely to come up on air. It is unusual, though, for a senior executive to be involved in that pre-interview process — especially when that executive previously worked for the person who’s being interviewed.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Risa Heller, a spokeswoman for Ms. Gollust, said the communications with the governor were appropriate. Ms. Gollust “in no way suggested that inclusion of these topics was a condition of the interview, nor did she suggest the interview should be limited to these subjects,” Ms. Heller said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " She added: “WarnerMedia relying on this everyday practice as justification for dismissing Allison demonstrates how ignorant they are of journalistic practices, and further proves that her dismissal is nothing more than retaliation.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " CNN, whose slogan is “the most trusted name in news,” is facing mounting questions about how its senior executives and its top-rated anchor — Chris Cuomo, the governor’s younger brother — steered coverage of Governor Cuomo, who resigned last summer.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In a memo to employees this week, Jason Kilar, the chief executive of WarnerMedia, which is CNN’s parent company, wrote that Ms. Gollust was resigning after the internal investigation found unspecified “violations of company policies, including CNN’s news standards and practices,” by her, Mr. Zucker and Chris Cuomo.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Her resignation was the latest blow to CNN, which was already reeling in the wake of Mr. Zucker’s abrupt ouster two weeks earlier. Mr. Zucker said he was leaving because he had failed to disclose a romantic relationship with Ms. Gollust.\n", " Evidence\n", "\n", "\n", @@ -1839,12 +3196,22 @@ "\n", "\n", "\n", - " Mr. Cuomo also came under fire for having closely advised his brother on how to fend off a sexual misconduct scandal that ultimately forced the governor to resign. After Mr. Cuomo’s departure from CNN, the Cravath review took on a life of its own, and it quickly upended the news network.\n", + " Mr. Cuomo also came under fire for having closely advised his brother on how to fend off a sexual misconduct scandal that ultimately forced the governor to resign.\n", + " Claim\n", + "\n", + "\n", + "\n", + " After Mr. Cuomo’s departure from CNN, the Cravath review took on a life of its own, and it quickly upended the news network.\n", " Claim\n", "\n", "\n", "\n", - " Investigators learned that Mr. Zucker and Ms. Gollust, who had worked closely together on and off for more than two decades, were having a romantic affair that had not been disclosed to human resources or other executives at WarnerMedia. The Cravath investigators also uncovered extensive written communications between Governor Cuomo and Ms. Gollust, who had briefly worked for the governor in late 2012 and early 2013, the people said.\n", + " Investigators learned that Mr. Zucker and Ms. Gollust, who had worked closely together on and off for more than two decades, were having a romantic affair that had not been disclosed to human resources or other executives at WarnerMedia.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The Cravath investigators also uncovered extensive written communications between Governor Cuomo and Ms. Gollust, who had briefly worked for the governor in late 2012 and early 2013, the people said.\n", " Evidence\n", "\n", "\n", @@ -1859,7 +3226,22 @@ "\n", "\n", "\n", - " They said those topics included his recent phone conversation with Mr. Trump and the effect of New York’s being placed under lockdown. Ms. Gollust then sent messages to CNN staff requesting that the governor be asked about those subjects. The Cravath lawyers reviewed broadcast transcripts that showed that the anchor asked about the subjects that Ms. Gollust had put forward, the people said. Ms. Heller, the spokeswoman for Ms. Gollust, said that Ms. Gollust “acted as the principal booker for Governor Cuomo during the early days of the pandemic” and that her role was “well known by the entire network.”\n", + " They said those topics included his recent phone conversation with Mr. Trump and the effect of New York’s being placed under lockdown.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Ms. Gollust then sent messages to CNN staff requesting that the governor be asked about those subjects.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The Cravath lawyers reviewed broadcast transcripts that showed that the anchor asked about the subjects that Ms. Gollust had put forward, the people said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Ms. Heller, the spokeswoman for Ms. Gollust, said that Ms. Gollust “acted as the principal booker for Governor Cuomo during the early days of the pandemic” and that her role was “well known by the entire network.”\n", " Evidence\n", "\n", "\n", @@ -1874,22 +3256,52 @@ "\n", "\n", "\n", - " The back-to-back exits of Mr. Zucker and Ms. Gollust have raised questions about the future direction of CNN. WarnerMedia, which is owned by AT&T, is set to be spun off and merged with Discovery Inc. in the coming months.\n", + " The back-to-back exits of Mr. Zucker and Ms. Gollust have raised questions about the future direction of CNN.\n", + " Claim\n", + "\n", + "\n", + "\n", + " WarnerMedia, which is owned by AT&T, is set to be spun off and merged with Discovery Inc. in the coming months.\n", " Claim\n", "\n", "\n", "\n", - " WarnerMedia has tried to keep a lid on the internal drama, initially remaining tight-lipped about the circumstances of Mr. Zucker’s departure and then issuing a short, vaguely worded memo on Tuesday night about Ms. Gollust’s departure and unspecified journalistic lapses. Even in conversations with CNN staff, executives and newsroom leaders have been mostly mum, to the mounting frustration of the network’s journalists and other employees. In a pair of Zoom meetings on Wednesday with CNN employees, Michael Bass and Ken Jautz, who stepped in as two of the network’s interim leaders after Mr. Zucker’s departure, said Ms. Gollust had committed serious violations of the network’s journalistic standards, four people who attended the virtual meetings said. WarnerMedia’s top communications official, Christy Haubegger, also said in a staff meeting that Ms. Gollust’s transgressions had “to do with the Cuomos,” three people said.\n", + " WarnerMedia has tried to keep a lid on the internal drama, initially remaining tight-lipped about the circumstances of Mr. Zucker’s departure and then issuing a short, vaguely worded memo on Tuesday night about Ms. Gollust’s departure and unspecified journalistic lapses.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Even in conversations with CNN staff, executives and newsroom leaders have been mostly mum, to the mounting frustration of the network’s journalists and other employees.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In a pair of Zoom meetings on Wednesday with CNN employees, Michael Bass and Ken Jautz, who stepped in as two of the network’s interim leaders after Mr. Zucker’s departure, said Ms. Gollust had committed serious violations of the network’s journalistic standards, four people who attended the virtual meetings said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " WarnerMedia’s top communications official, Christy Haubegger, also said in a staff meeting that Ms. Gollust’s transgressions had “to do with the Cuomos,” three people said.\n", " Evidence\n", "\n", "\n", "\n", - " When employees pressed for more details, Ms. Haubegger said she was barred from saying more. “Actions were taken to defend the institution and the brand,” she said on the call.\n", + " When employees pressed for more details, Ms. Haubegger said she was barred from saying more.\n", + " Claim\n", + "\n", + "\n", + "\n", + " “Actions were taken to defend the institution and the brand,” she said on the call.\n", " Claim\n", "\n", "\n", "\n", - " Ms. Haubegger urged CNN’s public relations team to try to focus public attention on the network’s journalism, including its foreign correspondents in Ukraine covering that country’s brewing conflict with Russia. The internal investigation’s findings are especially notable because CNN journalists have repeatedly attacked Fox News personalities like Sean Hannity for having an overly close relationship with Republican leaders, in particular Mr. Trump.\n", + " Ms. Haubegger urged CNN’s public relations team to try to focus public attention on the network’s journalism, including its foreign correspondents in Ukraine covering that country’s brewing conflict with Russia.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The internal investigation’s findings are especially notable because CNN journalists have repeatedly attacked Fox News personalities like Sean Hannity for having an overly close relationship with Republican leaders, in particular Mr. Trump.\n", " Evidence\n", "\n", "\n", @@ -1918,7 +3330,7 @@ { "data": { "text/html": [ - "

nytimes\\american-girl-cafe-harry-hill-serena-kerrigan.txt

" + "

american-girl-cafe-harry-hill-serena-kerrigan.txt

" ], "text/plain": [ "" @@ -1938,7 +3350,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "8dc2207a3be14abca4f438964a2e639b", + "model_id": "1b64d8d8a77e497d8745a775abf0fb69", "version_major": 2, "version_minor": 0 }, @@ -1959,7 +3371,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "1deded9950ac473999fc602599e7dd89", + "model_id": "950172907034407fa8fd8c7c4bff58f1", "version_major": 2, "version_minor": 0 }, @@ -1989,32 +3401,68 @@ "A representative for the company said that it doesn’t condone its dolls engaging in age-inappropriate behavior such as drinking alcohol, but the company welcomes American Girl fans of all ages. {'label': 'Evidence', 'score': 0.7289145588874817}\n", "Jamie Cygielman, the president of American Girl, wrote in a statement, “We know our devoted fans never forget the beloved American Girl characters and stories they grew up with, and we’re thrilled to have them reconnect and reminisce with us as adults.” {'label': 'Evidence', 'score': 0.8085130453109741}\n", "The New York cafe, where Ms. Kerrigan and Mr. Hill recorded their social media content, features cutesy touches like tiny bows tied to each cloth napkin. The banquettes are berry colored, and the photo-ready walls feature bright patterns set against crisp whites. {'label': 'Evidence', 'score': 0.9829056262969971}\n", - "Even the cafe’s soundtrack, which mixes 1980s pop staples with campy original songs written about the American Girl characters, seems tuned to the whims of Gen Zers and millennials looking for immersive settings for their social media feeds. {'label': 'Evidence', 'score': 0.5262859463691711}\n", + "Even the cafe’s soundtrack, which mixes 1980s pop staples with campy original songs written about the American Girl characters, seems tuned to the whims of Gen Zers and millennials looking for immersive settings for their social media feeds. {'label': 'Evidence', 'score': 0.5262858867645264}\n", "American Girl Place retail stores in the United States sell a wide variety of toys and accessories centered on upscale dolls, whose prices start at around $100. Each doll has a back story that locates her in a specific era of American history. {'label': 'Evidence', 'score': 0.939879834651947}\n", "The first dolls, released in 1986, were Molly, a bookish girl from the 1940s; Kirsten, a pioneer from Sweden; and Samantha, an orphan adopted into a posh New York family during the Edwardian era. Each doll stars in historical novellas, which are sold separately. {'label': 'Evidence', 'score': 0.9727559089660645}\n", - "Some American Girl fans identify with one doll’s personality, referring to themselves as “an Addy” or “a Felicity.” {'label': 'Evidence', 'score': 0.42754003405570984}\n", + "Some American Girl fans identify with one doll’s personality, referring to themselves as “an Addy” or “a Felicity.” {'label': 'Evidence', 'score': 0.42753997445106506}\n", "When a staff member overheard me bemoaning the fact that Molly never gets her due among American Girl fans, she brought me a Molly doll and clipped her chair to the rim of my table. {'label': 'Evidence', 'score': 0.8339250683784485}\n", "Since 1986, many more characters have been added to the American Girl roster, expanding the eras and ethnicities represented by the dolls. American Girl also sells custom dolls, and introduced Logan, its first American Boy, in 2017. {'label': 'Evidence', 'score': 0.9467638731002808}\n", "For some adults, the American Girl Place retail locations loomed large in their childhood psyches. Ms. Kerrigan, who appeared in a New York Daily News story about American Girl Place’s opening, has been a fan of the brand since she was 4. {'label': 'Evidence', 'score': 0.8860629796981812}\n", - "“It’s literally my dream come true,” Ms. Kerrigan said, of returning to the store as an adult. {'label': 'Evidence', 'score': 0.38436952233314514}\n", + "“It’s literally my dream come true,” Ms. Kerrigan said, of returning to the store as an adult. {'label': 'Evidence', 'score': 0.38436949253082275}\n", "Her dining companion was similarly effusive. “It’s Disneyland for literary girls and gays,” said Mr. Hill in a Zoom interview. {'label': 'Evidence', 'score': 0.7451676726341248}\n", "The company has taken notice of Mr. Hill’s enthusiasm. At an event for the luggage company Stoney Clover Lane in October, Ms. Cygielman recognized Mr. Hill and introduced herself. The company also hosted him as its guest at the Manhattan cafe a few weeks ago. {'label': 'Evidence', 'score': 0.97519850730896}\n", "On this occasion, the two influencers posed for selfies, recorded content and mugged for their phones as servers brought several courses that included cinnamon buns, crudités, buttered noodles and chicken fingers. {'label': 'Evidence', 'score': 0.8932410478591919}\n", - "The vast cafe was mostly empty apart from five other parties, each made up of children and their chaperones. Mr. Hill and Ms. Kerrigan took their seats, got their dolls situated and toasted rose martinis served in glasses rimmed with pink sugar. {'label': 'Evidence', 'score': 0.9763884544372559}\n", + "The vast cafe was mostly empty apart from five other parties, each made up of children and their chaperones. Mr. Hill and Ms. Kerrigan took their seats, got their dolls situated and toasted rose martinis served in glasses rimmed with pink sugar. {'label': 'Evidence', 'score': 0.9763883352279663}\n", "For some, 11:30 is early for a drink, but Mr. Hill had already spent the morning mixing water with cranberry juice to simulate cocktails for a sponsored Instagram post. This time the vodka was real. {'label': 'Evidence', 'score': 0.9457033276557922}\n", "Dessert was particularly well suited for Instagram, with a rainbow layer cake modeled from an American Girl toy set, a cup of chocolate mousse meant to look like a potted daisy, and heart-shaped sugar cookies with an accompanying D.I.Y. frosting kit, all served by a remarkably attentive and gracious staff. {'label': 'Evidence', 'score': 0.9769341349601746}\n", "The store comped their meal, as they sometimes do for influencers, but Ms. Kerrigan insisted on running her credit card so she could tip their server. As she and Mr. Hill began to pack up their dolls, a party of six adults and no children was seated nearby. {'label': 'Evidence', 'score': 0.985156774520874}\n", "They were visiting from Austin, Texas, to celebrate Timothy Flitton’s 33rd birthday. They were inspired to have their birthday party at the American Girl Cafe after seeing Ms. Griffin’s TikTok video. Like Ms. Griffin, they ordered mimosas. {'label': 'Evidence', 'score': 0.9815793037414551}\n", - "“We’re living our millennial fantasy,” said Mx. Flitton, who sported aquamarine hair and a rainbow sweater. Kaylan Howard, a friend, agreed. {'label': 'Evidence', 'score': 0.48563459515571594}\n" + "“We’re living our millennial fantasy,” said Mx. Flitton, who sported aquamarine hair and a rainbow sweater. Kaylan Howard, a friend, agreed. {'label': 'Evidence', 'score': 0.48563459515571594}\n", + "“They were too expensive when I was a child,” Ms. Howard, 32, said of the dolls. “And now we can afford it, should we want it.” She didn’t want it, but said she appreciated the gratis loaners they were each given for the meal. {'label': 'Evidence', 'score': 0.9432560205459595}\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ - "“They were too expensive when I was a child,” Ms. Howard, 32, said of the dolls. “And now we can afford it, should we want it.” She didn’t want it, but said she appreciated the gratis loaners they were each given for the meal. {'label': 'Evidence', 'score': 0.9432560205459595}\n", "A server emerged from the kitchen carrying a birthday cake shaped like a giant petit four. Mx. Flitton and the rest of the party erupted in applause. {'label': 'Lead', 'score': 0.5359991192817688}\n", - "The cheers died down as the waiter walked past the table. The cake was for someone seated behind them who was celebrating her ninth birthday. {'label': 'Evidence', 'score': 0.7414999604225159}\n" + "The cheers died down as the waiter walked past the table. The cake was for someone seated behind them who was celebrating her ninth birthday. {'label': 'Evidence', 'score': 0.7414999604225159}\n", + " text label score\n", + "0 On a Monday morning in February, Harry Hill, 2... Evidence 0.923583\n", + "1 Mr. Hill, an influencer, is well documented as... Evidence 0.953863\n", + "2 Ms. Kerrigan, also an influencer, was dressed ... Evidence 0.953690\n", + "3 The last time she and Mr. Hill came to America... Evidence 0.603045\n", + "4 The two were far from the first adults to show... Claim 0.620466\n", + "5 “Come with me to get absolutely obliterated at... Evidence 0.499030\n", + "6 In the video, Ms. Griffin, 25, shouts out the ... Evidence 0.961516\n", + "7 Ms. Griffin was joined by four other women in ... Evidence 0.673414\n", + "8 “I was not obliterated,” Ms. Griffin clarified... Evidence 0.418395\n", + "9 The clicks came. Ms. Griffin’s video amassed m... Evidence 0.898198\n", + "10 It’s not a wholly novel concept for adults to ... Evidence 0.958161\n", + "11 Of the dozen American Girl Place locations, fi... Evidence 0.992288\n", + "12 A representative for the company said that it ... Evidence 0.728915\n", + "13 Jamie Cygielman, the president of American Gir... Evidence 0.808513\n", + "14 The New York cafe, where Ms. Kerrigan and Mr. ... Evidence 0.982906\n", + "15 Even the cafe’s soundtrack, which mixes 1980s ... Evidence 0.526286\n", + "16 American Girl Place retail stores in the Unite... Evidence 0.939880\n", + "17 The first dolls, released in 1986, were Molly,... Evidence 0.972756\n", + "18 Some American Girl fans identify with one doll... Evidence 0.427540\n", + "19 When a staff member overheard me bemoaning the... Evidence 0.833925\n", + "20 Since 1986, many more characters have been add... Evidence 0.946764\n", + "21 For some adults, the American Girl Place retai... Evidence 0.886063\n", + "22 “It’s literally my dream come true,” Ms. Kerri... Evidence 0.384369\n", + "23 Her dining companion was similarly effusive. “... Evidence 0.745168\n", + "24 The company has taken notice of Mr. Hill’s ent... Evidence 0.975199\n", + "25 On this occasion, the two influencers posed fo... Evidence 0.893241\n", + "26 The vast cafe was mostly empty apart from five... Evidence 0.976388\n", + "27 For some, 11:30 is early for a drink, but Mr. ... Evidence 0.945703\n", + "28 Dessert was particularly well suited for Insta... Evidence 0.976934\n", + "29 The store comped their meal, as they sometimes... Evidence 0.985157\n", + "30 They were visiting from Austin, Texas, to cele... Evidence 0.981579\n", + "31 “We’re living our millennial fantasy,” said Mx... Evidence 0.485635\n", + "32 “They were too expensive when I was a child,” ... Evidence 0.943256\n", + "33 A server emerged from the kitchen carrying a b... Lead 0.535999\n", + "34 The cheers died down as the waiter walked past... Evidence 0.741500\n" ] }, { @@ -2022,7 +3470,22 @@ "text/html": [ "
\n", "\n", - " On a Monday morning in February, Harry Hill, 27, showed up at the American Girl Cafe wearing a vintage Christian Dior sweater and carrying a Coach tote that held two of his beloved dolls. He was joined by Serena Kerrigan, 27, who brought her dolls in a pink mesh Victoria’s Secret bag. Mr. Hill, an influencer, is well documented as a fan: He has posed at a 7-Eleven dressed identically to one of his dolls on Instagram. He dressed as the Samantha doll for Halloween and created a series of memes made with American Girl dolls. Ms. Kerrigan, also an influencer, was dressed by her stylist in “head-to-toe Zara” — a Kelly green skirt suit with feather cuffs. “I am the green M&M,” she said of her outfit. Like the previous iteration of the green M&M character, Ms. Kerrigan’s personal brand can be ribald. The last time she and Mr. Hill came to American Girl Place, she made a TikTok video in which she got her Samantha doll checked for S.T.I.s at the store’s doll hospital.\n", + " On a Monday morning in February, Harry Hill, 27, showed up at the American Girl Cafe wearing a vintage Christian Dior sweater and carrying a Coach tote that held two of his beloved dolls. He was joined by Serena Kerrigan, 27, who brought her dolls in a pink mesh Victoria’s Secret bag.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mr. Hill, an influencer, is well documented as a fan: He has posed at a 7-Eleven dressed identically to one of his dolls on Instagram. He dressed as the Samantha doll for Halloween and created a series of memes made with American Girl dolls.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Ms. Kerrigan, also an influencer, was dressed by her stylist in “head-to-toe Zara” — a Kelly green skirt suit with feather cuffs. “I am the green M&M,” she said of her outfit. Like the previous iteration of the green M&M character, Ms. Kerrigan’s personal brand can be ribald.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The last time she and Mr. Hill came to American Girl Place, she made a TikTok video in which she got her Samantha doll checked for S.T.I.s at the store’s doll hospital.\n", " Evidence\n", "\n", "\n", @@ -2032,7 +3495,142 @@ "\n", "\n", "\n", - " “Come with me to get absolutely obliterated at the American Girl Doll Cafe,” begins a TikTok video titled “American Girls grow into American Women,” uploaded by the comedian Sally Darr Griffin. In the video, Ms. Griffin, 25, shouts out the labels she’s wearing — “Dress is Hill House, sunglasses are Coach” — then takes the first sip of what will be four mimosas, supplemented with a tiny nip of vodka that she smuggled into the American Girl Cafe at the Grove shopping mall in Los Angeles. Ms. Griffin was joined by four other women in their 20s, each accompanied by a doll seated in a chair attached to the table. “I was not obliterated,” Ms. Griffin clarified in a Zoom interview. “It’s just better to say that for the clicks.” The clicks came. Ms. Griffin’s video amassed more than 600,000 views on TikTok, and a micro-trend of grown folks dining and drinking with dolls was born. It’s not a wholly novel concept for adults to return to kid-centric locations for a dose of nostalgia and irony. Goths descended on Disneyland for an annual trip called “Bats Day in the Fun Park” for decades. Liana Aghajanian, a journalist in Detroit, wrote that she celebrated her birthdays at Chuck E. Cheese locations even in adulthood as a homage to happy childhood memories as a first-generation American. Of the dozen American Girl Place locations, five feature full-service restaurants that serve items like cinnamon buns, macaroni and cheese, and smoothies, along with an extensive dessert menu. The original Chicago location, which opened in 1998, secured a full liquor license so it could host galas and benefits. New York is the only other location that serves liquor, but beer and wine are served at all of the cafes. A representative for the company said that it doesn’t condone its dolls engaging in age-inappropriate behavior such as drinking alcohol, but the company welcomes American Girl fans of all ages. Jamie Cygielman, the president of American Girl, wrote in a statement, “We know our devoted fans never forget the beloved American Girl characters and stories they grew up with, and we’re thrilled to have them reconnect and reminisce with us as adults.” The New York cafe, where Ms. Kerrigan and Mr. Hill recorded their social media content, features cutesy touches like tiny bows tied to each cloth napkin. The banquettes are berry colored, and the photo-ready walls feature bright patterns set against crisp whites. Even the cafe’s soundtrack, which mixes 1980s pop staples with campy original songs written about the American Girl characters, seems tuned to the whims of Gen Zers and millennials looking for immersive settings for their social media feeds. American Girl Place retail stores in the United States sell a wide variety of toys and accessories centered on upscale dolls, whose prices start at around $100. Each doll has a back story that locates her in a specific era of American history. The first dolls, released in 1986, were Molly, a bookish girl from the 1940s; Kirsten, a pioneer from Sweden; and Samantha, an orphan adopted into a posh New York family during the Edwardian era. Each doll stars in historical novellas, which are sold separately. Some American Girl fans identify with one doll’s personality, referring to themselves as “an Addy” or “a Felicity.” When a staff member overheard me bemoaning the fact that Molly never gets her due among American Girl fans, she brought me a Molly doll and clipped her chair to the rim of my table. Since 1986, many more characters have been added to the American Girl roster, expanding the eras and ethnicities represented by the dolls. American Girl also sells custom dolls, and introduced Logan, its first American Boy, in 2017. For some adults, the American Girl Place retail locations loomed large in their childhood psyches. Ms. Kerrigan, who appeared in a New York Daily News story about American Girl Place’s opening, has been a fan of the brand since she was 4. “It’s literally my dream come true,” Ms. Kerrigan said, of returning to the store as an adult. Her dining companion was similarly effusive. “It’s Disneyland for literary girls and gays,” said Mr. Hill in a Zoom interview. The company has taken notice of Mr. Hill’s enthusiasm. At an event for the luggage company Stoney Clover Lane in October, Ms. Cygielman recognized Mr. Hill and introduced herself. The company also hosted him as its guest at the Manhattan cafe a few weeks ago. On this occasion, the two influencers posed for selfies, recorded content and mugged for their phones as servers brought several courses that included cinnamon buns, crudités, buttered noodles and chicken fingers. The vast cafe was mostly empty apart from five other parties, each made up of children and their chaperones. Mr. Hill and Ms. Kerrigan took their seats, got their dolls situated and toasted rose martinis served in glasses rimmed with pink sugar. For some, 11:30 is early for a drink, but Mr. Hill had already spent the morning mixing water with cranberry juice to simulate cocktails for a sponsored Instagram post. This time the vodka was real. Dessert was particularly well suited for Instagram, with a rainbow layer cake modeled from an American Girl toy set, a cup of chocolate mousse meant to look like a potted daisy, and heart-shaped sugar cookies with an accompanying D.I.Y. frosting kit, all served by a remarkably attentive and gracious staff. The store comped their meal, as they sometimes do for influencers, but Ms. Kerrigan insisted on running her credit card so she could tip their server. As she and Mr. Hill began to pack up their dolls, a party of six adults and no children was seated nearby. They were visiting from Austin, Texas, to celebrate Timothy Flitton’s 33rd birthday. They were inspired to have their birthday party at the American Girl Cafe after seeing Ms. Griffin’s TikTok video. Like Ms. Griffin, they ordered mimosas. “We’re living our millennial fantasy,” said Mx. Flitton, who sported aquamarine hair and a rainbow sweater. Kaylan Howard, a friend, agreed. “They were too expensive when I was a child,” Ms. Howard, 32, said of the dolls. “And now we can afford it, should we want it.” She didn’t want it, but said she appreciated the gratis loaners they were each given for the meal.\n", + " “Come with me to get absolutely obliterated at the American Girl Doll Cafe,” begins a TikTok video titled “American Girls grow into American Women,” uploaded by the comedian Sally Darr Griffin.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In the video, Ms. Griffin, 25, shouts out the labels she’s wearing — “Dress is Hill House, sunglasses are Coach” — then takes the first sip of what will be four mimosas, supplemented with a tiny nip of vodka that she smuggled into the American Girl Cafe at the Grove shopping mall in Los Angeles.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Ms. Griffin was joined by four other women in their 20s, each accompanied by a doll seated in a chair attached to the table.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “I was not obliterated,” Ms. Griffin clarified in a Zoom interview. “It’s just better to say that for the clicks.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The clicks came. Ms. Griffin’s video amassed more than 600,000 views on TikTok, and a micro-trend of grown folks dining and drinking with dolls was born.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " It’s not a wholly novel concept for adults to return to kid-centric locations for a dose of nostalgia and irony. Goths descended on Disneyland for an annual trip called “Bats Day in the Fun Park” for decades. Liana Aghajanian, a journalist in Detroit, wrote that she celebrated her birthdays at Chuck E. Cheese locations even in adulthood as a homage to happy childhood memories as a first-generation American.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Of the dozen American Girl Place locations, five feature full-service restaurants that serve items like cinnamon buns, macaroni and cheese, and smoothies, along with an extensive dessert menu. The original Chicago location, which opened in 1998, secured a full liquor license so it could host galas and benefits. New York is the only other location that serves liquor, but beer and wine are served at all of the cafes.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " A representative for the company said that it doesn’t condone its dolls engaging in age-inappropriate behavior such as drinking alcohol, but the company welcomes American Girl fans of all ages.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Jamie Cygielman, the president of American Girl, wrote in a statement, “We know our devoted fans never forget the beloved American Girl characters and stories they grew up with, and we’re thrilled to have them reconnect and reminisce with us as adults.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The New York cafe, where Ms. Kerrigan and Mr. Hill recorded their social media content, features cutesy touches like tiny bows tied to each cloth napkin. The banquettes are berry colored, and the photo-ready walls feature bright patterns set against crisp whites.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Even the cafe’s soundtrack, which mixes 1980s pop staples with campy original songs written about the American Girl characters, seems tuned to the whims of Gen Zers and millennials looking for immersive settings for their social media feeds.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " American Girl Place retail stores in the United States sell a wide variety of toys and accessories centered on upscale dolls, whose prices start at around $100. Each doll has a back story that locates her in a specific era of American history.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The first dolls, released in 1986, were Molly, a bookish girl from the 1940s; Kirsten, a pioneer from Sweden; and Samantha, an orphan adopted into a posh New York family during the Edwardian era. Each doll stars in historical novellas, which are sold separately.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Some American Girl fans identify with one doll’s personality, referring to themselves as “an Addy” or “a Felicity.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " When a staff member overheard me bemoaning the fact that Molly never gets her due among American Girl fans, she brought me a Molly doll and clipped her chair to the rim of my table.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Since 1986, many more characters have been added to the American Girl roster, expanding the eras and ethnicities represented by the dolls. American Girl also sells custom dolls, and introduced Logan, its first American Boy, in 2017.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " For some adults, the American Girl Place retail locations loomed large in their childhood psyches. Ms. Kerrigan, who appeared in a New York Daily News story about American Girl Place’s opening, has been a fan of the brand since she was 4.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “It’s literally my dream come true,” Ms. Kerrigan said, of returning to the store as an adult.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Her dining companion was similarly effusive. “It’s Disneyland for literary girls and gays,” said Mr. Hill in a Zoom interview.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The company has taken notice of Mr. Hill’s enthusiasm. At an event for the luggage company Stoney Clover Lane in October, Ms. Cygielman recognized Mr. Hill and introduced herself. The company also hosted him as its guest at the Manhattan cafe a few weeks ago.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " On this occasion, the two influencers posed for selfies, recorded content and mugged for their phones as servers brought several courses that included cinnamon buns, crudités, buttered noodles and chicken fingers.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The vast cafe was mostly empty apart from five other parties, each made up of children and their chaperones. Mr. Hill and Ms. Kerrigan took their seats, got their dolls situated and toasted rose martinis served in glasses rimmed with pink sugar.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " For some, 11:30 is early for a drink, but Mr. Hill had already spent the morning mixing water with cranberry juice to simulate cocktails for a sponsored Instagram post. This time the vodka was real.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Dessert was particularly well suited for Instagram, with a rainbow layer cake modeled from an American Girl toy set, a cup of chocolate mousse meant to look like a potted daisy, and heart-shaped sugar cookies with an accompanying D.I.Y. frosting kit, all served by a remarkably attentive and gracious staff.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The store comped their meal, as they sometimes do for influencers, but Ms. Kerrigan insisted on running her credit card so she could tip their server. As she and Mr. Hill began to pack up their dolls, a party of six adults and no children was seated nearby.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " They were visiting from Austin, Texas, to celebrate Timothy Flitton’s 33rd birthday. They were inspired to have their birthday party at the American Girl Cafe after seeing Ms. Griffin’s TikTok video. Like Ms. Griffin, they ordered mimosas.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “We’re living our millennial fantasy,” said Mx. Flitton, who sported aquamarine hair and a rainbow sweater. Kaylan Howard, a friend, agreed.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “They were too expensive when I was a child,” Ms. Howard, 32, said of the dolls. “And now we can afford it, should we want it.” She didn’t want it, but said she appreciated the gratis loaners they were each given for the meal.\n", " Evidence\n", "\n", "\n", @@ -2066,7 +3664,7 @@ { "data": { "text/html": [ - "

nytimes\\andrew-prince-charles-charity.txt

" + "

andrew-prince-charles-charity.txt

" ], "text/plain": [ "" @@ -2086,7 +3684,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "88f8c2fe9cf34561bcef7d5197989c57", + "model_id": "78c89c0d27ec418e920815b84faac036", "version_major": 2, "version_minor": 0 }, @@ -2107,7 +3705,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "6182c37d5a4e4402bc3da58814baadb3", + "model_id": "0acef12398f04e35a14f9a0f87b443d3", "version_major": 2, "version_minor": 0 }, @@ -2123,7 +3721,7 @@ "output_type": "stream", "text": [ "LONDON — In a royal family where scandal seems to rotate among its members with nearly metronomic regularity, one might have predicted that Tuesday’s news that Prince Andrew had settled a sexual abuse lawsuit against him would soon be followed by a fresh, troubling disclosure about another royal. {'label': 'Evidence', 'score': 0.7766624093055725}\n", - "Sure enough, not 24 hours later, London’s Metropolitan Police announced an investigation into allegations that a charity led by Prince Charles offered to help with a knighthood and British citizenship for a wealthy Saudi in return for a donation. A spokesman for Charles insisted that he had no knowledge of any deal. {'label': 'Evidence', 'score': 0.7256742119789124}\n", + "Sure enough, not 24 hours later, London’s Metropolitan Police announced an investigation into allegations that a charity led by Prince Charles offered to help with a knighthood and British citizenship for a wealthy Saudi in return for a donation. A spokesman for Charles insisted that he had no knowledge of any deal. {'label': 'Evidence', 'score': 0.7256741523742676}\n", "For Queen Elizabeth II, it was a fraught start to a year that is supposed to celebrate her seven decades on the throne. And yet for all the questions surrounding the Prince’s Foundation — which have already led to the resignation of its chief executive — the downfall of Prince Andrew is likely to leave a more lasting stain on the House of Windsor. {'label': 'Evidence', 'score': 0.700318455696106}\n", "While Andrew, the queen’s second son, did not admit guilt in the settlement, he was forced to commend Virginia Giuffre, who accused him of raping her when she was a teenager, for her bravery in coming forward. He also agreed to pay her a sum that London newspapers reported to be more than $13 million. {'label': 'Evidence', 'score': 0.8396693468093872}\n", "“We are in new waters,” said Ed Owens, a historian who has written about the relationship between the media and the monarchy. “This kind of case has never been brought against a member of the royal family. That’s why we’re witnessing the family having so much trouble moving on from this.” {'label': 'Evidence', 'score': 0.7531160712242126}\n", @@ -2137,14 +3735,63 @@ "For the 95-year-old queen, the threat to Charles is, in some ways, an even bigger headache than Andrew’s disgrace. With her own recent health problems and her Platinum Jubilee celebrations looming, she has been moving to put the family’s affairs in order. She declared recently, for example, that when Charles ascends to the throne, his wife, Camilla, should be known as queen. {'label': 'Evidence', 'score': 0.9845671653747559}\n", "But this week has served as a reminder of her fragility. On Wednesday, when two visitors to Windsor Castle asked her how she was, the queen, smiling and clutching a walking stick, gestured to her legs, and said, “Well, as you see, I can’t move.” {'label': 'Rebuttal', 'score': 0.735876202583313}\n", "“The clock is ticking,” said Peter Hunt, a former royal correspondent for the BBC. “They’re desperately trying to clear the path for Charles. Now, on that path is suddenly strewn Michael Fawcett.” {'label': 'Lead', 'score': 0.4778062403202057}\n", - "Cash-for-honors scandals are a familiar, if unseemly, fixture in British politics. Both the Conservative and Labour parties have been ensnared in them. The allegations against Andrew, by contrast, are of a wholly different nature — amplified by the #MeToo movement and darkened by the prince’s association with the financier and convicted sex offender, Jeffrey Epstein. {'label': 'Evidence', 'score': 0.8752453327178955}\n", + "Cash-for-honors scandals are a familiar, if unseemly, fixture in British politics. Both the Conservative and Labour parties have been ensnared in them. The allegations against Andrew, by contrast, are of a wholly different nature — amplified by the #MeToo movement and darkened by the prince’s association with the financier and convicted sex offender, Jeffrey Epstein. {'label': 'Evidence', 'score': 0.8752452731132507}\n", "Having failed to persuade a judge to dismiss the case, Andrew faced the prospect of being interviewed under oath by Ms. Giuffre’s lawyers. In her suit, she claimed that the prince had abused her, including subjecting her to “involuntary sexual intercourse,” at Mr. Epstein’s houses in New York and in the Caribbean. {'label': 'Evidence', 'score': 0.7707527875900269}\n", "“The imperative for Andrew was to settle before the deposition was taken in late March,” said Daniel Taylor, a lawyer in London who has represented clients in privacy cases against the tabloids for phone hacking. {'label': 'Evidence', 'score': 0.6968757510185242}\n", "The fact that Andrew settled the case seems to have added to the sense of public scorn, even though out-of-court settlements are as common in Britain as they are in the United States. The headlines in London’s tabloids summed up the prevailing disgust. {'label': 'Evidence', 'score': 0.664092481136322}\n", "“His Final Disgrace,” thundered the Sun. “Andrew cuts sex case deal … But there’s no way back,” said the Daily Express. “Royal wrong’un pays out to sex victim he’s never met. As you do,” said the Daily Star, referring to Andrew’s assertion, in a misbegotten 2019 interview with the BBC, that he had “no recollection” of ever meeting Ms. Giuffre. {'label': 'Evidence', 'score': 0.928303599357605}\n", "The Star ran the headline over a now-familiar photo taken in a London townhouse, which appeared to show Andrew with his arm around the girl’s bare waist, as Mr. Epstein’s former girlfriend, Ghislaine Maxwell, smiled in the background. {'label': 'Evidence', 'score': 0.873932957649231}\n", "Buckingham Palace has banished Andrew to internal exile, stripping him of his honorary military titles and his official duties, and warned there would be no rehabilitation. But it left unclear whether the queen, who earns more than $30 million a year from vast private real estate holdings, would help pay the settlement. {'label': 'Evidence', 'score': 0.9469122886657715}\n", - "“The short answer is, he doesn’t have enough,” said David McClure, the author of “Royal Legacy,” a book on the monarchy’s finances. “The queen does have enough. And paying 10 million pounds is a relatively small amount compared to the reputational damage that could be done to the family with a court case.” {'label': 'Evidence', 'score': 0.48833927512168884}\n" + "“The short answer is, he doesn’t have enough,” said David McClure, the author of “Royal Legacy,” a book on the monarchy’s finances. “The queen does have enough. And paying 10 million pounds is a relatively small amount compared to the reputational damage that could be done to the family with a court case.” {'label': 'Evidence', 'score': 0.48833927512168884}\n", + " text label \\\n", + "0 LONDON — In a royal family where scandal seems... Evidence \n", + "1 Sure enough, not 24 hours later, London’s Metr... Evidence \n", + "2 For Queen Elizabeth II, it was a fraught start... Evidence \n", + "3 While Andrew, the queen’s second son, did not ... Evidence \n", + "4 “We are in new waters,” said Ed Owens, a histo... Evidence \n", + "5 The prospect of days of unsavory testimony fro... Evidence \n", + "6 For all the differences, the troubles of Andre... Concluding Statement \n", + "7 In the case of Charles, the question is whethe... Evidence \n", + "8 “It’s bringing to light the secrecy and silenc... Evidence \n", + "9 The Sunday Times and the Mail on Sunday report... Evidence \n", + "10 The police said on Wednesday that they had eno... Evidence \n", + "11 If Scotland Yard uncovers evidence that Charle... Evidence \n", + "12 For the 95-year-old queen, the threat to Charl... Evidence \n", + "13 But this week has served as a reminder of her ... Rebuttal \n", + "14 “The clock is ticking,” said Peter Hunt, a for... Lead \n", + "15 Cash-for-honors scandals are a familiar, if un... Evidence \n", + "16 Having failed to persuade a judge to dismiss t... Evidence \n", + "17 “The imperative for Andrew was to settle befor... Evidence \n", + "18 The fact that Andrew settled the case seems to... Evidence \n", + "19 “His Final Disgrace,” thundered the Sun. “Andr... Evidence \n", + "20 The Star ran the headline over a now-familiar ... Evidence \n", + "21 Buckingham Palace has banished Andrew to inter... Evidence \n", + "22 “The short answer is, he doesn’t have enough,”... Evidence \n", + "\n", + " score \n", + "0 0.776662 \n", + "1 0.725674 \n", + "2 0.700318 \n", + "3 0.839669 \n", + "4 0.753116 \n", + "5 0.628910 \n", + "6 0.895286 \n", + "7 0.901464 \n", + "8 0.857381 \n", + "9 0.876430 \n", + "10 0.968609 \n", + "11 0.740644 \n", + "12 0.984567 \n", + "13 0.735876 \n", + "14 0.477806 \n", + "15 0.875245 \n", + "16 0.770753 \n", + "17 0.696876 \n", + "18 0.664092 \n", + "19 0.928304 \n", + "20 0.873933 \n", + "21 0.946912 \n", + "22 0.488339 \n" ] }, { @@ -2152,7 +3799,32 @@ "text/html": [ "
\n", "\n", - " LONDON — In a royal family where scandal seems to rotate among its members with nearly metronomic regularity, one might have predicted that Tuesday’s news that Prince Andrew had settled a sexual abuse lawsuit against him would soon be followed by a fresh, troubling disclosure about another royal. Sure enough, not 24 hours later, London’s Metropolitan Police announced an investigation into allegations that a charity led by Prince Charles offered to help with a knighthood and British citizenship for a wealthy Saudi in return for a donation. A spokesman for Charles insisted that he had no knowledge of any deal. For Queen Elizabeth II, it was a fraught start to a year that is supposed to celebrate her seven decades on the throne. And yet for all the questions surrounding the Prince’s Foundation — which have already led to the resignation of its chief executive — the downfall of Prince Andrew is likely to leave a more lasting stain on the House of Windsor. While Andrew, the queen’s second son, did not admit guilt in the settlement, he was forced to commend Virginia Giuffre, who accused him of raping her when she was a teenager, for her bravery in coming forward. He also agreed to pay her a sum that London newspapers reported to be more than $13 million. “We are in new waters,” said Ed Owens, a historian who has written about the relationship between the media and the monarchy. “This kind of case has never been brought against a member of the royal family. That’s why we’re witnessing the family having so much trouble moving on from this.” The prospect of days of unsavory testimony from Ms. Giuffre about her experiences with Andrew was evidently so sobering that it persuaded the prince and the royal family to put an end to the case, at very high cost in money and reputation, even after Andrew, 61, had vowed he would fight to clear his name.\n", + " LONDON — In a royal family where scandal seems to rotate among its members with nearly metronomic regularity, one might have predicted that Tuesday’s news that Prince Andrew had settled a sexual abuse lawsuit against him would soon be followed by a fresh, troubling disclosure about another royal.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Sure enough, not 24 hours later, London’s Metropolitan Police announced an investigation into allegations that a charity led by Prince Charles offered to help with a knighthood and British citizenship for a wealthy Saudi in return for a donation. A spokesman for Charles insisted that he had no knowledge of any deal.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " For Queen Elizabeth II, it was a fraught start to a year that is supposed to celebrate her seven decades on the throne. And yet for all the questions surrounding the Prince’s Foundation — which have already led to the resignation of its chief executive — the downfall of Prince Andrew is likely to leave a more lasting stain on the House of Windsor.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " While Andrew, the queen’s second son, did not admit guilt in the settlement, he was forced to commend Virginia Giuffre, who accused him of raping her when she was a teenager, for her bravery in coming forward. He also agreed to pay her a sum that London newspapers reported to be more than $13 million.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “We are in new waters,” said Ed Owens, a historian who has written about the relationship between the media and the monarchy. “This kind of case has never been brought against a member of the royal family. That’s why we’re witnessing the family having so much trouble moving on from this.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The prospect of days of unsavory testimony from Ms. Giuffre about her experiences with Andrew was evidently so sobering that it persuaded the prince and the royal family to put an end to the case, at very high cost in money and reputation, even after Andrew, 61, had vowed he would fight to clear his name.\n", " Evidence\n", "\n", "\n", @@ -2162,7 +3834,32 @@ "\n", "\n", "\n", - " In the case of Charles, the question is whether his onetime closest adviser, Michael Fawcett, offered a Saudi billionaire, Mahfouz bin Mahfouz, help with his application for British citizenship, as well as a knighthood, while he was also soliciting him for a donation of 10 million pounds ($13.5 million). Mr. Mahfouz has denied any wrongdoing. “It’s bringing to light the secrecy and silence that exists over the royal finances,” Mr. Owens said. “The fact that there is this lack of transparency is going to become increasingly difficult in this social media-driven world. People are more sensitive to the obfuscation.” The Sunday Times and the Mail on Sunday reported the allegations about a “cash-for-honors” deal at the Prince’s Foundation last year, the charity commissioned an independent investigation, and Mr. Fawcett resigned as its chief executive. The police said on Wednesday that they had enough evidence to open a formal investigation of whether the foundation violated a 1925 law that prohibits the sale of peerages or other royal honors. It is using the same unit that is investigating whether social gatherings at Downing Street violated coronavirus lockdown restrictions. If Scotland Yard uncovers evidence that Charles knew about a potential quid-pro-quo, royal experts said, that would pose a grave risk to the 73-year-old heir to the throne. Even without the involvement of Charles, it could cast a harsh spotlight on the aggressive methods of the prince’s lieutenants. For the 95-year-old queen, the threat to Charles is, in some ways, an even bigger headache than Andrew’s disgrace. With her own recent health problems and her Platinum Jubilee celebrations looming, she has been moving to put the family’s affairs in order. She declared recently, for example, that when Charles ascends to the throne, his wife, Camilla, should be known as queen.\n", + " In the case of Charles, the question is whether his onetime closest adviser, Michael Fawcett, offered a Saudi billionaire, Mahfouz bin Mahfouz, help with his application for British citizenship, as well as a knighthood, while he was also soliciting him for a donation of 10 million pounds ($13.5 million). Mr. Mahfouz has denied any wrongdoing.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “It’s bringing to light the secrecy and silence that exists over the royal finances,” Mr. Owens said. “The fact that there is this lack of transparency is going to become increasingly difficult in this social media-driven world. People are more sensitive to the obfuscation.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The Sunday Times and the Mail on Sunday reported the allegations about a “cash-for-honors” deal at the Prince’s Foundation last year, the charity commissioned an independent investigation, and Mr. Fawcett resigned as its chief executive. \n", + " Evidence\n", + "\n", + "\n", + "\n", + " The police said on Wednesday that they had enough evidence to open a formal investigation of whether the foundation violated a 1925 law that prohibits the sale of peerages or other royal honors. It is using the same unit that is investigating whether social gatherings at Downing Street violated coronavirus lockdown restrictions.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " If Scotland Yard uncovers evidence that Charles knew about a potential quid-pro-quo, royal experts said, that would pose a grave risk to the 73-year-old heir to the throne. Even without the involvement of Charles, it could cast a harsh spotlight on the aggressive methods of the prince’s lieutenants.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " For the 95-year-old queen, the threat to Charles is, in some ways, an even bigger headache than Andrew’s disgrace. With her own recent health problems and her Platinum Jubilee celebrations looming, she has been moving to put the family’s affairs in order. She declared recently, for example, that when Charles ascends to the throne, his wife, Camilla, should be known as queen.\n", " Evidence\n", "\n", "\n", @@ -2177,15 +3874,50 @@ "\n", "\n", "\n", - " Cash-for-honors scandals are a familiar, if unseemly, fixture in British politics. Both the Conservative and Labour parties have been ensnared in them. The allegations against Andrew, by contrast, are of a wholly different nature — amplified by the #MeToo movement and darkened by the prince’s association with the financier and convicted sex offender, Jeffrey Epstein. Having failed to persuade a judge to dismiss the case, Andrew faced the prospect of being interviewed under oath by Ms. Giuffre’s lawyers. In her suit, she claimed that the prince had abused her, including subjecting her to “involuntary sexual intercourse,” at Mr. Epstein’s houses in New York and in the Caribbean. “The imperative for Andrew was to settle before the deposition was taken in late March,” said Daniel Taylor, a lawyer in London who has represented clients in privacy cases against the tabloids for phone hacking. The fact that Andrew settled the case seems to have added to the sense of public scorn, even though out-of-court settlements are as common in Britain as they are in the United States. The headlines in London’s tabloids summed up the prevailing disgust. “His Final Disgrace,” thundered the Sun. “Andrew cuts sex case deal … But there’s no way back,” said the Daily Express. “Royal wrong’un pays out to sex victim he’s never met. As you do,” said the Daily Star, referring to Andrew’s assertion, in a misbegotten 2019 interview with the BBC, that he had “no recollection” of ever meeting Ms. Giuffre. The Star ran the headline over a now-familiar photo taken in a London townhouse, which appeared to show Andrew with his arm around the girl’s bare waist, as Mr. Epstein’s former girlfriend, Ghislaine Maxwell, smiled in the background. Buckingham Palace has banished Andrew to internal exile, stripping him of his honorary military titles and his official duties, and warned there would be no rehabilitation. But it left unclear whether the queen, who earns more than $30 million a year from vast private real estate holdings, would help pay the settlement. “The short answer is, he doesn’t have enough,” said David McClure, the author of “Royal Legacy,” a book on the monarchy’s finances. “The queen does have enough. And paying 10 million pounds is a relatively small amount compared to the reputational damage that could be done to the family with a court case.”\n", + " Cash-for-honors scandals are a familiar, if unseemly, fixture in British politics. Both the Conservative and Labour parties have been ensnared in them. The allegations against Andrew, by contrast, are of a wholly different nature — amplified by the #MeToo movement and darkened by the prince’s association with the financier and convicted sex offender, Jeffrey Epstein.\n", " Evidence\n", "\n", - "
" - ], - "text/plain": [ - "" - ] - }, + "\n", + "\n", + " Having failed to persuade a judge to dismiss the case, Andrew faced the prospect of being interviewed under oath by Ms. Giuffre’s lawyers. In her suit, she claimed that the prince had abused her, including subjecting her to “involuntary sexual intercourse,” at Mr. Epstein’s houses in New York and in the Caribbean.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “The imperative for Andrew was to settle before the deposition was taken in late March,” said Daniel Taylor, a lawyer in London who has represented clients in privacy cases against the tabloids for phone hacking.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The fact that Andrew settled the case seems to have added to the sense of public scorn, even though out-of-court settlements are as common in Britain as they are in the United States. The headlines in London’s tabloids summed up the prevailing disgust.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “His Final Disgrace,” thundered the Sun. “Andrew cuts sex case deal … But there’s no way back,” said the Daily Express. “Royal wrong’un pays out to sex victim he’s never met. As you do,” said the Daily Star, referring to Andrew’s assertion, in a misbegotten 2019 interview with the BBC, that he had “no recollection” of ever meeting Ms. Giuffre.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The Star ran the headline over a now-familiar photo taken in a London townhouse, which appeared to show Andrew with his arm around the girl’s bare waist, as Mr. Epstein’s former girlfriend, Ghislaine Maxwell, smiled in the background.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Buckingham Palace has banished Andrew to internal exile, stripping him of his honorary military titles and his official duties, and warned there would be no rehabilitation. But it left unclear whether the queen, who earns more than $30 million a year from vast private real estate holdings, would help pay the settlement.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “The short answer is, he doesn’t have enough,” said David McClure, the author of “Royal Legacy,” a book on the monarchy’s finances. “The queen does have enough. And paying 10 million pounds is a relatively small amount compared to the reputational damage that could be done to the family with a court case.”\n", + " Evidence\n", + "\n", + "
" + ], + "text/plain": [ + "" + ] + }, "metadata": {}, "output_type": "display_data" }, @@ -2201,7 +3933,7 @@ { "data": { "text/html": [ - "

nytimes\\apple-face-computers.txt

" + "

apple-face-computers.txt

" ], "text/plain": [ "" @@ -2221,7 +3953,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "da32c95d9d404413ace5edc9baf10f5e", + "model_id": "49cc6ede7cea4f2e9d4521071b01a217", "version_major": 2, "version_minor": 0 }, @@ -2242,7 +3974,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "73fdf4b4b363467e9fda77dc3baf6aa5", + "model_id": "8b7a3b1bf3584766999f4c17aefcbad8", "version_major": 2, "version_minor": 0 }, @@ -2258,11 +3990,11 @@ "output_type": "stream", "text": [ "This article is part of the On Tech newsletter. Here is a collection of past columns. {'label': 'Lead', 'score': 0.7628713846206665}\n", - "If the tech predictions pan out, we’ll soon be wearing computers on our faces and plugging into immersive realms of virtual people and places, perhaps blended with the real world around us. {'label': 'Claim', 'score': 0.5435035824775696}\n", + "If the tech predictions pan out, we’ll soon be wearing computers on our faces and plugging into immersive realms of virtual people and places, perhaps blended with the real world around us. {'label': 'Claim', 'score': 0.5435036420822144}\n", "(I don’t want to use the buzzword “metaverse” here, because ugh. This term from science fiction has been applied to anything and everything that we should just call the internet. But that’s partly what I’m talking about.) {'label': 'Position', 'score': 0.3765868544578552}\n", "I am both apprehensive and excited about the potential next generation of technologies that may further blur the lines between computers and us, and between online and real life. I can get into the idea of glasses that let me scroll restaurant menu items and feel as if the sizzling burger is in front of me, or into headgear that lets me exercise next to a virtual lake in Patagonia. {'label': 'Evidence', 'score': 0.6500239372253418}\n", "No one can predict how long it might take this imagined future of the internet to come true and go mainstream, if it ever does. But if computers on our faces and more lifelike digital realities are coming for us, let’s start thinking through the implications now. {'label': 'Concluding Statement', 'score': 0.4643705487251282}\n", - "I don’t have a fleshed out good humans’ guidebook for the metaverse. (Ugh, that word again.) But I know that instead of letting Mark Zuckerberg or the Apple chief executive Tim Cook decide on the etiquette, ethics, norms, rewards and risks of our potential brave new world of technology, we need to do it. {'label': 'Concluding Statement', 'score': 0.41556909680366516}\n", + "I don’t have a fleshed out good humans’ guidebook for the metaverse. (Ugh, that word again.) But I know that instead of letting Mark Zuckerberg or the Apple chief executive Tim Cook decide on the etiquette, ethics, norms, rewards and risks of our potential brave new world of technology, we need to do it. {'label': 'Concluding Statement', 'score': 0.4155690670013428}\n", "How we use technology shouldn’t be left to the companies that dream up electronics and software. It should be up to us, individually and collectively. That can happen by deliberate thought and careful design, or by the lack of it. {'label': 'Evidence', 'score': 0.3425034284591675}\n", "I’m writing this now because Apple reportedly plans to introduce its first computers for the face in the next year or so. {'label': 'Claim', 'score': 0.43124496936798096}\n", "Apple appears to imagine that its face computers — similar to Microsoft’s HoloLens, Snap’s experimental Spectacles or the failed Google Glass — will blend virtual images with the world around us, sometimes called “augmented reality.” Imagine watching a fix-it video of a car engine while a guide overlays diagrams on the fan belt that you’re trying to repair. {'label': 'Evidence', 'score': 0.9721943140029907}\n", @@ -2272,14 +4004,63 @@ "Partly through an unwillingness or inability to imagine what could go wrong with technology, we have websites and apps that track us everywhere we go, and that sell the information to the highest bidders. We have carmakers that sometimes protect us with clever tech that helps offset human frailties, and other times seem to exacerbate them. We have the best aspects of human interactions online, and the worst. {'label': 'Evidence', 'score': 0.9511705636978149}\n", "We should think about this stuff now, before we might all be wearing supercomputers on our faces. {'label': 'Claim', 'score': 0.5326799750328064}\n", "What do we want from this technology? Can we imagine schools, offices or comedy clubs in virtual reality? What do we want from the next generation of immersive internet for our kids? Do we want to drive while our headgear flings tweets into our fields of vision? Do we even want to erase the gap between digital life and real life? {'label': 'Lead', 'score': 0.8846819400787354}\n", - "It might be misguided to establish norms and laws around technologies that might take many years to become big. But tech companies and technologists aren’t waiting. They’re molding their imagined future of the internet now. If we don’t engage, that puts the companies in the driver’s seat. And we’ve seen the downside of that. {'label': 'Evidence', 'score': 0.7208818197250366}\n", + "It might be misguided to establish norms and laws around technologies that might take many years to become big. But tech companies and technologists aren’t waiting. They’re molding their imagined future of the internet now. If we don’t engage, that puts the companies in the driver’s seat. And we’ve seen the downside of that. {'label': 'Evidence', 'score': 0.7208817005157471}\n", "With the holiday season upon us, we want to hear from our readers about the new ways that you’re using technology (apps, social media, websites, gadgets or more) to help you plan your travel, parties, shopping or family time. Tell us about an app or site you use during the holidays and what makes it helpful, or the tech you stopped using and why. We may publish a selection of the responses in an upcoming newsletter. Email ontech@nytimes.com. {'label': 'Evidence', 'score': 0.48155200481414795}\n", "Tracking the Chinese propaganda and censorship machine: After the Chinese tennis star Peng Shuai accused a former high-ranking government official of sexual assault, she vanished from public life. My colleagues and ProPublica analyzed how Chinese state media, amplified by a network of fake social media accounts, circulated messages that Shuai was safe and free. {'label': 'Evidence', 'score': 0.9896761775016785}\n", "Reading this will make you hungry: One man has made it his mission to have Mexico City’s street food vendors listed in Google Maps, Rest of World reported. {'label': 'Evidence', 'score': 0.5388134717941284}\n", "A gazillion speedy delivery apps. With similar fonts: A brand expert writes for Bloomberg Opinion about the similar italics, avocado photos and “bed-headed, bucket-hatted ‘cheat day’ mood of indulgence” used by start-ups like Gopuff, Getir, Fridge No More and Jokr that deliver convenience and grocery items in 15 minutes or less. (A subscription may be required.) {'label': 'Evidence', 'score': 0.9914944171905518}\n", - "“Behold the fearsome Tyrannosaurus rex — all swaddled in a cozy Christmas sweater.” {'label': 'Evidence', 'score': 0.3294486701488495}\n", + "“Behold the fearsome Tyrannosaurus rex — all swaddled in a cozy Christmas sweater.” {'label': 'Evidence', 'score': 0.3294486403465271}\n", "We want to hear from you. Tell us what you think of this newsletter and what else you’d like us to explore. You can reach us at ontech@nytimes.com. {'label': 'Evidence', 'score': 0.39380958676338196}\n", - "If you don’t already get this newsletter in your inbox, please sign up here. You can also read past On Tech columns. {'label': 'Concluding Statement', 'score': 0.4619752764701843}\n" + "If you don’t already get this newsletter in your inbox, please sign up here. You can also read past On Tech columns. {'label': 'Concluding Statement', 'score': 0.46197521686553955}\n", + " text label \\\n", + "0 This article is part of the On Tech newsletter... Lead \n", + "1 If the tech predictions pan out, we’ll soon be... Claim \n", + "2 (I don’t want to use the buzzword “metaverse” ... Position \n", + "3 I am both apprehensive and excited about the p... Evidence \n", + "4 No one can predict how long it might take this... Concluding Statement \n", + "5 I don’t have a fleshed out good humans’ guideb... Concluding Statement \n", + "6 How we use technology shouldn’t be left to the... Evidence \n", + "7 I’m writing this now because Apple reportedly ... Claim \n", + "8 Apple appears to imagine that its face compute... Evidence \n", + "9 Apple has a reputation for making up-and-comin... Lead \n", + "10 What I want all of us to do — whether we don’t... Claim \n", + "11 I’m mindful of what has gone wrong when we all... Claim \n", + "12 Partly through an unwillingness or inability t... Evidence \n", + "13 We should think about this stuff now, before w... Claim \n", + "14 What do we want from this technology? Can we i... Lead \n", + "15 It might be misguided to establish norms and l... Evidence \n", + "16 With the holiday season upon us, we want to he... Evidence \n", + "17 Tracking the Chinese propaganda and censorship... Evidence \n", + "18 Reading this will make you hungry: One man has... Evidence \n", + "19 A gazillion speedy delivery apps. With similar... Evidence \n", + "20 “Behold the fearsome Tyrannosaurus rex — all s... Evidence \n", + "21 We want to hear from you. Tell us what you thi... Evidence \n", + "22 If you don’t already get this newsletter in yo... Concluding Statement \n", + "\n", + " score \n", + "0 0.762871 \n", + "1 0.543504 \n", + "2 0.376587 \n", + "3 0.650024 \n", + "4 0.464371 \n", + "5 0.415569 \n", + "6 0.342503 \n", + "7 0.431245 \n", + "8 0.972194 \n", + "9 0.539514 \n", + "10 0.401726 \n", + "11 0.557200 \n", + "12 0.951171 \n", + "13 0.532680 \n", + "14 0.884682 \n", + "15 0.720882 \n", + "16 0.481552 \n", + "17 0.989676 \n", + "18 0.538813 \n", + "19 0.991494 \n", + "20 0.329449 \n", + "21 0.393810 \n", + "22 0.461975 \n" ] }, { @@ -2307,7 +4088,12 @@ "\n", "\n", "\n", - " No one can predict how long it might take this imagined future of the internet to come true and go mainstream, if it ever does. But if computers on our faces and more lifelike digital realities are coming for us, let’s start thinking through the implications now. I don’t have a fleshed out good humans’ guidebook for the metaverse. (Ugh, that word again.) But I know that instead of letting Mark Zuckerberg or the Apple chief executive Tim Cook decide on the etiquette, ethics, norms, rewards and risks of our potential brave new world of technology, we need to do it.\n", + " No one can predict how long it might take this imagined future of the internet to come true and go mainstream, if it ever does. But if computers on our faces and more lifelike digital realities are coming for us, let’s start thinking through the implications now.\n", + " Concluding Statement\n", + "\n", + "\n", + "\n", + " I don’t have a fleshed out good humans’ guidebook for the metaverse. (Ugh, that word again.) But I know that instead of letting Mark Zuckerberg or the Apple chief executive Tim Cook decide on the etiquette, ethics, norms, rewards and risks of our potential brave new world of technology, we need to do it.\n", " Concluding Statement\n", "\n", "\n", @@ -2332,7 +4118,12 @@ "\n", "\n", "\n", - " What I want all of us to do — whether we don’t get the fuss over virtual reality or love it — is to begin deliberating over where we want to focus the promise of this technology and limit the risks. I’m mindful of what has gone wrong when we allowed technology to wash over us and tried to figure out the details later.\n", + " What I want all of us to do — whether we don’t get the fuss over virtual reality or love it — is to begin deliberating over where we want to focus the promise of this technology and limit the risks.\n", + " Claim\n", + "\n", + "\n", + "\n", + " I’m mindful of what has gone wrong when we allowed technology to wash over us and tried to figure out the details later.\n", " Claim\n", "\n", "\n", @@ -2352,7 +4143,37 @@ "\n", "\n", "\n", - " It might be misguided to establish norms and laws around technologies that might take many years to become big. But tech companies and technologists aren’t waiting. They’re molding their imagined future of the internet now. If we don’t engage, that puts the companies in the driver’s seat. And we’ve seen the downside of that. With the holiday season upon us, we want to hear from our readers about the new ways that you’re using technology (apps, social media, websites, gadgets or more) to help you plan your travel, parties, shopping or family time. Tell us about an app or site you use during the holidays and what makes it helpful, or the tech you stopped using and why. We may publish a selection of the responses in an upcoming newsletter. Email ontech@nytimes.com. Tracking the Chinese propaganda and censorship machine: After the Chinese tennis star Peng Shuai accused a former high-ranking government official of sexual assault, she vanished from public life. My colleagues and ProPublica analyzed how Chinese state media, amplified by a network of fake social media accounts, circulated messages that Shuai was safe and free. Reading this will make you hungry: One man has made it his mission to have Mexico City’s street food vendors listed in Google Maps, Rest of World reported. A gazillion speedy delivery apps. With similar fonts: A brand expert writes for Bloomberg Opinion about the similar italics, avocado photos and “bed-headed, bucket-hatted ‘cheat day’ mood of indulgence” used by start-ups like Gopuff, Getir, Fridge No More and Jokr that deliver convenience and grocery items in 15 minutes or less. (A subscription may be required.) “Behold the fearsome Tyrannosaurus rex — all swaddled in a cozy Christmas sweater.” We want to hear from you. Tell us what you think of this newsletter and what else you’d like us to explore. You can reach us at ontech@nytimes.com.\n", + " It might be misguided to establish norms and laws around technologies that might take many years to become big. But tech companies and technologists aren’t waiting. They’re molding their imagined future of the internet now. If we don’t engage, that puts the companies in the driver’s seat. And we’ve seen the downside of that. \n", + " Evidence\n", + "\n", + "\n", + "\n", + " With the holiday season upon us, we want to hear from our readers about the new ways that you’re using technology (apps, social media, websites, gadgets or more) to help you plan your travel, parties, shopping or family time. Tell us about an app or site you use during the holidays and what makes it helpful, or the tech you stopped using and why. We may publish a selection of the responses in an upcoming newsletter. Email ontech@nytimes.com.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Tracking the Chinese propaganda and censorship machine: After the Chinese tennis star Peng Shuai accused a former high-ranking government official of sexual assault, she vanished from public life. My colleagues and ProPublica analyzed how Chinese state media, amplified by a network of fake social media accounts, circulated messages that Shuai was safe and free. \n", + " Evidence\n", + "\n", + "\n", + "\n", + " Reading this will make you hungry: One man has made it his mission to have Mexico City’s street food vendors listed in Google Maps, Rest of World reported.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " A gazillion speedy delivery apps. With similar fonts: A brand expert writes for Bloomberg Opinion about the similar italics, avocado photos and “bed-headed, bucket-hatted ‘cheat day’ mood of indulgence” used by start-ups like Gopuff, Getir, Fridge No More and Jokr that deliver convenience and grocery items in 15 minutes or less. (A subscription may be required.)\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Behold the fearsome Tyrannosaurus rex — all swaddled in a cozy Christmas sweater.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " We want to hear from you. Tell us what you think of this newsletter and what else you’d like us to explore. You can reach us at ontech@nytimes.com.\n", " Evidence\n", "\n", "\n", @@ -2381,7 +4202,7 @@ { "data": { "text/html": [ - "

nytimes\\at-yosemite-a-waterfall-turns-into-a-firefall.txt

" + "

at-yosemite-a-waterfall-turns-into-a-firefall.txt

" ], "text/plain": [ "" @@ -2401,7 +4222,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "cb4fb43e7c8c4be58f6cb4f06b6ee24e", + "model_id": "5e08590f3725458d8073ab0f11787401", "version_major": 2, "version_minor": 0 }, @@ -2422,7 +4243,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "c7b33b24de8141c18c9b630c49b690db", + "model_id": "5b15bad98d6b4835bb14a4ac04f4830c", "version_major": 2, "version_minor": 0 }, @@ -2444,7 +4265,16 @@ "Mike Gauthier, the park’s chief of staff, said that he was not sure if it was definitely the best firefall ever. But it certainly trumps the firefall the last few years, when drought turned Horsetail Fall mostly dry. {'label': 'Evidence', 'score': 0.7162582278251648}\n", "This cascade of glowing water is a natural alternative to another, discontinued Yosemite firefall tradition. {'label': 'Claim', 'score': 0.7649626135826111}\n", "In the 1870s, the owners of a hotel in the park started dumping embers from a cooling fire off a cliff. From Curry Village, a camping and lodging area below, this happened to look like a flowing fire, and spectators would gather to marvel at the sight. Mr. Gauthier said that it ended in 1968 because of changes in the way officials thought about national parks — as sites for enjoying the natural world, not places for artificial spectacle. {'label': 'Evidence', 'score': 0.9842155575752258}\n", - "The current Horsetail Fall phenomenon, traditionally viewed from points east of El Capitan, is expected to last at least for a few more days, according to Mr. Gauthier, when the sun still sets at the golden angle. {'label': 'Evidence', 'score': 0.6870169639587402}\n" + "The current Horsetail Fall phenomenon, traditionally viewed from points east of El Capitan, is expected to last at least for a few more days, according to Mr. Gauthier, when the sun still sets at the golden angle. {'label': 'Evidence', 'score': 0.687017023563385}\n", + " text label score\n", + "0 For a few weeks in February if the conditions ... Evidence 0.650639\n", + "1 Visitors who flocked to the California park la... Claim 0.491180\n", + "2 “In the over 20 years I have been photographin... Evidence 0.882060\n", + "3 The phenomenon occurs if there has been enough... Evidence 0.903956\n", + "4 Mike Gauthier, the park’s chief of staff, said... Evidence 0.716258\n", + "5 This cascade of glowing water is a natural alt... Claim 0.764963\n", + "6 In the 1870s, the owners of a hotel in the par... Evidence 0.984216\n", + "7 The current Horsetail Fall phenomenon, traditi... Evidence 0.687017\n" ] }, { @@ -2462,7 +4292,17 @@ "\n", "\n", "\n", - " “In the over 20 years I have been photographing the firefall and leading workshops there in Yosemite, I have never seen a more spectacular one,” said Michael Mariant, a photographer from Morro Bay, Calif., who leads teaching trips to Yosemite. The phenomenon occurs if there has been enough snow and rain in the Sierra Mountains to fuel the waterfall, if the skies are clear and if the setting sun strikes the water at an angle that creates the illusion of lava. Mike Gauthier, the park’s chief of staff, said that he was not sure if it was definitely the best firefall ever. But it certainly trumps the firefall the last few years, when drought turned Horsetail Fall mostly dry.\n", + " “In the over 20 years I have been photographing the firefall and leading workshops there in Yosemite, I have never seen a more spectacular one,” said Michael Mariant, a photographer from Morro Bay, Calif., who leads teaching trips to Yosemite.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The phenomenon occurs if there has been enough snow and rain in the Sierra Mountains to fuel the waterfall, if the skies are clear and if the setting sun strikes the water at an angle that creates the illusion of lava.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mike Gauthier, the park’s chief of staff, said that he was not sure if it was definitely the best firefall ever. But it certainly trumps the firefall the last few years, when drought turned Horsetail Fall mostly dry.\n", " Evidence\n", "\n", "\n", @@ -2472,7 +4312,12 @@ "\n", "\n", "\n", - " In the 1870s, the owners of a hotel in the park started dumping embers from a cooling fire off a cliff. From Curry Village, a camping and lodging area below, this happened to look like a flowing fire, and spectators would gather to marvel at the sight. Mr. Gauthier said that it ended in 1968 because of changes in the way officials thought about national parks — as sites for enjoying the natural world, not places for artificial spectacle. The current Horsetail Fall phenomenon, traditionally viewed from points east of El Capitan, is expected to last at least for a few more days, according to Mr. Gauthier, when the sun still sets at the golden angle.\n", + " In the 1870s, the owners of a hotel in the park started dumping embers from a cooling fire off a cliff. From Curry Village, a camping and lodging area below, this happened to look like a flowing fire, and spectators would gather to marvel at the sight. Mr. Gauthier said that it ended in 1968 because of changes in the way officials thought about national parks — as sites for enjoying the natural world, not places for artificial spectacle.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The current Horsetail Fall phenomenon, traditionally viewed from points east of El Capitan, is expected to last at least for a few more days, according to Mr. Gauthier, when the sun still sets at the golden angle.\n", " Evidence\n", "\n", "
" @@ -2496,7 +4341,7 @@ { "data": { "text/html": [ - "

nytimes\\australia-tourism-covid.txt

" + "

australia-tourism-covid.txt

" ], "text/plain": [ "" @@ -2516,7 +4361,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "c370a9a6852c475e862705d08b4d281c", + "model_id": "f18bb65df8aa4256836f3b333c9debf9", "version_major": 2, "version_minor": 0 }, @@ -2537,7 +4382,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "2a9572b6d3064bc29bf06032cec175ef", + "model_id": "cb929e4835244b55b3d4542b89d34316", "version_major": 2, "version_minor": 0 }, @@ -2570,22 +4415,22 @@ "She’s even revamped her menu, which used to feature dishes like Sichuan chile chicken that appealed to mainland Chinese visitors. Now the menu is “80 percent Australian-Chinese,” Ms. Chen said, with milder offerings like Mongolian beef. “I find I can’t sell the Chinese-Chinese dishes.” {'label': 'Evidence', 'score': 0.9790634512901306}\n", "Another thing desperately she’s looking forward to with the return of international travel: more workers. “Everywhere is shortage of labor,” she said. {'label': 'Claim', 'score': 0.8509906530380249}\n", "In January, the Australian Open — one of the country’s biggest sporting events, which draws hundreds of millions of viewers annually — became a media circus when Novak Djokovic, the world’s number one men’s tennis player, who is not vaccinated, was detained and finally deported from Melbourne because of his risk for “civil unrest.” The drama, which stretched on for 10 days, triggered protests in Australia from groups who believed the battle was the latest example of Covid-related mandates trampling public freedoms. {'label': 'Evidence', 'score': 0.9750771522521973}\n", - "“Strong borders are fundamental to the Australian way of life,” the country’s prime minister, Scott Morrison, said after the decision to cancel the tennis star’s visa. {'label': 'Claim', 'score': 0.43259188532829285}\n", + "“Strong borders are fundamental to the Australian way of life,” the country’s prime minister, Scott Morrison, said after the decision to cancel the tennis star’s visa. {'label': 'Claim', 'score': 0.43259191513061523}\n", "Australia’s fixation with border security is highly contentious within the country, particularly its harsh treatment of asylum seekers, but ultimately plays well with voters. But how would Mr. Djokovic’s unceremonious booting fit into Australia’s new “come on in” narrative? {'label': 'Evidence', 'score': 0.31351813673973083}\n", "“From our view, it really highlights the strength of Australia’s border policies,” said Chris Allison, Tourism Australia’s acting manager of the Americas. While Mr. Djokovic’s treatment was divisive, he said, it showed that “Australia has zero tolerance in terms of requiring vaccinations to come into the country,” and affirms the message of “how we’re trying to reopen our borders safely and protect the health of the nation.” {'label': 'Evidence', 'score': 0.7952109575271606}\n", "But time — and bookings — will tell if long-haul travelers are willing to bet on Australia’s reopening. {'label': 'Rebuttal', 'score': 0.8742719888687134}\n", "Some prefer to wait and see. Australia was where “everyone wanted to go” before the pandemic, said Samantha Carranza, a manager at Sky Tours, a travel agency in downtown Los Angeles. But “there isn’t much demand right now,” she said, adding that Australia’s protectiveness has made her clients cautious to travel there. “No one’s sure if it’s really open or not. Will it close again, will they get stuck there?” {'label': 'Evidence', 'score': 0.9613306522369385}\n", - "The data shows that interest in travel to Australia is already on the rise: Flight bookings were up 200 percent following the border-opening announcement compared to the week before, according to Forward Keys, a travel analytics company. {'label': 'Evidence', 'score': 0.6537935733795166}\n" + "The data shows that interest in travel to Australia is already on the rise: Flight bookings were up 200 percent following the border-opening announcement compared to the week before, according to Forward Keys, a travel analytics company. {'label': 'Evidence', 'score': 0.6537935733795166}\n", + "“While the immediate jump in bookings is encouraging, the overall booking volume compared to the equivalent week in 2019 is modest,” said Olivier Ponti, the firm’s vice president of insights. {'label': 'Evidence', 'score': 0.3916822075843811}\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ - "“While the immediate jump in bookings is encouraging, the overall booking volume compared to the equivalent week in 2019 is modest,” said Olivier Ponti, the firm’s vice president of insights. {'label': 'Evidence', 'score': 0.3916822671890259}\n", "“I imagine there will be more and more confidence over the course of the year,” said Christie Hudson, a senior public relations manager at Expedia, the major online travel agency. “People are really ready to start thinking about these bucket-list trips again. I think for a lot of Americans, Australia is a bucket-list-type trip.” {'label': 'Evidence', 'score': 0.9475237727165222}\n", "Cultural experiences led by Australia’s diverse Indigenous groups will be a focus of marketing to overseas travelers, according to Tourism Australia. But in the Northern Territory, the region with the highest proportion of Indigenous people, many remote communities are barred to outsiders until at least March 3 in an effort to protect the residents there from infection. {'label': 'Evidence', 'score': 0.9450604319572449}\n", - "International visitors are key for the region’s Indigenous tourism sector: Before the pandemic, nearly 70 percent of overseas visitors to the Northern Territory engaged in Aboriginal tourism activities, compared to 16 percent of Australian tourists. {'label': 'Evidence', 'score': 0.7620152235031128}\n", + "International visitors are key for the region’s Indigenous tourism sector: Before the pandemic, nearly 70 percent of overseas visitors to the Northern Territory engaged in Aboriginal tourism activities, compared to 16 percent of Australian tourists. {'label': 'Evidence', 'score': 0.762015163898468}\n", "Victor Cooper, who owns and operates Ayal Aboriginal Tours in Kakadu National Park, said he used to welcome visitors from Europe and the United States to his “grandmother’s country,” where he taught them about bush tucker (native foods) and told traditional stories of the land. {'label': 'Evidence', 'score': 0.9056172966957092}\n", "“I had a really, really good thing in the overseas market, it took a long time to get that,” Mr. Cooper said. He has not had any overseas bookings since the reopening announcement, and worries things may be “complicated” for a while yet. “I don’t think I’m going to get the clients I used to have back in 2019.” {'label': 'Evidence', 'score': 0.6870766282081604}\n", "Other tourism operators are already seeing signs of recovery, which gives them hope for a better year ahead. {'label': 'Claim', 'score': 0.8180713057518005}\n", @@ -2593,7 +4438,44 @@ "Since the news of the border reopening, booking numbers for later in the year have risen, he said. {'label': 'Claim', 'score': 0.7239107489585876}\n", "The first year of the pandemic was “quite a struggle,” he said. To survive, the hostel, which is on Bondi Beach’s main thoroughfare, slashed its rates and accepted longer-term lodgers, and even closed for a period. {'label': 'Evidence', 'score': 0.6611175537109375}\n", "But the border opening removes a major hurdle for him and other operators across the country, who want to convey a clear message for would-be tourists thinking of Australia: “Come!” he said. “This is the time to travel.” {'label': 'Rebuttal', 'score': 0.7568584680557251}\n", - "Follow New York Times Travel on Instagram, Twitter and Facebook. And sign up for our weekly Travel Dispatch newsletter to receive expert tips on traveling smarter and inspiration for your next vacation. Dreaming up a future getaway or just armchair traveling? Check out our 52 Places for a Changed World for 2022. {'label': 'Evidence', 'score': 0.5061874389648438}\n" + "Follow New York Times Travel on Instagram, Twitter and Facebook. And sign up for our weekly Travel Dispatch newsletter to receive expert tips on traveling smarter and inspiration for your next vacation. Dreaming up a future getaway or just armchair traveling? Check out our 52 Places for a Changed World for 2022. {'label': 'Evidence', 'score': 0.5061874389648438}\n", + " text label score\n", + "0 Moments after the Australian government announ... Evidence 0.986413\n", + "1 “They all said, ‘if we go back into a lockdown... Evidence 0.858794\n", + "2 Potential travelers and tourism operators alik... Evidence 0.621852\n", + "3 “There is no doubt that a full recovery will t... Evidence 0.607686\n", + "4 Tourism was one of the fastest growing sectors... Evidence 0.455501\n", + "5 Australia is among the world’s most immunized ... Evidence 0.972635\n", + "6 “It’s about coming back so the virus is under ... Evidence 0.932310\n", + "7 Australia’s grand reopening comes with a few g... Evidence 0.462096\n", + "8 But it will take a little more time for Austra... Evidence 0.607710\n", + "9 “We desperately want people to come back,” sai... Evidence 0.970193\n", + "10 While many operators who rely on foreign touri... Claim 0.523905\n", + "11 China overtook New Zealand as Australia’s larg... Evidence 0.976977\n", + "12 With China still severely limiting outbound tr... Claim 0.745278\n", + "13 Michelle Chen opened the Apollo Surfcoast Chin... Evidence 0.955576\n", + "14 When Australia closed to Chinese travelers on ... Evidence 0.991100\n", + "15 She’s even revamped her menu, which used to fe... Evidence 0.979063\n", + "16 Another thing desperately she’s looking forwar... Claim 0.850991\n", + "17 In January, the Australian Open — one of the c... Evidence 0.975077\n", + "18 “Strong borders are fundamental to the Austral... Claim 0.432592\n", + "19 Australia’s fixation with border security is h... Evidence 0.313518\n", + "20 “From our view, it really highlights the stren... Evidence 0.795211\n", + "21 But time — and bookings — will tell if long-ha... Rebuttal 0.874272\n", + "22 Some prefer to wait and see. Australia was whe... Evidence 0.961331\n", + "23 The data shows that interest in travel to Aust... Evidence 0.653794\n", + "24 “While the immediate jump in bookings is encou... Evidence 0.391682\n", + "25 “I imagine there will be more and more confide... Evidence 0.947524\n", + "26 Cultural experiences led by Australia’s divers... Evidence 0.945060\n", + "27 International visitors are key for the region’... Evidence 0.762015\n", + "28 Victor Cooper, who owns and operates Ayal Abor... Evidence 0.905617\n", + "29 “I had a really, really good thing in the over... Evidence 0.687077\n", + "30 Other tourism operators are already seeing sig... Claim 0.818071\n", + "31 “It’s good to see people again,” said Dave Gor... Evidence 0.747369\n", + "32 Since the news of the border reopening, bookin... Claim 0.723911\n", + "33 The first year of the pandemic was “quite a st... Evidence 0.661118\n", + "34 But the border opening removes a major hurdle ... Rebuttal 0.756858\n", + "35 Follow New York Times Travel on Instagram, Twi... Evidence 0.506187\n" ] }, { @@ -2601,7 +4483,52 @@ "text/html": [ "
\n", "\n", - " Moments after the Australian government announced that it would reopen the country’s borders to international travelers later this month, Emily Barrett locked in a fare for a flight to Sydney. The 32-year-old nanny from Palo Alto, Calif., spent three days researching and talking to Australian friends before she decided to book her trip to the island continent, which for two years had some of the world’s strictest border controls and longest lockdowns aimed at controlling the spread of the coronavirus. “They all said, ‘if we go back into a lockdown now, people will go into the streets,’” she said. Her two-week trip is scheduled to start a few days after the border opens on Feb. 21. Potential travelers and tourism operators alike are cautiously optimistic about the reopening of “Fortress Australia,” but many wonder if the isolated nation’s ongoing Covid restrictions — such as vaccine and testing requirements, as well as mask mandates — will make the return of international travel more of a trickle than a splash. Australia’s reputation for rigidity and reclusiveness during the pandemic — at odds with the inviting, easygoing nature portrayed by the country’s tourism boards — may also be a hurdle to overcome. “There is no doubt that a full recovery will take time, but we are confident that the demand for Australia is strong,” said Phillipa Harrison, the managing director of Tourism Australia, the country’s tourism board. Tourism was one of the fastest growing sectors in Australia’s economy before the pandemic, contributing 45 billion Australian dollars in 2019, or $32 billion. Australia is among the world’s most immunized countries for Covid-19, with 94 percent of people over 16 fully vaccinated. Through 2020 and 2021, the country pursued a tough “zero Covid” strategy that closed national and state borders; restricted Australians from returning home and even leaving; enforced monthslong lockdowns and required its few visitors to undergo expensive hotel quarantines. Surging cases of the Omicron variant of the coronavirus in January, which persist, but have since declined, tipped most of the country into a new ‘living with the virus’ phase. “It’s about coming back so the virus is under our control, whereas we felt that the virus was controlling us,” said Catherine Bennett, an epidemiologist at Deakin University in Melbourne, adding that opening the borders represented a turning point. “This is saying: We’re ready for this.” Australia’s grand reopening comes with a few ground rules. Travelers entering the country must be fully vaccinated to avoid a costly two-week hotel quarantine, and must test before arrival — somewhat common requirements for travel now. But it will take a little more time for Australia’s welcome mat to roll out all the way. The entire state of Western Australia — a third of Australia’s vast land mass, but home to just 10 percent of the population — has essentially been closed to both international travelers and even vaccinated Australian citizens for most of the pandemic. It plans to reopen to vaccinated travelers on March 3, with testing rules on arrival. The state, which has reported about 2,900 total cases and 10 deaths since the pandemic began, is home to Perth — one of the world’s most remote major cities — more than 7,000 miles of coastline, the Kimberley region’s dramatic sandstone gorges and wine destinations like Margaret River. While the federal government can open the nation’s borders, the states can still set their own Covid restrictions, including entry rules. “We desperately want people to come back,” said Graeme Skeggs, a general manager at Adam’s Pinnacle Tours, one of Western Australia’s larger tour companies, which, until the pandemic, operated luxury tours of the state’s renowned coastlines and landscapes. Much of their business evaporated after Covid struck, and some smaller operators the company worked with have closed. “Two years is a lot longer than any of us thought,” Mr. Skeggs said.\n", + " Moments after the Australian government announced that it would reopen the country’s borders to international travelers later this month, Emily Barrett locked in a fare for a flight to Sydney. The 32-year-old nanny from Palo Alto, Calif., spent three days researching and talking to Australian friends before she decided to book her trip to the island continent, which for two years had some of the world’s strictest border controls and longest lockdowns aimed at controlling the spread of the coronavirus.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “They all said, ‘if we go back into a lockdown now, people will go into the streets,’” she said. Her two-week trip is scheduled to start a few days after the border opens on Feb. 21.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Potential travelers and tourism operators alike are cautiously optimistic about the reopening of “Fortress Australia,” but many wonder if the isolated nation’s ongoing Covid restrictions — such as vaccine and testing requirements, as well as mask mandates — will make the return of international travel more of a trickle than a splash. Australia’s reputation for rigidity and reclusiveness during the pandemic — at odds with the inviting, easygoing nature portrayed by the country’s tourism boards — may also be a hurdle to overcome.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “There is no doubt that a full recovery will take time, but we are confident that the demand for Australia is strong,” said Phillipa Harrison, the managing director of Tourism Australia, the country’s tourism board.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Tourism was one of the fastest growing sectors in Australia’s economy before the pandemic, contributing 45 billion Australian dollars in 2019, or $32 billion.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Australia is among the world’s most immunized countries for Covid-19, with 94 percent of people over 16 fully vaccinated. Through 2020 and 2021, the country pursued a tough “zero Covid” strategy that closed national and state borders; restricted Australians from returning home and even leaving; enforced monthslong lockdowns and required its few visitors to undergo expensive hotel quarantines. Surging cases of the Omicron variant of the coronavirus in January, which persist, but have since declined, tipped most of the country into a new ‘living with the virus’ phase.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “It’s about coming back so the virus is under our control, whereas we felt that the virus was controlling us,” said Catherine Bennett, an epidemiologist at Deakin University in Melbourne, adding that opening the borders represented a turning point. “This is saying: We’re ready for this.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Australia’s grand reopening comes with a few ground rules. Travelers entering the country must be fully vaccinated to avoid a costly two-week hotel quarantine, and must test before arrival — somewhat common requirements for travel now.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " But it will take a little more time for Australia’s welcome mat to roll out all the way. The entire state of Western Australia — a third of Australia’s vast land mass, but home to just 10 percent of the population — has essentially been closed to both international travelers and even vaccinated Australian citizens for most of the pandemic. It plans to reopen to vaccinated travelers on March 3, with testing rules on arrival. The state, which has reported about 2,900 total cases and 10 deaths since the pandemic began, is home to Perth — one of the world’s most remote major cities — more than 7,000 miles of coastline, the Kimberley region’s dramatic sandstone gorges and wine destinations like Margaret River. While the federal government can open the nation’s borders, the states can still set their own Covid restrictions, including entry rules. \n", + " Evidence\n", + "\n", + "\n", + "\n", + " “We desperately want people to come back,” said Graeme Skeggs, a general manager at Adam’s Pinnacle Tours, one of Western Australia’s larger tour companies, which, until the pandemic, operated luxury tours of the state’s renowned coastlines and landscapes. Much of their business evaporated after Covid struck, and some smaller operators the company worked with have closed. “Two years is a lot longer than any of us thought,” Mr. Skeggs said.\n", " Evidence\n", "\n", "\n", @@ -2621,7 +4548,17 @@ "\n", "\n", "\n", - " Michelle Chen opened the Apollo Surfcoast Chinese Restaurant in 2012 along Victoria’s Great Ocean Road — one of the state’s major scenic attractions, about a 2.5-hour drive from Melbourne — to cater to the hundreds of Chinese day-trippers who would stream off buses each day on their way to view the Twelve Apostles, a limestone rock formation farther down the coast. When Australia closed to Chinese travelers on Feb. 1, 2020, she lost “nearly a hundred percent” of her business. In another stroke of misfortune, the restaurant burned down in April of last year. She reopened in December a few doors down. But Ms. Chen is not expecting her core customers to return for a long time. She’s even revamped her menu, which used to feature dishes like Sichuan chile chicken that appealed to mainland Chinese visitors. Now the menu is “80 percent Australian-Chinese,” Ms. Chen said, with milder offerings like Mongolian beef. “I find I can’t sell the Chinese-Chinese dishes.”\n", + " Michelle Chen opened the Apollo Surfcoast Chinese Restaurant in 2012 along Victoria’s Great Ocean Road — one of the state’s major scenic attractions, about a 2.5-hour drive from Melbourne — to cater to the hundreds of Chinese day-trippers who would stream off buses each day on their way to view the Twelve Apostles, a limestone rock formation farther down the coast.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " When Australia closed to Chinese travelers on Feb. 1, 2020, she lost “nearly a hundred percent” of her business. In another stroke of misfortune, the restaurant burned down in April of last year. She reopened in December a few doors down. But Ms. Chen is not expecting her core customers to return for a long time.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " She’s even revamped her menu, which used to feature dishes like Sichuan chile chicken that appealed to mainland Chinese visitors. Now the menu is “80 percent Australian-Chinese,” Ms. Chen said, with milder offerings like Mongolian beef. “I find I can’t sell the Chinese-Chinese dishes.”\n", " Evidence\n", "\n", "\n", @@ -2641,7 +4578,12 @@ "\n", "\n", "\n", - " Australia’s fixation with border security is highly contentious within the country, particularly its harsh treatment of asylum seekers, but ultimately plays well with voters. But how would Mr. Djokovic’s unceremonious booting fit into Australia’s new “come on in” narrative? “From our view, it really highlights the strength of Australia’s border policies,” said Chris Allison, Tourism Australia’s acting manager of the Americas. While Mr. Djokovic’s treatment was divisive, he said, it showed that “Australia has zero tolerance in terms of requiring vaccinations to come into the country,” and affirms the message of “how we’re trying to reopen our borders safely and protect the health of the nation.”\n", + " Australia’s fixation with border security is highly contentious within the country, particularly its harsh treatment of asylum seekers, but ultimately plays well with voters. But how would Mr. Djokovic’s unceremonious booting fit into Australia’s new “come on in” narrative?\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “From our view, it really highlights the strength of Australia’s border policies,” said Chris Allison, Tourism Australia’s acting manager of the Americas. While Mr. Djokovic’s treatment was divisive, he said, it showed that “Australia has zero tolerance in terms of requiring vaccinations to come into the country,” and affirms the message of “how we’re trying to reopen our borders safely and protect the health of the nation.”\n", " Evidence\n", "\n", "\n", @@ -2651,7 +4593,42 @@ "\n", "\n", "\n", - " Some prefer to wait and see. Australia was where “everyone wanted to go” before the pandemic, said Samantha Carranza, a manager at Sky Tours, a travel agency in downtown Los Angeles. But “there isn’t much demand right now,” she said, adding that Australia’s protectiveness has made her clients cautious to travel there. “No one’s sure if it’s really open or not. Will it close again, will they get stuck there?” The data shows that interest in travel to Australia is already on the rise: Flight bookings were up 200 percent following the border-opening announcement compared to the week before, according to Forward Keys, a travel analytics company. “While the immediate jump in bookings is encouraging, the overall booking volume compared to the equivalent week in 2019 is modest,” said Olivier Ponti, the firm’s vice president of insights. “I imagine there will be more and more confidence over the course of the year,” said Christie Hudson, a senior public relations manager at Expedia, the major online travel agency. “People are really ready to start thinking about these bucket-list trips again. I think for a lot of Americans, Australia is a bucket-list-type trip.” Cultural experiences led by Australia’s diverse Indigenous groups will be a focus of marketing to overseas travelers, according to Tourism Australia. But in the Northern Territory, the region with the highest proportion of Indigenous people, many remote communities are barred to outsiders until at least March 3 in an effort to protect the residents there from infection. International visitors are key for the region’s Indigenous tourism sector: Before the pandemic, nearly 70 percent of overseas visitors to the Northern Territory engaged in Aboriginal tourism activities, compared to 16 percent of Australian tourists. Victor Cooper, who owns and operates Ayal Aboriginal Tours in Kakadu National Park, said he used to welcome visitors from Europe and the United States to his “grandmother’s country,” where he taught them about bush tucker (native foods) and told traditional stories of the land. “I had a really, really good thing in the overseas market, it took a long time to get that,” Mr. Cooper said. He has not had any overseas bookings since the reopening announcement, and worries things may be “complicated” for a while yet. “I don’t think I’m going to get the clients I used to have back in 2019.”\n", + " Some prefer to wait and see. Australia was where “everyone wanted to go” before the pandemic, said Samantha Carranza, a manager at Sky Tours, a travel agency in downtown Los Angeles. But “there isn’t much demand right now,” she said, adding that Australia’s protectiveness has made her clients cautious to travel there. “No one’s sure if it’s really open or not. Will it close again, will they get stuck there?”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The data shows that interest in travel to Australia is already on the rise: Flight bookings were up 200 percent following the border-opening announcement compared to the week before, according to Forward Keys, a travel analytics company.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “While the immediate jump in bookings is encouraging, the overall booking volume compared to the equivalent week in 2019 is modest,” said Olivier Ponti, the firm’s vice president of insights.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “I imagine there will be more and more confidence over the course of the year,” said Christie Hudson, a senior public relations manager at Expedia, the major online travel agency. “People are really ready to start thinking about these bucket-list trips again. I think for a lot of Americans, Australia is a bucket-list-type trip.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Cultural experiences led by Australia’s diverse Indigenous groups will be a focus of marketing to overseas travelers, according to Tourism Australia. But in the Northern Territory, the region with the highest proportion of Indigenous people, many remote communities are barred to outsiders until at least March 3 in an effort to protect the residents there from infection.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " International visitors are key for the region’s Indigenous tourism sector: Before the pandemic, nearly 70 percent of overseas visitors to the Northern Territory engaged in Aboriginal tourism activities, compared to 16 percent of Australian tourists.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Victor Cooper, who owns and operates Ayal Aboriginal Tours in Kakadu National Park, said he used to welcome visitors from Europe and the United States to his “grandmother’s country,” where he taught them about bush tucker (native foods) and told traditional stories of the land.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “I had a really, really good thing in the overseas market, it took a long time to get that,” Mr. Cooper said. He has not had any overseas bookings since the reopening announcement, and worries things may be “complicated” for a while yet. “I don’t think I’m going to get the clients I used to have back in 2019.”\n", " Evidence\n", "\n", "\n", @@ -2705,7 +4682,7 @@ { "data": { "text/html": [ - "

nytimes\\babies-work-meeting.txt

" + "

babies-work-meeting.txt

" ], "text/plain": [ "" @@ -2725,7 +4702,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "6d10c9e19f18414f839bc46414313df5", + "model_id": "39f9964779af4e6d92cbdeeb27f103d2", "version_major": 2, "version_minor": 0 }, @@ -2746,7 +4723,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "e03752669b5f4c3081d5f3b08314611d", + "model_id": "5fa23058f7934f83891cb39c91d6cfb9", "version_major": 2, "version_minor": 0 }, @@ -2779,7 +4756,21 @@ "Rachel Lee has two sons in different developmental stages — 8-month-old Nathan and 5-year-old Logan — so working at home means designing distractions for various skill levels, grappling with disparate sleep schedules and trying to find quiet while tending to her boisterous family. Lee, an in-house lawyer for a financial technology and data company, says that while the prolonged work-from-home period has allowed her to catch many precious milestones with Nathan that she wasn’t able to with Logan, it has also mired her in productivity guilt: “I don’t know if other moms feel this, but I think there’s an internal pressure that, being physically at home, I should be cooking dinners for my family and ordering out less, or getting more stuff done around the house,” she says. Lee quit her previous job in the pandemic and found a new company with more flexibility; now she and her husband are also thinking of swapping their Upper West Side apartment for a home closer to family members they’ve sorely missed over the last few years. {'label': 'Evidence', 'score': 0.9851627945899963}\n", "Daniela Ocana, a founder and the program director of a preschool in Maspeth, Queens, has found herself obsessing over how to keep her 8-month-old daughter, Riley, safe amid a pandemic. “You don’t want to keep your child in a bubble,” Ocana says. “But it is scary to go out there.” Ocana oversees Covid-19 safeguards at the preschool where she works — and thus, must also reassure scores of other anxious parents — so safety is always at the forefront of her mind. In times of immense stress, though, Riley’s presence helps ground her: “There’s been so many times I’ve stopped in the room and been, like, ‘You’re learning, I’m learning, we’ll get through this,’” Ocana says. “She has taught me that although motherhood is hard and working is hard, it’s possible to have patience and love. There’s times I finish video calls, like, sweating, but then I look at her, and she’s smiling or she’s just close to me, and it makes me realize that’s why I continue to do it.” {'label': 'Evidence', 'score': 0.9234099984169006}\n", "Like many parents, David O’Brien, a lawyer and father to 5-month-old August, would prefer to be either working from an office or parenting from home — not both at once. “I think extending government-paid parental leave would be helpful for jobs that require focusing, or even just using both hands!” O’Brien says. Often, when August is on his father’s lap during a meeting, “I have to type notes contemporaneously, and I don’t want his head to get too close to the edge of the table, so I can only use one hand. Or there’s drool everywhere.” Intense multitasking was not the only change brought on by pandemic parenthood: When he and his wife, Alexandra, first had August, O’Brien was working in his dream job as a public defender, but the difficulty of raising a baby in a small Harlem apartment nudged him to look for other jobs in the field that could offer as much fulfillment but with higher pay. “I’m making decisions a little less for ideological reasons,” O’Brien says. “But I don’t know if that’s pandemic-related — it might just be being a parent.” {'label': 'Evidence', 'score': 0.9899875521659851}\n", - "Two years ago, Alison Taffel Rabinowitz was teaching at universities around New York City. But after a “really, really tough pregnancy” and the birth of her daughter, Evelyn Rose, Taffel Rabinowitz was forced to step away. She decided to start her own business and now runs private career coaching for women out of her Lower East Side apartment, with Evelyn Rose, now 6 months old, at her side. Some of her clients are working mothers seeking counsel about how to re-enter the work force. Her best advice to them? Emphasize the tremendous wins that have come out of motherhood rather than trying to gloss over the time away from work. “I’m proud that I figured this out and can still do what I love, while being able to focus with a baby, in some kind of weird way,” says Taffel Rabinowitz, who was able to breastfeed her daughter on camera while helping her clients negotiate for pay raises and new jobs. But Rabinowitz adds: “I could never write a résumé for being a mom. It’s a job that keeps getting more bullet points underneath that never end.” {'label': 'Evidence', 'score': 0.9588306546211243}\n" + "Two years ago, Alison Taffel Rabinowitz was teaching at universities around New York City. But after a “really, really tough pregnancy” and the birth of her daughter, Evelyn Rose, Taffel Rabinowitz was forced to step away. She decided to start her own business and now runs private career coaching for women out of her Lower East Side apartment, with Evelyn Rose, now 6 months old, at her side. Some of her clients are working mothers seeking counsel about how to re-enter the work force. Her best advice to them? Emphasize the tremendous wins that have come out of motherhood rather than trying to gloss over the time away from work. “I’m proud that I figured this out and can still do what I love, while being able to focus with a baby, in some kind of weird way,” says Taffel Rabinowitz, who was able to breastfeed her daughter on camera while helping her clients negotiate for pay raises and new jobs. But Rabinowitz adds: “I could never write a résumé for being a mom. It’s a job that keeps getting more bullet points underneath that never end.” {'label': 'Evidence', 'score': 0.9588306546211243}\n", + " text label score\n", + "0 Planning around naps, shelling out for nannies... Evidence 0.959018\n", + "1 For Sheena Demby, remote work as a new parent ... Evidence 0.991661\n", + "2 To keep their adventurous 16-month-old twin gi... Evidence 0.992497\n", + "3 Born near the start of the pandemic, 18-month-... Evidence 0.954848\n", + "4 Jerome Nathaniel was “prepared for chaos” when... Evidence 0.980430\n", + "5 Rachel Shapiro’s workday is a coil of meeting ... Evidence 0.915228\n", + "6 Even though Anna Li Sian’s daughter, Inez, is ... Evidence 0.974027\n", + "7 Each morning, Oliver Abel wakes up and strateg... Evidence 0.498428\n", + "8 Irene Kelly has a nanny who comes during work ... Evidence 0.989815\n", + "9 Rachel Lee has two sons in different developme... Evidence 0.985163\n", + "10 Daniela Ocana, a founder and the program direc... Evidence 0.923410\n", + "11 Like many parents, David O’Brien, a lawyer and... Evidence 0.989988\n", + "12 Two years ago, Alison Taffel Rabinowitz was te... Evidence 0.958831\n" ] }, { @@ -2787,7 +4778,67 @@ "text/html": [ "
\n", "\n", - " Planning around naps, shelling out for nannies or yelling into the void — parents working from home all have ways of coping with the daily mayhem. For these intimate portraits — of anxiety, frustration and also unbridled joy — we visited the New York homes of working parents and photographed them during real video meetings at their jobs, occasionally donning noise-canceling headphones to preserve their offices’ privacy. All photos capture the natural reactions of both parent and child over the course of the meetings. (No babies were made to cry.) For Sheena Demby, remote work as a new parent felt utterly paralyzing at the start. “The first time I had Noah Olivia in a meeting, I didn’t know what to do,” says Demby, who works as a creative-operations program manager at Cash App. “Out of desperation, I tried so hard to keep her out of the camera and to keep her quiet so that I could still present myself as, like, competent and doing great work. But the reality was, I could not keep this little baby from crying. I could not keep her from interrupting meetings. As a first-time mom and Black woman in corporate America — where I already felt I had to show above-average results just to be visible — I really struggled.” Noah Olivia is now almost 2, and Demby has brought a bit more of her personal life into the Zoom window. She keeps a rolling cart of diapers, wipes and work materials by her side so she can work alongside her daughter in any room of their Harlem apartment. Remote work is now Demby’s long-term plan: “I have zero intentions of ever going back into an office,” she says. To keep their adventurous 16-month-old twin girls, Clara and Tessa, from getting into too much trouble during work calls, Eric Sadkin and his husband, Klaus Koenigshausen, have recently become master maze designers. The pair, who work in real estate and private investment, are in the process of moving to a new apartment, so they have a bunch of cardboard boxes lying around — which they pile onto the floors into child-stymieing labyrinths when they anticipate lengthy meetings. “You can’t just run after them, because you’re in the middle of a Zoom call, so everything has to be baby-proofed to the max,” Koenigshausen says. “They are old enough to climb over the sofa and get into all kinds of trouble. So every day our sofa is a land of cushions, and our living room turns into a kids’ playground.” As a result, their entire one-bedroom Manhattan apartment, Sadkin says, “just looks littered, like an Amazon warehouse, with boxes to stop the kids going into random places and keep them in their play area. But we have peace of mind — because they can’t move.” Born near the start of the pandemic, 18-month-old Aslan is Kat Dinar’s third child — and he’s the one who compelled Dinar to switch from a pressurized front-office role to a calmer one in the back office of her finance company. Her new job, on a team that some refer to as the “mommy track,” affords her much more time at home with her husband and two older children in their Astoria, Queens, apartment. But still, Dinar wishes the choice hadn’t felt so necessary. “I’m a working mom,” Dinar says. “I’m not a stay-at-home mom — I never was, and I’ll never be. I need achievements at work, and I enjoy my kids; I love children. I don’t want to make these choices. I want to have it all.” Dinar yearns to see more support programs for working mothers and thinks terms like “work-life balance” oversimplify the realities of working parents. She adds that “women who have kids are indeed some of the best workers: You are the manager of your household. You delegate, give instructions, prioritize. You do everything. You are a manager and a leader and a woman.” Jerome Nathaniel was “prepared for chaos” when he and his wife became pandemic parents. “I love my job,” Nathaniel, who works at the nonprofit City Harvest, says. “We fight hunger, and hunger doesn’t just end, so your day never ends. I was just always working — you justify not having a personal life.” Thankfully his son, Mack, currently 3 months old, is “abnormally relaxed and cool and chill,” Nathaniel says. When it’s Nathaniel’s turn to care for him, Mack spends the bulk of his time napping in his father’s cradled arms while he takes video calls for grad school and work. Mack doesn’t care for screens — “and hopefully he never will, because we’re going to be a no-TV household,” says his father — but even with a relatively easygoing baby, Nathaniel has found himself having to reconfigure his attitude toward work. “If I work past 5 p.m. now, I know that’s not fair to my wife and my son and my family,” Nathaniel says. “If I were [working] in person, I couldn’t teach my kid how to smile on my lunch break.” Rachel Shapiro’s workday is a coil of meeting after meeting. As the senior vice president of marketing strategy at Complex, a digital entertainment company, she regularly shepherds calls across multiple departments — often over the sounds of her 2-year-old daughter, Waverly, or 6-month-old son, Sasha, throwing a spirited tantrum or having a meltdown under her desk. “I don’t know motherhood without the pandemic, and I haven’t quite known a meeting that hasn’t been infringed upon by one of my two children,” says Shapiro, who has become a pro at the text-chat function on Zoom and has also led many a work discussion — with the camera off — while breastfeeding, quelling cries or grappling with “back-to-back blowout diapers.” A saving grace for Shapiro has been her colleagues’ enthusiasm for Sasha or Waverly’s cameos in their meetings — and their patience for when things go awry. Once, “I was trying to lead a meeting on my AirPods while changing two diapers, literally covered in shit, and just thinking, Well, the show must go on!” she says, and sighs. Even though Anna Li Sian’s daughter, Inez, is no longer a newborn with round-the-clock demands, things have felt harder than ever recently. “There’s sort of a triple isolation that’s happened with the pandemic: We’re socially distancing, and it’s cold, and we’re new parents in New York who have to be especially cautious with this unvaccinated person in our care,” says Sian, who works in podcast marketing and takes Zoom calls all day long from the Cobble Hill apartment she shares with her husband, Robby Abaya, a software engineer also working from home. The couple say that they could not have continued in their full-time jobs without child-care help — they employ a nanny, and luckily Anna’s mother is able to come over “in a pinch” — but that they’re still exhausted by the matrix of choices they have to contend with, outside work. Inez just turned 1; the pair would love to expose her to wider social circles but have deliberated for weeks about whether the thrill of an in-person birthday party outweighs the chance of a Covid scare. “We are always recalibrating our risk tolerance,” Abaya says. Each morning, Oliver Abel wakes up and strategizes his day around the natural rhythms of his 1-year-old son, Oliver (or Ollie). Abel, a private wealth adviser who works mostly from his home in Bronxville, N.Y., prefers to shuffle his most important meetings around his son’s nap times. But even though he and his wife, who also works from home, map out their joint calendars meticulously in the mornings, the pair have learned to keep a number of go-to distractions on hand for when they are drawn into last-minute meetings. “It’s whatever I can do to keep him entertained while I have the meeting going on,” Abel — who, while working from home, has been able to witness major moments in Ollie’s life, like his first laugh and first attempts at crawling — says. And his son is pretty curious, it turns out. “Chewing on a calculator. Playing with my phone. Ripping up paper! He loves things that are new — so if you show him one of these items, he usually gets pretty distracted for 10 minutes or so.” Three shiny objects per 30-minute meeting usually do the trick. Irene Kelly has a nanny who comes during work hours to help out with her 9-month-old son, Henry, in her Forest Hills, Queens, apartment. But that doesn’t necessarily reduce any of her emotional load. “There’s never a break, even if the nanny’s here, because I hear him crying literally a room away,” Kelly, who works as an account executive at an insurance company, says. “And if I come downstairs to have a meal or a call, he sees me, and it’s like, ‘I only want my mom!’ There’s just so much pressure to make the right decisions.” While Kelly works from a makeshift setup at her dining-room table, her husband is currently working full time in a physical office. “Being home 24 hours with a baby is a blessing. But I get jealous of my husband sometimes because he has, to me, the freedom to compartmentalize,” Kelly says. “He has co-workers he can see regularly in a way that feels normal, and I’m behind a screen all day with this baby attached to me, who wants just as much attention as my job does. And each day, I’m not able to fully give myself 100 percent to either role.” Rachel Lee has two sons in different developmental stages — 8-month-old Nathan and 5-year-old Logan — so working at home means designing distractions for various skill levels, grappling with disparate sleep schedules and trying to find quiet while tending to her boisterous family. Lee, an in-house lawyer for a financial technology and data company, says that while the prolonged work-from-home period has allowed her to catch many precious milestones with Nathan that she wasn’t able to with Logan, it has also mired her in productivity guilt: “I don’t know if other moms feel this, but I think there’s an internal pressure that, being physically at home, I should be cooking dinners for my family and ordering out less, or getting more stuff done around the house,” she says. Lee quit her previous job in the pandemic and found a new company with more flexibility; now she and her husband are also thinking of swapping their Upper West Side apartment for a home closer to family members they’ve sorely missed over the last few years. Daniela Ocana, a founder and the program director of a preschool in Maspeth, Queens, has found herself obsessing over how to keep her 8-month-old daughter, Riley, safe amid a pandemic. “You don’t want to keep your child in a bubble,” Ocana says. “But it is scary to go out there.” Ocana oversees Covid-19 safeguards at the preschool where she works — and thus, must also reassure scores of other anxious parents — so safety is always at the forefront of her mind. In times of immense stress, though, Riley’s presence helps ground her: “There’s been so many times I’ve stopped in the room and been, like, ‘You’re learning, I’m learning, we’ll get through this,’” Ocana says. “She has taught me that although motherhood is hard and working is hard, it’s possible to have patience and love. There’s times I finish video calls, like, sweating, but then I look at her, and she’s smiling or she’s just close to me, and it makes me realize that’s why I continue to do it.” Like many parents, David O’Brien, a lawyer and father to 5-month-old August, would prefer to be either working from an office or parenting from home — not both at once. “I think extending government-paid parental leave would be helpful for jobs that require focusing, or even just using both hands!” O’Brien says. Often, when August is on his father’s lap during a meeting, “I have to type notes contemporaneously, and I don’t want his head to get too close to the edge of the table, so I can only use one hand. Or there’s drool everywhere.” Intense multitasking was not the only change brought on by pandemic parenthood: When he and his wife, Alexandra, first had August, O’Brien was working in his dream job as a public defender, but the difficulty of raising a baby in a small Harlem apartment nudged him to look for other jobs in the field that could offer as much fulfillment but with higher pay. “I’m making decisions a little less for ideological reasons,” O’Brien says. “But I don’t know if that’s pandemic-related — it might just be being a parent.” Two years ago, Alison Taffel Rabinowitz was teaching at universities around New York City. But after a “really, really tough pregnancy” and the birth of her daughter, Evelyn Rose, Taffel Rabinowitz was forced to step away. She decided to start her own business and now runs private career coaching for women out of her Lower East Side apartment, with Evelyn Rose, now 6 months old, at her side. Some of her clients are working mothers seeking counsel about how to re-enter the work force. Her best advice to them? Emphasize the tremendous wins that have come out of motherhood rather than trying to gloss over the time away from work. “I’m proud that I figured this out and can still do what I love, while being able to focus with a baby, in some kind of weird way,” says Taffel Rabinowitz, who was able to breastfeed her daughter on camera while helping her clients negotiate for pay raises and new jobs. But Rabinowitz adds: “I could never write a résumé for being a mom. It’s a job that keeps getting more bullet points underneath that never end.”\n", + " Planning around naps, shelling out for nannies or yelling into the void — parents working from home all have ways of coping with the daily mayhem. For these intimate portraits — of anxiety, frustration and also unbridled joy — we visited the New York homes of working parents and photographed them during real video meetings at their jobs, occasionally donning noise-canceling headphones to preserve their offices’ privacy. All photos capture the natural reactions of both parent and child over the course of the meetings. (No babies were made to cry.)\n", + " Evidence\n", + "\n", + "\n", + "\n", + " For Sheena Demby, remote work as a new parent felt utterly paralyzing at the start. “The first time I had Noah Olivia in a meeting, I didn’t know what to do,” says Demby, who works as a creative-operations program manager at Cash App. “Out of desperation, I tried so hard to keep her out of the camera and to keep her quiet so that I could still present myself as, like, competent and doing great work. But the reality was, I could not keep this little baby from crying. I could not keep her from interrupting meetings. As a first-time mom and Black woman in corporate America — where I already felt I had to show above-average results just to be visible — I really struggled.” Noah Olivia is now almost 2, and Demby has brought a bit more of her personal life into the Zoom window. She keeps a rolling cart of diapers, wipes and work materials by her side so she can work alongside her daughter in any room of their Harlem apartment. Remote work is now Demby’s long-term plan: “I have zero intentions of ever going back into an office,” she says. \n", + " Evidence\n", + "\n", + "\n", + "\n", + " To keep their adventurous 16-month-old twin girls, Clara and Tessa, from getting into too much trouble during work calls, Eric Sadkin and his husband, Klaus Koenigshausen, have recently become master maze designers. The pair, who work in real estate and private investment, are in the process of moving to a new apartment, so they have a bunch of cardboard boxes lying around — which they pile onto the floors into child-stymieing labyrinths when they anticipate lengthy meetings. “You can’t just run after them, because you’re in the middle of a Zoom call, so everything has to be baby-proofed to the max,” Koenigshausen says. “They are old enough to climb over the sofa and get into all kinds of trouble. So every day our sofa is a land of cushions, and our living room turns into a kids’ playground.” As a result, their entire one-bedroom Manhattan apartment, Sadkin says, “just looks littered, like an Amazon warehouse, with boxes to stop the kids going into random places and keep them in their play area. But we have peace of mind — because they can’t move.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Born near the start of the pandemic, 18-month-old Aslan is Kat Dinar’s third child — and he’s the one who compelled Dinar to switch from a pressurized front-office role to a calmer one in the back office of her finance company. Her new job, on a team that some refer to as the “mommy track,” affords her much more time at home with her husband and two older children in their Astoria, Queens, apartment. But still, Dinar wishes the choice hadn’t felt so necessary. “I’m a working mom,” Dinar says. “I’m not a stay-at-home mom — I never was, and I’ll never be. I need achievements at work, and I enjoy my kids; I love children. I don’t want to make these choices. I want to have it all.” Dinar yearns to see more support programs for working mothers and thinks terms like “work-life balance” oversimplify the realities of working parents. She adds that “women who have kids are indeed some of the best workers: You are the manager of your household. You delegate, give instructions, prioritize. You do everything. You are a manager and a leader and a woman.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Jerome Nathaniel was “prepared for chaos” when he and his wife became pandemic parents. “I love my job,” Nathaniel, who works at the nonprofit City Harvest, says. “We fight hunger, and hunger doesn’t just end, so your day never ends. I was just always working — you justify not having a personal life.” Thankfully his son, Mack, currently 3 months old, is “abnormally relaxed and cool and chill,” Nathaniel says. When it’s Nathaniel’s turn to care for him, Mack spends the bulk of his time napping in his father’s cradled arms while he takes video calls for grad school and work. Mack doesn’t care for screens — “and hopefully he never will, because we’re going to be a no-TV household,” says his father — but even with a relatively easygoing baby, Nathaniel has found himself having to reconfigure his attitude toward work. “If I work past 5 p.m. now, I know that’s not fair to my wife and my son and my family,” Nathaniel says. “If I were [working] in person, I couldn’t teach my kid how to smile on my lunch break.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Rachel Shapiro’s workday is a coil of meeting after meeting. As the senior vice president of marketing strategy at Complex, a digital entertainment company, she regularly shepherds calls across multiple departments — often over the sounds of her 2-year-old daughter, Waverly, or 6-month-old son, Sasha, throwing a spirited tantrum or having a meltdown under her desk. “I don’t know motherhood without the pandemic, and I haven’t quite known a meeting that hasn’t been infringed upon by one of my two children,” says Shapiro, who has become a pro at the text-chat function on Zoom and has also led many a work discussion — with the camera off — while breastfeeding, quelling cries or grappling with “back-to-back blowout diapers.” A saving grace for Shapiro has been her colleagues’ enthusiasm for Sasha or Waverly’s cameos in their meetings — and their patience for when things go awry. Once, “I was trying to lead a meeting on my AirPods while changing two diapers, literally covered in shit, and just thinking, Well, the show must go on!” she says, and sighs.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Even though Anna Li Sian’s daughter, Inez, is no longer a newborn with round-the-clock demands, things have felt harder than ever recently. “There’s sort of a triple isolation that’s happened with the pandemic: We’re socially distancing, and it’s cold, and we’re new parents in New York who have to be especially cautious with this unvaccinated person in our care,” says Sian, who works in podcast marketing and takes Zoom calls all day long from the Cobble Hill apartment she shares with her husband, Robby Abaya, a software engineer also working from home. The couple say that they could not have continued in their full-time jobs without child-care help — they employ a nanny, and luckily Anna’s mother is able to come over “in a pinch” — but that they’re still exhausted by the matrix of choices they have to contend with, outside work. Inez just turned 1; the pair would love to expose her to wider social circles but have deliberated for weeks about whether the thrill of an in-person birthday party outweighs the chance of a Covid scare. “We are always recalibrating our risk tolerance,” Abaya says.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Each morning, Oliver Abel wakes up and strategizes his day around the natural rhythms of his 1-year-old son, Oliver (or Ollie). Abel, a private wealth adviser who works mostly from his home in Bronxville, N.Y., prefers to shuffle his most important meetings around his son’s nap times. But even though he and his wife, who also works from home, map out their joint calendars meticulously in the mornings, the pair have learned to keep a number of go-to distractions on hand for when they are drawn into last-minute meetings. “It’s whatever I can do to keep him entertained while I have the meeting going on,” Abel — who, while working from home, has been able to witness major moments in Ollie’s life, like his first laugh and first attempts at crawling — says. And his son is pretty curious, it turns out. “Chewing on a calculator. Playing with my phone. Ripping up paper! He loves things that are new — so if you show him one of these items, he usually gets pretty distracted for 10 minutes or so.” Three shiny objects per 30-minute meeting usually do the trick.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Irene Kelly has a nanny who comes during work hours to help out with her 9-month-old son, Henry, in her Forest Hills, Queens, apartment. But that doesn’t necessarily reduce any of her emotional load. “There’s never a break, even if the nanny’s here, because I hear him crying literally a room away,” Kelly, who works as an account executive at an insurance company, says. “And if I come downstairs to have a meal or a call, he sees me, and it’s like, ‘I only want my mom!’ There’s just so much pressure to make the right decisions.” While Kelly works from a makeshift setup at her dining-room table, her husband is currently working full time in a physical office. “Being home 24 hours with a baby is a blessing. But I get jealous of my husband sometimes because he has, to me, the freedom to compartmentalize,” Kelly says. “He has co-workers he can see regularly in a way that feels normal, and I’m behind a screen all day with this baby attached to me, who wants just as much attention as my job does. And each day, I’m not able to fully give myself 100 percent to either role.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Rachel Lee has two sons in different developmental stages — 8-month-old Nathan and 5-year-old Logan — so working at home means designing distractions for various skill levels, grappling with disparate sleep schedules and trying to find quiet while tending to her boisterous family. Lee, an in-house lawyer for a financial technology and data company, says that while the prolonged work-from-home period has allowed her to catch many precious milestones with Nathan that she wasn’t able to with Logan, it has also mired her in productivity guilt: “I don’t know if other moms feel this, but I think there’s an internal pressure that, being physically at home, I should be cooking dinners for my family and ordering out less, or getting more stuff done around the house,” she says. Lee quit her previous job in the pandemic and found a new company with more flexibility; now she and her husband are also thinking of swapping their Upper West Side apartment for a home closer to family members they’ve sorely missed over the last few years.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Daniela Ocana, a founder and the program director of a preschool in Maspeth, Queens, has found herself obsessing over how to keep her 8-month-old daughter, Riley, safe amid a pandemic. “You don’t want to keep your child in a bubble,” Ocana says. “But it is scary to go out there.” Ocana oversees Covid-19 safeguards at the preschool where she works — and thus, must also reassure scores of other anxious parents — so safety is always at the forefront of her mind. In times of immense stress, though, Riley’s presence helps ground her: “There’s been so many times I’ve stopped in the room and been, like, ‘You’re learning, I’m learning, we’ll get through this,’” Ocana says. “She has taught me that although motherhood is hard and working is hard, it’s possible to have patience and love. There’s times I finish video calls, like, sweating, but then I look at her, and she’s smiling or she’s just close to me, and it makes me realize that’s why I continue to do it.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Like many parents, David O’Brien, a lawyer and father to 5-month-old August, would prefer to be either working from an office or parenting from home — not both at once. “I think extending government-paid parental leave would be helpful for jobs that require focusing, or even just using both hands!” O’Brien says. Often, when August is on his father’s lap during a meeting, “I have to type notes contemporaneously, and I don’t want his head to get too close to the edge of the table, so I can only use one hand. Or there’s drool everywhere.” Intense multitasking was not the only change brought on by pandemic parenthood: When he and his wife, Alexandra, first had August, O’Brien was working in his dream job as a public defender, but the difficulty of raising a baby in a small Harlem apartment nudged him to look for other jobs in the field that could offer as much fulfillment but with higher pay. “I’m making decisions a little less for ideological reasons,” O’Brien says. “But I don’t know if that’s pandemic-related — it might just be being a parent.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Two years ago, Alison Taffel Rabinowitz was teaching at universities around New York City. But after a “really, really tough pregnancy” and the birth of her daughter, Evelyn Rose, Taffel Rabinowitz was forced to step away. She decided to start her own business and now runs private career coaching for women out of her Lower East Side apartment, with Evelyn Rose, now 6 months old, at her side. Some of her clients are working mothers seeking counsel about how to re-enter the work force. Her best advice to them? Emphasize the tremendous wins that have come out of motherhood rather than trying to gloss over the time away from work. “I’m proud that I figured this out and can still do what I love, while being able to focus with a baby, in some kind of weird way,” says Taffel Rabinowitz, who was able to breastfeed her daughter on camera while helping her clients negotiate for pay raises and new jobs. But Rabinowitz adds: “I could never write a résumé for being a mom. It’s a job that keeps getting more bullet points underneath that never end.”\n", " Evidence\n", "\n", "
" @@ -2811,7 +4862,7 @@ { "data": { "text/html": [ - "

nytimes\\basketball-celtics-ime-udoka.txt

" + "

basketball-celtics-ime-udoka.txt

" ], "text/plain": [ "" @@ -2831,7 +4882,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "94dbdf477bb745bcbf5bd6234536663c", + "model_id": "983b8f9177fe434099a8670c53fc6a5b", "version_major": 2, "version_minor": 0 }, @@ -2852,7 +4903,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "52d866ebb99644309bb84a9e246ef98d", + "model_id": "ff96f0aa31c74bb4861a25693c992384", "version_major": 2, "version_minor": 0 }, @@ -2868,7 +4919,7 @@ "output_type": "stream", "text": [ "BOSTON — Ime Udoka has been emphasizing ball movement since the day the Celtics hired him as their coach. At his introductory news conference last June, Udoka apologized to Brad Stevens, his predecessor and the team’s newly appointed president of basketball operations, as a way of softening the blow before he pointed out that the Celtics had ranked near the bottom of the league in assists last season. {'label': 'Evidence', 'score': 0.8588799834251404}\n", - "“We want to have more team basketball,” Udoka said at the time. {'label': 'Claim', 'score': 0.5371425747871399}\n", + "“We want to have more team basketball,” Udoka said at the time. {'label': 'Claim', 'score': 0.5371426343917847}\n", "It was not instant fix for Udoka, whose team hobbled into the middle of January with a losing record. The ball was not moving. A bit of frustration was evident. But even during their struggles, Udoka sensed that his players were receptive to coaching, he said. So he reinforced his pass-first concepts in film sessions and by citing statistics that showed the offense was more potent when the ball zipped around the court. {'label': 'Evidence', 'score': 0.9714533090591431}\n", "“It took some time,” Udoka said on Wednesday, “but I think they’re embracing being playmakers and helping everyone else score, and I think it’s pleasing to me and noticeable when we play that way.” {'label': 'Evidence', 'score': 0.4054408669471741}\n", "Entering the N.B.A.’s All-Star break, the Celtics have resurfaced as one of the better teams in the league after winning 11 of their last 13 games, a run of solid play that has vaulted them up the standings, quieted a few of their critics and shown that Udoka’s sharing-is-caring formula can work in their favor. {'label': 'Evidence', 'score': 0.4479587972164154}\n", @@ -2877,18 +4928,41 @@ "Still, the loss was a reminder that good habits need to be nurtured, and one the Celtics can stew over before they resume their season against the Nets next Thursday. {'label': 'Rebuttal', 'score': 0.5668461918830872}\n", "“There’s got to be an edge to us coming back,” the veteran forward Al Horford said, adding: “This is when the fun starts.” {'label': 'Evidence', 'score': 0.489627867937088}\n", "It always takes time for new coaches to incorporate their systems, no matter how talented their personnel. Dwane Casey, the coach of the Pistons, knows the feeling. Before Wednesday’s game, he recalled landing his first head coaching job in the N.B.A., with the Minnesota Timberwolves in 2005. Kevin Garnett, a colorful figure and a future Hall of Famer, made a habit of interrupting Casey whenever he tried to show the team a new play. {'label': 'Evidence', 'score': 0.9749068021774292}\n", - "“It’s not easy,” Casey said. “You want to go in there with all these grand ideas, but you learn pretty quick that you’ve got to be flexible, that you’ve got to learn the players and they’ve got to get a feel for you.” {'label': 'Evidence', 'score': 0.5412859916687012}\n", + "“It’s not easy,” Casey said. “You want to go in there with all these grand ideas, but you learn pretty quick that you’ve got to be flexible, that you’ve got to learn the players and they’ve got to get a feel for you.” {'label': 'Evidence', 'score': 0.5412859320640564}\n", "Udoka had to be just as patient in Boston, where the Celtics’ season was less than two weeks old when a loss to the Chicago Bulls dropped their record to 2-5. Afterward, Smart, the team’s starting point guard, used his platform at a postgame news conference to criticize Jayson Tatum and Jaylen Brown, the team’s top two players, for essentially hogging the ball. {'label': 'Evidence', 'score': 0.9754215478897095}\n", "The Celtics spent subsequent weeks wrestling with mediocrity — two wins here, three losses there — without much continuity. And they found themselves absorbing more barbs after a loss to the 76ers on Jan. 14. Joel Embiid, the 76ers’ All-Star center, stated the obvious: The Celtics were a one-on-one team. Embiid went so far as to compare them unfavorably to the Charlotte Hornets, whom the 76ers had played two days earlier. {'label': 'Evidence', 'score': 0.9839408993721008}\n", "“Charlotte, they move the ball extremely well and they have shooters all over the place,” Embiid told reporters. “Obviously, Boston is more of an iso-heavy team, so it becomes easier to load up and try to stop them.” {'label': 'Evidence', 'score': 0.9201381802558899}\n", "Perhaps it was a message that the Celtics needed to hear. Tatum, 23, and Brown, 25, are terrific players, each capable of torching a conga line of defenders by himself. And there are certainly times when they should take advantage of their matchups. But Udoka wants all of his players to avoid “playing in a crowd,” he said, and to exercise more discretion. Above all, he seeks balance: fast breaks, pick-and-rolls, ball reversals. {'label': 'Evidence', 'score': 0.9563264846801758}\n", "“We have a multidimensional team that can score in a lot of different ways,” he said. {'label': 'Claim', 'score': 0.6224746108055115}\n", "Sure enough, the Celtics were rolling by the time they paid another visit to Philadelphia on Tuesday. Udoka delivered some pregame motivation by showing his players that old quote from Embiid — the one about them being “easier” to defend than the Hornets had been. “It stood out to me when he said it,” Udoka said. {'label': 'Evidence', 'score': 0.8321462869644165}\n", - "The Celtics won by 48 points. Doc Rivers, the coach of the 76ers, spent the game looking as though he were in line at the Department of Motor Vehicles. {'label': 'Evidence', 'score': 0.8697196841239929}\n", + "The Celtics won by 48 points. Doc Rivers, the coach of the 76ers, spent the game looking as though he were in line at the Department of Motor Vehicles. {'label': 'Evidence', 'score': 0.8697197437286377}\n", "“You can literally see the improvement of the ball movement,” he said. “The old Boston is more isos. This Boston is driving and playing with each other, and that’s what makes them so much tougher.” {'label': 'Evidence', 'score': 0.6558160185813904}\n", "The Celtics, who are also among the league leaders in defensive rating, made some savvy moves ahead of last week’s trade deadline by acquiring Derrick White, a versatile guard, and Daniel Theis, a defense-minded center. {'label': 'Evidence', 'score': 0.6316162347793579}\n", "As for the All-Star break, Udoka said he would spend time with his family. But he also plans to dive into film by revisiting the hard times. {'label': 'Evidence', 'score': 0.7433135509490967}\n", - "“Really take a look at the struggles we had early,” he said, “and how we’ve turned the corner.” {'label': 'Claim', 'score': 0.44172030687332153}\n" + "“Really take a look at the struggles we had early,” he said, “and how we’ve turned the corner.” {'label': 'Claim', 'score': 0.44172030687332153}\n", + " text label score\n", + "0 BOSTON — Ime Udoka has been emphasizing ball m... Evidence 0.858880\n", + "1 “We want to have more team basketball,” Udoka ... Claim 0.537143\n", + "2 It was not instant fix for Udoka, whose team h... Evidence 0.971453\n", + "3 “It took some time,” Udoka said on Wednesday, ... Evidence 0.405441\n", + "4 Entering the N.B.A.’s All-Star break, the Celt... Evidence 0.447959\n", + "5 “The turnovers are down and the assists are up... Evidence 0.550534\n", + "6 He made that observation a couple of hours bef... Evidence 0.990259\n", + "7 Still, the loss was a reminder that good habit... Rebuttal 0.566846\n", + "8 “There’s got to be an edge to us coming back,”... Evidence 0.489628\n", + "9 It always takes time for new coaches to incorp... Evidence 0.974907\n", + "10 “It’s not easy,” Casey said. “You want to go i... Evidence 0.541286\n", + "11 Udoka had to be just as patient in Boston, whe... Evidence 0.975422\n", + "12 The Celtics spent subsequent weeks wrestling w... Evidence 0.983941\n", + "13 “Charlotte, they move the ball extremely well ... Evidence 0.920138\n", + "14 Perhaps it was a message that the Celtics need... Evidence 0.956326\n", + "15 “We have a multidimensional team that can scor... Claim 0.622475\n", + "16 Sure enough, the Celtics were rolling by the t... Evidence 0.832146\n", + "17 The Celtics won by 48 points. Doc Rivers, the ... Evidence 0.869720\n", + "18 “You can literally see the improvement of the ... Evidence 0.655816\n", + "19 The Celtics, who are also among the league lea... Evidence 0.631616\n", + "20 As for the All-Star break, Udoka said he would... Evidence 0.743314\n", + "21 “Really take a look at the struggles we had ea... Claim 0.441720\n" ] }, { @@ -2906,7 +4980,27 @@ "\n", "\n", "\n", - " It was not instant fix for Udoka, whose team hobbled into the middle of January with a losing record. The ball was not moving. A bit of frustration was evident. But even during their struggles, Udoka sensed that his players were receptive to coaching, he said. So he reinforced his pass-first concepts in film sessions and by citing statistics that showed the offense was more potent when the ball zipped around the court. “It took some time,” Udoka said on Wednesday, “but I think they’re embracing being playmakers and helping everyone else score, and I think it’s pleasing to me and noticeable when we play that way.” Entering the N.B.A.’s All-Star break, the Celtics have resurfaced as one of the better teams in the league after winning 11 of their last 13 games, a run of solid play that has vaulted them up the standings, quieted a few of their critics and shown that Udoka’s sharing-is-caring formula can work in their favor. “The turnovers are down and the assists are up because we’re getting rid of the ball,” Udoka said. He made that observation a couple of hours before the Celtics (34-26) had their nine-game winning streak snapped on Wednesday night by the Detroit Pistons, one of the worst teams in the league. It was the second game of a back-to-back for the Celtics, who had routed the Philadelphia 76ers on Tuesday and were without two injured starters, Marcus Smart and Rob Williams.\n", + " It was not instant fix for Udoka, whose team hobbled into the middle of January with a losing record. The ball was not moving. A bit of frustration was evident. But even during their struggles, Udoka sensed that his players were receptive to coaching, he said. So he reinforced his pass-first concepts in film sessions and by citing statistics that showed the offense was more potent when the ball zipped around the court.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “It took some time,” Udoka said on Wednesday, “but I think they’re embracing being playmakers and helping everyone else score, and I think it’s pleasing to me and noticeable when we play that way.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Entering the N.B.A.’s All-Star break, the Celtics have resurfaced as one of the better teams in the league after winning 11 of their last 13 games, a run of solid play that has vaulted them up the standings, quieted a few of their critics and shown that Udoka’s sharing-is-caring formula can work in their favor.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “The turnovers are down and the assists are up because we’re getting rid of the ball,” Udoka said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " He made that observation a couple of hours before the Celtics (34-26) had their nine-game winning streak snapped on Wednesday night by the Detroit Pistons, one of the worst teams in the league. It was the second game of a back-to-back for the Celtics, who had routed the Philadelphia 76ers on Tuesday and were without two injured starters, Marcus Smart and Rob Williams.\n", " Evidence\n", "\n", "\n", @@ -2916,7 +5010,37 @@ "\n", "\n", "\n", - " “There’s got to be an edge to us coming back,” the veteran forward Al Horford said, adding: “This is when the fun starts.” It always takes time for new coaches to incorporate their systems, no matter how talented their personnel. Dwane Casey, the coach of the Pistons, knows the feeling. Before Wednesday’s game, he recalled landing his first head coaching job in the N.B.A., with the Minnesota Timberwolves in 2005. Kevin Garnett, a colorful figure and a future Hall of Famer, made a habit of interrupting Casey whenever he tried to show the team a new play. “It’s not easy,” Casey said. “You want to go in there with all these grand ideas, but you learn pretty quick that you’ve got to be flexible, that you’ve got to learn the players and they’ve got to get a feel for you.” Udoka had to be just as patient in Boston, where the Celtics’ season was less than two weeks old when a loss to the Chicago Bulls dropped their record to 2-5. Afterward, Smart, the team’s starting point guard, used his platform at a postgame news conference to criticize Jayson Tatum and Jaylen Brown, the team’s top two players, for essentially hogging the ball. The Celtics spent subsequent weeks wrestling with mediocrity — two wins here, three losses there — without much continuity. And they found themselves absorbing more barbs after a loss to the 76ers on Jan. 14. Joel Embiid, the 76ers’ All-Star center, stated the obvious: The Celtics were a one-on-one team. Embiid went so far as to compare them unfavorably to the Charlotte Hornets, whom the 76ers had played two days earlier. “Charlotte, they move the ball extremely well and they have shooters all over the place,” Embiid told reporters. “Obviously, Boston is more of an iso-heavy team, so it becomes easier to load up and try to stop them.” Perhaps it was a message that the Celtics needed to hear. Tatum, 23, and Brown, 25, are terrific players, each capable of torching a conga line of defenders by himself. And there are certainly times when they should take advantage of their matchups. But Udoka wants all of his players to avoid “playing in a crowd,” he said, and to exercise more discretion. Above all, he seeks balance: fast breaks, pick-and-rolls, ball reversals.\n", + " “There’s got to be an edge to us coming back,” the veteran forward Al Horford said, adding: “This is when the fun starts.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " It always takes time for new coaches to incorporate their systems, no matter how talented their personnel. Dwane Casey, the coach of the Pistons, knows the feeling. Before Wednesday’s game, he recalled landing his first head coaching job in the N.B.A., with the Minnesota Timberwolves in 2005. Kevin Garnett, a colorful figure and a future Hall of Famer, made a habit of interrupting Casey whenever he tried to show the team a new play.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “It’s not easy,” Casey said. “You want to go in there with all these grand ideas, but you learn pretty quick that you’ve got to be flexible, that you’ve got to learn the players and they’ve got to get a feel for you.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Udoka had to be just as patient in Boston, where the Celtics’ season was less than two weeks old when a loss to the Chicago Bulls dropped their record to 2-5. Afterward, Smart, the team’s starting point guard, used his platform at a postgame news conference to criticize Jayson Tatum and Jaylen Brown, the team’s top two players, for essentially hogging the ball.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The Celtics spent subsequent weeks wrestling with mediocrity — two wins here, three losses there — without much continuity. And they found themselves absorbing more barbs after a loss to the 76ers on Jan. 14. Joel Embiid, the 76ers’ All-Star center, stated the obvious: The Celtics were a one-on-one team. Embiid went so far as to compare them unfavorably to the Charlotte Hornets, whom the 76ers had played two days earlier.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Charlotte, they move the ball extremely well and they have shooters all over the place,” Embiid told reporters. “Obviously, Boston is more of an iso-heavy team, so it becomes easier to load up and try to stop them.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Perhaps it was a message that the Celtics needed to hear. Tatum, 23, and Brown, 25, are terrific players, each capable of torching a conga line of defenders by himself. And there are certainly times when they should take advantage of their matchups. But Udoka wants all of his players to avoid “playing in a crowd,” he said, and to exercise more discretion. Above all, he seeks balance: fast breaks, pick-and-rolls, ball reversals.\n", " Evidence\n", "\n", "\n", @@ -2926,22 +5050,42 @@ "\n", "\n", "\n", - " Sure enough, the Celtics were rolling by the time they paid another visit to Philadelphia on Tuesday. Udoka delivered some pregame motivation by showing his players that old quote from Embiid — the one about them being “easier” to defend than the Hornets had been. “It stood out to me when he said it,” Udoka said. The Celtics won by 48 points. Doc Rivers, the coach of the 76ers, spent the game looking as though he were in line at the Department of Motor Vehicles. “You can literally see the improvement of the ball movement,” he said. “The old Boston is more isos. This Boston is driving and playing with each other, and that’s what makes them so much tougher.” The Celtics, who are also among the league leaders in defensive rating, made some savvy moves ahead of last week’s trade deadline by acquiring Derrick White, a versatile guard, and Daniel Theis, a defense-minded center. As for the All-Star break, Udoka said he would spend time with his family. But he also plans to dive into film by revisiting the hard times.\n", + " Sure enough, the Celtics were rolling by the time they paid another visit to Philadelphia on Tuesday. Udoka delivered some pregame motivation by showing his players that old quote from Embiid — the one about them being “easier” to defend than the Hornets had been. “It stood out to me when he said it,” Udoka said.\n", " Evidence\n", "\n", "\n", - "\n", - " “Really take a look at the struggles we had early,” he said, “and how we’ve turned the corner.”\n", - " Claim\n", + "\n", + " The Celtics won by 48 points. Doc Rivers, the coach of the 76ers, spent the game looking as though he were in line at the Department of Motor Vehicles.\n", + " Evidence\n", "\n", - "
" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" + "\n", + "\n", + " “You can literally see the improvement of the ball movement,” he said. “The old Boston is more isos. This Boston is driving and playing with each other, and that’s what makes them so much tougher.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The Celtics, who are also among the league leaders in defensive rating, made some savvy moves ahead of last week’s trade deadline by acquiring Derrick White, a versatile guard, and Daniel Theis, a defense-minded center.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " As for the All-Star break, Udoka said he would spend time with his family. But he also plans to dive into film by revisiting the hard times.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Really take a look at the struggles we had early,” he said, “and how we’ve turned the corner.”\n", + " Claim\n", + "\n", + "
" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" }, { "name": "stdout", @@ -2955,7 +5099,7 @@ { "data": { "text/html": [ - "

nytimes\\basquiat-painting-orlando-mumford-museum.txt

" + "

basquiat-painting-orlando-mumford-museum.txt

" ], "text/plain": [ "" @@ -2975,7 +5119,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "56e3f6b2f4284337aa11e45710d2d160", + "model_id": "517f9e9ceff54592b9c978e5fccba358", "version_major": 2, "version_minor": 0 }, @@ -2996,7 +5140,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "8899990143744d80a1070fd1cca323a7", + "model_id": "1afac41fcbed4c46a3e94a8fb50d813f", "version_major": 2, "version_minor": 0 }, @@ -3026,14 +5170,14 @@ "Gagosian himself conceded to Hoban that his own accounting methods with Basquiat were hardly traditional: “It was the way he chose to be paid, in cash, or in barter, or with clothes, or like he’d say ‘Well, buy my girlfriend a trip to Paris.’” {'label': 'Evidence', 'score': 0.4087965786457062}\n", "More than just professional reputations now rest on the question of these paintings’ true background. The value of Basquiat’s work has soared: In 2017 one of his paintings sold for $110.5 million at Sotheby’s — the current auction high for an American artwork. If the 25 Mumford-purchased paintings are authenticated as actual Basquiats, Putnam Fine Art and Antique Appraisals puts their total worth at close to $100 million. {'label': 'Evidence', 'score': 0.9846246242523193}\n", "An official verdict on this whodunit by the Basquiat estate is now impossible — it closed its authentication committee in 2012 in the aftermath of a lawsuit over Basquiat artworks initially deemed fake. (Amid similar time-consuming and expensive litigation, the Andy Warhol estate closed its own authentication committee that same year.) Yet without such a stamp of estate approval, or an established provenance, major auction houses and heavyweight art dealers are reluctant to handle such works. Despite several years of being quietly shopped around the secondary art market, these Basquiats have to date found no takers, according to the owners. The Orlando museum showing could help dispel that market wariness, lending them a new air of institutional legitimacy. {'label': 'Evidence', 'score': 0.92879718542099}\n", - "Sotheby’s declined to comment on the authenticity of these paintings. Several art world professionals were similarly gun-shy, citing the experience of the estate’s authentication committee and their fear that publicly weighing in could embroil them in a lawsuit with the paintings’ current owners. One dealer who personally worked with Basquiat and saw photographs of the paintings in the Orlando museum said, “the way Basquiat places elements in the composition has an interior logic which is missing in these images.” {'label': 'Evidence', 'score': 0.9353076815605164}\n" + "Sotheby’s declined to comment on the authenticity of these paintings. Several art world professionals were similarly gun-shy, citing the experience of the estate’s authentication committee and their fear that publicly weighing in could embroil them in a lawsuit with the paintings’ current owners. One dealer who personally worked with Basquiat and saw photographs of the paintings in the Orlando museum said, “the way Basquiat places elements in the composition has an interior logic which is missing in these images.” {'label': 'Evidence', 'score': 0.9353076815605164}\n", + "In addition to Force and Mangin, partial ownership of the artworks now lies with one of Los Angeles’s most prominent trial lawyers, Pierce O’Donnell, famed for successful litigation against a veritable who’s who of the city’s glitterati, from the actor Brad Pitt (on behalf of his ex-wife Angelina Jolie) to the former Los Angeles Clippers owner Donald Sterling. {'label': 'Evidence', 'score': 0.7562865018844604}\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ - "In addition to Force and Mangin, partial ownership of the artworks now lies with one of Los Angeles’s most prominent trial lawyers, Pierce O’Donnell, famed for successful litigation against a veritable who’s who of the city’s glitterati, from the actor Brad Pitt (on behalf of his ex-wife Angelina Jolie) to the former Los Angeles Clippers owner Donald Sterling. {'label': 'Evidence', 'score': 0.7562865018844604}\n", "O’Donnell told The New York Times that he purchased an interest in six of the 25 paintings after Force, who had read about his authentication efforts on behalf of a disputed Jackson Pollock painting, approached him for help with the Basquiats. It was news coverage of this same Pollock legal standoff that also led the OMA’s De Groft to contact O’Donnell and then offer to exhibit the Basquiats. If Force and Mangin are seeking a payday, and De Groft hopes for a blockbuster exhibition, O’Donnell seems driven by the courtroom-like drama of it all. {'label': 'Evidence', 'score': 0.991001546382904}\n", "“I treated these paintings as a client,” the lawyer explained. “I believe I could win this case nine and a half out of ten times with a jury. I’m not bragging. I’m just saying the evidence is compelling.” He cited the various reports done on the paintings, and, like De Groft, the Mumford-penned and Basquiat-signed poem that definitively sealed his case. “That poem is so revealing, and Basquiat’s initials are on it,” he continued. “It’s autobiographical and you can’t make up this stuff, you just can’t.” {'label': 'Evidence', 'score': 0.8953295946121216}\n", "Except that sometimes you can. As early as 1994, seemingly beautifully executed Basquiats later deemed to be well-made fakes — accompanied by bogus letters of provenance — were in circulation. And just this past July the F.B.I. arrested a man in New York City it said was trying to sell artworks he falsely claimed were collaborations between Basquiat and Keith Haring, also complete with forged letters of provenance. {'label': 'Evidence', 'score': 0.5308730602264404}\n", @@ -3048,7 +5192,40 @@ "According to a person close to the Orlando museum, who asked to remain anonymous because they were not authorized to reveal internal discussions, its curatorial staff expressed their concern to De Groft that the FedEx text did not seem to be from 1982. “This show raised red flags for them,” the person said, but the director brushed off their concerns. {'label': 'Evidence', 'score': 0.9774357676506042}\n", "Asked about his staff’s reaction this week, De Groft insisted, “The cardboard is legit.” He added, “I believe deeply these are authentic Basquiats. I can’t answer the question on FedEx, there’s an anomaly there.” But he said the evidence provided by the artworks’ owners — from the Basquiat-signed poem to the Cortez report — was credible. {'label': 'Evidence', 'score': 0.6551034450531006}\n", "Yet as O’Donnell, the lawyer, has himself argued in a catalog essay for Orlando’s Basquiat exhibition, one small discovery can undermine a seemingly rock solid claim: “Over my four decades in the trenches, cases have been won or lost based on a single piece of evidence.” The key to winning, he concludes, is “finding a ‘smoking gun’ document buried in millions of pages of records. If this sounds like Perry Mason, it is.” {'label': 'Evidence', 'score': 0.3941316306591034}\n", - "Asked this week if the FedEx-imprinted cardboard was that veritable “smoking gun,” O’Donnell remained unshaken. “If there’s a question about one painting, it doesn’t cast doubt on all the other ones.” He called the typography question “a subject of expert debate”— one he almost seemed to relish and was confident he would win. “If I presented all this evidence to a jury— including this thing about FedEx — I have no doubt how it would come out.” {'label': 'Evidence', 'score': 0.9469013810157776}\n" + "Asked this week if the FedEx-imprinted cardboard was that veritable “smoking gun,” O’Donnell remained unshaken. “If there’s a question about one painting, it doesn’t cast doubt on all the other ones.” He called the typography question “a subject of expert debate”— one he almost seemed to relish and was confident he would win. “If I presented all this evidence to a jury— including this thing about FedEx — I have no doubt how it would come out.” {'label': 'Evidence', 'score': 0.9469013810157776}\n", + " text label score\n", + "0 It seems like a story too good to be true, and... Evidence 0.808563\n", + "1 According to the Orlando museum director and c... Evidence 0.992086\n", + "2 The 25 artworks then disappeared for three dec... Evidence 0.988501\n", + "3 Mangin provided receipts of the purchase and r... Evidence 0.980852\n", + "4 De Groft, the OMA director, bristled at such s... Evidence 0.642996\n", + "5 These include a 2017 forensic investigation by... Evidence 0.990445\n", + "6 But the foremost proof in De Groft’s mind was ... Rebuttal 0.772987\n", + "7 Lines from the poem seem to refer both to Mumf... Evidence 0.930118\n", + "8 It is said to have been written and typed up b... Evidence 0.988792\n", + "9 “The poem is almost like a receipt, it refers ... Evidence 0.681223\n", + "10 Before his death in 1988 from a drug overdose,... Evidence 0.963436\n", + "11 Seed has written about driving Basquiat to an ... Evidence 0.945745\n", + "12 Gagosian himself conceded to Hoban that his ow... Evidence 0.408797\n", + "13 More than just professional reputations now re... Evidence 0.984625\n", + "14 An official verdict on this whodunit by the Ba... Evidence 0.928797\n", + "15 Sotheby’s declined to comment on the authentic... Evidence 0.935308\n", + "16 In addition to Force and Mangin, partial owner... Evidence 0.756287\n", + "17 O’Donnell told The New York Times that he purc... Evidence 0.991002\n", + "18 “I treated these paintings as a client,” the l... Evidence 0.895330\n", + "19 Except that sometimes you can. As early as 199... Evidence 0.530873\n", + "20 O’Donnell had no patience for such comparisons... Evidence 0.955259\n", + "21 What of Mumford’s family, who only learned of ... Evidence 0.970424\n", + "22 Moreover, if Thad had ever wanted to discuss a... Evidence 0.962412\n", + "23 Coleman, who helped settle Thad’s estate upon ... Evidence 0.975591\n", + "24 One clue to the paintings’ authenticity may li... Evidence 0.984877\n", + "25 Yet flip over one of the works and you’ll find... Evidence 0.881228\n", + "26 “It appears to be set in the Univers 67 Bold C... Evidence 0.787727\n", + "27 So the piece of cardboard could not have been ... Evidence 0.685811\n", + "28 According to a person close to the Orlando mus... Evidence 0.977436\n", + "29 Asked about his staff’s reaction this week, De... Evidence 0.655103\n", + "30 Yet as O’Donnell, the lawyer, has himself argu... Evidence 0.394132\n", + "31 Asked this week if the FedEx-imprinted cardboa... Evidence 0.946901\n" ] }, { @@ -3056,7 +5233,32 @@ "text/html": [ "
\n", "\n", - " It seems like a story too good to be true, and for some in the art world, it is. Last weekend, 25 Jean-Michel Basquiat paintings were publicly unveiled at the Orlando Museum of Art before several thousand V.I.P.s. All of the paintings were said by the museum to have been created in late 1982 while Basquiat, 22, was living and working out of a studio space beneath Larry Gagosian’s home in Venice, Calif., preparing fresh canvases for a show at the art dealer’s Los Angeles gallery. According to the Orlando museum director and chief executive, Aaron De Groft, the vibrant artworks — layers of mixed media painted and drawn onto slabs of scavenged cardboard ranging in size from a 10-inch square featuring one of the artist’s iconic crowns to a nearly five-foot-high disembodied head — were sold by Basquiat directly to the television screenwriter Thad Mumford. The price? A quick $5,000 in cash — about $14,000 today — paid without Gagosian’s knowledge. The 25 artworks then disappeared for three decades, the museum said, only resurfacing in 2012 after Mumford failed to pay the bill on his Los Angeles storage unit, and its contents — the Basquiats tucked in amid baseball memorabilia and TV industry ephemera — were auctioned off. William Force, a treasure hunting “picker,” and Lee Mangin, his financial backer, who both scour small auctions for mislabeled items, saw photos of the colorful cardboards and eventually snagged the lot — for about $15,000. Mangin provided receipts of the purchase and recounted the thrill of the hunt: “It’s sort of a deep hook that goes inside of you,” he said, likening it to being an art world Indiana Jones digging for lost artifacts. It certainly sounds like a tale straight out of Hollywood, or perhaps a script by the Emmy Award-winning Mumford. Indeed, Gagosian, in a response to this reporter about the 1982 creation of these Basquiats, said he “finds the scenario of the story highly unlikely.” Gagosian’s concerns were echoed by several curators known to write widely on Basquiat’s work, who have greeted the Orlando museum’s show with a stony public silence. De Groft, the OMA director, bristled at such skepticism. “My reputation is at stake as well,” he said in an interview. “And I’ve absolutely no doubt these are Basquiats.” Beyond his own trained eye — he has a Ph.D. in art history from Florida State University — he cited a battery of reports commissioned by the artworks’ current owners. These include a 2017 forensic investigation by the handwriting expert James Blanco which identified the signatures that appear on many of the paintings as being Basquiat’s; a 2017 analysis by the University of Maryland associate professor of art Jordana Moore Saggese, author of “Reading Basquiat: Exploring Ambivalence in American Art,” in which she too attributed the paintings to Basquiat; and signed 2018-19 statements from the late curator Diego Cortez, an early supporter of the artist and founding member of his estate’s now-dissolved authentication committee, which declared each of the paintings to be genuine Basquiats. In light of the imprimatur Cortez’s name carries with historians, his certifications were accompanied by photographs showing the curator mid-signature.\n", + " It seems like a story too good to be true, and for some in the art world, it is. Last weekend, 25 Jean-Michel Basquiat paintings were publicly unveiled at the Orlando Museum of Art before several thousand V.I.P.s. All of the paintings were said by the museum to have been created in late 1982 while Basquiat, 22, was living and working out of a studio space beneath Larry Gagosian’s home in Venice, Calif., preparing fresh canvases for a show at the art dealer’s Los Angeles gallery.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " According to the Orlando museum director and chief executive, Aaron De Groft, the vibrant artworks — layers of mixed media painted and drawn onto slabs of scavenged cardboard ranging in size from a 10-inch square featuring one of the artist’s iconic crowns to a nearly five-foot-high disembodied head — were sold by Basquiat directly to the television screenwriter Thad Mumford. The price? A quick $5,000 in cash — about $14,000 today — paid without Gagosian’s knowledge.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The 25 artworks then disappeared for three decades, the museum said, only resurfacing in 2012 after Mumford failed to pay the bill on his Los Angeles storage unit, and its contents — the Basquiats tucked in amid baseball memorabilia and TV industry ephemera — were auctioned off. William Force, a treasure hunting “picker,” and Lee Mangin, his financial backer, who both scour small auctions for mislabeled items, saw photos of the colorful cardboards and eventually snagged the lot — for about $15,000.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mangin provided receipts of the purchase and recounted the thrill of the hunt: “It’s sort of a deep hook that goes inside of you,” he said, likening it to being an art world Indiana Jones digging for lost artifacts. It certainly sounds like a tale straight out of Hollywood, or perhaps a script by the Emmy Award-winning Mumford. Indeed, Gagosian, in a response to this reporter about the 1982 creation of these Basquiats, said he “finds the scenario of the story highly unlikely.” Gagosian’s concerns were echoed by several curators known to write widely on Basquiat’s work, who have greeted the Orlando museum’s show with a stony public silence.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " De Groft, the OMA director, bristled at such skepticism. “My reputation is at stake as well,” he said in an interview. “And I’ve absolutely no doubt these are Basquiats.” Beyond his own trained eye — he has a Ph.D. in art history from Florida State University — he cited a battery of reports commissioned by the artworks’ current owners.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " These include a 2017 forensic investigation by the handwriting expert James Blanco which identified the signatures that appear on many of the paintings as being Basquiat’s; a 2017 analysis by the University of Maryland associate professor of art Jordana Moore Saggese, author of “Reading Basquiat: Exploring Ambivalence in American Art,” in which she too attributed the paintings to Basquiat; and signed 2018-19 statements from the late curator Diego Cortez, an early supporter of the artist and founding member of his estate’s now-dissolved authentication committee, which declared each of the paintings to be genuine Basquiats. In light of the imprimatur Cortez’s name carries with historians, his certifications were accompanied by photographs showing the curator mid-signature.\n", " Evidence\n", "\n", "\n", @@ -3066,7 +5268,127 @@ "\n", "\n", "\n", - " Lines from the poem seem to refer both to Mumford’s ’70s work voicing a “Dr. Thad” for “Sesame Street,” his upcoming script for the “M*A*S*H” series finale, the “25 paintings bringing riches,” and the two men’s shared spirit as “no longer outsiders, Industry insiders golden crowns receiving … We film, we write, we film, we paint.” It is said to have been written and typed up by Mumford, then initialed in oilstick by Basquiat (and confirmed as genuine by Blanco). The poem was not in Mumford’s storage locker contents, according to Mangin, but was handed to him by Mumford in 2012. After buying the paintings, Mangin said he and Force tracked down the screenwriter, who told them over lunch how he had bought the Basquiats in 1982 as an investment on the recommendation of a friend. “The poem is almost like a receipt, it refers to the works, it refers to the inscriptions in the works, it refers to the time,” De Groft said. “I’ve absolutely no doubt.” Before his death in 1988 from a drug overdose, Basquiat is believed to have made approximately 2,100 artworks, from small drawings to a paint-adorned refrigerator door, according to the Brooklyn Museum. Could these slices of cardboard have been among them? While it’s certainly difficult to imagine Gagosian, living just one floor above Basquiat and keeping close tabs on his studio progress, or Basquiat’s gallery-employed studio assistant and de facto chauffeur, John Seed, not noticing the creation and sale of 25 detailed paintings on canvas, those painted on cardboard are more easily concealable. Seed has written about driving Basquiat to an appointment with a doctor whose medical bill was paid with drawings. And as noted by Phoebe Hoban in her 1998 biography “Basquiat,” “Anybody with the right attitude and the right amount of money could purchase something from the painter, who was constantly in need of cash to support his various habits.” Gagosian himself conceded to Hoban that his own accounting methods with Basquiat were hardly traditional: “It was the way he chose to be paid, in cash, or in barter, or with clothes, or like he’d say ‘Well, buy my girlfriend a trip to Paris.’” More than just professional reputations now rest on the question of these paintings’ true background. The value of Basquiat’s work has soared: In 2017 one of his paintings sold for $110.5 million at Sotheby’s — the current auction high for an American artwork. If the 25 Mumford-purchased paintings are authenticated as actual Basquiats, Putnam Fine Art and Antique Appraisals puts their total worth at close to $100 million. An official verdict on this whodunit by the Basquiat estate is now impossible — it closed its authentication committee in 2012 in the aftermath of a lawsuit over Basquiat artworks initially deemed fake. (Amid similar time-consuming and expensive litigation, the Andy Warhol estate closed its own authentication committee that same year.) Yet without such a stamp of estate approval, or an established provenance, major auction houses and heavyweight art dealers are reluctant to handle such works. Despite several years of being quietly shopped around the secondary art market, these Basquiats have to date found no takers, according to the owners. The Orlando museum showing could help dispel that market wariness, lending them a new air of institutional legitimacy. Sotheby’s declined to comment on the authenticity of these paintings. Several art world professionals were similarly gun-shy, citing the experience of the estate’s authentication committee and their fear that publicly weighing in could embroil them in a lawsuit with the paintings’ current owners. One dealer who personally worked with Basquiat and saw photographs of the paintings in the Orlando museum said, “the way Basquiat places elements in the composition has an interior logic which is missing in these images.” In addition to Force and Mangin, partial ownership of the artworks now lies with one of Los Angeles’s most prominent trial lawyers, Pierce O’Donnell, famed for successful litigation against a veritable who’s who of the city’s glitterati, from the actor Brad Pitt (on behalf of his ex-wife Angelina Jolie) to the former Los Angeles Clippers owner Donald Sterling. O’Donnell told The New York Times that he purchased an interest in six of the 25 paintings after Force, who had read about his authentication efforts on behalf of a disputed Jackson Pollock painting, approached him for help with the Basquiats. It was news coverage of this same Pollock legal standoff that also led the OMA’s De Groft to contact O’Donnell and then offer to exhibit the Basquiats. If Force and Mangin are seeking a payday, and De Groft hopes for a blockbuster exhibition, O’Donnell seems driven by the courtroom-like drama of it all. “I treated these paintings as a client,” the lawyer explained. “I believe I could win this case nine and a half out of ten times with a jury. I’m not bragging. I’m just saying the evidence is compelling.” He cited the various reports done on the paintings, and, like De Groft, the Mumford-penned and Basquiat-signed poem that definitively sealed his case. “That poem is so revealing, and Basquiat’s initials are on it,” he continued. “It’s autobiographical and you can’t make up this stuff, you just can’t.” Except that sometimes you can. As early as 1994, seemingly beautifully executed Basquiats later deemed to be well-made fakes — accompanied by bogus letters of provenance — were in circulation. And just this past July the F.B.I. arrested a man in New York City it said was trying to sell artworks he falsely claimed were collaborations between Basquiat and Keith Haring, also complete with forged letters of provenance. O’Donnell had no patience for such comparisons. “You would have to have a big old conspiracy that would rival the Jan. 6 insurrection for these things not to be authentic,” he scoffed, adding that it just didn’t make sense. “A forger who wanted to make big hay over Basquiat would paint one extraordinary Basquiat, or maybe two or three, all large on canvas. He wouldn’t just go out and get cardboard from a supermarket or liquor store and create 25 paintings.” What of Mumford’s family, who only learned of the museum’s exhibition of “The Thaddeus Mumford Jr. Venice Collection” from this reporter? “It’s all very strange,” said Jeffrey Mumford, Thad’s younger brother, a Guggenheim fellowship-winning classical composer and music professor at Lorain County Community College, near Cleveland. Not only did Thad never once mention to him buying the Basquiats, “he was someone who didn’t really go to art galleries very often, was often intimidated by the idea of going to them because he felt he had to have a degree in art in order to appreciate the work.” Moreover, if Thad had ever wanted to discuss a promising new artist, he could have spoken with Jeffrey’s wife, Donna Coleman, an accomplished painter who had lived in New York City at the same time Basquiat was first making a name for himself. Coleman, in an interview, recalled walking in downtown Manhattan in 1978 “when I would see his SAMO graffiti on the wall fresh from the day before.” Coleman, who helped settle Thad’s estate upon his death in 2018, said it seemed believable to her that he had simply stopped making payments on his storage unit “because he didn’t care about these works, or he didn’t recognize their worth, or maybe he was tipped off that they were not real.” The last years leading up to his death “were very, very fraught,” she said. His career in television had essentially dried up, he was severely depressed and in poor health, and “he was just letting go of a lot of things.” But if by 2012 he no longer cared about the paintings, then why did he hold onto a poem about that same artist for all those years? “It does seem odd, doesn’t it?” Coleman mused. One clue to the paintings’ authenticity may lie with the cardboard on which Basquiat would have applied his layers of paint, crayon, and oilstick. Mangin said he consulted several paper experts to confirm its age, but was told that the composition of cardboard from the 1980s was impossible to differentiate from that of recent years. “Nobody had an answer,” Mangin explained. “Cardboard is cardboard.” Yet flip over one of the works and you’ll find that it was painted on the back of a shipping box with a clearly visible company imprint: “Align top of FedEx Shipping Label here.” According to Lindon Leader, an independent brand expert consulted by The Times, who was shown a photo of the cardboard, the typeface in the imprint was not used by Federal Express before 1994. He should know: that was the year he personally redesigned the company’s logo and its typefaces while working as senior design director at the Landor Associates advertising firm. “It appears to be set in the Univers 67 Bold Condensed,” Leader said of the label’s distinctive purplish font. In 1982, “They were not using Univers at that time.” So the piece of cardboard could not have been produced until 12 years after Basquiat supposedly painted on it and six years after the artist’s death. According to a person close to the Orlando museum, who asked to remain anonymous because they were not authorized to reveal internal discussions, its curatorial staff expressed their concern to De Groft that the FedEx text did not seem to be from 1982. “This show raised red flags for them,” the person said, but the director brushed off their concerns. Asked about his staff’s reaction this week, De Groft insisted, “The cardboard is legit.” He added, “I believe deeply these are authentic Basquiats. I can’t answer the question on FedEx, there’s an anomaly there.” But he said the evidence provided by the artworks’ owners — from the Basquiat-signed poem to the Cortez report — was credible. Yet as O’Donnell, the lawyer, has himself argued in a catalog essay for Orlando’s Basquiat exhibition, one small discovery can undermine a seemingly rock solid claim: “Over my four decades in the trenches, cases have been won or lost based on a single piece of evidence.” The key to winning, he concludes, is “finding a ‘smoking gun’ document buried in millions of pages of records. If this sounds like Perry Mason, it is.” Asked this week if the FedEx-imprinted cardboard was that veritable “smoking gun,” O’Donnell remained unshaken. “If there’s a question about one painting, it doesn’t cast doubt on all the other ones.” He called the typography question “a subject of expert debate”— one he almost seemed to relish and was confident he would win. “If I presented all this evidence to a jury— including this thing about FedEx — I have no doubt how it would come out.”\n", + " Lines from the poem seem to refer both to Mumford’s ’70s work voicing a “Dr. Thad” for “Sesame Street,” his upcoming script for the “M*A*S*H” series finale, the “25 paintings bringing riches,” and the two men’s shared spirit as “no longer outsiders, Industry insiders golden crowns receiving … We film, we write, we film, we paint.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " It is said to have been written and typed up by Mumford, then initialed in oilstick by Basquiat (and confirmed as genuine by Blanco). The poem was not in Mumford’s storage locker contents, according to Mangin, but was handed to him by Mumford in 2012. After buying the paintings, Mangin said he and Force tracked down the screenwriter, who told them over lunch how he had bought the Basquiats in 1982 as an investment on the recommendation of a friend.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “The poem is almost like a receipt, it refers to the works, it refers to the inscriptions in the works, it refers to the time,” De Groft said. “I’ve absolutely no doubt.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Before his death in 1988 from a drug overdose, Basquiat is believed to have made approximately 2,100 artworks, from small drawings to a paint-adorned refrigerator door, according to the Brooklyn Museum. Could these slices of cardboard have been among them? While it’s certainly difficult to imagine Gagosian, living just one floor above Basquiat and keeping close tabs on his studio progress, or Basquiat’s gallery-employed studio assistant and de facto chauffeur, John Seed, not noticing the creation and sale of 25 detailed paintings on canvas, those painted on cardboard are more easily concealable.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Seed has written about driving Basquiat to an appointment with a doctor whose medical bill was paid with drawings. And as noted by Phoebe Hoban in her 1998 biography “Basquiat,” “Anybody with the right attitude and the right amount of money could purchase something from the painter, who was constantly in need of cash to support his various habits.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Gagosian himself conceded to Hoban that his own accounting methods with Basquiat were hardly traditional: “It was the way he chose to be paid, in cash, or in barter, or with clothes, or like he’d say ‘Well, buy my girlfriend a trip to Paris.’”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " More than just professional reputations now rest on the question of these paintings’ true background. The value of Basquiat’s work has soared: In 2017 one of his paintings sold for $110.5 million at Sotheby’s — the current auction high for an American artwork. If the 25 Mumford-purchased paintings are authenticated as actual Basquiats, Putnam Fine Art and Antique Appraisals puts their total worth at close to $100 million.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " An official verdict on this whodunit by the Basquiat estate is now impossible — it closed its authentication committee in 2012 in the aftermath of a lawsuit over Basquiat artworks initially deemed fake. (Amid similar time-consuming and expensive litigation, the Andy Warhol estate closed its own authentication committee that same year.) Yet without such a stamp of estate approval, or an established provenance, major auction houses and heavyweight art dealers are reluctant to handle such works. Despite several years of being quietly shopped around the secondary art market, these Basquiats have to date found no takers, according to the owners. The Orlando museum showing could help dispel that market wariness, lending them a new air of institutional legitimacy.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Sotheby’s declined to comment on the authenticity of these paintings. Several art world professionals were similarly gun-shy, citing the experience of the estate’s authentication committee and their fear that publicly weighing in could embroil them in a lawsuit with the paintings’ current owners. One dealer who personally worked with Basquiat and saw photographs of the paintings in the Orlando museum said, “the way Basquiat places elements in the composition has an interior logic which is missing in these images.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In addition to Force and Mangin, partial ownership of the artworks now lies with one of Los Angeles’s most prominent trial lawyers, Pierce O’Donnell, famed for successful litigation against a veritable who’s who of the city’s glitterati, from the actor Brad Pitt (on behalf of his ex-wife Angelina Jolie) to the former Los Angeles Clippers owner Donald Sterling.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " O’Donnell told The New York Times that he purchased an interest in six of the 25 paintings after Force, who had read about his authentication efforts on behalf of a disputed Jackson Pollock painting, approached him for help with the Basquiats. It was news coverage of this same Pollock legal standoff that also led the OMA’s De Groft to contact O’Donnell and then offer to exhibit the Basquiats. If Force and Mangin are seeking a payday, and De Groft hopes for a blockbuster exhibition, O’Donnell seems driven by the courtroom-like drama of it all.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “I treated these paintings as a client,” the lawyer explained. “I believe I could win this case nine and a half out of ten times with a jury. I’m not bragging. I’m just saying the evidence is compelling.” He cited the various reports done on the paintings, and, like De Groft, the Mumford-penned and Basquiat-signed poem that definitively sealed his case. “That poem is so revealing, and Basquiat’s initials are on it,” he continued. “It’s autobiographical and you can’t make up this stuff, you just can’t.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Except that sometimes you can. As early as 1994, seemingly beautifully executed Basquiats later deemed to be well-made fakes — accompanied by bogus letters of provenance — were in circulation. And just this past July the F.B.I. arrested a man in New York City it said was trying to sell artworks he falsely claimed were collaborations between Basquiat and Keith Haring, also complete with forged letters of provenance.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " O’Donnell had no patience for such comparisons. “You would have to have a big old conspiracy that would rival the Jan. 6 insurrection for these things not to be authentic,” he scoffed, adding that it just didn’t make sense. “A forger who wanted to make big hay over Basquiat would paint one extraordinary Basquiat, or maybe two or three, all large on canvas. He wouldn’t just go out and get cardboard from a supermarket or liquor store and create 25 paintings.” \n", + " Evidence\n", + "\n", + "\n", + "\n", + " What of Mumford’s family, who only learned of the museum’s exhibition of “The Thaddeus Mumford Jr. Venice Collection” from this reporter? “It’s all very strange,” said Jeffrey Mumford, Thad’s younger brother, a Guggenheim fellowship-winning classical composer and music professor at Lorain County Community College, near Cleveland. Not only did Thad never once mention to him buying the Basquiats, “he was someone who didn’t really go to art galleries very often, was often intimidated by the idea of going to them because he felt he had to have a degree in art in order to appreciate the work.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Moreover, if Thad had ever wanted to discuss a promising new artist, he could have spoken with Jeffrey’s wife, Donna Coleman, an accomplished painter who had lived in New York City at the same time Basquiat was first making a name for himself. Coleman, in an interview, recalled walking in downtown Manhattan in 1978 “when I would see his SAMO graffiti on the wall fresh from the day before.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Coleman, who helped settle Thad’s estate upon his death in 2018, said it seemed believable to her that he had simply stopped making payments on his storage unit “because he didn’t care about these works, or he didn’t recognize their worth, or maybe he was tipped off that they were not real.” The last years leading up to his death “were very, very fraught,” she said. His career in television had essentially dried up, he was severely depressed and in poor health, and “he was just letting go of a lot of things.” But if by 2012 he no longer cared about the paintings, then why did he hold onto a poem about that same artist for all those years? “It does seem odd, doesn’t it?” Coleman mused.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " One clue to the paintings’ authenticity may lie with the cardboard on which Basquiat would have applied his layers of paint, crayon, and oilstick. Mangin said he consulted several paper experts to confirm its age, but was told that the composition of cardboard from the 1980s was impossible to differentiate from that of recent years. “Nobody had an answer,” Mangin explained. “Cardboard is cardboard.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Yet flip over one of the works and you’ll find that it was painted on the back of a shipping box with a clearly visible company imprint: “Align top of FedEx Shipping Label here.” According to Lindon Leader, an independent brand expert consulted by The Times, who was shown a photo of the cardboard, the typeface in the imprint was not used by Federal Express before 1994. He should know: that was the year he personally redesigned the company’s logo and its typefaces while working as senior design director at the Landor Associates advertising firm.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “It appears to be set in the Univers 67 Bold Condensed,” Leader said of the label’s distinctive purplish font. In 1982, “They were not using Univers at that time.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " So the piece of cardboard could not have been produced until 12 years after Basquiat supposedly painted on it and six years after the artist’s death.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " According to a person close to the Orlando museum, who asked to remain anonymous because they were not authorized to reveal internal discussions, its curatorial staff expressed their concern to De Groft that the FedEx text did not seem to be from 1982. “This show raised red flags for them,” the person said, but the director brushed off their concerns.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Asked about his staff’s reaction this week, De Groft insisted, “The cardboard is legit.” He added, “I believe deeply these are authentic Basquiats. I can’t answer the question on FedEx, there’s an anomaly there.” But he said the evidence provided by the artworks’ owners — from the Basquiat-signed poem to the Cortez report — was credible.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Yet as O’Donnell, the lawyer, has himself argued in a catalog essay for Orlando’s Basquiat exhibition, one small discovery can undermine a seemingly rock solid claim: “Over my four decades in the trenches, cases have been won or lost based on a single piece of evidence.” The key to winning, he concludes, is “finding a ‘smoking gun’ document buried in millions of pages of records. If this sounds like Perry Mason, it is.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Asked this week if the FedEx-imprinted cardboard was that veritable “smoking gun,” O’Donnell remained unshaken. “If there’s a question about one painting, it doesn’t cast doubt on all the other ones.” He called the typography question “a subject of expert debate”— one he almost seemed to relish and was confident he would win. “If I presented all this evidence to a jury— including this thing about FedEx — I have no doubt how it would come out.”\n", " Evidence\n", "\n", "
" @@ -3090,7 +5412,7 @@ { "data": { "text/html": [ - "

nytimes\\berlin-film-festival-2022.txt

" + "

berlin-film-festival-2022.txt

" ], "text/plain": [ "" @@ -3110,7 +5432,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "20cc93214859432fa4dd95f7eab30faf", + "model_id": "4f9b5b928f234ef587f66af95f154271", "version_major": 2, "version_minor": 0 }, @@ -3131,7 +5453,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "e0105a0e2ab14d648c72a3fc312c04fe", + "model_id": "57e64beb85ff428a99f4caeab4c3870a", "version_major": 2, "version_minor": 0 }, @@ -3148,19 +5470,35 @@ "text": [ "BERLIN — What is your strategy during a nasal-swab antigen test? Personally, I look up and to the right as the technician inserts the little wand, either affecting an air of nonchalance or pretending I’ve been struck by a highly original thought. I know others make idle chitchat, and at least one fellow critic has taken to staring deeply into the tester’s eyes. It’s a pandemic: You get your kicks where you can. {'label': 'Evidence', 'score': 0.8664446473121643}\n", "At the Berlin International Film Festival — which announced its prizewinners on Wednesday but is continuing public screenings through Feb. 20 — attending members of the press have had ample opportunity to hone their swab technique. Mandatory tests every 24 hours — even for the boosted — were part of a package of restrictions that the organizers of the festival, which is known as the Berlinale, agreed to so it could take place as a physical event. {'label': 'Evidence', 'score': 0.966467559337616}\n", - "There were complaints. But every time someone whinged about the new ticket booking system or became exasperated by the Escher-inspired exit routes, which always seemed to involve multiple uphill flights of stairs, I found myself thinking: “Deal with it.” Or sometimes, less charitably: “Suck it up.” {'label': 'Evidence', 'score': 0.34204232692718506}\n", + "There were complaints. But every time someone whinged about the new ticket booking system or became exasperated by the Escher-inspired exit routes, which always seemed to involve multiple uphill flights of stairs, I found myself thinking: “Deal with it.” Or sometimes, less charitably: “Suck it up.” {'label': 'Evidence', 'score': 0.34204229712486267}\n", "The category error from complainants is to compare this reduced-attendance edition with Before Times Berlinales. The real comparison is with last year’s online version, which debuted a stronger selection of films but didn’t feel like a festival at all. Consider that lonely experience as the alternative and the staircases, seating hassles and swabbing become a small price to pay. {'label': 'Evidence', 'score': 0.7890348434448242}\n", "And however deep your tester probes, it could hardly be as invasive as the public colonoscopy undergone in Peter Strickland’s willfully outré “Flux Gourmet,” one of the event’s buzzy early titles. Surely the most single-minded evocation of the discomfort of suppressing flatulence ever to get a major festival berth, Strickland’s film was only rivaled by François Ozon’s festival opener “Peter von Kant” for fun, gaudy aesthetics adorning an oddly disposable story. Ozon’s film quite amusingly pulls off its trick of overlaying details from Rainer Werner Fassbinder’s biography onto a gender-flipped reworking of Fassbinder’s 1972 classic “The Bitter Tears of Petra von Kant,” without ever actually justifying why. {'label': 'Evidence', 'score': 0.7913358807563782}\n", "The single-location “Peter von Kant” is one of several Berlinale films that bears the hallmarks of shooting under pandemic conditions. “Fire,” which brought Claire Denis (incredibly) her first best director award at a major film festival, is another. Here, Juliette Binoche plays a woman torn between two lovers (or between “Both Sides of the Blade,” as the film’s more evocative international title puts it). If it falls short of Denis’s highest watermarks, it is at least notable for how it acknowledges the pandemic without making it the subject of the film. {'label': 'Evidence', 'score': 0.9784438610076904}\n", "Quentin Dupieux’s highly enjoyable “Incredible But True” takes an oblique approach, not referencing coronavirus restrictions directly but creating unmissable parallels in what is essentially a time-travel movie. Witty and unassumingly profound, it’s a marked contrast to Bertrand Bonello’s chaotically indulgent “Coma,” which involves lockdown navel-gazing of a borderline incomprehensible nature. It received a wildly divided reception, represented by the guy beside me leaving in a huff partway in and the guy in front of me leaping to his feet shouting “Bravo!” at the end. {'label': 'Evidence', 'score': 0.821042001247406}\n", "Two lower-key Asian titles also unfold in coronavirus times, without being overwhelmed by pandemic paranoia. Hong Sangsoo’s “The Novelist’s Film” is another deceptively breezy slice of life from the Korean director, which brought him — a perennial prize taker at the Berlinale — the runner-up Grand Prix award. The notion that this makes the festival’s jury president, M. Night Shyamalan, a de facto member of “the Hong Hive” is remarkable for anyone acquainted with their respective oeuvres — the kind of thought it’s useful to have strike you when you’re having your nose swabbed and want to look loftily away. {'label': 'Evidence', 'score': 0.9901236891746521}\n", "The accurately named Japanese gem “Small, Slow But Steady” also featured masks, though here we notice the difficulties they present for lip readers. The beautifully absorbing story of a deaf female boxer whose beloved gym is facing closure, ​​Sho Miyake’s affecting drama is miniature in every way except emotional impact. Its bittersweet main idea, about a treasured place facing its imminent end, is writ in larger, bolder, colors in Carla Simón’s “Alcarràs,” which won the Golden Bear, the festival’s top award. {'label': 'Evidence', 'score': 0.9510142803192139}\n", - "“Alcarràs” follows the windy, sun-blasted fortunes of the Solé family, from the Catalonia region of Spain, during the family peach orchard’s last harvest before demolition. It’s a lovely, chattering, life-filled title featuring irresistible performances from its nonprofessional, all-ages ensemble cast. Its triumph here makes it the third consecutive time, after Cannes and Venice, that a major European festival’s highest honor has gone to a woman for her second film. {'label': 'Evidence', 'score': 0.7182796597480774}\n", + "“Alcarràs” follows the windy, sun-blasted fortunes of the Solé family, from the Catalonia region of Spain, during the family peach orchard’s last harvest before demolition. It’s a lovely, chattering, life-filled title featuring irresistible performances from its nonprofessional, all-ages ensemble cast. Its triumph here makes it the third consecutive time, after Cannes and Venice, that a major European festival’s highest honor has gone to a woman for her second film. {'label': 'Evidence', 'score': 0.7182796001434326}\n", "But for all its sunshine and sad, brave wisdom, “Alcarràs” was, for me, outmatched by a much wintrier competition title. Ulrich Seidl’s “Rimini” is an uncompromising, coldly provocative drama that gathered no prizes, which is a shame. But that its star, Michael Thomas, playing a washed-up club singer in an off-season Italian beach town, was not specifically recognized is more or less a crime. My other competition favorite, Natalia López Gallardo’s formally striking debut feature “Robe of Gems,” did pick up the Jury Prize. But otherwise, as has been the case since the Encounters sidebar was inaugurated in 2020, a lot of the more interesting titles ended up there rather than in the main competition. {'label': 'Evidence', 'score': 0.5673873424530029}\n", "In particular, Jöns Jönsson’s “Axiom” is a clever examination of the psychology of a compulsive liar. And best of all — in this section, this festival and, for me, this year so far — there’s Cyril Schäublin’s utterly singular “Unrest,” a movie that is defiantly uncategorizable, unless you have a category earmarked “playful, otherworldly tales of watchmaking and anarchism in 1870s Switzerland.” {'label': 'Evidence', 'score': 0.7486115097999573}\n", "“Unrest” was the most transporting movie I saw in Berlin, at least until I physically transported myself to the city’s planetarium to watch Liz Rosenfeld’s experimental “White Sands Crystal Foxes.” The film itself is a rather exasperatingly overwritten art piece, but the experience was little short of transcendent. Lying under a domed 360-degree projection, suspended amid cascading imagery, I felt pleasantly disembodied. Later, it occurred to me how odd it was to yearn for a return to the real world, just to better escape it again. {'label': 'Evidence', 'score': 0.9676122665405273}\n", "To that end — escapism — the most all-cylinders-firing section of this year’s Berlinale was undoubtedly the terrific retrospective, called “No Angels” and comprising 27 Golden Age Hollywood comedies, each starring Mae West, Rosalind Russell or Carole Lombard. The actresses’ big hits, like “My Little Chickadee,” “His Girl Friday” and “My Man Godfrey” were there, but this blast of a selection also unearthed less well-known but no less delightful titles. “Four’s a Crowd,” starring Russell alongside Errol Flynn and Olivia de Havilland is one, as is “Lady By Choice,” in which Lombard plays a showgirl-come-good who “adopts” a fake mother as a publicity stunt. Retreating into a screwball-comedy world might just be the best way to massage away the annoyances of the real one. {'label': 'Evidence', 'score': 0.6910614371299744}\n", - "Then again, as the days zipped by and the staircases seemed to just get longer, it became clear that the irritations of real life are an integral part of what we missed so sorely during last year’s remote edition. At one public screening, a couple started arguing loudly with an usher when she told them they must leave an empty seat between them. I was annoyed by them. And then I remembered to be delighted that I could be annoyed by other physical humans being physically annoying in a physical place. “Suck it up,” I wanted to tell them. But also, “I love you.” {'label': 'Evidence', 'score': 0.9440996050834656}\n" + "Then again, as the days zipped by and the staircases seemed to just get longer, it became clear that the irritations of real life are an integral part of what we missed so sorely during last year’s remote edition. At one public screening, a couple started arguing loudly with an usher when she told them they must leave an empty seat between them. I was annoyed by them. And then I remembered to be delighted that I could be annoyed by other physical humans being physically annoying in a physical place. “Suck it up,” I wanted to tell them. But also, “I love you.” {'label': 'Evidence', 'score': 0.9440996050834656}\n", + " text label score\n", + "0 BERLIN — What is your strategy during a nasal-... Evidence 0.866445\n", + "1 At the Berlin International Film Festival — wh... Evidence 0.966468\n", + "2 There were complaints. But every time someone ... Evidence 0.342042\n", + "3 The category error from complainants is to com... Evidence 0.789035\n", + "4 And however deep your tester probes, it could ... Evidence 0.791336\n", + "5 The single-location “Peter von Kant” is one of... Evidence 0.978444\n", + "6 Quentin Dupieux’s highly enjoyable “Incredible... Evidence 0.821042\n", + "7 Two lower-key Asian titles also unfold in coro... Evidence 0.990124\n", + "8 The accurately named Japanese gem “Small, Slow... Evidence 0.951014\n", + "9 “Alcarràs” follows the windy, sun-blasted fort... Evidence 0.718280\n", + "10 But for all its sunshine and sad, brave wisdom... Evidence 0.567387\n", + "11 In particular, Jöns Jönsson’s “Axiom” is a cle... Evidence 0.748612\n", + "12 “Unrest” was the most transporting movie I saw... Evidence 0.967612\n", + "13 To that end — escapism — the most all-cylinder... Evidence 0.691061\n", + "14 Then again, as the days zipped by and the stai... Evidence 0.944100\n" ] }, { @@ -3168,7 +5506,77 @@ "text/html": [ "
\n", "\n", - " BERLIN — What is your strategy during a nasal-swab antigen test? Personally, I look up and to the right as the technician inserts the little wand, either affecting an air of nonchalance or pretending I’ve been struck by a highly original thought. I know others make idle chitchat, and at least one fellow critic has taken to staring deeply into the tester’s eyes. It’s a pandemic: You get your kicks where you can. At the Berlin International Film Festival — which announced its prizewinners on Wednesday but is continuing public screenings through Feb. 20 — attending members of the press have had ample opportunity to hone their swab technique. Mandatory tests every 24 hours — even for the boosted — were part of a package of restrictions that the organizers of the festival, which is known as the Berlinale, agreed to so it could take place as a physical event. There were complaints. But every time someone whinged about the new ticket booking system or became exasperated by the Escher-inspired exit routes, which always seemed to involve multiple uphill flights of stairs, I found myself thinking: “Deal with it.” Or sometimes, less charitably: “Suck it up.” The category error from complainants is to compare this reduced-attendance edition with Before Times Berlinales. The real comparison is with last year’s online version, which debuted a stronger selection of films but didn’t feel like a festival at all. Consider that lonely experience as the alternative and the staircases, seating hassles and swabbing become a small price to pay. And however deep your tester probes, it could hardly be as invasive as the public colonoscopy undergone in Peter Strickland’s willfully outré “Flux Gourmet,” one of the event’s buzzy early titles. Surely the most single-minded evocation of the discomfort of suppressing flatulence ever to get a major festival berth, Strickland’s film was only rivaled by François Ozon’s festival opener “Peter von Kant” for fun, gaudy aesthetics adorning an oddly disposable story. Ozon’s film quite amusingly pulls off its trick of overlaying details from Rainer Werner Fassbinder’s biography onto a gender-flipped reworking of Fassbinder’s 1972 classic “The Bitter Tears of Petra von Kant,” without ever actually justifying why. The single-location “Peter von Kant” is one of several Berlinale films that bears the hallmarks of shooting under pandemic conditions. “Fire,” which brought Claire Denis (incredibly) her first best director award at a major film festival, is another. Here, Juliette Binoche plays a woman torn between two lovers (or between “Both Sides of the Blade,” as the film’s more evocative international title puts it). If it falls short of Denis’s highest watermarks, it is at least notable for how it acknowledges the pandemic without making it the subject of the film. Quentin Dupieux’s highly enjoyable “Incredible But True” takes an oblique approach, not referencing coronavirus restrictions directly but creating unmissable parallels in what is essentially a time-travel movie. Witty and unassumingly profound, it’s a marked contrast to Bertrand Bonello’s chaotically indulgent “Coma,” which involves lockdown navel-gazing of a borderline incomprehensible nature. It received a wildly divided reception, represented by the guy beside me leaving in a huff partway in and the guy in front of me leaping to his feet shouting “Bravo!” at the end. Two lower-key Asian titles also unfold in coronavirus times, without being overwhelmed by pandemic paranoia. Hong Sangsoo’s “The Novelist’s Film” is another deceptively breezy slice of life from the Korean director, which brought him — a perennial prize taker at the Berlinale — the runner-up Grand Prix award. The notion that this makes the festival’s jury president, M. Night Shyamalan, a de facto member of “the Hong Hive” is remarkable for anyone acquainted with their respective oeuvres — the kind of thought it’s useful to have strike you when you’re having your nose swabbed and want to look loftily away. The accurately named Japanese gem “Small, Slow But Steady” also featured masks, though here we notice the difficulties they present for lip readers. The beautifully absorbing story of a deaf female boxer whose beloved gym is facing closure, ​​Sho Miyake’s affecting drama is miniature in every way except emotional impact. Its bittersweet main idea, about a treasured place facing its imminent end, is writ in larger, bolder, colors in Carla Simón’s “Alcarràs,” which won the Golden Bear, the festival’s top award. “Alcarràs” follows the windy, sun-blasted fortunes of the Solé family, from the Catalonia region of Spain, during the family peach orchard’s last harvest before demolition. It’s a lovely, chattering, life-filled title featuring irresistible performances from its nonprofessional, all-ages ensemble cast. Its triumph here makes it the third consecutive time, after Cannes and Venice, that a major European festival’s highest honor has gone to a woman for her second film. But for all its sunshine and sad, brave wisdom, “Alcarràs” was, for me, outmatched by a much wintrier competition title. Ulrich Seidl’s “Rimini” is an uncompromising, coldly provocative drama that gathered no prizes, which is a shame. But that its star, Michael Thomas, playing a washed-up club singer in an off-season Italian beach town, was not specifically recognized is more or less a crime. My other competition favorite, Natalia López Gallardo’s formally striking debut feature “Robe of Gems,” did pick up the Jury Prize. But otherwise, as has been the case since the Encounters sidebar was inaugurated in 2020, a lot of the more interesting titles ended up there rather than in the main competition. In particular, Jöns Jönsson’s “Axiom” is a clever examination of the psychology of a compulsive liar. And best of all — in this section, this festival and, for me, this year so far — there’s Cyril Schäublin’s utterly singular “Unrest,” a movie that is defiantly uncategorizable, unless you have a category earmarked “playful, otherworldly tales of watchmaking and anarchism in 1870s Switzerland.” “Unrest” was the most transporting movie I saw in Berlin, at least until I physically transported myself to the city’s planetarium to watch Liz Rosenfeld’s experimental “White Sands Crystal Foxes.” The film itself is a rather exasperatingly overwritten art piece, but the experience was little short of transcendent. Lying under a domed 360-degree projection, suspended amid cascading imagery, I felt pleasantly disembodied. Later, it occurred to me how odd it was to yearn for a return to the real world, just to better escape it again. To that end — escapism — the most all-cylinders-firing section of this year’s Berlinale was undoubtedly the terrific retrospective, called “No Angels” and comprising 27 Golden Age Hollywood comedies, each starring Mae West, Rosalind Russell or Carole Lombard. The actresses’ big hits, like “My Little Chickadee,” “His Girl Friday” and “My Man Godfrey” were there, but this blast of a selection also unearthed less well-known but no less delightful titles. “Four’s a Crowd,” starring Russell alongside Errol Flynn and Olivia de Havilland is one, as is “Lady By Choice,” in which Lombard plays a showgirl-come-good who “adopts” a fake mother as a publicity stunt. Retreating into a screwball-comedy world might just be the best way to massage away the annoyances of the real one. Then again, as the days zipped by and the staircases seemed to just get longer, it became clear that the irritations of real life are an integral part of what we missed so sorely during last year’s remote edition. At one public screening, a couple started arguing loudly with an usher when she told them they must leave an empty seat between them. I was annoyed by them. And then I remembered to be delighted that I could be annoyed by other physical humans being physically annoying in a physical place. “Suck it up,” I wanted to tell them. But also, “I love you.”\n", + " BERLIN — What is your strategy during a nasal-swab antigen test? Personally, I look up and to the right as the technician inserts the little wand, either affecting an air of nonchalance or pretending I’ve been struck by a highly original thought. I know others make idle chitchat, and at least one fellow critic has taken to staring deeply into the tester’s eyes. It’s a pandemic: You get your kicks where you can.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " At the Berlin International Film Festival — which announced its prizewinners on Wednesday but is continuing public screenings through Feb. 20 — attending members of the press have had ample opportunity to hone their swab technique. Mandatory tests every 24 hours — even for the boosted — were part of a package of restrictions that the organizers of the festival, which is known as the Berlinale, agreed to so it could take place as a physical event.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " There were complaints. But every time someone whinged about the new ticket booking system or became exasperated by the Escher-inspired exit routes, which always seemed to involve multiple uphill flights of stairs, I found myself thinking: “Deal with it.” Or sometimes, less charitably: “Suck it up.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The category error from complainants is to compare this reduced-attendance edition with Before Times Berlinales. The real comparison is with last year’s online version, which debuted a stronger selection of films but didn’t feel like a festival at all. Consider that lonely experience as the alternative and the staircases, seating hassles and swabbing become a small price to pay.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " And however deep your tester probes, it could hardly be as invasive as the public colonoscopy undergone in Peter Strickland’s willfully outré “Flux Gourmet,” one of the event’s buzzy early titles. Surely the most single-minded evocation of the discomfort of suppressing flatulence ever to get a major festival berth, Strickland’s film was only rivaled by François Ozon’s festival opener “Peter von Kant” for fun, gaudy aesthetics adorning an oddly disposable story. Ozon’s film quite amusingly pulls off its trick of overlaying details from Rainer Werner Fassbinder’s biography onto a gender-flipped reworking of Fassbinder’s 1972 classic “The Bitter Tears of Petra von Kant,” without ever actually justifying why.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The single-location “Peter von Kant” is one of several Berlinale films that bears the hallmarks of shooting under pandemic conditions. “Fire,” which brought Claire Denis (incredibly) her first best director award at a major film festival, is another. Here, Juliette Binoche plays a woman torn between two lovers (or between “Both Sides of the Blade,” as the film’s more evocative international title puts it). If it falls short of Denis’s highest watermarks, it is at least notable for how it acknowledges the pandemic without making it the subject of the film.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Quentin Dupieux’s highly enjoyable “Incredible But True” takes an oblique approach, not referencing coronavirus restrictions directly but creating unmissable parallels in what is essentially a time-travel movie. Witty and unassumingly profound, it’s a marked contrast to Bertrand Bonello’s chaotically indulgent “Coma,” which involves lockdown navel-gazing of a borderline incomprehensible nature. It received a wildly divided reception, represented by the guy beside me leaving in a huff partway in and the guy in front of me leaping to his feet shouting “Bravo!” at the end.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Two lower-key Asian titles also unfold in coronavirus times, without being overwhelmed by pandemic paranoia. Hong Sangsoo’s “The Novelist’s Film” is another deceptively breezy slice of life from the Korean director, which brought him — a perennial prize taker at the Berlinale — the runner-up Grand Prix award. The notion that this makes the festival’s jury president, M. Night Shyamalan, a de facto member of “the Hong Hive” is remarkable for anyone acquainted with their respective oeuvres — the kind of thought it’s useful to have strike you when you’re having your nose swabbed and want to look loftily away.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The accurately named Japanese gem “Small, Slow But Steady” also featured masks, though here we notice the difficulties they present for lip readers. The beautifully absorbing story of a deaf female boxer whose beloved gym is facing closure, ​​Sho Miyake’s affecting drama is miniature in every way except emotional impact. Its bittersweet main idea, about a treasured place facing its imminent end, is writ in larger, bolder, colors in Carla Simón’s “Alcarràs,” which won the Golden Bear, the festival’s top award.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Alcarràs” follows the windy, sun-blasted fortunes of the Solé family, from the Catalonia region of Spain, during the family peach orchard’s last harvest before demolition. It’s a lovely, chattering, life-filled title featuring irresistible performances from its nonprofessional, all-ages ensemble cast. Its triumph here makes it the third consecutive time, after Cannes and Venice, that a major European festival’s highest honor has gone to a woman for her second film.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " But for all its sunshine and sad, brave wisdom, “Alcarràs” was, for me, outmatched by a much wintrier competition title. Ulrich Seidl’s “Rimini” is an uncompromising, coldly provocative drama that gathered no prizes, which is a shame. But that its star, Michael Thomas, playing a washed-up club singer in an off-season Italian beach town, was not specifically recognized is more or less a crime. My other competition favorite, Natalia López Gallardo’s formally striking debut feature “Robe of Gems,” did pick up the Jury Prize. But otherwise, as has been the case since the Encounters sidebar was inaugurated in 2020, a lot of the more interesting titles ended up there rather than in the main competition.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In particular, Jöns Jönsson’s “Axiom” is a clever examination of the psychology of a compulsive liar. And best of all — in this section, this festival and, for me, this year so far — there’s Cyril Schäublin’s utterly singular “Unrest,” a movie that is defiantly uncategorizable, unless you have a category earmarked “playful, otherworldly tales of watchmaking and anarchism in 1870s Switzerland.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Unrest” was the most transporting movie I saw in Berlin, at least until I physically transported myself to the city’s planetarium to watch Liz Rosenfeld’s experimental “White Sands Crystal Foxes.” The film itself is a rather exasperatingly overwritten art piece, but the experience was little short of transcendent. Lying under a domed 360-degree projection, suspended amid cascading imagery, I felt pleasantly disembodied. Later, it occurred to me how odd it was to yearn for a return to the real world, just to better escape it again.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " To that end — escapism — the most all-cylinders-firing section of this year’s Berlinale was undoubtedly the terrific retrospective, called “No Angels” and comprising 27 Golden Age Hollywood comedies, each starring Mae West, Rosalind Russell or Carole Lombard. The actresses’ big hits, like “My Little Chickadee,” “His Girl Friday” and “My Man Godfrey” were there, but this blast of a selection also unearthed less well-known but no less delightful titles. “Four’s a Crowd,” starring Russell alongside Errol Flynn and Olivia de Havilland is one, as is “Lady By Choice,” in which Lombard plays a showgirl-come-good who “adopts” a fake mother as a publicity stunt. Retreating into a screwball-comedy world might just be the best way to massage away the annoyances of the real one.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Then again, as the days zipped by and the staircases seemed to just get longer, it became clear that the irritations of real life are an integral part of what we missed so sorely during last year’s remote edition. At one public screening, a couple started arguing loudly with an usher when she told them they must leave an empty seat between them. I was annoyed by them. And then I remembered to be delighted that I could be annoyed by other physical humans being physically annoying in a physical place. “Suck it up,” I wanted to tell them. But also, “I love you.”\n", " Evidence\n", "\n", "
" @@ -3192,7 +5600,7 @@ { "data": { "text/html": [ - "

nytimes\\biden-economy-inflation-growth.txt

" + "

biden-economy-inflation-growth.txt

" ], "text/plain": [ "" @@ -3212,7 +5620,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "4b58cfb063234b41ab22fc7404fd05a2", + "model_id": "415d9d8940cf4940ae60cb80f7c7927b", "version_major": 2, "version_minor": 0 }, @@ -3233,7 +5641,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "3ae2c2785e944c4489917a031215b202", + "model_id": "b61ff3f046994e10b26767639124050d", "version_major": 2, "version_minor": 0 }, @@ -3263,7 +5671,42 @@ "Maybe because, for whatever reason, they haven’t heard that good news. {'label': 'Claim', 'score': 0.7946493625640869}\n", "There are many indicators of a large divergence between what people say about their own situation — which they rate as pretty good, financially and otherwise — and what they say about what’s happening to the nation as a whole. That is, they imagine that others are doing badly even though they themselves are doing OK. {'label': 'Evidence', 'score': 0.7784790992736816}\n", "Some of this represents immovable partisanship — nothing will convince Republicans that things aren’t terrible. But as Greg Sargent of The Washington Post points out, recent polling finds that when voters are presented with information about the good news on jobs, growth and unemployment, their assessment of the economy — and of Democrats — improves substantially. {'label': 'Rebuttal', 'score': 0.4267902374267578}\n", - "So Biden should indeed talk about his successes. He shouldn’t ignore the negatives — although denial of awkward reality has historically worked well for Republicans. But he should tout the good things that have happened on his watch. After all, if he won’t, who will? A good economy won’t sell itself. {'label': 'Concluding Statement', 'score': 0.9393945336341858}\n" + "So Biden should indeed talk about his successes. He shouldn’t ignore the negatives — although denial of awkward reality has historically worked well for Republicans. But he should tout the good things that have happened on his watch. After all, if he won’t, who will? A good economy won’t sell itself. {'label': 'Concluding Statement', 'score': 0.9393945336341858}\n", + " text label \\\n", + "0 Thirteen months into the Biden administration,... Lead \n", + "1 How should President Biden talk about this sit... Lead \n", + "2 Well, I remember the 1970s, and if you ask me,... Position \n", + "3 Furthermore, if Biden emphasizes the positive ... Evidence \n", + "4 The first study, by researchers at the Federal... Evidence \n", + "5 You might think this is a simple question to a... Evidence \n", + "6 The Dallas Fed study, which attempted to corre... Evidence \n", + "7 I’m not saying that workers are doing great — ... Evidence \n", + "8 And in terms of the politics, it seems worth n... Evidence \n", + "9 Still, people dislike inflation even when thei... Counterclaim \n", + "10 But there’s more. Researchers at the Federal R... Rebuttal \n", + "11 So Americans aren’t suffering big declines in ... Evidence \n", + "12 Maybe because, for whatever reason, they haven... Claim \n", + "13 There are many indicators of a large divergenc... Evidence \n", + "14 Some of this represents immovable partisanship... Rebuttal \n", + "15 So Biden should indeed talk about his successe... Concluding Statement \n", + "\n", + " score \n", + "0 0.459662 \n", + "1 0.714993 \n", + "2 0.395235 \n", + "3 0.549323 \n", + "4 0.661983 \n", + "5 0.923156 \n", + "6 0.359066 \n", + "7 0.505050 \n", + "8 0.940184 \n", + "9 0.406435 \n", + "10 0.864601 \n", + "11 0.779957 \n", + "12 0.794649 \n", + "13 0.778479 \n", + "14 0.426790 \n", + "15 0.939395 \n" ] }, { @@ -3271,7 +5714,12 @@ "text/html": [ "
\n", "\n", - " Thirteen months into the Biden administration, Democrats face a troubling paradox. By many measures the economy has done very well, hugely outperforming expectations for growth and job creation. A record number of Americans say that it’s a good time to find a quality job. But inflation has spiked, consumer sentiment has plunged, and polls show that economic perceptions are currently a big liability for their party. How should President Biden talk about this situation? Obviously he needs to acknowledge the inflation problem. But there’s a debate among pundits, and presumably within the party’s inner circles, about how much he should tout his achievements. Some commentators seem to believe that emphasizing the good news would be a mistake, that his best move would be to demonstrate that he’s in touch by acknowledging that things have gone wrong — that he should, in effect, ratify negative narratives about the economy.\n", + " Thirteen months into the Biden administration, Democrats face a troubling paradox. By many measures the economy has done very well, hugely outperforming expectations for growth and job creation. A record number of Americans say that it’s a good time to find a quality job. But inflation has spiked, consumer sentiment has plunged, and polls show that economic perceptions are currently a big liability for their party.\n", + " Lead\n", + "\n", + "\n", + "\n", + " How should President Biden talk about this situation? Obviously he needs to acknowledge the inflation problem. But there’s a debate among pundits, and presumably within the party’s inner circles, about how much he should tout his achievements. Some commentators seem to believe that emphasizing the good news would be a mistake, that his best move would be to demonstrate that he’s in touch by acknowledging that things have gone wrong — that he should, in effect, ratify negative narratives about the economy.\n", " Lead\n", "\n", "\n", @@ -3281,7 +5729,32 @@ "\n", "\n", "\n", - " Furthermore, if Biden emphasizes the positive he will have reality on his side. I’ve been arguing for a while that the economy is doing much better than either consumer surveys or polling suggest. And two important new studies reinforce that case. The first study, by researchers at the Federal Reserve Bank of Dallas, involves real wages — wages corrected for inflation. I’ve seen many articles simply asserting as fact that wages haven’t kept up with inflation. But is that true? You might think this is a simple question to answer — just compare average wages with the level of prices. But the pandemic has messed up such comparisons by skewing the composition of the work force. In 2020 average wages went up a lot, not because individual workers were getting big raises, but because the millions of Americans laid off were disproportionately in low-paid occupations like restaurant work. Those same occupations have led the recovery in employment over the past year, so that true wage growth has been higher than the average might suggest. The Dallas Fed study, which attempted to correct for these effects, found that real wages actually rose in 2021, although they slipped slightly in the second half of the year. I’m not saying that workers are doing great — they aren’t. Nor should we take this study as the final word; maybe real wages are actually down a bit rather than up a bit. But these estimates are inconsistent with claims that workers have suffered large declines in their purchasing power. And in terms of the politics, it seems worth noting a historical comparison: Real wages for blue-collar workers declined fairly consistently over the course of Ronald Reagan’s presidency, despite the 1985-86 plunge in world oil prices. Yet Republicans won not one but two landslide presidential election victories in the 1980s largely on the strength of perceived economic success.\n", + " Furthermore, if Biden emphasizes the positive he will have reality on his side. I’ve been arguing for a while that the economy is doing much better than either consumer surveys or polling suggest. And two important new studies reinforce that case.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The first study, by researchers at the Federal Reserve Bank of Dallas, involves real wages — wages corrected for inflation. I’ve seen many articles simply asserting as fact that wages haven’t kept up with inflation. But is that true?\n", + " Evidence\n", + "\n", + "\n", + "\n", + " You might think this is a simple question to answer — just compare average wages with the level of prices. But the pandemic has messed up such comparisons by skewing the composition of the work force. In 2020 average wages went up a lot, not because individual workers were getting big raises, but because the millions of Americans laid off were disproportionately in low-paid occupations like restaurant work. Those same occupations have led the recovery in employment over the past year, so that true wage growth has been higher than the average might suggest.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The Dallas Fed study, which attempted to correct for these effects, found that real wages actually rose in 2021, although they slipped slightly in the second half of the year.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " I’m not saying that workers are doing great — they aren’t. Nor should we take this study as the final word; maybe real wages are actually down a bit rather than up a bit. But these estimates are inconsistent with claims that workers have suffered large declines in their purchasing power.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " And in terms of the politics, it seems worth noting a historical comparison: Real wages for blue-collar workers declined fairly consistently over the course of Ronald Reagan’s presidency, despite the 1985-86 plunge in world oil prices. Yet Republicans won not one but two landslide presidential election victories in the 1980s largely on the strength of perceived economic success.\n", " Evidence\n", "\n", "\n", @@ -3340,7 +5813,7 @@ { "data": { "text/html": [ - "

nytimes\\biden-immigration-public-charge-trump.txt

" + "

biden-immigration-public-charge-trump.txt

" ], "text/plain": [ "" @@ -3360,7 +5833,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "994bf2d518a34a04848b1ab40ed973f1", + "model_id": "7fdeb3e6314042a4b7e7d0142a19926e", "version_major": 2, "version_minor": 0 }, @@ -3381,7 +5854,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "20031e971c624c9bad96f072b0688924", + "model_id": "42efdff37dec4c3ba34f31a9c8af24d8", "version_major": 2, "version_minor": 0 }, @@ -3396,7 +5869,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "WASHINGTON — The Biden administration said on Thursday it would propose a regulation that some say would make it harder for future administrations to restore the Trump-era “public charge” policy that allowed officials to deny permanent residency to immigrants who received or were most likely to need public benefits. {'label': 'Evidence', 'score': 0.6895141005516052}\n", + "WASHINGTON — The Biden administration said on Thursday it would propose a regulation that some say would make it harder for future administrations to restore the Trump-era “public charge” policy that allowed officials to deny permanent residency to immigrants who received or were most likely to need public benefits. {'label': 'Evidence', 'score': 0.68951416015625}\n", "Immigration advocates, who have been critical of the progress President Biden has made over the past year in reversing his predecessor’s immigration policies, welcomed the announcement. Even though former President Donald J. Trump’s rule was halted last year, immigrants hoping for green cards have continued to be wary of doing anything that they feared could jeopardize their chances of getting them, including going to the hospital or getting a Covid-19 vaccine. {'label': 'Evidence', 'score': 0.8453570604324341}\n", "Lingering fears about the Trump rule have made it “much more difficult to address the harms of the pandemic” for immigrants lacking permanent legal status, said Tanya Broder, a lawyer with the National Immigration Law Center. The Trump administration’s rule went into effect in February 2020, just weeks before the reach of the coronavirus in the United States became clear. {'label': 'Evidence', 'score': 0.9473098516464233}\n", "While the Trump policy has not been in effect for nearly a year, the Biden administration’s new rule would be more resilient to potential legal challenges and harder to reverse by a new administration than the one it issued last March, policy experts said. {'label': 'Claim', 'score': 0.31188517808914185}\n", @@ -3405,10 +5878,24 @@ "In November 2020, a federal district court ordered the Trump administration to stop enforcing the policy. {'label': 'Claim', 'score': 0.5253772139549255}\n", "Last March, the definition reverted back to what it had been before; the new proposal would continue to use the old language. {'label': 'Claim', 'score': 0.7569808959960938}\n", "“The 2019 public charge rule was not consistent with our nation’s values,” Alejandro N. Mayorkas, the homeland security secretary, said in a statement on Thursday. “Under this proposed rule, we will return to the historical understanding of the term ‘public charge’ and individuals will not be penalized for choosing to access the health benefits and other supplemental government services available to them.” {'label': 'Evidence', 'score': 0.8330368995666504}\n", - " The new proposed regulation, which will be open to public comments for 60 days once it is published in the Federal Register, is “more legally defensible,” because it is going through the government’s rule-making process, said Julia Gelatt, a senior policy analyst at the nonpartisan Migration Policy Institute. It also adds specificity to some of the terms and clauses in an initial 1999 guidance, so less will be left to interpretation, she said. {'label': 'Evidence', 'score': 0.7760686874389648}\n", + " The new proposed regulation, which will be open to public comments for 60 days once it is published in the Federal Register, is “more legally defensible,” because it is going through the government’s rule-making process, said Julia Gelatt, a senior policy analyst at the nonpartisan Migration Policy Institute. It also adds specificity to some of the terms and clauses in an initial 1999 guidance, so less will be left to interpretation, she said. {'label': 'Evidence', 'score': 0.7760686278343201}\n", "The Trump rule spurred so much fear in immigrant communities that some people who were not subject to the public charge regulation started to avoid public benefits all together. {'label': 'Claim', 'score': 0.5808954834938049}\n", "Advocates said they hoped the new proposed rule would make immigrants more comfortable applying for public benefits for which they are eligible, which can vary by state. {'label': 'Counterclaim', 'score': 0.8699418306350708}\n", - "“The forthcoming public charge rule is particularly significant given the enduring chilling effect we have seen among immigrant communities fearful of accessing benefits to which they are entitled,” said Krish O’Mara Vignarajah, the chief executive of Lutheran Immigration and Refugee Service. “Equally important is the outreach the administration will extend to educate impacted communities.” {'label': 'Evidence', 'score': 0.8895456194877625}\n" + "“The forthcoming public charge rule is particularly significant given the enduring chilling effect we have seen among immigrant communities fearful of accessing benefits to which they are entitled,” said Krish O’Mara Vignarajah, the chief executive of Lutheran Immigration and Refugee Service. “Equally important is the outreach the administration will extend to educate impacted communities.” {'label': 'Evidence', 'score': 0.8895456194877625}\n", + " text label score\n", + "0 WASHINGTON — The Biden administration said on ... Evidence 0.689514\n", + "1 Immigration advocates, who have been critical ... Evidence 0.845357\n", + "2 Lingering fears about the Trump rule have made... Evidence 0.947310\n", + "3 While the Trump policy has not been in effect ... Claim 0.311885\n", + "4 In U.S. immigration law, the idea of public ch... Evidence 0.942275\n", + "5 The Trump administration, however, expanded th... Evidence 0.431860\n", + "6 In November 2020, a federal district court ord... Claim 0.525377\n", + "7 Last March, the definition reverted back to wh... Claim 0.756981\n", + "8 “The 2019 public charge rule was not consisten... Evidence 0.833037\n", + "9 The new proposed regulation, which will be op... Evidence 0.776069\n", + "10 The Trump rule spurred so much fear in immigra... Claim 0.580895\n", + "11 Advocates said they hoped the new proposed rul... Counterclaim 0.869942\n", + "12 “The forthcoming public charge rule is particu... Evidence 0.889546\n" ] }, { @@ -3416,7 +5903,17 @@ "text/html": [ "
\n", "\n", - " WASHINGTON — The Biden administration said on Thursday it would propose a regulation that some say would make it harder for future administrations to restore the Trump-era “public charge” policy that allowed officials to deny permanent residency to immigrants who received or were most likely to need public benefits. Immigration advocates, who have been critical of the progress President Biden has made over the past year in reversing his predecessor’s immigration policies, welcomed the announcement. Even though former President Donald J. Trump’s rule was halted last year, immigrants hoping for green cards have continued to be wary of doing anything that they feared could jeopardize their chances of getting them, including going to the hospital or getting a Covid-19 vaccine. Lingering fears about the Trump rule have made it “much more difficult to address the harms of the pandemic” for immigrants lacking permanent legal status, said Tanya Broder, a lawyer with the National Immigration Law Center. The Trump administration’s rule went into effect in February 2020, just weeks before the reach of the coronavirus in the United States became clear.\n", + " WASHINGTON — The Biden administration said on Thursday it would propose a regulation that some say would make it harder for future administrations to restore the Trump-era “public charge” policy that allowed officials to deny permanent residency to immigrants who received or were most likely to need public benefits.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Immigration advocates, who have been critical of the progress President Biden has made over the past year in reversing his predecessor’s immigration policies, welcomed the announcement. Even though former President Donald J. Trump’s rule was halted last year, immigrants hoping for green cards have continued to be wary of doing anything that they feared could jeopardize their chances of getting them, including going to the hospital or getting a Covid-19 vaccine.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Lingering fears about the Trump rule have made it “much more difficult to address the harms of the pandemic” for immigrants lacking permanent legal status, said Tanya Broder, a lawyer with the National Immigration Law Center. The Trump administration’s rule went into effect in February 2020, just weeks before the reach of the coronavirus in the United States became clear.\n", " Evidence\n", "\n", "\n", @@ -3426,17 +5923,32 @@ "\n", "\n", "\n", - " In U.S. immigration law, the idea of public charges has historically applied to those deemed likely to primarily depend on the federal government for survival, such as through public cash assistance or institutionalized long-term care. Mr. Trump’s rule expanded the definition, changing what had been common practice for 20 years, and was seen by many as a way to keep out poor immigrants. The Trump administration, however, expanded the list of benefits that could make a new immigrant ineligible for permanent residency, adding Medicaid, food stamps and subsidized housing, for example. Researchers have said the policy prompted many families to drop off the benefit rolls, even if they had children who were U.S. citizens and could use such programs with no effect on their immigration applications.\n", + " In U.S. immigration law, the idea of public charges has historically applied to those deemed likely to primarily depend on the federal government for survival, such as through public cash assistance or institutionalized long-term care. Mr. Trump’s rule expanded the definition, changing what had been common practice for 20 years, and was seen by many as a way to keep out poor immigrants.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The Trump administration, however, expanded the list of benefits that could make a new immigrant ineligible for permanent residency, adding Medicaid, food stamps and subsidized housing, for example. Researchers have said the policy prompted many families to drop off the benefit rolls, even if they had children who were U.S. citizens and could use such programs with no effect on their immigration applications.\n", " Evidence\n", "\n", "\n", "\n", - " In November 2020, a federal district court ordered the Trump administration to stop enforcing the policy. Last March, the definition reverted back to what it had been before; the new proposal would continue to use the old language.\n", + " In November 2020, a federal district court ordered the Trump administration to stop enforcing the policy.\n", + " Claim\n", + "\n", + "\n", + "\n", + " Last March, the definition reverted back to what it had been before; the new proposal would continue to use the old language.\n", " Claim\n", "\n", "\n", "\n", - " “The 2019 public charge rule was not consistent with our nation’s values,” Alejandro N. Mayorkas, the homeland security secretary, said in a statement on Thursday. “Under this proposed rule, we will return to the historical understanding of the term ‘public charge’ and individuals will not be penalized for choosing to access the health benefits and other supplemental government services available to them.” The new proposed regulation, which will be open to public comments for 60 days once it is published in the Federal Register, is “more legally defensible,” because it is going through the government’s rule-making process, said Julia Gelatt, a senior policy analyst at the nonpartisan Migration Policy Institute. It also adds specificity to some of the terms and clauses in an initial 1999 guidance, so less will be left to interpretation, she said.\n", + " “The 2019 public charge rule was not consistent with our nation’s values,” Alejandro N. Mayorkas, the homeland security secretary, said in a statement on Thursday. “Under this proposed rule, we will return to the historical understanding of the term ‘public charge’ and individuals will not be penalized for choosing to access the health benefits and other supplemental government services available to them.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The new proposed regulation, which will be open to public comments for 60 days once it is published in the Federal Register, is “more legally defensible,” because it is going through the government’s rule-making process, said Julia Gelatt, a senior policy analyst at the nonpartisan Migration Policy Institute. It also adds specificity to some of the terms and clauses in an initial 1999 guidance, so less will be left to interpretation, she said.\n", " Evidence\n", "\n", "\n", @@ -3475,7 +5987,7 @@ { "data": { "text/html": [ - "

nytimes\\biden-ukraine-russia.txt

" + "

biden-ukraine-russia.txt

" ], "text/plain": [ "" @@ -3495,7 +6007,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "cfaeaf5fdc07475b992c6de317a56031", + "model_id": "9c88a2cb264f42e8a2bf1114be0ba6da", "version_major": 2, "version_minor": 0 }, @@ -3516,7 +6028,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "19f12a666ad2465ca78a2a738323111d", + "model_id": "3ca854263fb44563a8c871afe3f321a8", "version_major": 2, "version_minor": 0 }, @@ -3548,7 +6060,7 @@ "The force includes 120 to 125 battalion tactical groups, up from the mid-80s earlier in the month. And some of the forces are Russian reservists who would make up an occupation force after an invasion, the officials said. The officials asked for anonymity to discuss government assessments. {'label': 'Evidence', 'score': 0.9841826558113098}\n", "Mr. Biden vowed that the United States and its allies were united behind imposing severe economic sanctions if Russia’s forces cross Ukraine’s borders. He said he also held a call with Democratic and Republican lawmakers who expressed united support for the administration during a visit to Munich for a security conference. {'label': 'Evidence', 'score': 0.9746407270431519}\n", "In Ukraine, the head of the country’s Ministry of Defense said the claim of an imminent attack by its military was categorically false and intended to inflame tensions. But the ministry issued a stark warning to residents of the contested regions “not to leave their homes and not to use public transport.” It cited “information that Russian special services have mined a number of social infrastructure facilities in Donetsk,” with the aim of “destabilizing the situation” there. {'label': 'Evidence', 'score': 0.972236692905426}\n", - "The warning reflected how Russia appeared to be pulling out all the stops to pressure the Ukrainians short of sending its troops across the border. {'label': 'Evidence', 'score': 0.6515329480171204}\n", + "The warning reflected how Russia appeared to be pulling out all the stops to pressure the Ukrainians short of sending its troops across the border. {'label': 'Evidence', 'score': 0.6515328884124756}\n", "The fears of brewing conflict were reinforced as U.S. officials said that as many as 190,000 troops and aligned militias were arrayed in and near Ukraine, a number that includes the separatists. The assessment was delivered in a statement by the U.S. mission to the Organization for Security and Cooperation in Europe, which called it “the most significant military mobilization in Europe since the Second World War.” {'label': 'Evidence', 'score': 0.974891722202301}\n", "Consistent with Russia’s contradictory messaging throughout the crisis, however, Mr. Putin said on Friday that he was prepared for further diplomacy. The announcement of the meeting between Mr. Blinken and the Russian foreign minister, Sergey V. Lavrov, calmed jittery markets and suggested that there was still hope for the crisis to be resolved without war. {'label': 'Rebuttal', 'score': 0.5126962661743164}\n", "But Mr. Putin emphasized that Russia would continue to insist on far-reaching demands for “security guarantees” in Eastern Europe that the West has rejected — such as a halt to the eastward expansion of NATO and the pullback of the alliance’s forces from the region. {'label': 'Rebuttal', 'score': 0.7653526663780212}\n", @@ -3557,23 +6069,61 @@ "In calling for people in the contested areas to evacuate to Russia, Denis Pushilin, the pro-Moscow leader of the Donetsk People’s Republic, offered a stark version of what might be coming in citing supposed provocations by Ukraine. {'label': 'Evidence', 'score': 0.7311024069786072}\n", "“Very soon, President of Ukraine Volodymyr Zelensky will order the military to go on an offensive, to implement a plan to invade the territory of Donetsk and Luhansk people’s republics,” he said in a video posted online, offering no evidence. {'label': 'Evidence', 'score': 0.7590333223342896}\n", "Kyiv firmly denied Moscow’s accusations. And in his remarks Friday, Mr. Biden said there was “no evidence” behind them. {'label': 'Evidence', 'score': 0.3347277045249939}\n", - "Although Moscow insists that it has no plans for an invasion, it has vowed to mount “a tough response” if the United States and its NATO partners do not roll back their presence in Eastern Europe. {'label': 'Claim', 'score': 0.4541341960430145}\n" + "Although Moscow insists that it has no plans for an invasion, it has vowed to mount “a tough response” if the United States and its NATO partners do not roll back their presence in Eastern Europe. {'label': 'Claim', 'score': 0.4541341960430145}\n", + "In a demonstration of strength, Russia plans major drills this weekend that will include the launch of ballistic and cruise missiles, the country’s Defense Ministry said, according to the Interfax news agency. {'label': 'Evidence', 'score': 0.8572456240653992}\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ - "In a demonstration of strength, Russia plans major drills this weekend that will include the launch of ballistic and cruise missiles, the country’s Defense Ministry said, according to the Interfax news agency. {'label': 'Evidence', 'score': 0.8572456240653992}\n", "Russia’s drills will test its strategic nuclear forces, which include the land-based launchers, bombers and warships used to deliver nuclear weapons. They will involve the Black Sea Fleet, which has been engaged in large-scale exercises in the region bordering Ukraine. Mr. Putin will preside over them from a “situation center,” the Kremlin said. {'label': 'Evidence', 'score': 0.9916961789131165}\n", "The Defense Ministry said the drills had been planned in advance, and Dmitri S. Peskov, Mr. Putin’s spokesman, denied that they were intended to raise tensions with the West. But they will come at a critical juncture in the standoff over Ukraine. {'label': 'Evidence', 'score': 0.9371641874313354}\n", "Near the front in Ukraine, it was possible to hear the blasts from munitions fired by the Ukrainian military and incoming fire from the pro-Russian separatists. {'label': 'Evidence', 'score': 0.7469472885131836}\n", - "A total of 12 houses were damaged by shelling Friday morning, said a local branch of the United Nations High Commissioner for Refugees. {'label': 'Evidence', 'score': 0.6155592203140259}\n", + "A total of 12 houses were damaged by shelling Friday morning, said a local branch of the United Nations High Commissioner for Refugees. {'label': 'Evidence', 'score': 0.6155591011047363}\n", "In remarks before Ukraine’s parliament, the country’s defense minister, Oleksiy Reznikov, urged Ukrainians living in the separatist-held territory not to believe Russian propaganda that the Ukrainian government was going to attack them. {'label': 'Evidence', 'score': 0.7253041863441467}\n", "“Don’t be afraid,” he said. “Ukraine is not your enemy.” {'label': 'Evidence', 'score': 0.39312347769737244}\n", "An estimated 3.5 million people live in the two breakaway regions, and self-declared republics, and since the war started there, Russia has handed out citizenship to more than 700,000 people living in the Donbas region. In his messaging on Ukraine, Mr. Putin has warned of the plight of ethnic Russians in the country, saying that events in eastern Ukraine “resemble genocide.” {'label': 'Evidence', 'score': 0.9799791574478149}\n", "Highlighting the growing risk of military conflict, Britain announced Friday night that it was following the United States’ lead in evacuating its embassy from Kyiv to the western city of Lviv. {'label': 'Evidence', 'score': 0.6165778636932373}\n", - "With fears running high that Russian troops in Belarus could invade Ukraine from the northern border with Belarus, only 140 miles from the capital, the Ukrainian authorities ordered the site of the Chernobyl nuclear disaster closed to tourists. {'label': 'Evidence', 'score': 0.9490373730659485}\n" + "With fears running high that Russian troops in Belarus could invade Ukraine from the northern border with Belarus, only 140 miles from the capital, the Ukrainian authorities ordered the site of the Chernobyl nuclear disaster closed to tourists. {'label': 'Evidence', 'score': 0.9490373730659485}\n", + " text label score\n", + "0 WASHINGTON — President Biden said on Friday th... Evidence 0.934586\n", + "1 Speaking from the Roosevelt Room in the White ... Evidence 0.914044\n", + "2 Asked whether he thinks that Mr. Putin is stil... Evidence 0.545329\n", + "3 Still, Mr. Biden implored Russia to “choose di... Counterclaim 0.494066\n", + "4 “It is not too late to de-escalate and return ... Evidence 0.952233\n", + "5 In the hours before Mr. Biden’s late afternoon... Evidence 0.920419\n", + "6 The ominous messaging of the rebels in the reg... Evidence 0.936615\n", + "7 The call by the Russian-backed separatists for... Evidence 0.976216\n", + "8 Mr. Biden, who had just concluded a video call... Rebuttal 0.470915\n", + "9 He cited the bombing of a Ukrainian kindergart... Evidence 0.933437\n", + "10 “There is simply no evidence to these assertio... Rebuttal 0.534619\n", + "11 The president’s comments are the clearest indi... Evidence 0.502817\n", + "12 “We’re calling out Russia’s plans loudly and r... Evidence 0.798345\n", + "13 The president did not say how the administrati... Evidence 0.912556\n", + "14 The force includes 120 to 125 battalion tactic... Evidence 0.984183\n", + "15 Mr. Biden vowed that the United States and its... Evidence 0.974641\n", + "16 In Ukraine, the head of the country’s Ministry... Evidence 0.972237\n", + "17 The warning reflected how Russia appeared to b... Evidence 0.651533\n", + "18 The fears of brewing conflict were reinforced ... Evidence 0.974892\n", + "19 Consistent with Russia’s contradictory messagi... Rebuttal 0.512696\n", + "20 But Mr. Putin emphasized that Russia would con... Rebuttal 0.765353\n", + "21 “We are ready to go on the negotiating track u... Evidence 0.858811\n", + "22 Friday’s drumbeat of alarms from the separatis... Evidence 0.748312\n", + "23 In calling for people in the contested areas t... Evidence 0.731102\n", + "24 “Very soon, President of Ukraine Volodymyr Zel... Evidence 0.759033\n", + "25 Kyiv firmly denied Moscow’s accusations. And i... Evidence 0.334728\n", + "26 Although Moscow insists that it has no plans f... Claim 0.454134\n", + "27 In a demonstration of strength, Russia plans m... Evidence 0.857246\n", + "28 Russia’s drills will test its strategic nuclea... Evidence 0.991696\n", + "29 The Defense Ministry said the drills had been ... Evidence 0.937164\n", + "30 Near the front in Ukraine, it was possible to ... Evidence 0.746947\n", + "31 A total of 12 houses were damaged by shelling ... Evidence 0.615559\n", + "32 In remarks before Ukraine’s parliament, the co... Evidence 0.725304\n", + "33 “Don’t be afraid,” he said. “Ukraine is not yo... Evidence 0.393123\n", + "34 An estimated 3.5 million people live in the tw... Evidence 0.979979\n", + "35 Highlighting the growing risk of military conf... Evidence 0.616578\n", + "36 With fears running high that Russian troops in... Evidence 0.949037\n" ] }, { @@ -3581,7 +6131,17 @@ "text/html": [ "
\n", "\n", - " WASHINGTON — President Biden said on Friday that the United States has intelligence showing that President Vladimir V. Putin of Russia has made a final decision to reject diplomatic overtures and invade Ukraine, in what Mr. Biden said would be a “catastrophic and needless war of choice” in Eastern Europe. Speaking from the Roosevelt Room in the White House, Mr. Biden said “we have reason to believe the Russian forces are planning to and intend to attack Ukraine in the coming week, in the coming days,” adding that “we believe that they will target Ukraine’s capital, Kyiv, a city of 2.8 million innocent people.” Asked whether he thinks that Mr. Putin is still wavering about whether to invade, Mr. Biden said, “I’m convinced he’s made the decision.” Later, he added that his impression of Mr. Putin’s intentions is based on “a significant intelligence capability.”\n", + " WASHINGTON — President Biden said on Friday that the United States has intelligence showing that President Vladimir V. Putin of Russia has made a final decision to reject diplomatic overtures and invade Ukraine, in what Mr. Biden said would be a “catastrophic and needless war of choice” in Eastern Europe.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Speaking from the Roosevelt Room in the White House, Mr. Biden said “we have reason to believe the Russian forces are planning to and intend to attack Ukraine in the coming week, in the coming days,” adding that “we believe that they will target Ukraine’s capital, Kyiv, a city of 2.8 million innocent people.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Asked whether he thinks that Mr. Putin is still wavering about whether to invade, Mr. Biden said, “I’m convinced he’s made the decision.” Later, he added that his impression of Mr. Putin’s intentions is based on “a significant intelligence capability.”\n", " Evidence\n", "\n", "\n", @@ -3591,37 +6151,112 @@ "\n", "\n", "\n", - " “It is not too late to de-escalate and return to the negotiating table,” Mr. Biden said, referring to planned talks between Secretary of State Antony J. Blinken and Russia’s foreign minister on Thursday. “If Russia takes military action before that date, it will be clear that they have slammed the door shut on diplomacy.” In the hours before Mr. Biden’s late afternoon remarks, Russia-backed separatists in eastern Ukraine called for mass evacuations in two contested regions of the country, claiming, with little evidence, that Ukraine’s military was about to launch a large-scale attack there, an assertion that appeared intended to provoke Russian military intervention. The ominous messaging of the rebels in the regions of Donetsk and Luhansk was loudly echoed by Moscow, raising fears that Russia was setting the stage for an imminent invasion that could ignite the biggest conflict in Europe in decades. The call by the Russian-backed separatists for evacuations came as they blamed Ukraine for an array of provocations, including shelling along the front lines between Ukraine and the separatist forces, and an explosion involving an empty car that pro-Moscow news outlets said belonged to the head of the region’s security services.\n", + " “It is not too late to de-escalate and return to the negotiating table,” Mr. Biden said, referring to planned talks between Secretary of State Antony J. Blinken and Russia’s foreign minister on Thursday. “If Russia takes military action before that date, it will be clear that they have slammed the door shut on diplomacy.”\n", " Evidence\n", "\n", "\n", - "\n", - " Mr. Biden, who had just concluded a video call with a dozen Western leaders, rejected the claims as lies intended by Mr. Putin to inflame the situation on the ground and provide a pretext for war — something the United States and other European leaders had been warning about for weeks.\n", - " Rebuttal\n", + "\n", + " In the hours before Mr. Biden’s late afternoon remarks, Russia-backed separatists in eastern Ukraine called for mass evacuations in two contested regions of the country, claiming, with little evidence, that Ukraine’s military was about to launch a large-scale attack there, an assertion that appeared intended to provoke Russian military intervention.\n", + " Evidence\n", "\n", "\n", "\n", - " He cited the bombing of a Ukrainian kindergarten as a Russia-backed provocation. And he pointed to Russian separatist accusations that Ukraine was planning to launch a major offensive attack as evidence of Russian efforts to justify military action with misinformation.\n", + " The ominous messaging of the rebels in the regions of Donetsk and Luhansk was loudly echoed by Moscow, raising fears that Russia was setting the stage for an imminent invasion that could ignite the biggest conflict in Europe in decades.\n", " Evidence\n", "\n", "\n", - "\n", + "\n", + " The call by the Russian-backed separatists for evacuations came as they blamed Ukraine for an array of provocations, including shelling along the front lines between Ukraine and the separatist forces, and an explosion involving an empty car that pro-Moscow news outlets said belonged to the head of the region’s security services.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mr. Biden, who had just concluded a video call with a dozen Western leaders, rejected the claims as lies intended by Mr. Putin to inflame the situation on the ground and provide a pretext for war — something the United States and other European leaders had been warning about for weeks.\n", + " Rebuttal\n", + "\n", + "\n", + "\n", + " He cited the bombing of a Ukrainian kindergarten as a Russia-backed provocation. And he pointed to Russian separatist accusations that Ukraine was planning to launch a major offensive attack as evidence of Russian efforts to justify military action with misinformation.\n", + " Evidence\n", + "\n", + "\n", + "\n", " “There is simply no evidence to these assertions, and it defies basic logic to believe the Ukrainians would choose this moment, with well over 150,000 troops arrayed on its borders, to escalate a yearlong conflict,” Mr. Biden said.\n", " Rebuttal\n", "\n", "\n", "\n", - " The president’s comments are the clearest indications of just how close the world may be to the largest conflict in Europe since World War II. He took the highly unusual course of specifically predicting the time frame and parameters of the invasion, despite the risks that he could be proved wrong. “We’re calling out Russia’s plans loudly and repeatedly,” Mr. Biden said. “Not because we want a conflict but because we’re doing everything in our power to remove any reason that Russia may give to justify invading Ukraine and prevent them from moving.” The president did not say how the administration knew about Mr. Putin’s decision, but two U.S. officials said the president’s assessment was based in part on new intelligence showing that nearly half of the 150,000 Russian forces have moved out of staging and into combat formation and could launch a full-scale invasion within days. The force includes 120 to 125 battalion tactical groups, up from the mid-80s earlier in the month. And some of the forces are Russian reservists who would make up an occupation force after an invasion, the officials said. The officials asked for anonymity to discuss government assessments. Mr. Biden vowed that the United States and its allies were united behind imposing severe economic sanctions if Russia’s forces cross Ukraine’s borders. He said he also held a call with Democratic and Republican lawmakers who expressed united support for the administration during a visit to Munich for a security conference. In Ukraine, the head of the country’s Ministry of Defense said the claim of an imminent attack by its military was categorically false and intended to inflame tensions. But the ministry issued a stark warning to residents of the contested regions “not to leave their homes and not to use public transport.” It cited “information that Russian special services have mined a number of social infrastructure facilities in Donetsk,” with the aim of “destabilizing the situation” there. The warning reflected how Russia appeared to be pulling out all the stops to pressure the Ukrainians short of sending its troops across the border. The fears of brewing conflict were reinforced as U.S. officials said that as many as 190,000 troops and aligned militias were arrayed in and near Ukraine, a number that includes the separatists. The assessment was delivered in a statement by the U.S. mission to the Organization for Security and Cooperation in Europe, which called it “the most significant military mobilization in Europe since the Second World War.”\n", + " The president’s comments are the clearest indications of just how close the world may be to the largest conflict in Europe since World War II. He took the highly unusual course of specifically predicting the time frame and parameters of the invasion, despite the risks that he could be proved wrong.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “We’re calling out Russia’s plans loudly and repeatedly,” Mr. Biden said. “Not because we want a conflict but because we’re doing everything in our power to remove any reason that Russia may give to justify invading Ukraine and prevent them from moving.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The president did not say how the administration knew about Mr. Putin’s decision, but two U.S. officials said the president’s assessment was based in part on new intelligence showing that nearly half of the 150,000 Russian forces have moved out of staging and into combat formation and could launch a full-scale invasion within days.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The force includes 120 to 125 battalion tactical groups, up from the mid-80s earlier in the month. And some of the forces are Russian reservists who would make up an occupation force after an invasion, the officials said. The officials asked for anonymity to discuss government assessments.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mr. Biden vowed that the United States and its allies were united behind imposing severe economic sanctions if Russia’s forces cross Ukraine’s borders. He said he also held a call with Democratic and Republican lawmakers who expressed united support for the administration during a visit to Munich for a security conference.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In Ukraine, the head of the country’s Ministry of Defense said the claim of an imminent attack by its military was categorically false and intended to inflame tensions. But the ministry issued a stark warning to residents of the contested regions “not to leave their homes and not to use public transport.” It cited “information that Russian special services have mined a number of social infrastructure facilities in Donetsk,” with the aim of “destabilizing the situation” there.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The warning reflected how Russia appeared to be pulling out all the stops to pressure the Ukrainians short of sending its troops across the border.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The fears of brewing conflict were reinforced as U.S. officials said that as many as 190,000 troops and aligned militias were arrayed in and near Ukraine, a number that includes the separatists. The assessment was delivered in a statement by the U.S. mission to the Organization for Security and Cooperation in Europe, which called it “the most significant military mobilization in Europe since the Second World War.”\n", " Evidence\n", "\n", "\n", "\n", - " Consistent with Russia’s contradictory messaging throughout the crisis, however, Mr. Putin said on Friday that he was prepared for further diplomacy. The announcement of the meeting between Mr. Blinken and the Russian foreign minister, Sergey V. Lavrov, calmed jittery markets and suggested that there was still hope for the crisis to be resolved without war. But Mr. Putin emphasized that Russia would continue to insist on far-reaching demands for “security guarantees” in Eastern Europe that the West has rejected — such as a halt to the eastward expansion of NATO and the pullback of the alliance’s forces from the region.\n", + " Consistent with Russia’s contradictory messaging throughout the crisis, however, Mr. Putin said on Friday that he was prepared for further diplomacy. The announcement of the meeting between Mr. Blinken and the Russian foreign minister, Sergey V. Lavrov, calmed jittery markets and suggested that there was still hope for the crisis to be resolved without war.\n", + " Rebuttal\n", + "\n", + "\n", + "\n", + " But Mr. Putin emphasized that Russia would continue to insist on far-reaching demands for “security guarantees” in Eastern Europe that the West has rejected — such as a halt to the eastward expansion of NATO and the pullback of the alliance’s forces from the region.\n", " Rebuttal\n", "\n", "\n", "\n", - " “We are ready to go on the negotiating track under the condition that all questions will be considered together, without being separated from Russia’s main proposals,” Mr. Putin said in a news conference alongside his close ally President Aleksandr G. Lukashenko of Belarus, who was visiting Moscow. Friday’s drumbeat of alarms from the separatists about Ukrainian provocations aligned with how Western officials have been warning that a “false flag” incident could be used to start a military conflict. In calling for people in the contested areas to evacuate to Russia, Denis Pushilin, the pro-Moscow leader of the Donetsk People’s Republic, offered a stark version of what might be coming in citing supposed provocations by Ukraine. “Very soon, President of Ukraine Volodymyr Zelensky will order the military to go on an offensive, to implement a plan to invade the territory of Donetsk and Luhansk people’s republics,” he said in a video posted online, offering no evidence. Kyiv firmly denied Moscow’s accusations. And in his remarks Friday, Mr. Biden said there was “no evidence” behind them.\n", + " “We are ready to go on the negotiating track under the condition that all questions will be considered together, without being separated from Russia’s main proposals,” Mr. Putin said in a news conference alongside his close ally President Aleksandr G. Lukashenko of Belarus, who was visiting Moscow.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Friday’s drumbeat of alarms from the separatists about Ukrainian provocations aligned with how Western officials have been warning that a “false flag” incident could be used to start a military conflict.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In calling for people in the contested areas to evacuate to Russia, Denis Pushilin, the pro-Moscow leader of the Donetsk People’s Republic, offered a stark version of what might be coming in citing supposed provocations by Ukraine.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Very soon, President of Ukraine Volodymyr Zelensky will order the military to go on an offensive, to implement a plan to invade the territory of Donetsk and Luhansk people’s republics,” he said in a video posted online, offering no evidence.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Kyiv firmly denied Moscow’s accusations. And in his remarks Friday, Mr. Biden said there was “no evidence” behind them.\n", " Evidence\n", "\n", "\n", @@ -3631,7 +6266,52 @@ "\n", "\n", "\n", - " In a demonstration of strength, Russia plans major drills this weekend that will include the launch of ballistic and cruise missiles, the country’s Defense Ministry said, according to the Interfax news agency. Russia’s drills will test its strategic nuclear forces, which include the land-based launchers, bombers and warships used to deliver nuclear weapons. They will involve the Black Sea Fleet, which has been engaged in large-scale exercises in the region bordering Ukraine. Mr. Putin will preside over them from a “situation center,” the Kremlin said. The Defense Ministry said the drills had been planned in advance, and Dmitri S. Peskov, Mr. Putin’s spokesman, denied that they were intended to raise tensions with the West. But they will come at a critical juncture in the standoff over Ukraine. Near the front in Ukraine, it was possible to hear the blasts from munitions fired by the Ukrainian military and incoming fire from the pro-Russian separatists. A total of 12 houses were damaged by shelling Friday morning, said a local branch of the United Nations High Commissioner for Refugees. In remarks before Ukraine’s parliament, the country’s defense minister, Oleksiy Reznikov, urged Ukrainians living in the separatist-held territory not to believe Russian propaganda that the Ukrainian government was going to attack them. “Don’t be afraid,” he said. “Ukraine is not your enemy.” An estimated 3.5 million people live in the two breakaway regions, and self-declared republics, and since the war started there, Russia has handed out citizenship to more than 700,000 people living in the Donbas region. In his messaging on Ukraine, Mr. Putin has warned of the plight of ethnic Russians in the country, saying that events in eastern Ukraine “resemble genocide.” Highlighting the growing risk of military conflict, Britain announced Friday night that it was following the United States’ lead in evacuating its embassy from Kyiv to the western city of Lviv. With fears running high that Russian troops in Belarus could invade Ukraine from the northern border with Belarus, only 140 miles from the capital, the Ukrainian authorities ordered the site of the Chernobyl nuclear disaster closed to tourists.\n", + " In a demonstration of strength, Russia plans major drills this weekend that will include the launch of ballistic and cruise missiles, the country’s Defense Ministry said, according to the Interfax news agency.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Russia’s drills will test its strategic nuclear forces, which include the land-based launchers, bombers and warships used to deliver nuclear weapons. They will involve the Black Sea Fleet, which has been engaged in large-scale exercises in the region bordering Ukraine. Mr. Putin will preside over them from a “situation center,” the Kremlin said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The Defense Ministry said the drills had been planned in advance, and Dmitri S. Peskov, Mr. Putin’s spokesman, denied that they were intended to raise tensions with the West. But they will come at a critical juncture in the standoff over Ukraine.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Near the front in Ukraine, it was possible to hear the blasts from munitions fired by the Ukrainian military and incoming fire from the pro-Russian separatists.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " A total of 12 houses were damaged by shelling Friday morning, said a local branch of the United Nations High Commissioner for Refugees.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In remarks before Ukraine’s parliament, the country’s defense minister, Oleksiy Reznikov, urged Ukrainians living in the separatist-held territory not to believe Russian propaganda that the Ukrainian government was going to attack them.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Don’t be afraid,” he said. “Ukraine is not your enemy.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " An estimated 3.5 million people live in the two breakaway regions, and self-declared republics, and since the war started there, Russia has handed out citizenship to more than 700,000 people living in the Donbas region. In his messaging on Ukraine, Mr. Putin has warned of the plight of ethnic Russians in the country, saying that events in eastern Ukraine “resemble genocide.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Highlighting the growing risk of military conflict, Britain announced Friday night that it was following the United States’ lead in evacuating its embassy from Kyiv to the western city of Lviv.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " With fears running high that Russian troops in Belarus could invade Ukraine from the northern border with Belarus, only 140 miles from the capital, the Ukrainian authorities ordered the site of the Chernobyl nuclear disaster closed to tourists.\n", " Evidence\n", "\n", "
" @@ -3655,7 +6335,7 @@ { "data": { "text/html": [ - "

nytimes\\big-tech-stock-market.txt

" + "

big-tech-stock-market.txt

" ], "text/plain": [ "" @@ -3675,7 +6355,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "4d8ba6e911d746ce85a78f86d7b59c35", + "model_id": "44d0258ec4a9409cabc89fe7efdd5801", "version_major": 2, "version_minor": 0 }, @@ -3696,7 +6376,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "e342c0380e78467b89f0e2a6f4b3ab39", + "model_id": "9ffcc3cce62e4af9b86f896f76900588", "version_major": 2, "version_minor": 0 }, @@ -3718,7 +6398,7 @@ "So the much bigger story is that after all that has gone right during the pandemic for the largest companies in tech, they now seem poised to expand their reach and influence over the rest of the economy, rather than relinquish it. {'label': 'Claim', 'score': 0.48126986622810364}\n", "Perhaps it’s not very surprising that the largest tech companies did really well during a pandemic that had a lot of us spending lots more time with technology. Yet the scale of their growth is staggering. {'label': 'Counterclaim', 'score': 0.5867016315460205}\n", "As Chaim Gartenberg of The Verge pointed out, Apple’s revenue grew by more than $90 billion in 2021, about a third more than its revenue in 2020 — and this despite a global shortage of computer chips. Amazon’s sales in 2021 were 67 percent larger than in 2019, the year before the pandemic; Google’s 2021 revenue was nearly 60 percent greater than in 2019. {'label': 'Evidence', 'score': 0.9854377508163452}\n", - "I’ve worn down my thesaurus looking for superlatives to underline how gobsmacking these numbers are. These were already among the largest corporations ever to have existed; in 2018, Apple became the first American company to reach a trillion-dollar market valuation. Companies of that size are just not supposed to grow as quickly as they have. For years, pundits have been predicting that tech giants would eventually run up against the so-called “law of large numbers.” Yet Big Tech keeps breaking the law. {'label': 'Evidence', 'score': 0.9757441282272339}\n", + "I’ve worn down my thesaurus looking for superlatives to underline how gobsmacking these numbers are. These were already among the largest corporations ever to have existed; in 2018, Apple became the first American company to reach a trillion-dollar market valuation. Companies of that size are just not supposed to grow as quickly as they have. For years, pundits have been predicting that tech giants would eventually run up against the so-called “law of large numbers.” Yet Big Tech keeps breaking the law. {'label': 'Evidence', 'score': 0.9757440090179443}\n", "What’s driving tech giants’ stupefying growth? It’s not just that the pandemic drove a lot more usage of tech. A bigger deal, I think, is that the pandemic illustrated how much room there still is in our lives for adding even more tech — for our screens to become the primary portal through which a handful of companies capture a slice of everything we do. {'label': 'Evidence', 'score': 0.728618860244751}\n", "Consider, for instance, Apple’s “services” business — a division that includes, among other things, its App Store, Apple Pay, iCloud and its music and TV subscription plans. Traditionally Apple has made a huge amount of money from selling hardware. But iPhone sales have gone up and down over the past half decade, which makes sense; eventually everyone who wants an iPhone will have an iPhone, and with each new iPhone only slightly better than the last, people will have fewer reasons to upgrade. Indeed, iPhone sales in Apple’s holiday quarter in 2021 grew by 9 percent over 2020 — solid, but nothing like the growth Apple once saw with the iPhone. {'label': 'Evidence', 'score': 0.9953019618988037}\n", "And so Apple has increasingly turned to subscriptions and other online services for growth — essentially a way to grow not just by selling more iPhones, but by getting more money from each iPhone user. The plan is working spectacularly well. Apple reported that during 2020 its App Store billing and sales revenue grew by 24 percent over the previous year. Luca Maestri, Apple’s finance chief, told investors last month that the company now has 785 million paying subscribers to its various offerings — a number that grew by 165 million in the past year. For some perspective: Netflix has about 222 million subscribers in total. {'label': 'Evidence', 'score': 0.9929786324501038}\n", @@ -3726,7 +6406,24 @@ "Dan Ives and John Katsingris, analysts at the investment firm Wedbush Securities, wrote in a recent report that what we are seeing now is only the beginning of a long-term explosion in tech earnings. They estimated that companies would spend a trillion dollars on cloud services over the coming years, meaning that there is a lot more room for tech companies to keep growing and growing and growing. Apple’s services business alone could be worth $1.5 trillion, Ives has estimated. He and other pundits have called the coming investment boom in tech the “Fourth Industrial Revolution.” {'label': 'Evidence', 'score': 0.9866411089897156}\n", "That sounds grandiose. And yet it’s hard to see what stands in Big Tech’s way. Lawmakers and regulators have expressed alarm over tech behemoths’ market power, but with the midterm election looming and Republicans and Democrats still at odds over what exactly to do to curb tech giants’ power, the window for new antimonopoly policy might be shrinking. {'label': 'Evidence', 'score': 0.48505234718322754}\n", "I wonder if a few years from now we’ll say that when it came to anticipating the future for Big Tech, we weren’t thinking big enough. {'label': 'Claim', 'score': 0.508987545967102}\n", - "Farhad wants to chat with readers on the phone. If you’re interested in talking to a New York Times columnist about anything that’s on your mind, please fill out this form. Farhad will select a few readers to call. {'label': 'Evidence', 'score': 0.609149694442749}\n" + "Farhad wants to chat with readers on the phone. If you’re interested in talking to a New York Times columnist about anything that’s on your mind, please fill out this form. Farhad will select a few readers to call. {'label': 'Evidence', 'score': 0.609149694442749}\n", + " text label score\n", + "0 The stock market has lately soured on the tech... Evidence 0.980813\n", + "1 It’s obvious why investors are spooked. Omicro... Evidence 0.739357\n", + "2 But in the last few weeks, as corporations ann... Rebuttal 0.873646\n", + "3 Amazon, Apple, Google and Microsoft — the four... Evidence 0.988656\n", + "4 So the much bigger story is that after all tha... Claim 0.481270\n", + "5 Perhaps it’s not very surprising that the larg... Counterclaim 0.586702\n", + "6 As Chaim Gartenberg of The Verge pointed out, ... Evidence 0.985438\n", + "7 I’ve worn down my thesaurus looking for superl... Evidence 0.975744\n", + "8 What’s driving tech giants’ stupefying growth?... Evidence 0.728619\n", + "9 Consider, for instance, Apple’s “services” bus... Evidence 0.995302\n", + "10 And so Apple has increasingly turned to subscr... Evidence 0.992979\n", + "11 You see a similar trend across the industry — ... Evidence 0.991815\n", + "12 Dan Ives and John Katsingris, analysts at the ... Evidence 0.986641\n", + "13 That sounds grandiose. And yet it’s hard to se... Evidence 0.485052\n", + "14 I wonder if a few years from now we’ll say tha... Claim 0.508988\n", + "15 Farhad wants to chat with readers on the phone... Evidence 0.609150\n" ] }, { @@ -3734,7 +6431,12 @@ "text/html": [ "
\n", "\n", - " The stock market has lately soured on the technology industry. Stock prices of many of the largest companies are down this year, some slightly — shares of Apple and Google have fallen more than 6 percent — and some stupendously: Facebook's parent company, Meta, and Netflix have lost about a third of their value since the New Year. Because surging tech stocks drove a big part of the stock market’s rise in 2021, their decline has contributed much to the market’s fall. The S & P 500 is down by about 7 percent in 2022. It’s obvious why investors are spooked. Omicron, inflation, likely interest rate hikes, a possible war in Europe, Canadians acting very un-Canadianly — unpredictable forces have taken hold of the global economy, so it’s not unreasonable to expect trouble ahead for some of the largest companies in the world.\n", + " The stock market has lately soured on the technology industry. Stock prices of many of the largest companies are down this year, some slightly — shares of Apple and Google have fallen more than 6 percent — and some stupendously: Facebook's parent company, Meta, and Netflix have lost about a third of their value since the New Year. Because surging tech stocks drove a big part of the stock market’s rise in 2021, their decline has contributed much to the market’s fall. The S & P 500 is down by about 7 percent in 2022.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " It’s obvious why investors are spooked. Omicron, inflation, likely interest rate hikes, a possible war in Europe, Canadians acting very un-Canadianly — unpredictable forces have taken hold of the global economy, so it’s not unreasonable to expect trouble ahead for some of the largest companies in the world.\n", " Evidence\n", "\n", "\n", @@ -3759,7 +6461,42 @@ "\n", "\n", "\n", - " As Chaim Gartenberg of The Verge pointed out, Apple’s revenue grew by more than $90 billion in 2021, about a third more than its revenue in 2020 — and this despite a global shortage of computer chips. Amazon’s sales in 2021 were 67 percent larger than in 2019, the year before the pandemic; Google’s 2021 revenue was nearly 60 percent greater than in 2019. I’ve worn down my thesaurus looking for superlatives to underline how gobsmacking these numbers are. These were already among the largest corporations ever to have existed; in 2018, Apple became the first American company to reach a trillion-dollar market valuation. Companies of that size are just not supposed to grow as quickly as they have. For years, pundits have been predicting that tech giants would eventually run up against the so-called “law of large numbers.” Yet Big Tech keeps breaking the law. What’s driving tech giants’ stupefying growth? It’s not just that the pandemic drove a lot more usage of tech. A bigger deal, I think, is that the pandemic illustrated how much room there still is in our lives for adding even more tech — for our screens to become the primary portal through which a handful of companies capture a slice of everything we do. Consider, for instance, Apple’s “services” business — a division that includes, among other things, its App Store, Apple Pay, iCloud and its music and TV subscription plans. Traditionally Apple has made a huge amount of money from selling hardware. But iPhone sales have gone up and down over the past half decade, which makes sense; eventually everyone who wants an iPhone will have an iPhone, and with each new iPhone only slightly better than the last, people will have fewer reasons to upgrade. Indeed, iPhone sales in Apple’s holiday quarter in 2021 grew by 9 percent over 2020 — solid, but nothing like the growth Apple once saw with the iPhone. And so Apple has increasingly turned to subscriptions and other online services for growth — essentially a way to grow not just by selling more iPhones, but by getting more money from each iPhone user. The plan is working spectacularly well. Apple reported that during 2020 its App Store billing and sales revenue grew by 24 percent over the previous year. Luca Maestri, Apple’s finance chief, told investors last month that the company now has 785 million paying subscribers to its various offerings — a number that grew by 165 million in the past year. For some perspective: Netflix has about 222 million subscribers in total. You see a similar trend across the industry — Big Tech’s not just getting more customers for its traditional businesses, but is expanding its ancillary businesses in ways that seem impossible. Amazon, for example, is not just an indomitable retailer and the largest cloud services provider (its Amazon Web Services cloud business now has a $71 billion annual revenue run rate). The company also disclosed that its advertising business generated $31 billion in revenue in 2021, while Microsoft said its ad revenue exceeded $10 billion. Remember that ads are, in the scheme of things, a small part of the business for both companies — Amazon’s $31 billion ad business is not even 10 percent of its annual revenue. And yet it dwarfs companies whose entire business is mainly ads — Snap, for example, which had $4 billion in revenue in 2021, or Pinterest, which sold less than $2.6 billion in ads. Dan Ives and John Katsingris, analysts at the investment firm Wedbush Securities, wrote in a recent report that what we are seeing now is only the beginning of a long-term explosion in tech earnings. They estimated that companies would spend a trillion dollars on cloud services over the coming years, meaning that there is a lot more room for tech companies to keep growing and growing and growing. Apple’s services business alone could be worth $1.5 trillion, Ives has estimated. He and other pundits have called the coming investment boom in tech the “Fourth Industrial Revolution.” That sounds grandiose. And yet it’s hard to see what stands in Big Tech’s way. Lawmakers and regulators have expressed alarm over tech behemoths’ market power, but with the midterm election looming and Republicans and Democrats still at odds over what exactly to do to curb tech giants’ power, the window for new antimonopoly policy might be shrinking.\n", + " As Chaim Gartenberg of The Verge pointed out, Apple’s revenue grew by more than $90 billion in 2021, about a third more than its revenue in 2020 — and this despite a global shortage of computer chips. Amazon’s sales in 2021 were 67 percent larger than in 2019, the year before the pandemic; Google’s 2021 revenue was nearly 60 percent greater than in 2019.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " I’ve worn down my thesaurus looking for superlatives to underline how gobsmacking these numbers are. These were already among the largest corporations ever to have existed; in 2018, Apple became the first American company to reach a trillion-dollar market valuation. Companies of that size are just not supposed to grow as quickly as they have. For years, pundits have been predicting that tech giants would eventually run up against the so-called “law of large numbers.” Yet Big Tech keeps breaking the law.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " What’s driving tech giants’ stupefying growth? It’s not just that the pandemic drove a lot more usage of tech. A bigger deal, I think, is that the pandemic illustrated how much room there still is in our lives for adding even more tech — for our screens to become the primary portal through which a handful of companies capture a slice of everything we do.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Consider, for instance, Apple’s “services” business — a division that includes, among other things, its App Store, Apple Pay, iCloud and its music and TV subscription plans. Traditionally Apple has made a huge amount of money from selling hardware. But iPhone sales have gone up and down over the past half decade, which makes sense; eventually everyone who wants an iPhone will have an iPhone, and with each new iPhone only slightly better than the last, people will have fewer reasons to upgrade. Indeed, iPhone sales in Apple’s holiday quarter in 2021 grew by 9 percent over 2020 — solid, but nothing like the growth Apple once saw with the iPhone.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " And so Apple has increasingly turned to subscriptions and other online services for growth — essentially a way to grow not just by selling more iPhones, but by getting more money from each iPhone user. The plan is working spectacularly well. Apple reported that during 2020 its App Store billing and sales revenue grew by 24 percent over the previous year. Luca Maestri, Apple’s finance chief, told investors last month that the company now has 785 million paying subscribers to its various offerings — a number that grew by 165 million in the past year. For some perspective: Netflix has about 222 million subscribers in total.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " You see a similar trend across the industry — Big Tech’s not just getting more customers for its traditional businesses, but is expanding its ancillary businesses in ways that seem impossible. Amazon, for example, is not just an indomitable retailer and the largest cloud services provider (its Amazon Web Services cloud business now has a $71 billion annual revenue run rate). The company also disclosed that its advertising business generated $31 billion in revenue in 2021, while Microsoft said its ad revenue exceeded $10 billion. Remember that ads are, in the scheme of things, a small part of the business for both companies — Amazon’s $31 billion ad business is not even 10 percent of its annual revenue. And yet it dwarfs companies whose entire business is mainly ads — Snap, for example, which had $4 billion in revenue in 2021, or Pinterest, which sold less than $2.6 billion in ads.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Dan Ives and John Katsingris, analysts at the investment firm Wedbush Securities, wrote in a recent report that what we are seeing now is only the beginning of a long-term explosion in tech earnings. They estimated that companies would spend a trillion dollars on cloud services over the coming years, meaning that there is a lot more room for tech companies to keep growing and growing and growing. Apple’s services business alone could be worth $1.5 trillion, Ives has estimated. He and other pundits have called the coming investment boom in tech the “Fourth Industrial Revolution.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " That sounds grandiose. And yet it’s hard to see what stands in Big Tech’s way. Lawmakers and regulators have expressed alarm over tech behemoths’ market power, but with the midterm election looming and Republicans and Democrats still at odds over what exactly to do to curb tech giants’ power, the window for new antimonopoly policy might be shrinking.\n", " Evidence\n", "\n", "\n", @@ -3793,7 +6530,7 @@ { "data": { "text/html": [ - "

nytimes\\blinken-russia-ukraine-predictions.txt

" + "

blinken-russia-ukraine-predictions.txt

" ], "text/plain": [ "" @@ -3813,7 +6550,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "5cc03b9558bc4a3096c62d7935fd9662", + "model_id": "a50afac5bcba4ec4abd04a5711ef97d7", "version_major": 2, "version_minor": 0 }, @@ -3834,7 +6571,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "ff81eff386cc479f9c2c0eebddb244e4", + "model_id": "0a2f776ed1ea49279d2d5a9a1b113047", "version_major": 2, "version_minor": 0 }, @@ -3865,23 +6602,80 @@ "While the Russian leader has worked hard to insulate his economy from the shock of sanctions — the government has a large war chest and little debt — Mr. Putin may well be looking for fissures to exploit without risking his economy. {'label': 'Evidence', 'score': 0.4873921573162079}\n", "Mr. Biden continued on Thursday to take advantage of the fact that this is the first major geopolitical crisis to play out in a world of open-source intelligence — making it easier to call out Russian deceptions. {'label': 'Evidence', 'score': 0.42531120777130127}\n", "Americans do not need the spy-plane photographs that John F. Kennedy showed them in 1962, when he exposed the Soviet missile buildup in Cuba as a way to force Russia’s leader, Nikita S. Khrushchev, into a secret deal. {'label': 'Evidence', 'score': 0.5987462997436523}\n", - "In this case, some of the best evidence is in the unclassified world. On television, news websites and Twitter, satellite photographs from private firms like Maxar help settle the debate about whether Mr. Putin is really sending some forces into retreat or whether, as the Americans claim, he is adding to the more than 150,000 troops that Mr. Biden said were massing on the border, along with tanks and a fearsome array of missiles. {'label': 'Evidence', 'score': 0.7585816383361816}\n", - "So there is no real debate about what is happening on Ukraine’s borders. The firepower is there to see, and that is part of Mr. Putin’s coercion strategy. The only remaining mystery is what Mr. Putin plans to do with them. At first, U.S. officials thought he planned to use them to intimidate Ukraine’s government, force it to abandon its ambitions to join NATO at some undetermined time in the future, and stop its drift toward the West. {'label': 'Concluding Statement', 'score': 0.6522883176803589}\n", + "In this case, some of the best evidence is in the unclassified world. On television, news websites and Twitter, satellite photographs from private firms like Maxar help settle the debate about whether Mr. Putin is really sending some forces into retreat or whether, as the Americans claim, he is adding to the more than 150,000 troops that Mr. Biden said were massing on the border, along with tanks and a fearsome array of missiles. {'label': 'Evidence', 'score': 0.7585815787315369}\n", + "So there is no real debate about what is happening on Ukraine’s borders. The firepower is there to see, and that is part of Mr. Putin’s coercion strategy. The only remaining mystery is what Mr. Putin plans to do with them. At first, U.S. officials thought he planned to use them to intimidate Ukraine’s government, force it to abandon its ambitions to join NATO at some undetermined time in the future, and stop its drift toward the West. {'label': 'Concluding Statement', 'score': 0.6522882580757141}\n", "Then, after Mr. Putin issued a proposed “treaty’’ in December, it seemed he had a bigger plan: to evict the United States and NATO forces from former Soviet bloc nations that have joined NATO, and roll back the world order created after the Soviet collapse 31 years ago. Two weeks ago, the American assessment changed again: Mr. Putin, intelligence and military officials said, was aiming at Kyiv, the capital of Ukraine, after concluding that cyberattacks and subversion alone were unlikely to displace the government. Only a full-scale invasion would do that. {'label': 'Evidence', 'score': 0.979961633682251}\n", "So the Biden administration is trying to test Mr. Putin’s bottom line. If the issue can be resolved by negotiating a new arms control pact that addresses Mr. Putin’s concerns about two antimissile emplacements in Poland and Romania, or rules around military exercises held by Russia and NATO, then there is room for deal making, the two men have said. And they have said there is room to renegotiate the Minsk agreement, a set of commitments made by Ukraine and Russia after the annexation of Crimea. Those have been selectively ignored, on both sides. {'label': 'Evidence', 'score': 0.7896090745925903}\n", "But it seems unlikely to longtime American officials and many of the European diplomats filtering into Munich that Mr. Putin has gone to all this expense and all this effort, and put his legacy on the line, just to paint inside the lines of the existing order. He wants to upturn it. {'label': 'Rebuttal', 'score': 0.8935739994049072}\n", - "Since Mr. Putin came to power 20 years ago, “Russia has been challenging that system,’’ Angela Stent, a Brookings Institution scholar and the former national intelligence officer for Russia and Eurasia, wrote recently in Foreign Affairs. “The current crisis is ultimately about Russia redrawing the post-Cold War map and seeking to reassert its influence over half of Europe, based on the claim that it is guaranteeing its own security.” {'label': 'Evidence', 'score': 0.6440642476081848}\n" + "Since Mr. Putin came to power 20 years ago, “Russia has been challenging that system,’’ Angela Stent, a Brookings Institution scholar and the former national intelligence officer for Russia and Eurasia, wrote recently in Foreign Affairs. “The current crisis is ultimately about Russia redrawing the post-Cold War map and seeking to reassert its influence over half of Europe, based on the claim that it is guaranteeing its own security.” {'label': 'Evidence', 'score': 0.6440642476081848}\n", + "That does not mean there is no way out. {'label': 'Rebuttal', 'score': 0.7872887253761292}\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ - "That does not mean there is no way out. {'label': 'Rebuttal', 'score': 0.7872887253761292}\n", "In the Cuban missile crisis, the closest the world came to nuclear annihilation during the Cold War, Mr. Khrushchev ultimately took his missiles home, in return for a secret promise — which Mr. Kennedy delivered on months later — to take American Jupiter missiles out of Turkey, where their nuclear warheads were in easy range of the Soviet Union. {'label': 'Evidence', 'score': 0.9632332921028137}\n", "It is a historical example that has lingered in the background of Situation Room debates about how to negotiate with Mr. Putin, according to two participants, who described the debates on the condition of anonymity. When Mr. Blinken offered in his speech on Thursday to meet his Russian counterpart in Europe next week, and ultimately to put together “a summit of key leaders, in the context of de-escalation, to reach understandings on our mutual security concerns,’’ it was part of the search for a modern-day analogue. {'label': 'Evidence', 'score': 0.9891172051429749}\n", "Mr. Biden is no stranger to such trade-offs. He is perhaps the last politician still serving in Washington who played a key role in the debates over how to resolve disputes over long-forgotten arms control treaties with the Soviets, called SALT I and SALT II. He has already noted, at a news conference in January, that Ukraine won’t be accepted into NATO for a long while, a signal to Moscow that there was room to deal. {'label': 'Evidence', 'score': 0.9642860889434814}\n", - "And there may be. But by next week, one senior administration official said late Thursday, it may be too late. {'label': 'Evidence', 'score': 0.4205857813358307}\n" + "And there may be. But by next week, one senior administration official said late Thursday, it may be too late. {'label': 'Evidence', 'score': 0.4205857813358307}\n", + " text label \\\n", + "0 MUNICH — President Biden and his top aides ack... Evidence \n", + "1 But Mr. Biden’s aides say they are willing to ... Rebuttal \n", + "2 They would rather be accused of hyperbole and ... Evidence \n", + "3 “If Russia doesn’t invade Ukraine, then we wil... Evidence \n", + "4 “I am here today not to start a war, but to pr... Evidence \n", + "5 Mr. Biden and Mr. Blinken make no secret of th... Evidence \n", + "6 Mr. Biden will hold a phone call Friday aftern... Evidence \n", + "7 Russia acknowledged on Thursday having expelle... Evidence \n", + "8 While Mr. Biden insisted that “every indicatio... Evidence \n", + "9 “My sense is that he will avoid an overt cross... Evidence \n", + "10 “He enjoys this position,’’ Mr. Lute said. “Ev... Evidence \n", + "11 That is all taking place on the surface. Behin... Evidence \n", + "12 Mr. Putin has reinvigorated an alliance that s... Evidence \n", + "13 While the Russian leader has worked hard to in... Evidence \n", + "14 Mr. Biden continued on Thursday to take advant... Evidence \n", + "15 Americans do not need the spy-plane photograph... Evidence \n", + "16 In this case, some of the best evidence is in ... Evidence \n", + "17 So there is no real debate about what is happe... Concluding Statement \n", + "18 Then, after Mr. Putin issued a proposed “treat... Evidence \n", + "19 So the Biden administration is trying to test ... Evidence \n", + "20 But it seems unlikely to longtime American off... Rebuttal \n", + "21 Since Mr. Putin came to power 20 years ago, “R... Evidence \n", + "22 That does not mean there is no way out. Rebuttal \n", + "23 In the Cuban missile crisis, the closest the w... Evidence \n", + "24 It is a historical example that has lingered i... Evidence \n", + "25 Mr. Biden is no stranger to such trade-offs. H... Evidence \n", + "26 And there may be. But by next week, one senior... Evidence \n", + "\n", + " score \n", + "0 0.883919 \n", + "1 0.692798 \n", + "2 0.761013 \n", + "3 0.962038 \n", + "4 0.281716 \n", + "5 0.965855 \n", + "6 0.876091 \n", + "7 0.988374 \n", + "8 0.866009 \n", + "9 0.660423 \n", + "10 0.666048 \n", + "11 0.728799 \n", + "12 0.863270 \n", + "13 0.487392 \n", + "14 0.425311 \n", + "15 0.598746 \n", + "16 0.758582 \n", + "17 0.652288 \n", + "18 0.979962 \n", + "19 0.789609 \n", + "20 0.893574 \n", + "21 0.644064 \n", + "22 0.787289 \n", + "23 0.963233 \n", + "24 0.989117 \n", + "25 0.964286 \n", + "26 0.420586 \n" ] }, { @@ -3899,7 +6693,77 @@ "\n", "\n", "\n", - " They would rather be accused of hyperbole and fearmongering than be proven right, they say, if that’s what it takes to deter Russian President Vladimir V. Putin from pursuing an invasion that they worry will not stop at Ukraine’s borders. “If Russia doesn’t invade Ukraine, then we will be relieved that Russia changed course and proved our predictions wrong,’’ Secretary of State Antony J. Blinken said at the United Nations Security Council on Thursday morning, in a speech that Mr. Biden had asked him to give only hours before. “That would be a far better outcome than the course we are currently on. And we will gladly accept any criticism that anyone directs at us.’’ “I am here today not to start a war, but to prevent one,’’ he declared, an oblique reference to Colin L. Powell’s famous but false case, also made to the United Nations, about why the United States and its allies had to disarm Saddam Hussein. Mr. Biden and Mr. Blinken make no secret of their suspicion that their increasingly desperate-sounding, last-ditch efforts to deter calamity will likely fail. Their pessimism was reinforced Thursday by a series of escalations. Russian-backed forces in the Donbas region appeared responsible for shelling a school, and later claimed they had come under fire from Ukrainian forces, exactly the kind of incident Mr. Blinken warned might be used as a pretext to justify an invasion. Mr. Biden will hold a phone call Friday afternoon with trans-Atlantic leaders about Russia’s buildup of military troops on the border of Ukraine and continued efforts to pursue deterrence and diplomacy. Russia acknowledged on Thursday having expelled the No. 2 diplomat in the American embassy in Moscow, and sent Washington a contradictory-sounding note in which it mocked the claims that it was planning to invade. It said no such action was being planned, and then warned that it would use “measures of a “military-technical character” if the West did not meet its security demands with “legally binding guarantees.” (It is not entirely clear what “military-technical” means to Mr. Putin, but officials in Washington speculate it could encompass everything from cyberweapons to relocating nuclear weapons closer to Western Europe or the United States.) While Mr. Biden insisted that “every indication we have is they’re prepared to go into Ukraine,’’ a growing number of diplomats and leaders pouring into Munich for an annual security conference said they thought the best they could hope for was no invasion — but a long siege of Ukraine. Under that scenario, Mr. Putin might do everything short of sending his troops over the border — cyberattacks, assassinations, coup plots, cutting off trade — in hopes of toppling the government without triggering sanctions. “My sense is that he will avoid an overt cross of the border with Russian troops and will aim for options short of that,’’ Douglas Lute, a former deputy national security adviser and former U.S. ambassador to NATO, said Thursday. “He enjoys this position,’’ Mr. Lute said. “Everyone’s paying attention to him, like they haven’t in years. And he feels in control.” That is all taking place on the surface. Behind the scenes, Mr. Biden’s aides are searching Mr. Putin’s comments for evidence that he is sensing that he may have overplayed his hand — that his massing of troops has managed to unify the normally fractious 30 nations that make up the North Atlantic Treaty Organization. Mr. Putin has reinvigorated an alliance that spent years confused about its purpose once it lost the adversary it was formed to contain, the Soviet Union. Now, containment is back. And European allies have largely, if reluctantly, lined up behind a sanctions plan that would cut off technology to Russian industry and separate its top banks from the world financial markets. While the Russian leader has worked hard to insulate his economy from the shock of sanctions — the government has a large war chest and little debt — Mr. Putin may well be looking for fissures to exploit without risking his economy. Mr. Biden continued on Thursday to take advantage of the fact that this is the first major geopolitical crisis to play out in a world of open-source intelligence — making it easier to call out Russian deceptions. Americans do not need the spy-plane photographs that John F. Kennedy showed them in 1962, when he exposed the Soviet missile buildup in Cuba as a way to force Russia’s leader, Nikita S. Khrushchev, into a secret deal. In this case, some of the best evidence is in the unclassified world. On television, news websites and Twitter, satellite photographs from private firms like Maxar help settle the debate about whether Mr. Putin is really sending some forces into retreat or whether, as the Americans claim, he is adding to the more than 150,000 troops that Mr. Biden said were massing on the border, along with tanks and a fearsome array of missiles.\n", + " They would rather be accused of hyperbole and fearmongering than be proven right, they say, if that’s what it takes to deter Russian President Vladimir V. Putin from pursuing an invasion that they worry will not stop at Ukraine’s borders.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “If Russia doesn’t invade Ukraine, then we will be relieved that Russia changed course and proved our predictions wrong,’’ Secretary of State Antony J. Blinken said at the United Nations Security Council on Thursday morning, in a speech that Mr. Biden had asked him to give only hours before. “That would be a far better outcome than the course we are currently on. And we will gladly accept any criticism that anyone directs at us.’’\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “I am here today not to start a war, but to prevent one,’’ he declared, an oblique reference to Colin L. Powell’s famous but false case, also made to the United Nations, about why the United States and its allies had to disarm Saddam Hussein.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mr. Biden and Mr. Blinken make no secret of their suspicion that their increasingly desperate-sounding, last-ditch efforts to deter calamity will likely fail. Their pessimism was reinforced Thursday by a series of escalations. Russian-backed forces in the Donbas region appeared responsible for shelling a school, and later claimed they had come under fire from Ukrainian forces, exactly the kind of incident Mr. Blinken warned might be used as a pretext to justify an invasion.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mr. Biden will hold a phone call Friday afternoon with trans-Atlantic leaders about Russia’s buildup of military troops on the border of Ukraine and continued efforts to pursue deterrence and diplomacy.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Russia acknowledged on Thursday having expelled the No. 2 diplomat in the American embassy in Moscow, and sent Washington a contradictory-sounding note in which it mocked the claims that it was planning to invade. It said no such action was being planned, and then warned that it would use “measures of a “military-technical character” if the West did not meet its security demands with “legally binding guarantees.” (It is not entirely clear what “military-technical” means to Mr. Putin, but officials in Washington speculate it could encompass everything from cyberweapons to relocating nuclear weapons closer to Western Europe or the United States.)\n", + " Evidence\n", + "\n", + "\n", + "\n", + " While Mr. Biden insisted that “every indication we have is they’re prepared to go into Ukraine,’’ a growing number of diplomats and leaders pouring into Munich for an annual security conference said they thought the best they could hope for was no invasion — but a long siege of Ukraine. Under that scenario, Mr. Putin might do everything short of sending his troops over the border — cyberattacks, assassinations, coup plots, cutting off trade — in hopes of toppling the government without triggering sanctions.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “My sense is that he will avoid an overt cross of the border with Russian troops and will aim for options short of that,’’ Douglas Lute, a former deputy national security adviser and former U.S. ambassador to NATO, said Thursday.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “He enjoys this position,’’ Mr. Lute said. “Everyone’s paying attention to him, like they haven’t in years. And he feels in control.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " That is all taking place on the surface. Behind the scenes, Mr. Biden’s aides are searching Mr. Putin’s comments for evidence that he is sensing that he may have overplayed his hand — that his massing of troops has managed to unify the normally fractious 30 nations that make up the North Atlantic Treaty Organization. \n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mr. Putin has reinvigorated an alliance that spent years confused about its purpose once it lost the adversary it was formed to contain, the Soviet Union. Now, containment is back. And European allies have largely, if reluctantly, lined up behind a sanctions plan that would cut off technology to Russian industry and separate its top banks from the world financial markets.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " While the Russian leader has worked hard to insulate his economy from the shock of sanctions — the government has a large war chest and little debt — Mr. Putin may well be looking for fissures to exploit without risking his economy.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mr. Biden continued on Thursday to take advantage of the fact that this is the first major geopolitical crisis to play out in a world of open-source intelligence — making it easier to call out Russian deceptions.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Americans do not need the spy-plane photographs that John F. Kennedy showed them in 1962, when he exposed the Soviet missile buildup in Cuba as a way to force Russia’s leader, Nikita S. Khrushchev, into a secret deal.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In this case, some of the best evidence is in the unclassified world. On television, news websites and Twitter, satellite photographs from private firms like Maxar help settle the debate about whether Mr. Putin is really sending some forces into retreat or whether, as the Americans claim, he is adding to the more than 150,000 troops that Mr. Biden said were massing on the border, along with tanks and a fearsome array of missiles.\n", " Evidence\n", "\n", "\n", @@ -3909,7 +6773,12 @@ "\n", "\n", "\n", - " Then, after Mr. Putin issued a proposed “treaty’’ in December, it seemed he had a bigger plan: to evict the United States and NATO forces from former Soviet bloc nations that have joined NATO, and roll back the world order created after the Soviet collapse 31 years ago. Two weeks ago, the American assessment changed again: Mr. Putin, intelligence and military officials said, was aiming at Kyiv, the capital of Ukraine, after concluding that cyberattacks and subversion alone were unlikely to displace the government. Only a full-scale invasion would do that. So the Biden administration is trying to test Mr. Putin’s bottom line. If the issue can be resolved by negotiating a new arms control pact that addresses Mr. Putin’s concerns about two antimissile emplacements in Poland and Romania, or rules around military exercises held by Russia and NATO, then there is room for deal making, the two men have said. And they have said there is room to renegotiate the Minsk agreement, a set of commitments made by Ukraine and Russia after the annexation of Crimea. Those have been selectively ignored, on both sides.\n", + " Then, after Mr. Putin issued a proposed “treaty’’ in December, it seemed he had a bigger plan: to evict the United States and NATO forces from former Soviet bloc nations that have joined NATO, and roll back the world order created after the Soviet collapse 31 years ago. Two weeks ago, the American assessment changed again: Mr. Putin, intelligence and military officials said, was aiming at Kyiv, the capital of Ukraine, after concluding that cyberattacks and subversion alone were unlikely to displace the government. Only a full-scale invasion would do that.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " So the Biden administration is trying to test Mr. Putin’s bottom line. If the issue can be resolved by negotiating a new arms control pact that addresses Mr. Putin’s concerns about two antimissile emplacements in Poland and Romania, or rules around military exercises held by Russia and NATO, then there is room for deal making, the two men have said. And they have said there is room to renegotiate the Minsk agreement, a set of commitments made by Ukraine and Russia after the annexation of Crimea. Those have been selectively ignored, on both sides.\n", " Evidence\n", "\n", "\n", @@ -3929,7 +6798,22 @@ "\n", "\n", "\n", - " In the Cuban missile crisis, the closest the world came to nuclear annihilation during the Cold War, Mr. Khrushchev ultimately took his missiles home, in return for a secret promise — which Mr. Kennedy delivered on months later — to take American Jupiter missiles out of Turkey, where their nuclear warheads were in easy range of the Soviet Union. It is a historical example that has lingered in the background of Situation Room debates about how to negotiate with Mr. Putin, according to two participants, who described the debates on the condition of anonymity. When Mr. Blinken offered in his speech on Thursday to meet his Russian counterpart in Europe next week, and ultimately to put together “a summit of key leaders, in the context of de-escalation, to reach understandings on our mutual security concerns,’’ it was part of the search for a modern-day analogue. Mr. Biden is no stranger to such trade-offs. He is perhaps the last politician still serving in Washington who played a key role in the debates over how to resolve disputes over long-forgotten arms control treaties with the Soviets, called SALT I and SALT II. He has already noted, at a news conference in January, that Ukraine won’t be accepted into NATO for a long while, a signal to Moscow that there was room to deal. And there may be. But by next week, one senior administration official said late Thursday, it may be too late.\n", + " In the Cuban missile crisis, the closest the world came to nuclear annihilation during the Cold War, Mr. Khrushchev ultimately took his missiles home, in return for a secret promise — which Mr. Kennedy delivered on months later — to take American Jupiter missiles out of Turkey, where their nuclear warheads were in easy range of the Soviet Union.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " It is a historical example that has lingered in the background of Situation Room debates about how to negotiate with Mr. Putin, according to two participants, who described the debates on the condition of anonymity. When Mr. Blinken offered in his speech on Thursday to meet his Russian counterpart in Europe next week, and ultimately to put together “a summit of key leaders, in the context of de-escalation, to reach understandings on our mutual security concerns,’’ it was part of the search for a modern-day analogue.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mr. Biden is no stranger to such trade-offs. He is perhaps the last politician still serving in Washington who played a key role in the debates over how to resolve disputes over long-forgotten arms control treaties with the Soviets, called SALT I and SALT II. He has already noted, at a news conference in January, that Ukraine won’t be accepted into NATO for a long while, a signal to Moscow that there was room to deal.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " And there may be. But by next week, one senior administration official said late Thursday, it may be too late.\n", " Evidence\n", "\n", "
" @@ -3953,7 +6837,7 @@ { "data": { "text/html": [ - "

nytimes\\bucket-list-travel.txt

" + "

bucket-list-travel.txt

" ], "text/plain": [ "" @@ -3973,7 +6857,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "64ec4439679c4f2f94f8b88632c50e14", + "model_id": "120699eb275b4b9498e8c4235874366f", "version_major": 2, "version_minor": 0 }, @@ -3994,7 +6878,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "cc6c16ad3e1a4a85880abf13a7707799", + "model_id": "54851eb6f1af48efbb37b90369206a50", "version_major": 2, "version_minor": 0 }, @@ -4012,8 +6896,14 @@ "As Omicron wanes in the United States, hopes are reviving for a brighter year in travel. But the new variant has also substantially altered the landscape. {'label': 'Claim', 'score': 0.32275715470314026}\n", "Our reporters explored some of the biggest travel trends to expect this year. Cities are back. Edu-vacations are a thing. And sexual wellness travel is on the rise. {'label': 'Evidence', 'score': 0.7460879683494568}\n", "Experts say that travelers are ready to “go big” in 2022 with bucket-list trips to far-flung destinations, after nearly two years of stagnation. {'label': 'Counterclaim', 'score': 0.6380918025970459}\n", - "We want to hear from you: What’s in store for you and travel this year? Will you be going all out, or laying low? {'label': 'Lead', 'score': 0.8277378082275391}\n", - "You can let us know by filling out this form below. We may include your response in an upcoming Travel Dispatch newsletter. {'label': 'Evidence', 'score': 0.6823993921279907}\n" + "We want to hear from you: What’s in store for you and travel this year? Will you be going all out, or laying low? {'label': 'Lead', 'score': 0.8277377486228943}\n", + "You can let us know by filling out this form below. We may include your response in an upcoming Travel Dispatch newsletter. {'label': 'Evidence', 'score': 0.6823994517326355}\n", + " text label score\n", + "0 As Omicron wanes in the United States, hopes a... Claim 0.322757\n", + "1 Our reporters explored some of the biggest tra... Evidence 0.746088\n", + "2 Experts say that travelers are ready to “go bi... Counterclaim 0.638092\n", + "3 We want to hear from you: What’s in store for ... Lead 0.827738\n", + "4 You can let us know by filling out this form b... Evidence 0.682399\n" ] }, { @@ -4065,7 +6955,7 @@ { "data": { "text/html": [ - "

nytimes\\burnout-work-stress.txt

" + "

burnout-work-stress.txt

" ], "text/plain": [ "" @@ -4085,7 +6975,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "75cf1bb5b181431e9f592a6b52e42dbf", + "model_id": "7045d815892b436f856e586f8e078587", "version_major": 2, "version_minor": 0 }, @@ -4106,7 +6996,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "0e4c2878e236470cb25f1dec98d4576a", + "model_id": "fc15805341c64261b1cf1635aeb88051", "version_major": 2, "version_minor": 0 }, @@ -4126,28 +7016,73 @@ "Burnout, as it is defined, is not a medical condition — it’s “a manifestation of chronic unmitigated stress,” explained Dr. Lotte Dyrbye, a physician scientist who studies burnout at the Mayo Clinic. The World Health Organization describes burnout as a workplace phenomenon characterized by feelings of exhaustion, cynicism and reduced efficacy. {'label': 'Evidence', 'score': 0.9526765942573547}\n", "“You start not functioning as well, you’re missing deadlines, you’re frustrated, you’re maybe irritable with your colleagues,” said Jeanette M. Bennett, a researcher who studies the effects of stress on health at the University of North Carolina, Charlotte. {'label': 'Evidence', 'score': 0.7583631873130798}\n", "But stress can have wear and tear effects on the body, especially when it doesn’t ease up after a while — so it makes sense that it can incite physical symptoms, too, Dr. Bennett said. When people are under stress, their bodies undergo changes that include making higher than normal levels of stress hormones such as cortisol, adrenaline, epinephrine and norepinephrine. These changes are helpful in the short term — they give us the energy to power through difficult situations — but over time, they start harming the body. {'label': 'Rebuttal', 'score': 0.5756803750991821}\n", - "Our bodies were “not designed for the kinds of stressors that we face today,” said Christina Maslach, a social psychologist at the University of California, Berkeley, who has spent her career studying burnout. {'label': 'Claim', 'score': 0.4667016863822937}\n", + "Our bodies were “not designed for the kinds of stressors that we face today,” said Christina Maslach, a social psychologist at the University of California, Berkeley, who has spent her career studying burnout. {'label': 'Claim', 'score': 0.4667017459869385}\n", "Here’s how to recognize burnout in your body and what to do about it. {'label': 'Claim', 'score': 0.8529661893844604}\n", - "One common burnout symptom is insomnia, Dr. Dyrbye said. When researchers in Italy surveyed frontline health care workers with burnout during the first peak of the pandemic, they found that 55 percent reported having difficulty falling asleep, while nearly 40 percent had nightmares. {'label': 'Evidence', 'score': 0.8623833656311035}\n", + "One common burnout symptom is insomnia, Dr. Dyrbye said. When researchers in Italy surveyed frontline health care workers with burnout during the first peak of the pandemic, they found that 55 percent reported having difficulty falling asleep, while nearly 40 percent had nightmares. {'label': 'Evidence', 'score': 0.8623834252357483}\n", "Research suggests that chronic stress interferes with the complicated neurological and hormonal system that regulates sleep. It’s a vicious cycle, because not sleeping throws this system even more out of whack. If you’ve noticed you’re unable to sleep at night, that could be a sign that you’re experiencing burnout, Dr. Dyrbye said — and your sleeplessness could exacerbate the problem. {'label': 'Evidence', 'score': 0.980728805065155}\n", "Physical exhaustion is another common sign. Dr. Gold said that one of her key symptoms of burnout was fatigue. “I realized I was sleeping every day after work — and I was like, ‘What is wrong with me?’ but it was actually burnout,” she said. {'label': 'Evidence', 'score': 0.9171519875526428}\n", "Changes in eating habits — either eating more or less than usual — can also be a sign of burnout: In the study of Italian health care workers, 56 percent reported changes in food habits. People might eat less because they’re too busy or distracted, or they might find themselves craving “those comfort foods that we all like to go to when we need something to make us feel better,” Dr. Bennett said. Research suggests, too, that stress hormones can affect appetite, making people feel less hungry than usual when they’re under a lot of stress, and more hungry than usual when that stress alleviates. {'label': 'Evidence', 'score': 0.9897149205207825}\n", "Headaches and stomachaches can also be incited by burnout, Dr. Gold said. One study of people in Sweden suffering from exhaustion disorder — a medical condition similar to burnout — found that 67 percent reported experiencing nausea, gas or indigestion, and that 65 percent had headaches. It’s also important to note that burnout can develop alongside depression or anxiety, both of which can cause physical symptoms. Depression can cause muscle aches, stomachaches, sleep issues and appetite changes. Anxiety is linked to headaches, nausea and shortness of breath. {'label': 'Evidence', 'score': 0.9937521815299988}\n", "If you’re experiencing physical symptoms that could be indicative of burnout, consider seeing your primary care doctor or a mental health professional to determine whether they are driven by stress or rooted in other physical conditions, Dr. Dyrbye said. Don’t just ignore the symptoms and assume they don’t matter. {'label': 'Evidence', 'score': 0.8881696462631226}\n", - "“It’s really easy to blow off your own symptoms, especially in our culture, where we’re taught to work hard,” Dr. Gold said. {'label': 'Claim', 'score': 0.4524225890636444}\n", + "“It’s really easy to blow off your own symptoms, especially in our culture, where we’re taught to work hard,” Dr. Gold said. {'label': 'Claim', 'score': 0.4524226486682892}\n", "If it is burnout, then the best solution is to address the root of the problem. Burnout is typically recognized when it is job-driven, but chronic stress can have a variety of causes — financial problems, relationship woes, and caregiving burdens, among other things. Think about “the pebbles in your shoe all the time that you have to deal with,” Dr. Maslach said, and brainstorm ways to remove some of them, at least some of the time. Perhaps you can ask your partner to help more with your toddler’s bedtime routine, or get take-out when you’re especially busy so you don’t have to plan dinner, too. {'label': 'Evidence', 'score': 0.8684491515159607}\n", "Despite popular culture coverage of the issue, burnout can’t be “fixed” with better self care, Dr. Maslach said — in fact, this implication only worsens the problem, because it lays the blame and responsibility on those with burnout and implies that they should do more to feel better, which is not the case, she said. However, some lifestyle choices can make burnout less likely. Social support, for instance, can help, Dr. Gold said. This could include talking to a therapist or meeting with friends (even if over Zoom). It may also help to take advantage of mental health or exercise benefits offered by your employer. Sleeping more can help too — so if you’re suffering from insomnia, talk to a doctor about possible treatments, Dr. Bennett suggested. {'label': 'Evidence', 'score': 0.9417110681533813}\n", "When burnout stems from job-related woes, it may help to request better working conditions. Dr. Maslach suggested brainstorming with co-workers and presenting your employer with ideas that would help — like providing quiet areas for breaks and personal phone calls, creating “no meeting” days so that employees can have more time to focus, or ensuring that there’s always coffee in the break room. Even small changes like these can make a dent in the risk for burnout if they fix a problem people face at work every day. “It’s the chronic job stressors that drive people really nuts after a while — they don’t have the right equipment, they don’t have the things they need, they don’t have enough people to do the work,” Dr. Maslach said. {'label': 'Evidence', 'score': 0.974457859992981}\n", - "Taking time off work could also help, but it’s likely only a temporary Band-Aid, Dr. Gold said. She compares it to using a bucket to empty water out of a sinking ship. “It’s still sinking, right? You have to do more than just occasionally take the water out,” she said. Still, it is important to take time off regularly, Dr. Dyrbye said. {'label': 'Evidence', 'score': 0.9643130898475647}\n" + "Taking time off work could also help, but it’s likely only a temporary Band-Aid, Dr. Gold said. She compares it to using a bucket to empty water out of a sinking ship. “It’s still sinking, right? You have to do more than just occasionally take the water out,” she said. Still, it is important to take time off regularly, Dr. Dyrbye said. {'label': 'Evidence', 'score': 0.9643130898475647}\n", + "Ultimately, you want to ensure you have some freedom and autonomy in your job, Dr. Gold said. “Anything you can do to regain an element of control can be really helpful,” she said. That could mean doing your least favorite work activity right before your break, so you have something to look forward to during the task and time to recover from it afterward. Or it could be trading a dreaded task with a co-worker and, in return, picking up their most hated task, which might not be so difficult for you. {'label': 'Concluding Statement', 'score': 0.9446531534194946}\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ - "Ultimately, you want to ensure you have some freedom and autonomy in your job, Dr. Gold said. “Anything you can do to regain an element of control can be really helpful,” she said. That could mean doing your least favorite work activity right before your break, so you have something to look forward to during the task and time to recover from it afterward. Or it could be trading a dreaded task with a co-worker and, in return, picking up their most hated task, which might not be so difficult for you. {'label': 'Concluding Statement', 'score': 0.9446531534194946}\n", "Finally, while you may not want to add more to your plate, try to make a bit of time each day for something you love, Dr. Dyrbye said. Her work has found that surgeons who make time for hobbies and recreation — even just 15 to 20 minutes a day — are less likely to experience burnout than surgeons who don’t. {'label': 'Evidence', 'score': 0.7567983269691467}\n", - "“You have to have something outside of work that helps you de-stress, that helps you focus and helps you relax,” she said. {'label': 'Evidence', 'score': 0.45927542448043823}\n" + "“You have to have something outside of work that helps you de-stress, that helps you focus and helps you relax,” she said. {'label': 'Evidence', 'score': 0.45927539467811584}\n", + " text label \\\n", + "0 Dr. Jessi Gold, a psychiatrist at Washington U... Evidence \n", + "1 In a 2021 survey of 1,500 U.S. workers, more t... Evidence \n", + "2 Burnout, as it is defined, is not a medical co... Evidence \n", + "3 “You start not functioning as well, you’re mis... Evidence \n", + "4 But stress can have wear and tear effects on t... Rebuttal \n", + "5 Our bodies were “not designed for the kinds of... Claim \n", + "6 Here’s how to recognize burnout in your body a... Claim \n", + "7 One common burnout symptom is insomnia, Dr. Dy... Evidence \n", + "8 Research suggests that chronic stress interfer... Evidence \n", + "9 Physical exhaustion is another common sign. Dr... Evidence \n", + "10 Changes in eating habits — either eating more ... Evidence \n", + "11 Headaches and stomachaches can also be incited... Evidence \n", + "12 If you’re experiencing physical symptoms that ... Evidence \n", + "13 “It’s really easy to blow off your own symptom... Claim \n", + "14 If it is burnout, then the best solution is to... Evidence \n", + "15 Despite popular culture coverage of the issue,... Evidence \n", + "16 When burnout stems from job-related woes, it m... Evidence \n", + "17 Taking time off work could also help, but it’s... Evidence \n", + "18 Ultimately, you want to ensure you have some f... Concluding Statement \n", + "19 Finally, while you may not want to add more to... Evidence \n", + "20 “You have to have something outside of work th... Evidence \n", + "\n", + " score \n", + "0 0.882779 \n", + "1 0.963180 \n", + "2 0.952677 \n", + "3 0.758363 \n", + "4 0.575680 \n", + "5 0.466702 \n", + "6 0.852966 \n", + "7 0.862383 \n", + "8 0.980729 \n", + "9 0.917152 \n", + "10 0.989715 \n", + "11 0.993752 \n", + "12 0.888170 \n", + "13 0.452423 \n", + "14 0.868449 \n", + "15 0.941711 \n", + "16 0.974458 \n", + "17 0.964313 \n", + "18 0.944653 \n", + "19 0.756798 \n", + "20 0.459275 \n" ] }, { @@ -4155,7 +7090,22 @@ "text/html": [ "
\n", "\n", - " Dr. Jessi Gold, a psychiatrist at Washington University in St. Louis, knows she’s edging toward burnout when she wakes up, feels instantly angry at her email inbox and doesn’t want to get out of bed. It’s perhaps not surprising that a mental health professional who is trying to stem the rising tide of burnout could burn out sometimes, too. After all, the phenomenon has practically become ubiquitous in our culture. In a 2021 survey of 1,500 U.S. workers, more than half said they were feeling burned out as a result of their job demands, and a whopping 4.3 million Americans quit their jobs in December in what has come to be known as the “great resignation.” When people think of burnout, mental and emotional symptoms such as feelings of helplessness and cynicism often come to mind. But burnout can lead to physical symptoms as well, and experts say it can be wise to look out for the signs and take steps when you notice them. Burnout, as it is defined, is not a medical condition — it’s “a manifestation of chronic unmitigated stress,” explained Dr. Lotte Dyrbye, a physician scientist who studies burnout at the Mayo Clinic. The World Health Organization describes burnout as a workplace phenomenon characterized by feelings of exhaustion, cynicism and reduced efficacy. “You start not functioning as well, you’re missing deadlines, you’re frustrated, you’re maybe irritable with your colleagues,” said Jeanette M. Bennett, a researcher who studies the effects of stress on health at the University of North Carolina, Charlotte.\n", + " Dr. Jessi Gold, a psychiatrist at Washington University in St. Louis, knows she’s edging toward burnout when she wakes up, feels instantly angry at her email inbox and doesn’t want to get out of bed. It’s perhaps not surprising that a mental health professional who is trying to stem the rising tide of burnout could burn out sometimes, too. After all, the phenomenon has practically become ubiquitous in our culture.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In a 2021 survey of 1,500 U.S. workers, more than half said they were feeling burned out as a result of their job demands, and a whopping 4.3 million Americans quit their jobs in December in what has come to be known as the “great resignation.” When people think of burnout, mental and emotional symptoms such as feelings of helplessness and cynicism often come to mind. But burnout can lead to physical symptoms as well, and experts say it can be wise to look out for the signs and take steps when you notice them.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Burnout, as it is defined, is not a medical condition — it’s “a manifestation of chronic unmitigated stress,” explained Dr. Lotte Dyrbye, a physician scientist who studies burnout at the Mayo Clinic. The World Health Organization describes burnout as a workplace phenomenon characterized by feelings of exhaustion, cynicism and reduced efficacy.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “You start not functioning as well, you’re missing deadlines, you’re frustrated, you’re maybe irritable with your colleagues,” said Jeanette M. Bennett, a researcher who studies the effects of stress on health at the University of North Carolina, Charlotte.\n", " Evidence\n", "\n", "\n", @@ -4165,12 +7115,42 @@ "\n", "\n", "\n", - " Our bodies were “not designed for the kinds of stressors that we face today,” said Christina Maslach, a social psychologist at the University of California, Berkeley, who has spent her career studying burnout. Here’s how to recognize burnout in your body and what to do about it.\n", + " Our bodies were “not designed for the kinds of stressors that we face today,” said Christina Maslach, a social psychologist at the University of California, Berkeley, who has spent her career studying burnout.\n", + " Claim\n", + "\n", + "\n", + "\n", + " Here’s how to recognize burnout in your body and what to do about it.\n", " Claim\n", "\n", "\n", "\n", - " One common burnout symptom is insomnia, Dr. Dyrbye said. When researchers in Italy surveyed frontline health care workers with burnout during the first peak of the pandemic, they found that 55 percent reported having difficulty falling asleep, while nearly 40 percent had nightmares. Research suggests that chronic stress interferes with the complicated neurological and hormonal system that regulates sleep. It’s a vicious cycle, because not sleeping throws this system even more out of whack. If you’ve noticed you’re unable to sleep at night, that could be a sign that you’re experiencing burnout, Dr. Dyrbye said — and your sleeplessness could exacerbate the problem. Physical exhaustion is another common sign. Dr. Gold said that one of her key symptoms of burnout was fatigue. “I realized I was sleeping every day after work — and I was like, ‘What is wrong with me?’ but it was actually burnout,” she said. Changes in eating habits — either eating more or less than usual — can also be a sign of burnout: In the study of Italian health care workers, 56 percent reported changes in food habits. People might eat less because they’re too busy or distracted, or they might find themselves craving “those comfort foods that we all like to go to when we need something to make us feel better,” Dr. Bennett said. Research suggests, too, that stress hormones can affect appetite, making people feel less hungry than usual when they’re under a lot of stress, and more hungry than usual when that stress alleviates. Headaches and stomachaches can also be incited by burnout, Dr. Gold said. One study of people in Sweden suffering from exhaustion disorder — a medical condition similar to burnout — found that 67 percent reported experiencing nausea, gas or indigestion, and that 65 percent had headaches. It’s also important to note that burnout can develop alongside depression or anxiety, both of which can cause physical symptoms. Depression can cause muscle aches, stomachaches, sleep issues and appetite changes. Anxiety is linked to headaches, nausea and shortness of breath. If you’re experiencing physical symptoms that could be indicative of burnout, consider seeing your primary care doctor or a mental health professional to determine whether they are driven by stress or rooted in other physical conditions, Dr. Dyrbye said. Don’t just ignore the symptoms and assume they don’t matter.\n", + " One common burnout symptom is insomnia, Dr. Dyrbye said. When researchers in Italy surveyed frontline health care workers with burnout during the first peak of the pandemic, they found that 55 percent reported having difficulty falling asleep, while nearly 40 percent had nightmares.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Research suggests that chronic stress interferes with the complicated neurological and hormonal system that regulates sleep. It’s a vicious cycle, because not sleeping throws this system even more out of whack. If you’ve noticed you’re unable to sleep at night, that could be a sign that you’re experiencing burnout, Dr. Dyrbye said — and your sleeplessness could exacerbate the problem.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Physical exhaustion is another common sign. Dr. Gold said that one of her key symptoms of burnout was fatigue. “I realized I was sleeping every day after work — and I was like, ‘What is wrong with me?’ but it was actually burnout,” she said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Changes in eating habits — either eating more or less than usual — can also be a sign of burnout: In the study of Italian health care workers, 56 percent reported changes in food habits. People might eat less because they’re too busy or distracted, or they might find themselves craving “those comfort foods that we all like to go to when we need something to make us feel better,” Dr. Bennett said. Research suggests, too, that stress hormones can affect appetite, making people feel less hungry than usual when they’re under a lot of stress, and more hungry than usual when that stress alleviates.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Headaches and stomachaches can also be incited by burnout, Dr. Gold said. One study of people in Sweden suffering from exhaustion disorder — a medical condition similar to burnout — found that 67 percent reported experiencing nausea, gas or indigestion, and that 65 percent had headaches. It’s also important to note that burnout can develop alongside depression or anxiety, both of which can cause physical symptoms. Depression can cause muscle aches, stomachaches, sleep issues and appetite changes. Anxiety is linked to headaches, nausea and shortness of breath.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " If you’re experiencing physical symptoms that could be indicative of burnout, consider seeing your primary care doctor or a mental health professional to determine whether they are driven by stress or rooted in other physical conditions, Dr. Dyrbye said. Don’t just ignore the symptoms and assume they don’t matter.\n", " Evidence\n", "\n", "\n", @@ -4180,7 +7160,22 @@ "\n", "\n", "\n", - " If it is burnout, then the best solution is to address the root of the problem. Burnout is typically recognized when it is job-driven, but chronic stress can have a variety of causes — financial problems, relationship woes, and caregiving burdens, among other things. Think about “the pebbles in your shoe all the time that you have to deal with,” Dr. Maslach said, and brainstorm ways to remove some of them, at least some of the time. Perhaps you can ask your partner to help more with your toddler’s bedtime routine, or get take-out when you’re especially busy so you don’t have to plan dinner, too. Despite popular culture coverage of the issue, burnout can’t be “fixed” with better self care, Dr. Maslach said — in fact, this implication only worsens the problem, because it lays the blame and responsibility on those with burnout and implies that they should do more to feel better, which is not the case, she said. However, some lifestyle choices can make burnout less likely. Social support, for instance, can help, Dr. Gold said. This could include talking to a therapist or meeting with friends (even if over Zoom). It may also help to take advantage of mental health or exercise benefits offered by your employer. Sleeping more can help too — so if you’re suffering from insomnia, talk to a doctor about possible treatments, Dr. Bennett suggested. When burnout stems from job-related woes, it may help to request better working conditions. Dr. Maslach suggested brainstorming with co-workers and presenting your employer with ideas that would help — like providing quiet areas for breaks and personal phone calls, creating “no meeting” days so that employees can have more time to focus, or ensuring that there’s always coffee in the break room. Even small changes like these can make a dent in the risk for burnout if they fix a problem people face at work every day. “It’s the chronic job stressors that drive people really nuts after a while — they don’t have the right equipment, they don’t have the things they need, they don’t have enough people to do the work,” Dr. Maslach said. Taking time off work could also help, but it’s likely only a temporary Band-Aid, Dr. Gold said. She compares it to using a bucket to empty water out of a sinking ship. “It’s still sinking, right? You have to do more than just occasionally take the water out,” she said. Still, it is important to take time off regularly, Dr. Dyrbye said.\n", + " If it is burnout, then the best solution is to address the root of the problem. Burnout is typically recognized when it is job-driven, but chronic stress can have a variety of causes — financial problems, relationship woes, and caregiving burdens, among other things. Think about “the pebbles in your shoe all the time that you have to deal with,” Dr. Maslach said, and brainstorm ways to remove some of them, at least some of the time. Perhaps you can ask your partner to help more with your toddler’s bedtime routine, or get take-out when you’re especially busy so you don’t have to plan dinner, too.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Despite popular culture coverage of the issue, burnout can’t be “fixed” with better self care, Dr. Maslach said — in fact, this implication only worsens the problem, because it lays the blame and responsibility on those with burnout and implies that they should do more to feel better, which is not the case, she said. However, some lifestyle choices can make burnout less likely. Social support, for instance, can help, Dr. Gold said. This could include talking to a therapist or meeting with friends (even if over Zoom). It may also help to take advantage of mental health or exercise benefits offered by your employer. Sleeping more can help too — so if you’re suffering from insomnia, talk to a doctor about possible treatments, Dr. Bennett suggested.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " When burnout stems from job-related woes, it may help to request better working conditions. Dr. Maslach suggested brainstorming with co-workers and presenting your employer with ideas that would help — like providing quiet areas for breaks and personal phone calls, creating “no meeting” days so that employees can have more time to focus, or ensuring that there’s always coffee in the break room. Even small changes like these can make a dent in the risk for burnout if they fix a problem people face at work every day. “It’s the chronic job stressors that drive people really nuts after a while — they don’t have the right equipment, they don’t have the things they need, they don’t have enough people to do the work,” Dr. Maslach said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Taking time off work could also help, but it’s likely only a temporary Band-Aid, Dr. Gold said. She compares it to using a bucket to empty water out of a sinking ship. “It’s still sinking, right? You have to do more than just occasionally take the water out,” she said. Still, it is important to take time off regularly, Dr. Dyrbye said.\n", " Evidence\n", "\n", "\n", @@ -4190,7 +7185,12 @@ "\n", "\n", "\n", - " Finally, while you may not want to add more to your plate, try to make a bit of time each day for something you love, Dr. Dyrbye said. Her work has found that surgeons who make time for hobbies and recreation — even just 15 to 20 minutes a day — are less likely to experience burnout than surgeons who don’t. “You have to have something outside of work that helps you de-stress, that helps you focus and helps you relax,” she said.\n", + " Finally, while you may not want to add more to your plate, try to make a bit of time each day for something you love, Dr. Dyrbye said. Her work has found that surgeons who make time for hobbies and recreation — even just 15 to 20 minutes a day — are less likely to experience burnout than surgeons who don’t.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “You have to have something outside of work that helps you de-stress, that helps you focus and helps you relax,” she said.\n", " Evidence\n", "\n", "
" @@ -4214,7 +7214,7 @@ { "data": { "text/html": [ - "

nytimes\\california-state-chancellor-resigns.txt

" + "

california-state-chancellor-resigns.txt

" ], "text/plain": [ "" @@ -4234,7 +7234,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "e98bfa9b43a346f08d2dff8cdd85d851", + "model_id": "6af81970de9a4430ab6d30d1a509a688", "version_major": 2, "version_minor": 0 }, @@ -4255,7 +7255,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "6bea9608ab9640e0849c78c49c4441c0", + "model_id": "f0841a169de94fb399f82e709f890fe1", "version_major": 2, "version_minor": 0 }, @@ -4276,7 +7276,7 @@ "Dr. Castro appeared to be referring to a USA Today investigation published on Feb. 3 that said he had repeatedly declined to discipline Frank R. Lamas, a former vice president for student affairs at Fresno State, despite complaints against him over six years involving sexual harassment, bullying and retaliation. {'label': 'Evidence', 'score': 0.898711085319519}\n", "USA Today reported that Dr. Castro knew of at least seven complaints, but that he nonetheless gave Dr. Lamas raises and positive performance evaluations and endorsed him for a lifetime achievement award. The report said Dr. Lamas reached a $260,000 settlement with the university that prohibited him from ever working in the C.S.U. system. {'label': 'Evidence', 'score': 0.9239442348480225}\n", "On Feb. 3, C.S.U. released a statement quoting Dr. Castro as saying that he took the allegations seriously and apologized “to anyone in the Fresno State community who was impacted by Dr. Lamas’s behavior.” {'label': 'Evidence', 'score': 0.8598538637161255}\n", - "“Within four days of having a complaint that could be formally investigated, Dr. Lamas was removed from campus and never returned,” he said. He added in that statement that “we faced a series of administrative hurdles in making a change until we had a formal complaint that could be investigated.” {'label': 'Evidence', 'score': 0.8745049238204956}\n", + "“Within four days of having a complaint that could be formally investigated, Dr. Lamas was removed from campus and never returned,” he said. He added in that statement that “we faced a series of administrative hurdles in making a change until we had a formal complaint that could be investigated.” {'label': 'Evidence', 'score': 0.8745049834251404}\n", "The university said in an email on Friday that Dr. Castro would not be speaking to the media. {'label': 'Claim', 'score': 0.4867500066757202}\n", "On Friday, Dr. Lamas said in an emailed statement that there had been “anonymous” and “malicious and untrue allegations” against him after he started working at Fresno State in 2014, and that he left the university in 2019, agreeing to mediation. {'label': 'Evidence', 'score': 0.8488894701004028}\n", "“I continue to maintain my innocence,” he said. {'label': 'Claim', 'score': 0.4215790629386902}\n", @@ -4287,7 +7287,46 @@ "Education advocates and other leaders had said his perspective would reflect those of the students, of whom 43 percent identified as Hispanic or Latinx. {'label': 'Claim', 'score': 0.42908015847206116}\n", "In his resignation statement, Dr. Castro said: “As I know from my own lived experience, our state’s and nation’s diverse and talented young people — especially low-income and first-generation students — deserve access to the transformative power of higher education that so often can seem like an elusive dream.” {'label': 'Concluding Statement', 'score': 0.32463568449020386}\n", "The board said that it was developing a plan to replace Dr. Castro, but that the executive vice chancellor, Steve Relyea, would serve until an interim chancellor could be named for the system, which encompasses 23 campuses, 477,000 students, and 56,000 faculty and staff members. {'label': 'Evidence', 'score': 0.7482070326805115}\n", - "It said the trustees intended to pursue steps for a systemwide Title IX assessment, which prohibits sex discrimination in education programs that receive government funding. {'label': 'Claim', 'score': 0.5170799493789673}\n" + "It said the trustees intended to pursue steps for a systemwide Title IX assessment, which prohibits sex discrimination in education programs that receive government funding. {'label': 'Claim', 'score': 0.5170799493789673}\n", + " text label \\\n", + "0 The head of the California State University sy... Lead \n", + "1 “I have been honored to serve the California S... Evidence \n", + "2 “While I disagree with many aspects of recent ... Concluding Statement \n", + "3 Dr. Castro appeared to be referring to a USA T... Evidence \n", + "4 USA Today reported that Dr. Castro knew of at ... Evidence \n", + "5 On Feb. 3, C.S.U. released a statement quoting... Evidence \n", + "6 “Within four days of having a complaint that c... Evidence \n", + "7 The university said in an email on Friday that... Claim \n", + "8 On Friday, Dr. Lamas said in an emailed statem... Evidence \n", + "9 “I continue to maintain my innocence,” he said. Claim \n", + "10 The California State University board of trust... Evidence \n", + "11 That day, Dr. Castro announced that he would r... Claim \n", + "12 Dr. Castro was appointed the chancellor in Sep... Evidence \n", + "13 He told The New York Times in an interview aft... Claim \n", + "14 Education advocates and other leaders had said... Claim \n", + "15 In his resignation statement, Dr. Castro said:... Concluding Statement \n", + "16 The board said that it was developing a plan t... Evidence \n", + "17 It said the trustees intended to pursue steps ... Claim \n", + "\n", + " score \n", + "0 0.753839 \n", + "1 0.490118 \n", + "2 0.363474 \n", + "3 0.898711 \n", + "4 0.923944 \n", + "5 0.859854 \n", + "6 0.874505 \n", + "7 0.486750 \n", + "8 0.848889 \n", + "9 0.421579 \n", + "10 0.948772 \n", + "11 0.543772 \n", + "12 0.597845 \n", + "13 0.385218 \n", + "14 0.429080 \n", + "15 0.324636 \n", + "16 0.748207 \n", + "17 0.517080 \n" ] }, { @@ -4310,11 +7349,26 @@ "\n", "\n", "\n", - " Dr. Castro appeared to be referring to a USA Today investigation published on Feb. 3 that said he had repeatedly declined to discipline Frank R. Lamas, a former vice president for student affairs at Fresno State, despite complaints against him over six years involving sexual harassment, bullying and retaliation. USA Today reported that Dr. Castro knew of at least seven complaints, but that he nonetheless gave Dr. Lamas raises and positive performance evaluations and endorsed him for a lifetime achievement award. The report said Dr. Lamas reached a $260,000 settlement with the university that prohibited him from ever working in the C.S.U. system. On Feb. 3, C.S.U. released a statement quoting Dr. Castro as saying that he took the allegations seriously and apologized “to anyone in the Fresno State community who was impacted by Dr. Lamas’s behavior.” “Within four days of having a complaint that could be formally investigated, Dr. Lamas was removed from campus and never returned,” he said. He added in that statement that “we faced a series of administrative hurdles in making a change until we had a formal complaint that could be investigated.”\n", + " Dr. Castro appeared to be referring to a USA Today investigation published on Feb. 3 that said he had repeatedly declined to discipline Frank R. Lamas, a former vice president for student affairs at Fresno State, despite complaints against him over six years involving sexual harassment, bullying and retaliation.\n", " Evidence\n", "\n", "\n", - "\n", + "\n", + " USA Today reported that Dr. Castro knew of at least seven complaints, but that he nonetheless gave Dr. Lamas raises and positive performance evaluations and endorsed him for a lifetime achievement award. The report said Dr. Lamas reached a $260,000 settlement with the university that prohibited him from ever working in the C.S.U. system.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " On Feb. 3, C.S.U. released a statement quoting Dr. Castro as saying that he took the allegations seriously and apologized “to anyone in the Fresno State community who was impacted by Dr. Lamas’s behavior.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Within four days of having a complaint that could be formally investigated, Dr. Lamas was removed from campus and never returned,” he said. He added in that statement that “we faced a series of administrative hurdles in making a change until we had a formal complaint that could be investigated.”\n", + " Evidence\n", + "\n", + "\n", + "\n", " The university said in an email on Friday that Dr. Castro would not be speaking to the media.\n", " Claim\n", "\n", @@ -4345,7 +7399,12 @@ "\n", "\n", "\n", - " He told The New York Times in an interview after his appointment that he thought C.S.U. was “the most important institution in the United States because of the students that we serve,” who are “from all different backgrounds.” Education advocates and other leaders had said his perspective would reflect those of the students, of whom 43 percent identified as Hispanic or Latinx.\n", + " He told The New York Times in an interview after his appointment that he thought C.S.U. was “the most important institution in the United States because of the students that we serve,” who are “from all different backgrounds.”\n", + " Claim\n", + "\n", + "\n", + "\n", + " Education advocates and other leaders had said his perspective would reflect those of the students, of whom 43 percent identified as Hispanic or Latinx.\n", " Claim\n", "\n", "\n", @@ -4384,7 +7443,7 @@ { "data": { "text/html": [ - "

nytimes\\canada-protest-arrests.txt

" + "

canada-protest-arrests.txt

" ], "text/plain": [ "" @@ -4404,7 +7463,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "9b50b28e3a9649f39627f5a8d823ba2b", + "model_id": "60167d3b9825454d953505ffce01b9a7", "version_major": 2, "version_minor": 0 }, @@ -4425,7 +7484,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "47a0459507f549f3af084ecb2bcff182", + "model_id": "93ab1f38ded948c89b23aadec9df8410", "version_major": 2, "version_minor": 0 }, @@ -4446,7 +7505,7 @@ "By late afternoon, protesters were clashing with police officers in front of Canada’s Senate building. The Ottawa police said that some demonstrators had assaulted officers and had tried to remove their weapons. The police deployed crowd-dispersal spray against demonstrators, and officers on horseback were forcing the crowd back, leading to a rush of people trying to flee in a flood of panic. {'label': 'Evidence', 'score': 0.9634272456169128}\n", "Images on Canadian television showed police officers dragging one recalcitrant protester on the snowy ground near a truck draped with a Canadian flag. {'label': 'Evidence', 'score': 0.8339104652404785}\n", "At 4:45 p.m., after several hours of making arrests, the police cleared hundreds of protesters from a major intersection outside the Canadian Senate, where a truck blockade has been disrupting daily life. {'label': 'Evidence', 'score': 0.7626508474349976}\n", - "Earlier, B.J. Dichter, a spokesman for the truckers’ convoy, wrote on Twitter that it was time for protesters to leave, saying that the police had smashed the windows of one driver’s truck. {'label': 'Evidence', 'score': 0.7780007719993591}\n", + "Earlier, B.J. Dichter, a spokesman for the truckers’ convoy, wrote on Twitter that it was time for protesters to leave, saying that the police had smashed the windows of one driver’s truck. {'label': 'Evidence', 'score': 0.7780008316040039}\n", "Several heavy tow trucks whose license plates had been removed and whose company names were covered with Ottawa police stickers were towing protesters’ trucks away. The police said 21 vehicles had been towed. {'label': 'Evidence', 'score': 0.9753761887550354}\n", "The Ottawa Police Service said that as of Friday evening, more than 100 people had been arrested on various charges, including “mischief,” a serious offense under Canada’s criminal law, which can carry a prison term of up to 10 years. {'label': 'Evidence', 'score': 0.842698872089386}\n", "Among those arrested on Thursday night was Tamara Lich, a leading activist, fund-raiser and singer who in the past has advocated the secession of Canada’s western provinces. She has become one of the main voices of the protest movement. {'label': 'Evidence', 'score': 0.9249745607376099}\n", @@ -4468,21 +7527,21 @@ "Under the act, police services across the country have the power to seize trucks and other vehicles used in the protests. Demonstrations that “go beyond lawful protest” can be banned, the prime minister said this week. But Mr. Trudeau and members of his cabinet offered repeated assurance that the act would not be used to suspend “fundamental rights.” {'label': 'Evidence', 'score': 0.9865425825119019}\n", "Mr. Trudeau’s extraordinary response brought back memories of October 1970 and a tumultuous period known as the October Crisis, when Prime Minister Pierre Elliott Trudeau — Justin Trudeau’s father — quashed a wave of terrorism by a violent Quebec separatist group by invoking the War Measures Act, and then sending in troops to Montreal. It was the only time in Canadian history that the war act was applied in peacetime. {'label': 'Evidence', 'score': 0.9320892095565796}\n", "The Emergencies Act was introduced in July 1988 to replace the war act. Mr. Trudeau has said that he would not use his authority under the declaration to deploy the military against the protesters. {'label': 'Evidence', 'score': 0.8029153347015381}\n", - "As pop music played from a truck parked in front of the Canada’s Senate building, police officers surrounded the small offshoot encampment on both sides. At one point, “Let’s Get it On” by Marvin Gaye echoed through the streets. {'label': 'Evidence', 'score': 0.6409274935722351}\n" + "As pop music played from a truck parked in front of the Canada’s Senate building, police officers surrounded the small offshoot encampment on both sides. At one point, “Let’s Get it On” by Marvin Gaye echoed through the streets. {'label': 'Evidence', 'score': 0.6409274935722351}\n", + "In olive green riot gear, the police cleared a line through the trucks, having already removed demonstrators from a number of the vehicles. On the other side of the knot of trucks, roughly 40 police officers in red-knit caps began to march down Rideau Street, in Ottawa’s city center, joining others on another side and filling out their ranks with more officers as trucks revved their engines. {'label': 'Evidence', 'score': 0.990708589553833}\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ - "In olive green riot gear, the police cleared a line through the trucks, having already removed demonstrators from a number of the vehicles. On the other side of the knot of trucks, roughly 40 police officers in red-knit caps began to march down Rideau Street, in Ottawa’s city center, joining others on another side and filling out their ranks with more officers as trucks revved their engines. {'label': 'Evidence', 'score': 0.990708589553833}\n", - "In front of Parliament, many members of the main protest group dashed over to watch the slow-moving advance of police officers toward an intersection blocked by other demonstrators and trucks to the east. Protesters swiftly retreated as officers, half a block away, stepped forward. {'label': 'Evidence', 'score': 0.8793973922729492}\n", + "In front of Parliament, many members of the main protest group dashed over to watch the slow-moving advance of police officers toward an intersection blocked by other demonstrators and trucks to the east. Protesters swiftly retreated as officers, half a block away, stepped forward. {'label': 'Evidence', 'score': 0.8793975114822388}\n", "“They’re coming in,” said one man wearing a Canadian flag as a cape. “They’re going to corral us.” {'label': 'Evidence', 'score': 0.692491352558136}\n", - "The truckers who remained, many of whom have been holding out for weeks, began to grow weary on Friday as the police closed in on them. {'label': 'Claim', 'score': 0.48697414994239807}\n", + "The truckers who remained, many of whom have been holding out for weeks, began to grow weary on Friday as the police closed in on them. {'label': 'Claim', 'score': 0.4869740903377533}\n", "Mike Marsh, 48, doesn’t want to leave, but he knows what’s coming. “We can’t stop them,” he said, nodding toward the direction of the police formation heading toward the stronghold of protesters still camped out near Parliament. “All we can do is slow them down.” {'label': 'Evidence', 'score': 0.8925086259841919}\n", "Mr. Marsh hasn’t been a commercial truck driver since getting in an accident two years ago, he said. Now he’s looking for a truck to sleep in tonight to avoid areas now occupied by law enforcement. {'label': 'Evidence', 'score': 0.8558369278907776}\n", "Wearing an umbrella hat emblazoned with the Canadian flag, Mr. Marsh said he couldn’t see a future for himself if the truckers have to back down. {'label': 'Evidence', 'score': 0.5728399157524109}\n", - "“If we lose this fight I’m driving straight to Florida,” he said, “because there is no home here for me any more.” {'label': 'Claim', 'score': 0.41229233145713806}\n", + "“If we lose this fight I’m driving straight to Florida,” he said, “because there is no home here for me any more.” {'label': 'Claim', 'score': 0.4122923016548157}\n", "For residents of Ottawa, the clampdown comes as a welcome reprieve after weeks of what many have called an inadequate response from law enforcement to the occupation. {'label': 'Claim', 'score': 0.7117354869842529}\n", "Kathryn Moore, who works in administration at the University of Ottawa, lives west of downtown, close enough that when the wind blew the right way, she could smell diesel fumes and hear horns blaring. {'label': 'Evidence', 'score': 0.6967591047286987}\n", "Since the protests began, Ms. Moore said she hasn’t felt comfortable going to her office. “I headed in a couple times and just turned around,” she said, adding, “I feel relief that this is finally happening.” {'label': 'Evidence', 'score': 0.8777123093605042}\n", @@ -4501,19 +7560,19 @@ "There are plenty of coronavirus deniers and conspiracy theorists among the trucks in downtown Ottawa, but Mike Johnson doesn’t count himself among them. {'label': 'Evidence', 'score': 0.4766385555267334}\n", "Mr. Johnson, 53, said Thursday he wasn’t even particularly concerned about government mandates or vaccine passports until his son urged him to drive to the nation’s capital to protest against them a few weeks ago. {'label': 'Evidence', 'score': 0.9518074989318848}\n", "But now his fire engine red truck, the only thing of significant value he owns, is parked right outside Canada’s Parliament — and Mr. Johnson says he’s prepared for the police to seize it and to forsake his livelihood to defend the cause. {'label': 'Rebuttal', 'score': 0.7634939551353455}\n", - "“When we turned our headlights toward Ottawa, I don’t think any of us knew what we were driving into,” said Mr. Johnson, a trucker from Niagara, Ontario. “I didn’t realize how bad it was until I got here.” {'label': 'Evidence', 'score': 0.8393068909645081}\n", + "“When we turned our headlights toward Ottawa, I don’t think any of us knew what we were driving into,” said Mr. Johnson, a trucker from Niagara, Ontario. “I didn’t realize how bad it was until I got here.” {'label': 'Evidence', 'score': 0.8393068313598633}\n", "Some among the protesters have links to far-right parties whose support is so low that they hold no seats in the federal Parliament. Mr. Johnson said that he supports one such party, the People’s Party of Canada, whose leader has railed against multiculturalism, immigration and climate change “hysteria.” {'label': 'Evidence', 'score': 0.8977844715118408}\n", "The logjam in the nation’s capital, the weekslong blockade of an Ontario bridge that is vital to automakers’ supply chains and the media projection of all that onto the global stage have given the protests an outsized megaphone and impact. {'label': 'Evidence', 'score': 0.776948869228363}\n", - "As the police clamp down on the protests, the so-called “Freedom Convoy” will likely live on long after the last trucks depart — if only as a vivid template of how civil disobedience can be effective, in particular in a liberal democracy where the threshold for law enforcement intervening to stop demonstrations can be high. {'label': 'Evidence', 'score': 0.8288736343383789}\n" + "As the police clamp down on the protests, the so-called “Freedom Convoy” will likely live on long after the last trucks depart — if only as a vivid template of how civil disobedience can be effective, in particular in a liberal democracy where the threshold for law enforcement intervening to stop demonstrations can be high. {'label': 'Evidence', 'score': 0.8288736343383789}\n", + "Much like Occupy Wall Street in 2011, the Canada convoys show that what seem like fringe political movements can gather force at a time of anxiety — and when the world’s cameras are pointed at them. Back then, the driving force was anger over endemic social inequality. These days it is a lethal global pandemic. {'label': 'Evidence', 'score': 0.9830157160758972}\n", + "Mr. Johnson never got vaccinated and didn’t have to — hauling scrap metal around northern Ontario doesn’t require border crossing. He said he believes the coronavirus is real and when people have knocked on the door of his cab to talk about conspiracy theories he refuses to engage. {'label': 'Evidence', 'score': 0.9725605249404907}\n", + "“That’s not why I’m here,” he said. “It’s a distraction.” {'label': 'Claim', 'score': 0.22395727038383484}\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ - "Much like Occupy Wall Street in 2011, the Canada convoys show that what seem like fringe political movements can gather force at a time of anxiety — and when the world’s cameras are pointed at them. Back then, the driving force was anger over endemic social inequality. These days it is a lethal global pandemic. {'label': 'Evidence', 'score': 0.9830157160758972}\n", - "Mr. Johnson never got vaccinated and didn’t have to — hauling scrap metal around northern Ontario doesn’t require border crossing. He said he believes the coronavirus is real and when people have knocked on the door of his cab to talk about conspiracy theories he refuses to engage. {'label': 'Evidence', 'score': 0.9725605249404907}\n", - "“That’s not why I’m here,” he said. “It’s a distraction.” {'label': 'Claim', 'score': 0.22395727038383484}\n", "During the occupation, his centrally located truck became a kind of command station for anyone who needed a break from the bitter cold or a place to charge a phone. The throngs of people who stopped by have moved Mr. Johnson with stories of losing their work because they don’t want to get vaccinated. {'label': 'Evidence', 'score': 0.9664930701255798}\n", "Mr. Johnson believes that even once the police arrive in force, the truckers will have made a lasting mark on the country by drawing attention to their demands. {'label': 'Claim', 'score': 0.5196710228919983}\n", "“This has already been a positive accomplishment,” he said, eyeing the police car parked on the lawn of the Parliament building. “Regardless of what happens.” {'label': 'Evidence', 'score': 0.413126677274704}\n", @@ -4531,7 +7590,7 @@ "“Some of you might oppose our grievances,” Ms. Lich said to the television cameras. Like other members of the movement, she does not wear a mask. “However, democratic society will always have non-trivial disagreements, and righteous dissidents,” she added. {'label': 'Evidence', 'score': 0.7235902547836304}\n", "What message discipline exists in the protest movement has come from Ms. Lich, said Jay Hill, the interim leader of the Maverick Party, a small right-of-center group based out of Calgary, Alberta, created to promote the separation of Canada’s three western Prairie Provinces from the rest of the country. Ms. Lich, who worked previously in the energy sector, has deep ties to the group. {'label': 'Evidence', 'score': 0.916060745716095}\n", "Even before the convoy assembled, its messaging was Ms. Lich’s preoccupation, according to Mr. Hill, who said she called him several times even before arriving in Ottawa to strategize. {'label': 'Evidence', 'score': 0.682661235332489}\n", - "“We had a number of discussions about staying on message, about the need in this modern-day world of politics to have a very clearly defined message that is understandable and simple, a message that people can grasp hold of and run with,” he said. “Tamara clearly understands that.” {'label': 'Evidence', 'score': 0.5618240237236023}\n", + "“We had a number of discussions about staying on message, about the need in this modern-day world of politics to have a very clearly defined message that is understandable and simple, a message that people can grasp hold of and run with,” he said. “Tamara clearly understands that.” {'label': 'Evidence', 'score': 0.5618239641189575}\n", "Ms. Lich played a leading role in organizing a GoFundMe campaign for the protests that raised $7.8 million before the crowdfunding site shut it down after receiving “police reports of violence and other unlawful activity,” GoFundMe said. {'label': 'Evidence', 'score': 0.9210736155509949}\n", "B.J. Dichter, an official spokesman for the convoy, said he joined the effort after Ms. Lich sought help managing the swell of donations flowing into a GoFundMe page. Mr. Dichter has a history of spouting anti-Islamist views and once said that “political Islam” is “rotting away at our society like syphilis.” He has rejected claims of racism. {'label': 'Evidence', 'score': 0.9867839813232422}\n", "Within the occupiers’ tightly managed ground operations, there are military hallmarks, outlined and executed by the several higher-ups who have backgrounds in the armed forces and law enforcement, according to leading members of the group. {'label': 'Claim', 'score': 0.5533501505851746}\n", @@ -4543,18 +7602,32 @@ "With police forces swelling in the area Friday morning, and tow trucks and other heavy equipment poised to move against them, the protesting truck drivers who have occupied downtown Ottawa for weeks were on alert on Friday for imminent police action. {'label': 'Evidence', 'score': 0.9232434034347534}\n", "Like truckers who had mounted blockades in other parts of Canada, they expressed defiance and the intent to hold firm against any effort to disperse them. But the defiance melted away at the other protest sites as law enforcement moved in, and the big question on Friday was whether the same would happen in Ottawa. {'label': 'Evidence', 'score': 0.9873840808868408}\n", "Around noon, a spokesman for the protesters, B.J. Dichter, tweeted that “It’s time to leave. @OttawaPolice please allow the remaining trucks to leave in #Peace.” {'label': 'Evidence', 'score': 0.6326234340667725}\n", - "An hour later, it was unclear how quickly, or if at all, Mr. Dichter’s message would spread or how influential it would be. {'label': 'Claim', 'score': 0.5945359468460083}\n" + "An hour later, it was unclear how quickly, or if at all, Mr. Dichter’s message would spread or how influential it would be. {'label': 'Claim', 'score': 0.5945359468460083}\n", + "Some protesters said they have been hearing from friends and family members, begging them to leave. Some of them have no way to leave. They are physically backed into one another, and some of them have let air out of their tires or bled their brake lines. {'label': 'Evidence', 'score': 0.9270268082618713}\n", + "On Thursday, Samantha Dougherty, 32, a protest supporter, patrolled the area around a truck facing Parliament. Inside the truck was her new friend, Lenny Frey, she said, who had been parked there for 20 days and had no intention of leaving. {'label': 'Evidence', 'score': 0.9321501851081848}\n", + "“Nobody is allowed within 6 feet of this truck,” said Ms. Dougherty, a blow horn in one hand and a cigarette in the other. “This truck is not moving, over my dead body.” {'label': 'Evidence', 'score': 0.8981414437294006}\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ - "Some protesters said they have been hearing from friends and family members, begging them to leave. Some of them have no way to leave. They are physically backed into one another, and some of them have let air out of their tires or bled their brake lines. {'label': 'Evidence', 'score': 0.9270268082618713}\n", - "On Thursday, Samantha Dougherty, 32, a protest supporter, patrolled the area around a truck facing Parliament. Inside the truck was her new friend, Lenny Frey, she said, who had been parked there for 20 days and had no intention of leaving. {'label': 'Evidence', 'score': 0.9321501851081848}\n", - "“Nobody is allowed within 6 feet of this truck,” said Ms. Dougherty, a blow horn in one hand and a cigarette in the other. “This truck is not moving, over my dead body.” {'label': 'Evidence', 'score': 0.8981414437294006}\n", "Any police response would be an overreaction, said another protester, Mark Fenson, 55, who said he was a drug and alcohol counselor from Petersburg, Ontario, and had spent the last 22 months attending anti-vaccine and anti-lockdown protests. Pointing toward the encampment on Thursday, which at times has included recreation activities for children, he said a clampdown would be “going a little far for a bunch of bouncy castles.” {'label': 'Evidence', 'score': 0.9866690635681152}\n", - "Still, Mr. Fenson said he would allow himself to be arrested, although he felt Prime Minister Justin Trudeau and the police were unfairly targeting the protesters. He said he believed that the official forces were acting on behalf of global elites trying to enforce a new world order. “I’m not about to fight against them,” he said. “I’ll deal with them in court.” {'label': 'Evidence', 'score': 0.7934477925300598}\n" + "Still, Mr. Fenson said he would allow himself to be arrested, although he felt Prime Minister Justin Trudeau and the police were unfairly targeting the protesters. He said he believed that the official forces were acting on behalf of global elites trying to enforce a new world order. “I’m not about to fight against them,” he said. “I’ll deal with them in court.” {'label': 'Evidence', 'score': 0.7934477925300598}\n", + " text label score\n", + "0 A swell of police officers and heavy tow truck... Evidence 0.857604\n", + "1 Twenty-two days after a trucker convoy rumbled... Evidence 0.958892\n", + "2 After a night of unusually heavy snowfall, row... Evidence 0.925376\n", + "3 By late afternoon, protesters were clashing wi... Evidence 0.963427\n", + "4 Images on Canadian television showed police of... Evidence 0.833910\n", + ".. ... ... ...\n", + "92 Some protesters said they have been hearing fr... Evidence 0.927027\n", + "93 On Thursday, Samantha Dougherty, 32, a protest... Evidence 0.932150\n", + "94 “Nobody is allowed within 6 feet of this truck... Evidence 0.898141\n", + "95 Any police response would be an overreaction, ... Evidence 0.986669\n", + "96 Still, Mr. Fenson said he would allow himself ... Evidence 0.793448\n", + "\n", + "[97 rows x 3 columns]\n" ] }, { @@ -4562,7 +7635,92 @@ "text/html": [ "
\n", "\n", - " A swell of police officers and heavy tow trucks closed in on the encampment of truckers on Friday after three weeks of demonstrations had roiled the capital and other parts of the country. Twenty-two days after a trucker convoy rumbled into Canada’s capital to protest pandemic restrictions, hundreds of police officers in downtown Ottawa moved in to arrest protesters Friday, hoping to end weeks of gridlock that have roiled the city, infuriated local residents and shaken the country. After a night of unusually heavy snowfall, rows of police officers in fluorescent jackets edged steadily toward protesters on Parliament Hill, backed by at least two armored vehicles and tactical officers armed with rifles and wearing helmets. By late afternoon, protesters were clashing with police officers in front of Canada’s Senate building. The Ottawa police said that some demonstrators had assaulted officers and had tried to remove their weapons. The police deployed crowd-dispersal spray against demonstrators, and officers on horseback were forcing the crowd back, leading to a rush of people trying to flee in a flood of panic. Images on Canadian television showed police officers dragging one recalcitrant protester on the snowy ground near a truck draped with a Canadian flag. At 4:45 p.m., after several hours of making arrests, the police cleared hundreds of protesters from a major intersection outside the Canadian Senate, where a truck blockade has been disrupting daily life. Earlier, B.J. Dichter, a spokesman for the truckers’ convoy, wrote on Twitter that it was time for protesters to leave, saying that the police had smashed the windows of one driver’s truck. Several heavy tow trucks whose license plates had been removed and whose company names were covered with Ottawa police stickers were towing protesters’ trucks away. The police said 21 vehicles had been towed. The Ottawa Police Service said that as of Friday evening, more than 100 people had been arrested on various charges, including “mischief,” a serious offense under Canada’s criminal law, which can carry a prison term of up to 10 years. Among those arrested on Thursday night was Tamara Lich, a leading activist, fund-raiser and singer who in the past has advocated the secession of Canada’s western provinces. She has become one of the main voices of the protest movement. The police mobilization comes after mounting criticism that law enforcement personnel have moved too slowly to end the protests, permitting protesters to taunt local residents for wearing masks, honk their horns in quiet residential neighborhoods and undermine local businesses. Law enforcement officers have created a perimeter with about 100 checkpoints in Ottawa’s downtown core to keep anyone but residents from entering. There was a sense of anticipation across the trucker encampment as reports trickled in from their organizers via a text message chain that police cruisers had been seen massing outside the demonstration area. “They’re coming in,” said one man wearing a Canadian flag as a cape. “They’re going to corral us.” While it was proceeding cautiously, the police operation appeared to be the culmination of a tenacious protest that has reverberated around the world and has been a seminal moment in the history of Canadian civil disobedience and law enforcement. Prime Minister Justin Trudeau took the rare step this week of declaring a national public order emergency — the first such declaration in half a century — to end the protests. The logjam in the nation’s capital, the weekslong blockade of an Ontario bridge that is vital to automakers’ supply chains and the news media’s projection of all that onto the global stage have given the protests an outsize megaphone and impact. As the police move to clamp down on the protests, the so-called “Freedom Convoy” is likely to live on long after the last trucks depart — if only as a vivid template for how civil disobedience can be effective, in particular in a liberal democracy where the threshold for intervention by law enforcement personnel to stop demonstrations can be high. Much like Occupy Wall Street in 2011, the Canada convoys show that what seem like fringe political movements can gather force at a time of anxiety — and when the world’s cameras are pointed at them. Back then, the driving force was anger over endemic social inequality. These days it is a lethal global pandemic.\n", + " A swell of police officers and heavy tow trucks closed in on the encampment of truckers on Friday after three weeks of demonstrations had roiled the capital and other parts of the country.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Twenty-two days after a trucker convoy rumbled into Canada’s capital to protest pandemic restrictions, hundreds of police officers in downtown Ottawa moved in to arrest protesters Friday, hoping to end weeks of gridlock that have roiled the city, infuriated local residents and shaken the country.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " After a night of unusually heavy snowfall, rows of police officers in fluorescent jackets edged steadily toward protesters on Parliament Hill, backed by at least two armored vehicles and tactical officers armed with rifles and wearing helmets.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " By late afternoon, protesters were clashing with police officers in front of Canada’s Senate building. The Ottawa police said that some demonstrators had assaulted officers and had tried to remove their weapons. The police deployed crowd-dispersal spray against demonstrators, and officers on horseback were forcing the crowd back, leading to a rush of people trying to flee in a flood of panic.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Images on Canadian television showed police officers dragging one recalcitrant protester on the snowy ground near a truck draped with a Canadian flag.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " At 4:45 p.m., after several hours of making arrests, the police cleared hundreds of protesters from a major intersection outside the Canadian Senate, where a truck blockade has been disrupting daily life.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Earlier, B.J. Dichter, a spokesman for the truckers’ convoy, wrote on Twitter that it was time for protesters to leave, saying that the police had smashed the windows of one driver’s truck.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Several heavy tow trucks whose license plates had been removed and whose company names were covered with Ottawa police stickers were towing protesters’ trucks away. The police said 21 vehicles had been towed.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The Ottawa Police Service said that as of Friday evening, more than 100 people had been arrested on various charges, including “mischief,” a serious offense under Canada’s criminal law, which can carry a prison term of up to 10 years.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Among those arrested on Thursday night was Tamara Lich, a leading activist, fund-raiser and singer who in the past has advocated the secession of Canada’s western provinces. She has become one of the main voices of the protest movement.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The police mobilization comes after mounting criticism that law enforcement personnel have moved too slowly to end the protests, permitting protesters to taunt local residents for wearing masks, honk their horns in quiet residential neighborhoods and undermine local businesses.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Law enforcement officers have created a perimeter with about 100 checkpoints in Ottawa’s downtown core to keep anyone but residents from entering. \n", + " Evidence\n", + "\n", + "\n", + "\n", + " There was a sense of anticipation across the trucker encampment as reports trickled in from their organizers via a text message chain that police cruisers had been seen massing outside the demonstration area.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “They’re coming in,” said one man wearing a Canadian flag as a cape. “They’re going to corral us.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " While it was proceeding cautiously, the police operation appeared to be the culmination of a tenacious protest that has reverberated around the world and has been a seminal moment in the history of Canadian civil disobedience and law enforcement. Prime Minister Justin Trudeau took the rare step this week of declaring a national public order emergency — the first such declaration in half a century — to end the protests.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The logjam in the nation’s capital, the weekslong blockade of an Ontario bridge that is vital to automakers’ supply chains and the news media’s projection of all that onto the global stage have given the protests an outsize megaphone and impact.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " As the police move to clamp down on the protests, the so-called “Freedom Convoy” is likely to live on long after the last trucks depart — if only as a vivid template for how civil disobedience can be effective, in particular in a liberal democracy where the threshold for intervention by law enforcement personnel to stop demonstrations can be high.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Much like Occupy Wall Street in 2011, the Canada convoys show that what seem like fringe political movements can gather force at a time of anxiety — and when the world’s cameras are pointed at them. Back then, the driving force was anger over endemic social inequality. These days it is a lethal global pandemic.\n", " Evidence\n", "\n", "\n", @@ -4572,7 +7730,27 @@ "\n", "\n", "\n", - " Ms. Lich, of Medicine Hat, Alberta, has emerged as the public face and the most visible leader of the trucker convoy. She is a former fitness instructor who has worked in the energy sector and has sung and played guitar in a band called Blind Monday. The protests began weeks ago with a loosely organized group of truckers who objected to a requirement that they be vaccinated if they cross the U.S.-Canada border. They expanded into a broader movement opposed to an array of pandemic measures and to Mr. Trudeau generally. The image of Canadian police moving in and arresting protesters on Friday in the nation’s capital, backed by tactical officers wielding rifles, is a seminal moment in the history of Canadian law enforcement and civil disobedience. It is happening just days after Prime Minister Justin Trudeau took the rare step of declaring a national public order emergency, the first time the Canadian government has taken such action in half a century. Many of the powers enabled by Mr. Trudeau’s move on Monday had already been given to the police and authorities under a state of emergency enforced earlier by the province of Ontario. But the federal declaration extended them nationwide, and also enabled banks to freeze accounts of protesters and organizers — a step the government says is now underway.\n", + " Ms. Lich, of Medicine Hat, Alberta, has emerged as the public face and the most visible leader of the trucker convoy. She is a former fitness instructor who has worked in the energy sector and has sung and played guitar in a band called Blind Monday. \n", + " Evidence\n", + "\n", + "\n", + "\n", + " The protests began weeks ago with a loosely organized group of truckers who objected to a requirement that they be vaccinated if they cross the U.S.-Canada border. They expanded into a broader movement opposed to an array of pandemic measures and to Mr. Trudeau generally.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The image of Canadian police moving in and arresting protesters on Friday in the nation’s capital, backed by tactical officers wielding rifles, is a seminal moment in the history of Canadian law enforcement and civil disobedience.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " It is happening just days after Prime Minister Justin Trudeau took the rare step of declaring a national public order emergency, the first time the Canadian government has taken such action in half a century.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Many of the powers enabled by Mr. Trudeau’s move on Monday had already been given to the police and authorities under a state of emergency enforced earlier by the province of Ontario. But the federal declaration extended them nationwide, and also enabled banks to freeze accounts of protesters and organizers — a step the government says is now underway.\n", " Evidence\n", "\n", "\n", @@ -4582,7 +7760,37 @@ "\n", "\n", "\n", - " Under the act, police services across the country have the power to seize trucks and other vehicles used in the protests. Demonstrations that “go beyond lawful protest” can be banned, the prime minister said this week. But Mr. Trudeau and members of his cabinet offered repeated assurance that the act would not be used to suspend “fundamental rights.” Mr. Trudeau’s extraordinary response brought back memories of October 1970 and a tumultuous period known as the October Crisis, when Prime Minister Pierre Elliott Trudeau — Justin Trudeau’s father — quashed a wave of terrorism by a violent Quebec separatist group by invoking the War Measures Act, and then sending in troops to Montreal. It was the only time in Canadian history that the war act was applied in peacetime. The Emergencies Act was introduced in July 1988 to replace the war act. Mr. Trudeau has said that he would not use his authority under the declaration to deploy the military against the protesters. As pop music played from a truck parked in front of the Canada’s Senate building, police officers surrounded the small offshoot encampment on both sides. At one point, “Let’s Get it On” by Marvin Gaye echoed through the streets. In olive green riot gear, the police cleared a line through the trucks, having already removed demonstrators from a number of the vehicles. On the other side of the knot of trucks, roughly 40 police officers in red-knit caps began to march down Rideau Street, in Ottawa’s city center, joining others on another side and filling out their ranks with more officers as trucks revved their engines. In front of Parliament, many members of the main protest group dashed over to watch the slow-moving advance of police officers toward an intersection blocked by other demonstrators and trucks to the east. Protesters swiftly retreated as officers, half a block away, stepped forward. “They’re coming in,” said one man wearing a Canadian flag as a cape. “They’re going to corral us.”\n", + " Under the act, police services across the country have the power to seize trucks and other vehicles used in the protests. Demonstrations that “go beyond lawful protest” can be banned, the prime minister said this week. But Mr. Trudeau and members of his cabinet offered repeated assurance that the act would not be used to suspend “fundamental rights.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mr. Trudeau’s extraordinary response brought back memories of October 1970 and a tumultuous period known as the October Crisis, when Prime Minister Pierre Elliott Trudeau — Justin Trudeau’s father — quashed a wave of terrorism by a violent Quebec separatist group by invoking the War Measures Act, and then sending in troops to Montreal. It was the only time in Canadian history that the war act was applied in peacetime.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The Emergencies Act was introduced in July 1988 to replace the war act. Mr. Trudeau has said that he would not use his authority under the declaration to deploy the military against the protesters.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " As pop music played from a truck parked in front of the Canada’s Senate building, police officers surrounded the small offshoot encampment on both sides. At one point, “Let’s Get it On” by Marvin Gaye echoed through the streets.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In olive green riot gear, the police cleared a line through the trucks, having already removed demonstrators from a number of the vehicles. On the other side of the knot of trucks, roughly 40 police officers in red-knit caps began to march down Rideau Street, in Ottawa’s city center, joining others on another side and filling out their ranks with more officers as trucks revved their engines.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In front of Parliament, many members of the main protest group dashed over to watch the slow-moving advance of police officers toward an intersection blocked by other demonstrators and trucks to the east. Protesters swiftly retreated as officers, half a block away, stepped forward.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “They’re coming in,” said one man wearing a Canadian flag as a cape. “They’re going to corral us.”\n", " Evidence\n", "\n", "\n", @@ -4592,17 +7800,57 @@ "\n", "\n", "\n", - " Mike Marsh, 48, doesn’t want to leave, but he knows what’s coming. “We can’t stop them,” he said, nodding toward the direction of the police formation heading toward the stronghold of protesters still camped out near Parliament. “All we can do is slow them down.” Mr. Marsh hasn’t been a commercial truck driver since getting in an accident two years ago, he said. Now he’s looking for a truck to sleep in tonight to avoid areas now occupied by law enforcement. Wearing an umbrella hat emblazoned with the Canadian flag, Mr. Marsh said he couldn’t see a future for himself if the truckers have to back down.\n", + " Mike Marsh, 48, doesn’t want to leave, but he knows what’s coming. “We can’t stop them,” he said, nodding toward the direction of the police formation heading toward the stronghold of protesters still camped out near Parliament. “All we can do is slow them down.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mr. Marsh hasn’t been a commercial truck driver since getting in an accident two years ago, he said. Now he’s looking for a truck to sleep in tonight to avoid areas now occupied by law enforcement.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Wearing an umbrella hat emblazoned with the Canadian flag, Mr. Marsh said he couldn’t see a future for himself if the truckers have to back down.\n", " Evidence\n", "\n", "\n", "\n", - " “If we lose this fight I’m driving straight to Florida,” he said, “because there is no home here for me any more.” For residents of Ottawa, the clampdown comes as a welcome reprieve after weeks of what many have called an inadequate response from law enforcement to the occupation.\n", + " “If we lose this fight I’m driving straight to Florida,” he said, “because there is no home here for me any more.”\n", + " Claim\n", + "\n", + "\n", + "\n", + " For residents of Ottawa, the clampdown comes as a welcome reprieve after weeks of what many have called an inadequate response from law enforcement to the occupation.\n", " Claim\n", "\n", "\n", "\n", - " Kathryn Moore, who works in administration at the University of Ottawa, lives west of downtown, close enough that when the wind blew the right way, she could smell diesel fumes and hear horns blaring. Since the protests began, Ms. Moore said she hasn’t felt comfortable going to her office. “I headed in a couple times and just turned around,” she said, adding, “I feel relief that this is finally happening.” Children scampered gleefully outside in the cold on Thursday, playing street hockey among the growling trucks occupying Parliament Hill and jumping on bouncy castles inflated for their entertainment. Some were the sons and daughters of the truckers who have been camped here for nearly three weeks. Others were brought by their parents in a show of support for the convoy. On Wednesday, Ottawa police officers went truck to truck handing out a notice telling demonstrators they were breaking the law and faced arrest. It warned that anyone taking a minor to an unlawful protest could be fined up to 5,000 Canadian dollars “and/or potentially spend up to five years in prison.” Outside Parliament with his son and two daughters on Thursday, wearing “Make America Great Again” baseball caps, Baret McAuley, a retired oil field company manager, said the notice did not change his plans to protest with his children, Emily, 17, and Ryan and Sarah, both 12. They had driven more than 1,700 miles from Moose Jaw, Saskatchewan, a 30-hour trip.\n", + " Kathryn Moore, who works in administration at the University of Ottawa, lives west of downtown, close enough that when the wind blew the right way, she could smell diesel fumes and hear horns blaring.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Since the protests began, Ms. Moore said she hasn’t felt comfortable going to her office. “I headed in a couple times and just turned around,” she said, adding, “I feel relief that this is finally happening.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Children scampered gleefully outside in the cold on Thursday, playing street hockey among the growling trucks occupying Parliament Hill and jumping on bouncy castles inflated for their entertainment.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Some were the sons and daughters of the truckers who have been camped here for nearly three weeks. Others were brought by their parents in a show of support for the convoy.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " On Wednesday, Ottawa police officers went truck to truck handing out a notice telling demonstrators they were breaking the law and faced arrest. It warned that anyone taking a minor to an unlawful protest could be fined up to 5,000 Canadian dollars “and/or potentially spend up to five years in prison.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Outside Parliament with his son and two daughters on Thursday, wearing “Make America Great Again” baseball caps, Baret McAuley, a retired oil field company manager, said the notice did not change his plans to protest with his children, Emily, 17, and Ryan and Sarah, both 12. They had driven more than 1,700 miles from Moose Jaw, Saskatchewan, a 30-hour trip.\n", " Evidence\n", "\n", "\n", @@ -4612,7 +7860,32 @@ "\n", "\n", "\n", - " A woman, who requested anonymity because she feared the consequences of violating the police order, said she arrived at the protest that morning with her young child, only to learn en route about the possible risk. They stood waiting on the street for a ride back home, she said, unwilling to take any chances. Irwin Elman, who formerly served as Ontario’s child and youth advocate, sharply criticized protesting parents who planned to remain there with children. “To stay there and not exercise a parent’s duty of care to their children, and put their own rights ahead of the rights of their children, it’s unforgivable and selfish,” he said. Last week, police said children were present in about 25 percent of the heavy trucks at the protest. As the police appeared to be bracing on Thursday to remove the protesters, there were fewer minors among the trucks. Interim Ottawa police chief Steve Bell said in a statement Wednesday that police will be working with the Children’s Aid Society and have “a plan” to keep young people safe in the event of their caregivers’ arrest. He did not elaborate. In a statement, the Children’s Aid Society of Ottawa on Wednesday urged parents to make child care arrangements should they be arrested. If children and parents are separated due to law enforcement action, the organization said, it will “work to reunite families as soon as possible.” Surrounded by five of his eight children, Daryl Sheppard, a teacher from North Bay, Ontario, 220 miles northwest of Ottawa, walked through the protest on Thursday holding an anti-vaccination sign. Mr. Sheppard, 41, said he and his children would remain in Ottawa, in defiance of the emergency orders.\n", + " A woman, who requested anonymity because she feared the consequences of violating the police order, said she arrived at the protest that morning with her young child, only to learn en route about the possible risk. They stood waiting on the street for a ride back home, she said, unwilling to take any chances.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Irwin Elman, who formerly served as Ontario’s child and youth advocate, sharply criticized protesting parents who planned to remain there with children. “To stay there and not exercise a parent’s duty of care to their children, and put their own rights ahead of the rights of their children, it’s unforgivable and selfish,” he said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Last week, police said children were present in about 25 percent of the heavy trucks at the protest. As the police appeared to be bracing on Thursday to remove the protesters, there were fewer minors among the trucks.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Interim Ottawa police chief Steve Bell said in a statement Wednesday that police will be working with the Children’s Aid Society and have “a plan” to keep young people safe in the event of their caregivers’ arrest. He did not elaborate.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In a statement, the Children’s Aid Society of Ottawa on Wednesday urged parents to make child care arrangements should they be arrested. If children and parents are separated due to law enforcement action, the organization said, it will “work to reunite families as soon as possible.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Surrounded by five of his eight children, Daryl Sheppard, a teacher from North Bay, Ontario, 220 miles northwest of Ottawa, walked through the protest on Thursday holding an anti-vaccination sign. Mr. Sheppard, 41, said he and his children would remain in Ottawa, in defiance of the emergency orders.\n", " Evidence\n", "\n", "\n", @@ -4622,7 +7895,12 @@ "\n", "\n", "\n", - " There are plenty of coronavirus deniers and conspiracy theorists among the trucks in downtown Ottawa, but Mike Johnson doesn’t count himself among them. Mr. Johnson, 53, said Thursday he wasn’t even particularly concerned about government mandates or vaccine passports until his son urged him to drive to the nation’s capital to protest against them a few weeks ago.\n", + " There are plenty of coronavirus deniers and conspiracy theorists among the trucks in downtown Ottawa, but Mike Johnson doesn’t count himself among them.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mr. Johnson, 53, said Thursday he wasn’t even particularly concerned about government mandates or vaccine passports until his son urged him to drive to the nation’s capital to protest against them a few weeks ago.\n", " Evidence\n", "\n", "\n", @@ -4632,7 +7910,32 @@ "\n", "\n", "\n", - " “When we turned our headlights toward Ottawa, I don’t think any of us knew what we were driving into,” said Mr. Johnson, a trucker from Niagara, Ontario. “I didn’t realize how bad it was until I got here.” Some among the protesters have links to far-right parties whose support is so low that they hold no seats in the federal Parliament. Mr. Johnson said that he supports one such party, the People’s Party of Canada, whose leader has railed against multiculturalism, immigration and climate change “hysteria.” The logjam in the nation’s capital, the weekslong blockade of an Ontario bridge that is vital to automakers’ supply chains and the media projection of all that onto the global stage have given the protests an outsized megaphone and impact. As the police clamp down on the protests, the so-called “Freedom Convoy” will likely live on long after the last trucks depart — if only as a vivid template of how civil disobedience can be effective, in particular in a liberal democracy where the threshold for law enforcement intervening to stop demonstrations can be high. Much like Occupy Wall Street in 2011, the Canada convoys show that what seem like fringe political movements can gather force at a time of anxiety — and when the world’s cameras are pointed at them. Back then, the driving force was anger over endemic social inequality. These days it is a lethal global pandemic. Mr. Johnson never got vaccinated and didn’t have to — hauling scrap metal around northern Ontario doesn’t require border crossing. He said he believes the coronavirus is real and when people have knocked on the door of his cab to talk about conspiracy theories he refuses to engage.\n", + " “When we turned our headlights toward Ottawa, I don’t think any of us knew what we were driving into,” said Mr. Johnson, a trucker from Niagara, Ontario. “I didn’t realize how bad it was until I got here.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Some among the protesters have links to far-right parties whose support is so low that they hold no seats in the federal Parliament. Mr. Johnson said that he supports one such party, the People’s Party of Canada, whose leader has railed against multiculturalism, immigration and climate change “hysteria.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The logjam in the nation’s capital, the weekslong blockade of an Ontario bridge that is vital to automakers’ supply chains and the media projection of all that onto the global stage have given the protests an outsized megaphone and impact.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " As the police clamp down on the protests, the so-called “Freedom Convoy” will likely live on long after the last trucks depart — if only as a vivid template of how civil disobedience can be effective, in particular in a liberal democracy where the threshold for law enforcement intervening to stop demonstrations can be high.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Much like Occupy Wall Street in 2011, the Canada convoys show that what seem like fringe political movements can gather force at a time of anxiety — and when the world’s cameras are pointed at them. Back then, the driving force was anger over endemic social inequality. These days it is a lethal global pandemic.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mr. Johnson never got vaccinated and didn’t have to — hauling scrap metal around northern Ontario doesn’t require border crossing. He said he believes the coronavirus is real and when people have knocked on the door of his cab to talk about conspiracy theories he refuses to engage.\n", " Evidence\n", "\n", "\n", @@ -4652,7 +7955,12 @@ "\n", "\n", "\n", - " “This has already been a positive accomplishment,” he said, eyeing the police car parked on the lawn of the Parliament building. “Regardless of what happens.” Canada has employed strict restrictions in its efforts to fight the coronavirus pandemic. But unlike in the United States, such measures have received very little pushback or politicization.\n", + " “This has already been a positive accomplishment,” he said, eyeing the police car parked on the lawn of the Parliament building. “Regardless of what happens.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Canada has employed strict restrictions in its efforts to fight the coronavirus pandemic. But unlike in the United States, such measures have received very little pushback or politicization.\n", " Evidence\n", "\n", "\n", @@ -4662,7 +7970,12 @@ "\n", "\n", "\n", - " So a group of them, along with other organizations, assembled a convoy and drove across Canada toward the capital, Ottawa, in protest. The demonstration, which many thought would last only a few days, has turned into a noisy, three-week occupation and has led Prime Minister Justin Trudeau to declare a state of national emergency.\n", + " So a group of them, along with other organizations, assembled a convoy and drove across Canada toward the capital, Ottawa, in protest.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The demonstration, which many thought would last only a few days, has turned into a noisy, three-week occupation and has led Prime Minister Justin Trudeau to declare a state of national emergency.\n", " Evidence\n", "\n", "\n", @@ -4672,64 +7985,164 @@ "\n", "\n", "\n", - " She is a former fitness instructor who has sung and played guitar in a band called “Blind Monday” in Medicine Hat, Alberta. She was a senior member of a splinter party that advocated for Canada’s Western provinces to secede from the country. And now Tamara Lich, 47, has emerged as the public face and the most visible leader of the trucker convoy against pandemic restrictions that has roiled the nation’s capital, shaken the country and prompted Prime Minister Justin Trudeau to take the drastic step of declaring a national public order emergency. That visibility rose on Thursday night when Ms. Lich was arrested in Ottawa. She faced one charge for “counselling to commit the offence of mischief,” the Ottawa police said in a statement on Friday, and was due in court on Friday. Ms. Lich speaks publicly in measured tones, and has become adept at deploying social media — and her Twitter feed — to amplify the protesters’ grievances. At a news conference in the Sheraton Ottawa Hotel on Monday, opened to media other than solely conservative-leaning news outlets for one of the first times, there was an air of gravitas in a room that echoed with the constant coughing of dozens of maskless supporters. Wearing or not wearing a mask has become a potent political statement during the protests and some Ottawa residents have complained of being taunted by protesters. “Some of you might oppose our grievances,” Ms. Lich said to the television cameras. Like other members of the movement, she does not wear a mask. “However, democratic society will always have non-trivial disagreements, and righteous dissidents,” she added. What message discipline exists in the protest movement has come from Ms. Lich, said Jay Hill, the interim leader of the Maverick Party, a small right-of-center group based out of Calgary, Alberta, created to promote the separation of Canada’s three western Prairie Provinces from the rest of the country. Ms. Lich, who worked previously in the energy sector, has deep ties to the group. Even before the convoy assembled, its messaging was Ms. Lich’s preoccupation, according to Mr. Hill, who said she called him several times even before arriving in Ottawa to strategize. “We had a number of discussions about staying on message, about the need in this modern-day world of politics to have a very clearly defined message that is understandable and simple, a message that people can grasp hold of and run with,” he said. “Tamara clearly understands that.” Ms. Lich played a leading role in organizing a GoFundMe campaign for the protests that raised $7.8 million before the crowdfunding site shut it down after receiving “police reports of violence and other unlawful activity,” GoFundMe said. B.J. Dichter, an official spokesman for the convoy, said he joined the effort after Ms. Lich sought help managing the swell of donations flowing into a GoFundMe page. Mr. Dichter has a history of spouting anti-Islamist views and once said that “political Islam” is “rotting away at our society like syphilis.” He has rejected claims of racism.\n", + " She is a former fitness instructor who has sung and played guitar in a band called “Blind Monday” in Medicine Hat, Alberta. She was a senior member of a splinter party that advocated for Canada’s Western provinces to secede from the country.\n", " Evidence\n", "\n", "\n", - "\n", - " Within the occupiers’ tightly managed ground operations, there are military hallmarks, outlined and executed by the several higher-ups who have backgrounds in the armed forces and law enforcement, according to leading members of the group.\n", - " Claim\n", + "\n", + " And now Tamara Lich, 47, has emerged as the public face and the most visible leader of the trucker convoy against pandemic restrictions that has roiled the nation’s capital, shaken the country and prompted Prime Minister Justin Trudeau to take the drastic step of declaring a national public order emergency.\n", + " Evidence\n", "\n", "\n", "\n", - " Their organization includes oversight of each occupied street by a so-called road captain, with sections divided and overseen by block captains who operate below them. Before becoming a prominent face of the protests, Ms. Lich was a personal trainer in Medicine Hat, a town once dubbed “Hell’s Basement” by Rudyard Kipling for its location on top of a huge natural gas field. Zach Smithson, an employee at Body Building Depot Fitness Emporium, where Ms. Lich used to work, said she has become the talk of the town.\n", + " That visibility rose on Thursday night when Ms. Lich was arrested in Ottawa. She faced one charge for “counselling to commit the offence of mischief,” the Ottawa police said in a statement on Friday, and was due in court on Friday.\n", " Evidence\n", "\n", "\n", - "\n", - " “I think we are all very proud of her,” he said. Ms. Lich did not respond to a call and text message requesting an interview.\n", - " Claim\n", + "\n", + " Ms. Lich speaks publicly in measured tones, and has become adept at deploying social media — and her Twitter feed — to amplify the protesters’ grievances.\n", + " Evidence\n", "\n", "\n", "\n", - " With police forces swelling in the area Friday morning, and tow trucks and other heavy equipment poised to move against them, the protesting truck drivers who have occupied downtown Ottawa for weeks were on alert on Friday for imminent police action. Like truckers who had mounted blockades in other parts of Canada, they expressed defiance and the intent to hold firm against any effort to disperse them. But the defiance melted away at the other protest sites as law enforcement moved in, and the big question on Friday was whether the same would happen in Ottawa. Around noon, a spokesman for the protesters, B.J. Dichter, tweeted that “It’s time to leave. @OttawaPolice please allow the remaining trucks to leave in #Peace.”\n", + " At a news conference in the Sheraton Ottawa Hotel on Monday, opened to media other than solely conservative-leaning news outlets for one of the first times, there was an air of gravitas in a room that echoed with the constant coughing of dozens of maskless supporters.\n", " Evidence\n", "\n", "\n", - "\n", - " An hour later, it was unclear how quickly, or if at all, Mr. Dichter’s message would spread or how influential it would be. \n", - " Claim\n", + "\n", + " Wearing or not wearing a mask has become a potent political statement during the protests and some Ottawa residents have complained of being taunted by protesters.\n", + " Evidence\n", "\n", "\n", "\n", - " Some protesters said they have been hearing from friends and family members, begging them to leave. Some of them have no way to leave. They are physically backed into one another, and some of them have let air out of their tires or bled their brake lines. On Thursday, Samantha Dougherty, 32, a protest supporter, patrolled the area around a truck facing Parliament. Inside the truck was her new friend, Lenny Frey, she said, who had been parked there for 20 days and had no intention of leaving. “Nobody is allowed within 6 feet of this truck,” said Ms. Dougherty, a blow horn in one hand and a cigarette in the other. “This truck is not moving, over my dead body.” Any police response would be an overreaction, said another protester, Mark Fenson, 55, who said he was a drug and alcohol counselor from Petersburg, Ontario, and had spent the last 22 months attending anti-vaccine and anti-lockdown protests. Pointing toward the encampment on Thursday, which at times has included recreation activities for children, he said a clampdown would be “going a little far for a bunch of bouncy castles.” Still, Mr. Fenson said he would allow himself to be arrested, although he felt Prime Minister Justin Trudeau and the police were unfairly targeting the protesters. He said he believed that the official forces were acting on behalf of global elites trying to enforce a new world order. “I’m not about to fight against them,” he said. “I’ll deal with them in court.”\n", + " “Some of you might oppose our grievances,” Ms. Lich said to the television cameras. Like other members of the movement, she does not wear a mask. “However, democratic society will always have non-trivial disagreements, and righteous dissidents,” she added.\n", " Evidence\n", "\n", - "
" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "\n", - "\n" - ] - }, - { - "data": { - "text/html": [ - "

nytimes\\cecil-taylor-return-concert.txt

" - ], - "text/plain": [ - "" + "\n", + "\n", + " What message discipline exists in the protest movement has come from Ms. Lich, said Jay Hill, the interim leader of the Maverick Party, a small right-of-center group based out of Calgary, Alberta, created to promote the separation of Canada’s three western Prairie Provinces from the rest of the country. Ms. Lich, who worked previously in the energy sector, has deep ties to the group.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Even before the convoy assembled, its messaging was Ms. Lich’s preoccupation, according to Mr. Hill, who said she called him several times even before arriving in Ottawa to strategize.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “We had a number of discussions about staying on message, about the need in this modern-day world of politics to have a very clearly defined message that is understandable and simple, a message that people can grasp hold of and run with,” he said. “Tamara clearly understands that.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Ms. Lich played a leading role in organizing a GoFundMe campaign for the protests that raised $7.8 million before the crowdfunding site shut it down after receiving “police reports of violence and other unlawful activity,” GoFundMe said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " B.J. Dichter, an official spokesman for the convoy, said he joined the effort after Ms. Lich sought help managing the swell of donations flowing into a GoFundMe page. Mr. Dichter has a history of spouting anti-Islamist views and once said that “political Islam” is “rotting away at our society like syphilis.” He has rejected claims of racism.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Within the occupiers’ tightly managed ground operations, there are military hallmarks, outlined and executed by the several higher-ups who have backgrounds in the armed forces and law enforcement, according to leading members of the group.\n", + " Claim\n", + "\n", + "\n", + "\n", + " Their organization includes oversight of each occupied street by a so-called road captain, with sections divided and overseen by block captains who operate below them.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Before becoming a prominent face of the protests, Ms. Lich was a personal trainer in Medicine Hat, a town once dubbed “Hell’s Basement” by Rudyard Kipling for its location on top of a huge natural gas field.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Zach Smithson, an employee at Body Building Depot Fitness Emporium, where Ms. Lich used to work, said she has become the talk of the town.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “I think we are all very proud of her,” he said.\n", + " Claim\n", + "\n", + "\n", + "\n", + " Ms. Lich did not respond to a call and text message requesting an interview.\n", + " Claim\n", + "\n", + "\n", + "\n", + " With police forces swelling in the area Friday morning, and tow trucks and other heavy equipment poised to move against them, the protesting truck drivers who have occupied downtown Ottawa for weeks were on alert on Friday for imminent police action.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Like truckers who had mounted blockades in other parts of Canada, they expressed defiance and the intent to hold firm against any effort to disperse them. But the defiance melted away at the other protest sites as law enforcement moved in, and the big question on Friday was whether the same would happen in Ottawa.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Around noon, a spokesman for the protesters, B.J. Dichter, tweeted that “It’s time to leave. @OttawaPolice please allow the remaining trucks to leave in #Peace.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " An hour later, it was unclear how quickly, or if at all, Mr. Dichter’s message would spread or how influential it would be. \n", + " Claim\n", + "\n", + "\n", + "\n", + " Some protesters said they have been hearing from friends and family members, begging them to leave. Some of them have no way to leave. They are physically backed into one another, and some of them have let air out of their tires or bled their brake lines.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " On Thursday, Samantha Dougherty, 32, a protest supporter, patrolled the area around a truck facing Parliament. Inside the truck was her new friend, Lenny Frey, she said, who had been parked there for 20 days and had no intention of leaving.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Nobody is allowed within 6 feet of this truck,” said Ms. Dougherty, a blow horn in one hand and a cigarette in the other. “This truck is not moving, over my dead body.” \n", + " Evidence\n", + "\n", + "\n", + "\n", + " Any police response would be an overreaction, said another protester, Mark Fenson, 55, who said he was a drug and alcohol counselor from Petersburg, Ontario, and had spent the last 22 months attending anti-vaccine and anti-lockdown protests. Pointing toward the encampment on Thursday, which at times has included recreation activities for children, he said a clampdown would be “going a little far for a bunch of bouncy castles.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Still, Mr. Fenson said he would allow himself to be arrested, although he felt Prime Minister Justin Trudeau and the police were unfairly targeting the protesters. He said he believed that the official forces were acting on behalf of global elites trying to enforce a new world order. “I’m not about to fight against them,” he said. “I’ll deal with them in court.”\n", + " Evidence\n", + "\n", + "
" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "\n", + "\n" + ] + }, + { + "data": { + "text/html": [ + "

cecil-taylor-return-concert.txt

" + ], + "text/plain": [ + "" ] }, "metadata": {}, @@ -4746,7 +8159,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "df580fed9ff9468aaa970743a3a5e4f3", + "model_id": "86eb94908c7940e7bd07d78626d45d41", "version_major": 2, "version_minor": 0 }, @@ -4767,7 +8180,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "f5791bb088354b348b28ad3ba89df18b", + "model_id": "5c0aab3e4b3c43778531a7adf234fc5a", "version_major": 2, "version_minor": 0 }, @@ -4782,7 +8195,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "Creative jazz at its best is a music of discovery: improvisers caught up together in a moment that’s passing even as they conjure it, with the next already materializing between them. {'label': 'Claim', 'score': 0.656577467918396}\n", + "Creative jazz at its best is a music of discovery: improvisers caught up together in a moment that’s passing even as they conjure it, with the next already materializing between them. {'label': 'Claim', 'score': 0.6565774083137512}\n", "The jazz business, meanwhile, is often about rediscovery, as newly issued recordings from canonized greats frequently outsell and out-stream the releases of contemporary musicians, even those certain to be canonized themselves someday. {'label': 'Claim', 'score': 0.48525550961494446}\n", "This Tuesday’s digital-only arrival of a mostly lost concert from the innovative pianist Cecil Taylor exemplifies both points. Recorded at the Town Hall in New York on Nov. 4, 1973, the music gushes as if it were an uncapped fireplug. Previously unreleased, the relentless 88-minute track “Autumn/Parade” catches the inexhaustible Cecil Taylor Unit in the grip of one revelation after another, playing free jazz, a style of improvisation, in the purest definition of free. {'label': 'Evidence', 'score': 0.9459518194198608}\n", "Unburdened by the boundaries of keys, structures, time signatures and the dictates of each piece’s composer, Taylor, Andrew Cyrille (percussion), Jimmy Lyons (alto saxophone), and Sirone (bass) formed an organic whole, making — discovering — one torrent of sound together. {'label': 'Evidence', 'score': 0.6001240015029907}\n", @@ -4800,7 +8213,27 @@ "“He didn’t just come out of the blue and say, ‘I’m Cecil Taylor. I’m doing what I do, and it’s always been this,’” Cyrille said. “He learned from a lot of other people. He played with Johnny Hodges and Hot Lips Page. He observed Thelonious Monk. Now, the concepts were different, but all of those musicians before him played who they were, too — they played their freedom.” {'label': 'Evidence', 'score': 0.9336212873458862}\n", "Almost 50 years after that Town Hall concert, Cyrille is still doing the same. At Dizzy’s Club on Feb. 5, his longstanding group Trio 3 — with the bassist Reggie Workman and the alto saxophonist Oliver Lake — played its last-ever concerts, with guest appearances from Iyer and the altoist Bruce Williams. Cyrille, though, will continue playing live and recording, and he has performances scheduled at the Big Ears Festival in Knoxville, Tenn., in March. {'label': 'Evidence', 'score': 0.9683184027671814}\n", "Cyrille calls playing “therapeutic” and refers to the music he has made with Taylor and so many others throughout a 60-plus year career as “democratic.” Whether in the ’70s with Taylor or with his own groups today, “It’s about self expression,” he said, “and the spiritual signature of the players.” {'label': 'Evidence', 'score': 0.7505831122398376}\n", - "He recalled the Taylor of the Town Hall era, hearing the other players’ discoveries, which then fed his own. “Whatever the rest of us played, he used it,” he said. “He absorbed music. And in his playing, you hear how he would deal with it as it entered his body, and how he felt about what was being offered to him. It all came out through the piano.” {'label': 'Evidence', 'score': 0.9742513298988342}\n" + "He recalled the Taylor of the Town Hall era, hearing the other players’ discoveries, which then fed his own. “Whatever the rest of us played, he used it,” he said. “He absorbed music. And in his playing, you hear how he would deal with it as it entered his body, and how he felt about what was being offered to him. It all came out through the piano.” {'label': 'Evidence', 'score': 0.9742513298988342}\n", + " text label score\n", + "0 Creative jazz at its best is a music of discov... Claim 0.656577\n", + "1 The jazz business, meanwhile, is often about r... Claim 0.485256\n", + "2 This Tuesday’s digital-only arrival of a mostl... Evidence 0.945952\n", + "3 Unburdened by the boundaries of keys, structur... Evidence 0.600124\n", + "4 “He never told me what to play,” Cyrille, now ... Evidence 0.775267\n", + "5 Or, as Cyrille put it at a 2020 Village Vangua... Evidence 0.473588\n", + "6 Free jazz liberated rhythm sections from the t... Evidence 0.977587\n", + "7 “No other pianist I know plays with such physi... Evidence 0.877224\n", + "8 Davis noted that Taylor’s technique of composi... Evidence 0.982636\n", + "9 But on the nightclub scene of the ’60s and ’70... Evidence 0.572445\n", + "10 The taping of the Town Hall concert was anothe... Evidence 0.987478\n", + "11 With borrowed equipment and much youthful conf... Evidence 0.981360\n", + "12 For Taylor, “free” also meant freedom from the... Evidence 0.985017\n", + "13 The other 88 minutes of music remained on Seib... Evidence 0.952118\n", + "14 Critics and fans often view jazz history as a ... Evidence 0.508099\n", + "15 “He didn’t just come out of the blue and say, ... Evidence 0.933621\n", + "16 Almost 50 years after that Town Hall concert, ... Evidence 0.968318\n", + "17 Cyrille calls playing “therapeutic” and refers... Evidence 0.750583\n", + "18 He recalled the Taylor of the Town Hall era, h... Evidence 0.974251\n" ] }, { @@ -4808,12 +8241,97 @@ "text/html": [ "
\n", "\n", - " Creative jazz at its best is a music of discovery: improvisers caught up together in a moment that’s passing even as they conjure it, with the next already materializing between them. The jazz business, meanwhile, is often about rediscovery, as newly issued recordings from canonized greats frequently outsell and out-stream the releases of contemporary musicians, even those certain to be canonized themselves someday.\n", + " Creative jazz at its best is a music of discovery: improvisers caught up together in a moment that’s passing even as they conjure it, with the next already materializing between them.\n", + " Claim\n", + "\n", + "\n", + "\n", + " The jazz business, meanwhile, is often about rediscovery, as newly issued recordings from canonized greats frequently outsell and out-stream the releases of contemporary musicians, even those certain to be canonized themselves someday.\n", " Claim\n", "\n", "\n", "\n", - " This Tuesday’s digital-only arrival of a mostly lost concert from the innovative pianist Cecil Taylor exemplifies both points. Recorded at the Town Hall in New York on Nov. 4, 1973, the music gushes as if it were an uncapped fireplug. Previously unreleased, the relentless 88-minute track “Autumn/Parade” catches the inexhaustible Cecil Taylor Unit in the grip of one revelation after another, playing free jazz, a style of improvisation, in the purest definition of free. Unburdened by the boundaries of keys, structures, time signatures and the dictates of each piece’s composer, Taylor, Andrew Cyrille (percussion), Jimmy Lyons (alto saxophone), and Sirone (bass) formed an organic whole, making — discovering — one torrent of sound together. “He never told me what to play,” Cyrille, now 82, said of Taylor last week. “He would say, ‘Play what you hear. Play what you want.’” Or, as Cyrille put it at a 2020 Village Vanguard performance, such in-the-moment musical freedom is “playing life.” Free jazz liberated rhythm sections from the traditional role of keeping time in favor of making sound, as Cyrille does throughout “Autumn/Parade.” Taylor, who died in 2018, famously hit his keys with a percussionist’s force, and for all the considerable harmonic excitement of his runs, what’s most immediately striking on the new release is the Unit’s restless, driving polyrhythms, pulsing clots of tones and beats. “No other pianist I know plays with such physicality at the piano,” Kris Davis, a singular improvising pianist and composer in her own right, said in an interview. “Every idea, whether gestural, melodic or harmonic, is expressed through rhythm.” Davis noted that Taylor’s technique of composing fragments of notes in “cells” that he then would “develop, expand and turn upside down” at times appealed more to classical musicians than to jazz musicians, though today his influence is heard widely among improvising pianists. (She cited an expansive list, among them Marilyn Crispell, Jason Moran, Craig Taborn, Myra Melford, Alexander Hawkins, Angelica Sanchez and Vijay Iyer.) But on the nightclub scene of the ’60s and ’70s, genius didn’t always mean drink sales, and being in the vanguard of a new approach meant it could be a challenge finding suitable collaborators. Oblivion, the label putting out this release, has called it “The Return Concert” because in ’73, Taylor, then 44, had been mostly absent from recording and being in the New York scene for five years as he pioneered another aspect of avant-garde jazz life: turning to academia. (He taught at Antioch College and the University of Wisconsin, not without controversy.) The taping of the Town Hall concert was another feat of improvisation. Taylor had recorded significant LPs (“Conquistador!,” “Unit Structures”) for Blue Note in the late 1960s, but, at this point, was independent. Planning a release for Taylor’s nascent Unit Core label, his sort-of manager, David Laura, turned to an unlikely source: a Columbia student, Fred Seibert, who had recorded concerts for the university radio station and released several blues LPs on the independent Oblivion label with cohorts from a Long Island record store. With borrowed equipment and much youthful confidence, Seibert took the gig — and faced a torrent of music. “I felt like I was under Niagara Falls with every sound coming at me from 360 degrees and fighting for space in my head,” said Seibert, who would go on to engineer and produce records for Muse Records before leaving the music industry at the dawn of the 1980s for Hollywood, where he became a storied producer of animated television. (Series launched under his aegis include “Dexter’s Laboratory,” “Powerpuff Girls” and “Adventure Time.”) For Taylor, “free” also meant freedom from the restraints of the commercial music industry. Releasing the first set would have demanded making a double LP and fading down the music at the end of each side, which Seibert considered contrary to its spirit. A shorter second set proved a better fit: Split between a 16-minute solo Taylor piece and a side-length band workout, the encore performance had a limited 1974 release as “Spring of Two Blue J’s.” One of the 2,000 copies made it to the critic Gary Giddins at The Village Voice; he called it “probably my favorite album made in the last year.” The other 88 minutes of music remained on Seibert’s tapes, though he always hoped to put them out in the world. Now, taking advantage of digital music’s lack of physical limitations, he’s unleashing “The Complete, Legendary, Live Return Concert” on the newly reconstituted Oblivion Records. Seibert’s conviction not to fade or shorten the first set, “April/Parade,” and his disinterest in taking on the hassle of traditional distribution has led him to rule out the deluxe CD or vinyl package that such rediscoveries typically enjoy. Critics and fans often view jazz history as a succession of giants making artistic breakthroughs, as the music itself changes in their wake. That accounts for some of the trepidation and revulsion that, decades ago, some critics expressed toward free jazz in general and Taylor in particular — was this the direction it all would go? It perhaps also explains the tendency of some of Taylor’s champions to emphasize what was new in his music (especially techniques inspired by classical composition) to the detriment of its roots in Black American jazz. “He didn’t just come out of the blue and say, ‘I’m Cecil Taylor. I’m doing what I do, and it’s always been this,’” Cyrille said. “He learned from a lot of other people. He played with Johnny Hodges and Hot Lips Page. He observed Thelonious Monk. Now, the concepts were different, but all of those musicians before him played who they were, too — they played their freedom.” Almost 50 years after that Town Hall concert, Cyrille is still doing the same. At Dizzy’s Club on Feb. 5, his longstanding group Trio 3 — with the bassist Reggie Workman and the alto saxophonist Oliver Lake — played its last-ever concerts, with guest appearances from Iyer and the altoist Bruce Williams. Cyrille, though, will continue playing live and recording, and he has performances scheduled at the Big Ears Festival in Knoxville, Tenn., in March. Cyrille calls playing “therapeutic” and refers to the music he has made with Taylor and so many others throughout a 60-plus year career as “democratic.” Whether in the ’70s with Taylor or with his own groups today, “It’s about self expression,” he said, “and the spiritual signature of the players.” He recalled the Taylor of the Town Hall era, hearing the other players’ discoveries, which then fed his own. “Whatever the rest of us played, he used it,” he said. “He absorbed music. And in his playing, you hear how he would deal with it as it entered his body, and how he felt about what was being offered to him. It all came out through the piano.”\n", + " This Tuesday’s digital-only arrival of a mostly lost concert from the innovative pianist Cecil Taylor exemplifies both points. Recorded at the Town Hall in New York on Nov. 4, 1973, the music gushes as if it were an uncapped fireplug. Previously unreleased, the relentless 88-minute track “Autumn/Parade” catches the inexhaustible Cecil Taylor Unit in the grip of one revelation after another, playing free jazz, a style of improvisation, in the purest definition of free.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Unburdened by the boundaries of keys, structures, time signatures and the dictates of each piece’s composer, Taylor, Andrew Cyrille (percussion), Jimmy Lyons (alto saxophone), and Sirone (bass) formed an organic whole, making — discovering — one torrent of sound together.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “He never told me what to play,” Cyrille, now 82, said of Taylor last week. “He would say, ‘Play what you hear. Play what you want.’”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Or, as Cyrille put it at a 2020 Village Vanguard performance, such in-the-moment musical freedom is “playing life.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Free jazz liberated rhythm sections from the traditional role of keeping time in favor of making sound, as Cyrille does throughout “Autumn/Parade.” Taylor, who died in 2018, famously hit his keys with a percussionist’s force, and for all the considerable harmonic excitement of his runs, what’s most immediately striking on the new release is the Unit’s restless, driving polyrhythms, pulsing clots of tones and beats.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “No other pianist I know plays with such physicality at the piano,” Kris Davis, a singular improvising pianist and composer in her own right, said in an interview. “Every idea, whether gestural, melodic or harmonic, is expressed through rhythm.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Davis noted that Taylor’s technique of composing fragments of notes in “cells” that he then would “develop, expand and turn upside down” at times appealed more to classical musicians than to jazz musicians, though today his influence is heard widely among improvising pianists. (She cited an expansive list, among them Marilyn Crispell, Jason Moran, Craig Taborn, Myra Melford, Alexander Hawkins, Angelica Sanchez and Vijay Iyer.)\n", + " Evidence\n", + "\n", + "\n", + "\n", + " But on the nightclub scene of the ’60s and ’70s, genius didn’t always mean drink sales, and being in the vanguard of a new approach meant it could be a challenge finding suitable collaborators. Oblivion, the label putting out this release, has called it “The Return Concert” because in ’73, Taylor, then 44, had been mostly absent from recording and being in the New York scene for five years as he pioneered another aspect of avant-garde jazz life: turning to academia. (He taught at Antioch College and the University of Wisconsin, not without controversy.)\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The taping of the Town Hall concert was another feat of improvisation. Taylor had recorded significant LPs (“Conquistador!,” “Unit Structures”) for Blue Note in the late 1960s, but, at this point, was independent. Planning a release for Taylor’s nascent Unit Core label, his sort-of manager, David Laura, turned to an unlikely source: a Columbia student, Fred Seibert, who had recorded concerts for the university radio station and released several blues LPs on the independent Oblivion label with cohorts from a Long Island record store.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " With borrowed equipment and much youthful confidence, Seibert took the gig — and faced a torrent of music. “I felt like I was under Niagara Falls with every sound coming at me from 360 degrees and fighting for space in my head,” said Seibert, who would go on to engineer and produce records for Muse Records before leaving the music industry at the dawn of the 1980s for Hollywood, where he became a storied producer of animated television. (Series launched under his aegis include “Dexter’s Laboratory,” “Powerpuff Girls” and “Adventure Time.”)\n", + " Evidence\n", + "\n", + "\n", + "\n", + " For Taylor, “free” also meant freedom from the restraints of the commercial music industry. Releasing the first set would have demanded making a double LP and fading down the music at the end of each side, which Seibert considered contrary to its spirit. A shorter second set proved a better fit: Split between a 16-minute solo Taylor piece and a side-length band workout, the encore performance had a limited 1974 release as “Spring of Two Blue J’s.” One of the 2,000 copies made it to the critic Gary Giddins at The Village Voice; he called it “probably my favorite album made in the last year.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The other 88 minutes of music remained on Seibert’s tapes, though he always hoped to put them out in the world. Now, taking advantage of digital music’s lack of physical limitations, he’s unleashing “The Complete, Legendary, Live Return Concert” on the newly reconstituted Oblivion Records. Seibert’s conviction not to fade or shorten the first set, “April/Parade,” and his disinterest in taking on the hassle of traditional distribution has led him to rule out the deluxe CD or vinyl package that such rediscoveries typically enjoy.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Critics and fans often view jazz history as a succession of giants making artistic breakthroughs, as the music itself changes in their wake. That accounts for some of the trepidation and revulsion that, decades ago, some critics expressed toward free jazz in general and Taylor in particular — was this the direction it all would go? It perhaps also explains the tendency of some of Taylor’s champions to emphasize what was new in his music (especially techniques inspired by classical composition) to the detriment of its roots in Black American jazz.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “He didn’t just come out of the blue and say, ‘I’m Cecil Taylor. I’m doing what I do, and it’s always been this,’” Cyrille said. “He learned from a lot of other people. He played with Johnny Hodges and Hot Lips Page. He observed Thelonious Monk. Now, the concepts were different, but all of those musicians before him played who they were, too — they played their freedom.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Almost 50 years after that Town Hall concert, Cyrille is still doing the same. At Dizzy’s Club on Feb. 5, his longstanding group Trio 3 — with the bassist Reggie Workman and the alto saxophonist Oliver Lake — played its last-ever concerts, with guest appearances from Iyer and the altoist Bruce Williams. Cyrille, though, will continue playing live and recording, and he has performances scheduled at the Big Ears Festival in Knoxville, Tenn., in March.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Cyrille calls playing “therapeutic” and refers to the music he has made with Taylor and so many others throughout a 60-plus year career as “democratic.” Whether in the ’70s with Taylor or with his own groups today, “It’s about self expression,” he said, “and the spiritual signature of the players.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " He recalled the Taylor of the Town Hall era, hearing the other players’ discoveries, which then fed his own. “Whatever the rest of us played, he used it,” he said. “He absorbed music. And in his playing, you hear how he would deal with it as it entered his body, and how he felt about what was being offered to him. It all came out through the piano.”\n", " Evidence\n", "\n", "
" @@ -4837,7 +8355,7 @@ { "data": { "text/html": [ - "

nytimes\\child-tax-credit-poverty-benefits.txt

" + "

child-tax-credit-poverty-benefits.txt

" ], "text/plain": [ "" @@ -4857,7 +8375,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "063ce6060ef94959a6670dc8276ac096", + "model_id": "f0f4d5ee309d4b4ea7bca3b1e2e1039a", "version_major": 2, "version_minor": 0 }, @@ -4878,7 +8396,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "e74742106f8e4ea5b941022fd7e552cb", + "model_id": "12822e91dc7a445f80397520e870573c", "version_major": 2, "version_minor": 0 }, @@ -4896,12 +8414,12 @@ "Last summer the vast majority of American families with children saw money appear in their bank accounts without doing anything at all. Thanks to legislation passed by Democrats earlier in the year, an expanded Child Tax Credit automatically sent out $300 each month through the rest of the year for every child under 6 and $250 for older ones to people who regularly file taxes. It showcased what government can do when it works at its most efficient: seamlessly deliver meaningful benefits without requiring people to take much, or really any, action. {'label': 'Evidence', 'score': 0.9909952282905579}\n", "But for the roughly 2.3 million children whose families hadn’t recently filed income taxes, the Child Tax Credit showcased all the worst instincts of governmental bureaucracy. The I.R.S. needed to know how many children they had, how much they earned and where they lived in order to send these families their money. Other government agencies probably had at least some of that data. But at first the I.R.S. wanted to make this group of people file tax returns instead of hunting down the information itself. It was eventually swayed to track it down, and yet when it started a portal for anyone it didn’t find, the form didn’t work on a cellphone, was available only in English, required an email address and came with densely written instructions. {'label': 'Evidence', 'score': 0.656493604183197}\n", "The expanded Child Tax Credit payments substantially reduced hardship, lowering the monthly child poverty rate by 30 percent, which meant 3.7 million fewer children lived in poverty in December — one of the most significant reductions in child poverty in generations — after which the payments stopped, thanks to congressional inaction. But it had been projected to cut child poverty in half. To achieve that goal, it would have had to successfully reach all the parents who were owed a payment. {'label': 'Evidence', 'score': 0.9898062348365784}\n", - "The excitement around policymaking is almost always in the moments after ink dries on a bill creating something new. But if a benefit fails to reach the people it’s designed for, it may as well not exist at all. Making government benefits more accessible and efficient doesn’t usually get the spotlight. But it’s often the difference between a family getting what it needs to survive and falling into hardship and destitution. It’s the glue of our democracy. {'label': 'Evidence', 'score': 0.7937799692153931}\n", + "The excitement around policymaking is almost always in the moments after ink dries on a bill creating something new. But if a benefit fails to reach the people it’s designed for, it may as well not exist at all. Making government benefits more accessible and efficient doesn’t usually get the spotlight. But it’s often the difference between a family getting what it needs to survive and falling into hardship and destitution. It’s the glue of our democracy. {'label': 'Evidence', 'score': 0.7937800288200378}\n", "President Biden appears to have taken note of this. Late last year, he issued an executive order meant to improve the “customer experience and service delivery” of the entire federal government. He put forward some ideas, including moving Social Security benefit claims and passport renewals online, reducing paperwork for student loan forgiveness and certifying low-income people for all the assistance they qualify for at once, rather than making them seek out benefits program by program. More important, he shifted the focus of government toward whether or not the customers — that’s us — are having a good experience getting what we deserve. {'label': 'Evidence', 'score': 0.8960623741149902}\n", "It’s a direction all lawmakers, from the federal level down to counties and cities, should follow. {'label': 'Claim', 'score': 0.5733123421669006}\n", "One of the biggest barriers to government benefits is all of the red tape to untangle, particularly for programs that serve low-income people. They were the ones wrangling with the I.R.S.’s nonfiler portal while others got their payments automatically. Benefits delivered through the tax code, which flow so easily that many people don’t think of them as government benefits at all, mostly help the already well-off. Programs for the poor, on the other hand, tend to be bloated with barriers like income tests, work requirements and in-person interviews. It’s not just about applying once, either; many require people to continually recertify, going through the process over and over again. {'label': 'Evidence', 'score': 0.9672551155090332}\n", "The hassle doesn’t just cost time and effort. It comes with a psychological cost. “You get mad at the D.M.V. because it takes hours to do something that should only take minutes,” Pamela Herd, a sociologist at Georgetown, said. “These kind of stresses can be really large when you’re talking about people who are on a knife’s edge in terms of their ability to pay their rent or feed their children.” {'label': 'Evidence', 'score': 0.9654051661491394}\n", - "The barriers are terrible because they separate people from the help they desperately need and are technically owed. But the trouble runs deeper. “If you have negative interactions with the government, you’re going to think negatively about the government and the government’s capacity to actually meet broader social needs,” Dr. Herd said. {'label': 'Evidence', 'score': 0.9196158647537231}\n", + "The barriers are terrible because they separate people from the help they desperately need and are technically owed. But the trouble runs deeper. “If you have negative interactions with the government, you’re going to think negatively about the government and the government’s capacity to actually meet broader social needs,” Dr. Herd said. {'label': 'Evidence', 'score': 0.9196157455444336}\n", "Why would Americans believe politicians who say they’ll create new ways to help them if past promises ended in frustration and empty hands? That distrust, in turn, weakens our democracy, the notion that we elect people to lead us who will listen to us and improve our lives. {'label': 'Evidence', 'score': 0.6077486276626587}\n", "“Every interaction that a person has with their government, whether that’s a traffic stop or going to the D.M.V. or getting access to SNAP — that’s where democracy is happening,” Elizabeth Linos, a behavioral economist at the University of California, Berkeley, told me. “If we get all of those small interactions right, then we have created a society where the government is responsive to its citizens, and citizens trust that it will deliver when it says it’ll deliver.” {'label': 'Evidence', 'score': 0.9419551491737366}\n", "Mr. Biden’s executive order notes that it is about both getting people what they need and proving that “democracy still works.” And yet it’s clear his administration has only partly learned its own lessons. Just look at its two approaches to free at-home Covid tests. All Americans can go to a Postal Service website, enter their addresses, and sign up in minutes to receive four free tests per household. {'label': 'Evidence', 'score': 0.5946587324142456}\n", @@ -4920,7 +8438,54 @@ "That’s just what Code for America helped set up in Minnesota. It worked with the state to create a new, simplified website where residents can apply for nine programs at once — including food stamps, child care subsidies and housing assistance — that has reduced the time involved from over an hour to less than 12 minutes. It works on a mobile phone, is available in Spanish, makes uploading documents easier, and doesn’t require a log-in. The questions it asks are in clear language and redundant ones are eliminated. Ninety-four percent of people using the new site say they had a positive experience. The organization plans to work with a number of other states to do something similar in the next few years. {'label': 'Evidence', 'score': 0.9362697601318359}\n", "The simpler the requirements of a program — making it universal so that people don’t have to verify their incomes over and over, say — the fewer hurdles people will have to clear. When programs must include eligibility requirements, more of the burden of deciphering whether each person meets them should be placed on the government instead of the individual. Social Security, for example, tracks our incomes, so that when it comes time to claim benefits, we’re not submitting pay stubs from a lifetime of work. {'label': 'Evidence', 'score': 0.9804020524024963}\n", "Something as small as requiring a log-in for a government website creates a barrier for people without computers who can’t remember and juggle a bunch of passwords. “Any kind of barriers are amplified when people are stressed,” Eric Giannella, the organization’s data science director, noted. Instead, Code for America uses smart links that allow people to authenticate themselves without a log-in. {'label': 'Evidence', 'score': 0.9799228310585022}\n", - "But Code for America “does want to put itself out of business,” Mr. Giannella said. The point is not to do it for government, but to push government to do things better. “Sometimes,” Tracey Patterson, the vice president of Code for America, told me, “the idea that everything needs to change in order for it to be better is the easiest way for nothing to get done.” {'label': 'Rebuttal', 'score': 0.49183401465415955}\n" + "But Code for America “does want to put itself out of business,” Mr. Giannella said. The point is not to do it for government, but to push government to do things better. “Sometimes,” Tracey Patterson, the vice president of Code for America, told me, “the idea that everything needs to change in order for it to be better is the easiest way for nothing to get done.” {'label': 'Rebuttal', 'score': 0.4918340742588043}\n", + " text label \\\n", + "0 Last summer the vast majority of American fami... Evidence \n", + "1 But for the roughly 2.3 million children whose... Evidence \n", + "2 The expanded Child Tax Credit payments substan... Evidence \n", + "3 The excitement around policymaking is almost a... Evidence \n", + "4 President Biden appears to have taken note of ... Evidence \n", + "5 It’s a direction all lawmakers, from the feder... Claim \n", + "6 One of the biggest barriers to government bene... Evidence \n", + "7 The hassle doesn’t just cost time and effort. ... Evidence \n", + "8 The barriers are terrible because they separat... Evidence \n", + "9 Why would Americans believe politicians who sa... Evidence \n", + "10 “Every interaction that a person has with thei... Evidence \n", + "11 Mr. Biden’s executive order notes that it is a... Evidence \n", + "12 But when a household runs out of its four free... Evidence \n", + "13 There are trade-offs, given which goals are pr... Evidence \n", + "14 It used to be that experts believed those who ... Evidence \n", + "15 “The pandemic gave us an opportunity to rethin... Evidence \n", + "16 The organization Code for America has long bee... Evidence \n", + "17 Ultimately, the smartest thing isn’t to create... Concluding Statement \n", + "18 That’s just what Code for America helped set u... Evidence \n", + "19 The simpler the requirements of a program — ma... Evidence \n", + "20 Something as small as requiring a log-in for a... Evidence \n", + "21 But Code for America “does want to put itself ... Rebuttal \n", + "\n", + " score \n", + "0 0.990995 \n", + "1 0.656494 \n", + "2 0.989806 \n", + "3 0.793780 \n", + "4 0.896062 \n", + "5 0.573312 \n", + "6 0.967255 \n", + "7 0.965405 \n", + "8 0.919616 \n", + "9 0.607749 \n", + "10 0.941955 \n", + "11 0.594659 \n", + "12 0.553965 \n", + "13 0.489389 \n", + "14 0.794851 \n", + "15 0.972873 \n", + "16 0.990614 \n", + "17 0.886154 \n", + "18 0.936270 \n", + "19 0.980402 \n", + "20 0.979923 \n", + "21 0.491834 \n" ] }, { @@ -4928,7 +8493,27 @@ "text/html": [ "
\n", "\n", - " Last summer the vast majority of American families with children saw money appear in their bank accounts without doing anything at all. Thanks to legislation passed by Democrats earlier in the year, an expanded Child Tax Credit automatically sent out $300 each month through the rest of the year for every child under 6 and $250 for older ones to people who regularly file taxes. It showcased what government can do when it works at its most efficient: seamlessly deliver meaningful benefits without requiring people to take much, or really any, action. But for the roughly 2.3 million children whose families hadn’t recently filed income taxes, the Child Tax Credit showcased all the worst instincts of governmental bureaucracy. The I.R.S. needed to know how many children they had, how much they earned and where they lived in order to send these families their money. Other government agencies probably had at least some of that data. But at first the I.R.S. wanted to make this group of people file tax returns instead of hunting down the information itself. It was eventually swayed to track it down, and yet when it started a portal for anyone it didn’t find, the form didn’t work on a cellphone, was available only in English, required an email address and came with densely written instructions. The expanded Child Tax Credit payments substantially reduced hardship, lowering the monthly child poverty rate by 30 percent, which meant 3.7 million fewer children lived in poverty in December — one of the most significant reductions in child poverty in generations — after which the payments stopped, thanks to congressional inaction. But it had been projected to cut child poverty in half. To achieve that goal, it would have had to successfully reach all the parents who were owed a payment. The excitement around policymaking is almost always in the moments after ink dries on a bill creating something new. But if a benefit fails to reach the people it’s designed for, it may as well not exist at all. Making government benefits more accessible and efficient doesn’t usually get the spotlight. But it’s often the difference between a family getting what it needs to survive and falling into hardship and destitution. It’s the glue of our democracy. President Biden appears to have taken note of this. Late last year, he issued an executive order meant to improve the “customer experience and service delivery” of the entire federal government. He put forward some ideas, including moving Social Security benefit claims and passport renewals online, reducing paperwork for student loan forgiveness and certifying low-income people for all the assistance they qualify for at once, rather than making them seek out benefits program by program. More important, he shifted the focus of government toward whether or not the customers — that’s us — are having a good experience getting what we deserve.\n", + " Last summer the vast majority of American families with children saw money appear in their bank accounts without doing anything at all. Thanks to legislation passed by Democrats earlier in the year, an expanded Child Tax Credit automatically sent out $300 each month through the rest of the year for every child under 6 and $250 for older ones to people who regularly file taxes. It showcased what government can do when it works at its most efficient: seamlessly deliver meaningful benefits without requiring people to take much, or really any, action.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " But for the roughly 2.3 million children whose families hadn’t recently filed income taxes, the Child Tax Credit showcased all the worst instincts of governmental bureaucracy. The I.R.S. needed to know how many children they had, how much they earned and where they lived in order to send these families their money. Other government agencies probably had at least some of that data. But at first the I.R.S. wanted to make this group of people file tax returns instead of hunting down the information itself. It was eventually swayed to track it down, and yet when it started a portal for anyone it didn’t find, the form didn’t work on a cellphone, was available only in English, required an email address and came with densely written instructions.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The expanded Child Tax Credit payments substantially reduced hardship, lowering the monthly child poverty rate by 30 percent, which meant 3.7 million fewer children lived in poverty in December — one of the most significant reductions in child poverty in generations — after which the payments stopped, thanks to congressional inaction. But it had been projected to cut child poverty in half. To achieve that goal, it would have had to successfully reach all the parents who were owed a payment.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The excitement around policymaking is almost always in the moments after ink dries on a bill creating something new. But if a benefit fails to reach the people it’s designed for, it may as well not exist at all. Making government benefits more accessible and efficient doesn’t usually get the spotlight. But it’s often the difference between a family getting what it needs to survive and falling into hardship and destitution. It’s the glue of our democracy.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " President Biden appears to have taken note of this. Late last year, he issued an executive order meant to improve the “customer experience and service delivery” of the entire federal government. He put forward some ideas, including moving Social Security benefit claims and passport renewals online, reducing paperwork for student loan forgiveness and certifying low-income people for all the assistance they qualify for at once, rather than making them seek out benefits program by program. More important, he shifted the focus of government toward whether or not the customers — that’s us — are having a good experience getting what we deserve.\n", " Evidence\n", "\n", "\n", @@ -4938,7 +8523,57 @@ "\n", "\n", "\n", - " One of the biggest barriers to government benefits is all of the red tape to untangle, particularly for programs that serve low-income people. They were the ones wrangling with the I.R.S.’s nonfiler portal while others got their payments automatically. Benefits delivered through the tax code, which flow so easily that many people don’t think of them as government benefits at all, mostly help the already well-off. Programs for the poor, on the other hand, tend to be bloated with barriers like income tests, work requirements and in-person interviews. It’s not just about applying once, either; many require people to continually recertify, going through the process over and over again. The hassle doesn’t just cost time and effort. It comes with a psychological cost. “You get mad at the D.M.V. because it takes hours to do something that should only take minutes,” Pamela Herd, a sociologist at Georgetown, said. “These kind of stresses can be really large when you’re talking about people who are on a knife’s edge in terms of their ability to pay their rent or feed their children.” The barriers are terrible because they separate people from the help they desperately need and are technically owed. But the trouble runs deeper. “If you have negative interactions with the government, you’re going to think negatively about the government and the government’s capacity to actually meet broader social needs,” Dr. Herd said. Why would Americans believe politicians who say they’ll create new ways to help them if past promises ended in frustration and empty hands? That distrust, in turn, weakens our democracy, the notion that we elect people to lead us who will listen to us and improve our lives. “Every interaction that a person has with their government, whether that’s a traffic stop or going to the D.M.V. or getting access to SNAP — that’s where democracy is happening,” Elizabeth Linos, a behavioral economist at the University of California, Berkeley, told me. “If we get all of those small interactions right, then we have created a society where the government is responsive to its citizens, and citizens trust that it will deliver when it says it’ll deliver.” Mr. Biden’s executive order notes that it is about both getting people what they need and proving that “democracy still works.” And yet it’s clear his administration has only partly learned its own lessons. Just look at its two approaches to free at-home Covid tests. All Americans can go to a Postal Service website, enter their addresses, and sign up in minutes to receive four free tests per household. But when a household runs out of its four free tests, its members have to wrangle with the other option the administration has set up. Insurers have been ordered to cover eight tests per month free. That of course leaves out the 27.4 million people without insurance. Even if you have it, if you don’t buy the tests at your insurer’s preferred pharmacy you have to pay up front, hold on to your receipt and maybe even the test box, and submit a claim for reimbursement, then fight to get it processed. There are trade-offs, given which goals are prioritized. Is it most important to reduce the use of government resources? Is it most important to keep the supposedly undeserving from sneaking in? Or is the goal to ensure that as many people who are eligible get the benefits they deserve as soon as possible? It used to be that experts believed those who needed help the most would work the hardest to get it, overcoming any barriers thrown in their way. But that isn’t true. Work requirements, for example, have mostly kept people off welfare and further impoverished them, and when briefly instituted in Arkansas’s Medicaid program, a work requirement kicked people off — many of whom actually qualified — without increasing how many worked. “The pandemic gave us an opportunity to rethink whether or not all of those hurdles were necessary,” Dr. Linos said. More people were made eligible for unemployment insurance. Stimulus checks were sent to most Americans with no strings attached. Rental assistance rules were loosened to get the money flowing faster. The organization Code for America has long been focused on how to make it easier for people to get the benefits they’re eligible for. So when Democrats expanded Child Tax Credit payments, it built a simple site for nonfilers to claim them. The site sought only information the I.R.S. wasn’t able to get itself, like bank account details, and didn’t require people to track down a bunch of documents. The questions were simplified. It was available in Spanish as well as English. Families were able to fill out the form in 10 to 15 minutes, and virtually all of them didn’t need help. More than 115,000 households used the website to claim $438 million in less than three months, about a quarter of whom had never filed taxes before.\n", + " One of the biggest barriers to government benefits is all of the red tape to untangle, particularly for programs that serve low-income people. They were the ones wrangling with the I.R.S.’s nonfiler portal while others got their payments automatically. Benefits delivered through the tax code, which flow so easily that many people don’t think of them as government benefits at all, mostly help the already well-off. Programs for the poor, on the other hand, tend to be bloated with barriers like income tests, work requirements and in-person interviews. It’s not just about applying once, either; many require people to continually recertify, going through the process over and over again.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The hassle doesn’t just cost time and effort. It comes with a psychological cost. “You get mad at the D.M.V. because it takes hours to do something that should only take minutes,” Pamela Herd, a sociologist at Georgetown, said. “These kind of stresses can be really large when you’re talking about people who are on a knife’s edge in terms of their ability to pay their rent or feed their children.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The barriers are terrible because they separate people from the help they desperately need and are technically owed. But the trouble runs deeper. “If you have negative interactions with the government, you’re going to think negatively about the government and the government’s capacity to actually meet broader social needs,” Dr. Herd said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Why would Americans believe politicians who say they’ll create new ways to help them if past promises ended in frustration and empty hands? That distrust, in turn, weakens our democracy, the notion that we elect people to lead us who will listen to us and improve our lives.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Every interaction that a person has with their government, whether that’s a traffic stop or going to the D.M.V. or getting access to SNAP — that’s where democracy is happening,” Elizabeth Linos, a behavioral economist at the University of California, Berkeley, told me. “If we get all of those small interactions right, then we have created a society where the government is responsive to its citizens, and citizens trust that it will deliver when it says it’ll deliver.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mr. Biden’s executive order notes that it is about both getting people what they need and proving that “democracy still works.” And yet it’s clear his administration has only partly learned its own lessons. Just look at its two approaches to free at-home Covid tests. All Americans can go to a Postal Service website, enter their addresses, and sign up in minutes to receive four free tests per household.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " But when a household runs out of its four free tests, its members have to wrangle with the other option the administration has set up. Insurers have been ordered to cover eight tests per month free. That of course leaves out the 27.4 million people without insurance. Even if you have it, if you don’t buy the tests at your insurer’s preferred pharmacy you have to pay up front, hold on to your receipt and maybe even the test box, and submit a claim for reimbursement, then fight to get it processed.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " There are trade-offs, given which goals are prioritized. Is it most important to reduce the use of government resources? Is it most important to keep the supposedly undeserving from sneaking in? Or is the goal to ensure that as many people who are eligible get the benefits they deserve as soon as possible?\n", + " Evidence\n", + "\n", + "\n", + "\n", + " It used to be that experts believed those who needed help the most would work the hardest to get it, overcoming any barriers thrown in their way. But that isn’t true. Work requirements, for example, have mostly kept people off welfare and further impoverished them, and when briefly instituted in Arkansas’s Medicaid program, a work requirement kicked people off — many of whom actually qualified — without increasing how many worked.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “The pandemic gave us an opportunity to rethink whether or not all of those hurdles were necessary,” Dr. Linos said. More people were made eligible for unemployment insurance. Stimulus checks were sent to most Americans with no strings attached. Rental assistance rules were loosened to get the money flowing faster.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The organization Code for America has long been focused on how to make it easier for people to get the benefits they’re eligible for. So when Democrats expanded Child Tax Credit payments, it built a simple site for nonfilers to claim them. The site sought only information the I.R.S. wasn’t able to get itself, like bank account details, and didn’t require people to track down a bunch of documents. The questions were simplified. It was available in Spanish as well as English. Families were able to fill out the form in 10 to 15 minutes, and virtually all of them didn’t need help. More than 115,000 households used the website to claim $438 million in less than three months, about a quarter of whom had never filed taxes before.\n", " Evidence\n", "\n", "\n", @@ -4948,7 +8583,17 @@ "\n", "\n", "\n", - " That’s just what Code for America helped set up in Minnesota. It worked with the state to create a new, simplified website where residents can apply for nine programs at once — including food stamps, child care subsidies and housing assistance — that has reduced the time involved from over an hour to less than 12 minutes. It works on a mobile phone, is available in Spanish, makes uploading documents easier, and doesn’t require a log-in. The questions it asks are in clear language and redundant ones are eliminated. Ninety-four percent of people using the new site say they had a positive experience. The organization plans to work with a number of other states to do something similar in the next few years. The simpler the requirements of a program — making it universal so that people don’t have to verify their incomes over and over, say — the fewer hurdles people will have to clear. When programs must include eligibility requirements, more of the burden of deciphering whether each person meets them should be placed on the government instead of the individual. Social Security, for example, tracks our incomes, so that when it comes time to claim benefits, we’re not submitting pay stubs from a lifetime of work. Something as small as requiring a log-in for a government website creates a barrier for people without computers who can’t remember and juggle a bunch of passwords. “Any kind of barriers are amplified when people are stressed,” Eric Giannella, the organization’s data science director, noted. Instead, Code for America uses smart links that allow people to authenticate themselves without a log-in.\n", + " That’s just what Code for America helped set up in Minnesota. It worked with the state to create a new, simplified website where residents can apply for nine programs at once — including food stamps, child care subsidies and housing assistance — that has reduced the time involved from over an hour to less than 12 minutes. It works on a mobile phone, is available in Spanish, makes uploading documents easier, and doesn’t require a log-in. The questions it asks are in clear language and redundant ones are eliminated. Ninety-four percent of people using the new site say they had a positive experience. The organization plans to work with a number of other states to do something similar in the next few years.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The simpler the requirements of a program — making it universal so that people don’t have to verify their incomes over and over, say — the fewer hurdles people will have to clear. When programs must include eligibility requirements, more of the burden of deciphering whether each person meets them should be placed on the government instead of the individual. Social Security, for example, tracks our incomes, so that when it comes time to claim benefits, we’re not submitting pay stubs from a lifetime of work.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Something as small as requiring a log-in for a government website creates a barrier for people without computers who can’t remember and juggle a bunch of passwords. “Any kind of barriers are amplified when people are stressed,” Eric Giannella, the organization’s data science director, noted. Instead, Code for America uses smart links that allow people to authenticate themselves without a log-in.\n", " Evidence\n", "\n", "\n", @@ -4977,7 +8622,7 @@ { "data": { "text/html": [ - "

nytimes\\china-coronavirus-vaccines.txt

" + "

china-coronavirus-vaccines.txt

" ], "text/plain": [ "" @@ -4997,7 +8642,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "93c9825827024ecb9bcb968b6d83d959", + "model_id": "062ec70fc64b4cbdbbab5edebba6f64d", "version_major": 2, "version_minor": 0 }, @@ -5018,7 +8663,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "672abe76c7e64bd7ab8fef0c297efcc2", + "model_id": "cd129c44166a4036a0e57eb22c984697", "version_major": 2, "version_minor": 0 }, @@ -5058,19 +8703,52 @@ "The final version of the mRNA vaccines produced by Pfizer and Moderna came together with the help of a multibillion dollar program under the Trump administration called Operation Warp Speed. The Food and Drug Administration determined in 2020 that the BioNTech vaccine has an efficacy rate of 95 percent. {'label': 'Evidence', 'score': 0.9433559775352478}\n", "“This is not trivial technology,” said John P. Moore, a virologist at Weill Cornell Medicine. “So trying to reverse engineer it from scratch is one of those things where you ask, ‘What could possibly go wrong?’” {'label': 'Evidence', 'score': 0.5514190196990967}\n", "If China is pursing a program similar to Operation Warp Speed, it has not said anything about it publicly. One of the private companies helping to develop ARCoVax is Suzhou Abogen, a start-up founded in 2019 by a scientist who used to work at Moderna. Before the pandemic, Abogen was developing mRNA drugs for cancer, one of China’s biggest epidemics. {'label': 'Evidence', 'score': 0.9877480268478394}\n", - "The other drugmaker, Walvax, is a publicly listed pharmaceutical group. The two companies’ partnership with the Chinese Academy of Military Medical Sciences suggests strong government backing, though Beijing has not mentioned an official collaboration. {'label': 'Evidence', 'score': 0.8902856707572937}\n", - "Last year, the United States added the Chinese Academy of Military Medical Sciences to an entity list, a federal trade restriction list, accusing it of using biotechnology to support activities like “brain control weaponry.” The designation would make it difficult to export any final vaccine product it develops. {'label': 'Evidence', 'score': 0.8679938912391663}\n" + "The other drugmaker, Walvax, is a publicly listed pharmaceutical group. The two companies’ partnership with the Chinese Academy of Military Medical Sciences suggests strong government backing, though Beijing has not mentioned an official collaboration. {'label': 'Evidence', 'score': 0.8902856707572937}\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ + "Last year, the United States added the Chinese Academy of Military Medical Sciences to an entity list, a federal trade restriction list, accusing it of using biotechnology to support activities like “brain control weaponry.” The designation would make it difficult to export any final vaccine product it develops. {'label': 'Evidence', 'score': 0.8679938912391663}\n", "Researchers recently published the details of an initial trial of the ARCoVax vaccine involving 120 volunteers. They found it to be safe, and said it produced a moderate level of antibodies but caused more side effects, like fever, than the BioNTech shot. {'label': 'Evidence', 'score': 0.8565350770950317}\n", "Abogen and Walvax did not respond to requests for comment. A senior executive at Walvax told Reuters last month that it had recruited 28,000 people for a large, Phase 3 clinical trial. ARCoVax is also being tested as a booster. {'label': 'Evidence', 'score': 0.9396300911903381}\n", "One recent study showed that two doses of Sinovac boosted with an mRNA shot offered strong antibody protection against both the Delta and Omicron variants. But it is still unclear when the ARCoVax vaccine will be available in China. {'label': 'Evidence', 'score': 0.85788893699646}\n", "And as the weeks go by, approval for BioNTech seems to grow more elusive. {'label': 'Claim', 'score': 0.9286382794380188}\n", - "“It’s very difficult to predict actually when we will get approval,” said Sean Marett, chief business and commercial officer of BioNTech, speaking at a health care conference last month. “But China remains for us an extremely important market,” he added. “We’re very, very committed to it.” {'label': 'Evidence', 'score': 0.8878307938575745}\n" + "“It’s very difficult to predict actually when we will get approval,” said Sean Marett, chief business and commercial officer of BioNTech, speaking at a health care conference last month. “But China remains for us an extremely important market,” he added. “We’re very, very committed to it.” {'label': 'Evidence', 'score': 0.8878307938575745}\n", + " text label score\n", + "0 China has done everything in its power to keep... Claim 0.713952\n", + "1 It has kept cases and deaths remarkably low th... Evidence 0.846484\n", + "2 But two years into the pandemic, China’s 1.4 b... Rebuttal 0.831698\n", + "3 The effectiveness of Chinese vaccines has been... Evidence 0.914327\n", + "4 China’s lack of an mRNA shot — and its delay i... Evidence 0.652310\n", + "5 Under Xi Jinping, China’s top leader, the coun... Evidence 0.666186\n", + "6 China is so committed to competing with the Un... Evidence 0.811896\n", + "7 “We don’t know how decisions are made nowadays... Evidence 0.777017\n", + "8 “They are presenting to the world that they ar... Evidence 0.927261\n", + "9 China says its virus policies, which include s... Evidence 0.959416\n", + "10 In recent months, officials have begun openly ... Lead 0.589086\n", + "11 China last week approved for emergency use a C... Evidence 0.503106\n", + "12 It wasn’t that long ago that China appeared re... Evidence 0.989414\n", + "13 That optimism has since faded. Chinese authori... Evidence 0.452594\n", + "14 Fosun did not respond to a request for comment. Claim 0.724331\n", + "15 The approval process for Sinopharm and Sinovac... Evidence 0.976523\n", + "16 Vaccines from Sinovac and Sinopharm help preve... Evidence 0.958535\n", + "17 Though the W.H.O. has signed off on both Chine... Claim 0.449753\n", + "18 As approval for BioNTech languished, China sai... Evidence 0.987297\n", + "19 Had that happened, it would have been a remark... Claim 0.709264\n", + "20 Unlike traditional vaccines that use an inacti... Evidence 0.902841\n", + "21 The first mRNA vaccines for the coronavirus we... Evidence 0.937773\n", + "22 The final version of the mRNA vaccines produce... Evidence 0.943356\n", + "23 “This is not trivial technology,” said John P.... Evidence 0.551419\n", + "24 If China is pursing a program similar to Opera... Evidence 0.987748\n", + "25 The other drugmaker, Walvax, is a publicly lis... Evidence 0.890286\n", + "26 Last year, the United States added the Chinese... Evidence 0.867994\n", + "27 Researchers recently published the details of ... Evidence 0.856535\n", + "28 Abogen and Walvax did not respond to requests ... Evidence 0.939630\n", + "29 One recent study showed that two doses of Sino... Evidence 0.857889\n", + "30 And as the weeks go by, approval for BioNTech ... Claim 0.928638\n", + "31 “It’s very difficult to predict actually when ... Evidence 0.887831\n" ] }, { @@ -5093,47 +8771,137 @@ "\n", "\n", "\n", - " The effectiveness of Chinese vaccines has been in doubt — partly because they use a century-old method for inoculation. Last spring, the country said it would approve BioNTech, the German mRNA shot made in partnership with Pfizer. Months later, China said that it was also close to producing its own mRNA vaccine. Neither are available today. China’s lack of an mRNA shot — and its delay in approving a viable foreign option — has poked holes in Beijing’s victorious pandemic narrative and prompted experts to question whether the country’s go-it-alone approach is less triumphant than officials would have the world believe. Under Xi Jinping, China’s top leader, the country has turned more inward, promoting self-reliance and championing development in areas like semiconductors and other technology. The delay in recognizing a foreign mRNA vaccine now appears to be a part of that deeply political exercise. China is so committed to competing with the United States and the West on science and technology that some in the scientific community say it is hard to imagine that the state hasn’t pulled out all the stops to develop a homegrown mRNA vaccine. That China has fallen behind on that front, and failed to approve a readily available foreign option, has left many experts baffled. “We don’t know how decisions are made nowadays in China, but a better vaccine would definitely help in maintaining a zero-Covid policy,” said Jin Dongyan, a virologist at the University of Hong Kong who has urged his peers in mainland China to approve the BioNTech vaccine. “They are presenting to the world that they are doing well in vaccine development,” he said of officials in Beijing. “And it would be embarrassing for them to show the opposite to the Chinese people.” China says its virus policies, which include strict lockdowns, have prevented millions of people from getting sick. But as a consequence, scientists say, the population has not built up enough natural immunity to help fight severe infection, making reliable vaccines even more crucial. And there is slowly mounting pressure on the country to pursue a new approach.\n", + " The effectiveness of Chinese vaccines has been in doubt — partly because they use a century-old method for inoculation. Last spring, the country said it would approve BioNTech, the German mRNA shot made in partnership with Pfizer. Months later, China said that it was also close to producing its own mRNA vaccine. Neither are available today.\n", " Evidence\n", "\n", "\n", - "\n", - " In recent months, officials have begun openly discussing the need to introduce better vaccine technology. “We should learn about the good things in other countries, such as mRNA vaccines,” Zhong Nanshan, China’s top respiratory scientist, said at a conference in December. “They have spent years on the research and managed to develop mRNA vaccines in just a few months.”\n", - " Lead\n", + "\n", + " China’s lack of an mRNA shot — and its delay in approving a viable foreign option — has poked holes in Beijing’s victorious pandemic narrative and prompted experts to question whether the country’s go-it-alone approach is less triumphant than officials would have the world believe.\n", + " Evidence\n", "\n", "\n", "\n", - " China last week approved for emergency use a Covid-19 pill made by Pfizer called Paxlovid, a move that some experts said could help change Beijing’s pandemic strategy. It wasn’t that long ago that China appeared ready to introduce an mRNA vaccine for Covid-19. Shanghai Fosun Pharmaceutical, BioNTech’s Chinese partner, told investors last year that regulators would approve its mRNA vaccine for use in China by July 2021. The company, which had conducted clinical trials in late 2020, said that it could make as many as a billion doses a year. That optimism has since faded. Chinese authorities now say they are still reviewing documents in order to “make a final decision on the approval of our vaccine,” a spokeswoman for BioNTech said.\n", + " Under Xi Jinping, China’s top leader, the country has turned more inward, promoting self-reliance and championing development in areas like semiconductors and other technology. The delay in recognizing a foreign mRNA vaccine now appears to be a part of that deeply political exercise.\n", " Evidence\n", "\n", "\n", - "\n", - " Fosun did not respond to a request for comment.\n", - " Claim\n", + "\n", + " China is so committed to competing with the United States and the West on science and technology that some in the scientific community say it is hard to imagine that the state hasn’t pulled out all the stops to develop a homegrown mRNA vaccine. That China has fallen behind on that front, and failed to approve a readily available foreign option, has left many experts baffled.\n", + " Evidence\n", "\n", "\n", "\n", - " The approval process for Sinopharm and Sinovac — which manufacture the vaccines that are available in China — looked much different. Chinese regulators changed the rules to allow both Chinese drugmakers to submit their trial data behind schedule. Sinopharm’s vaccine was approved a week after the company filed its application, in December 2020. Vaccines from Sinovac and Sinopharm help prevent hospitalization and death, but their ability to reduce transmission with variants such as Omicron is still in question. Sinovac has shown to be only 51 percent effective against preventing symptomatic disease, according to scientists in Brazil. The World Health Organization said Sinopharm has an efficacy of 78 percent.\n", + " “We don’t know how decisions are made nowadays in China, but a better vaccine would definitely help in maintaining a zero-Covid policy,” said Jin Dongyan, a virologist at the University of Hong Kong who has urged his peers in mainland China to approve the BioNTech vaccine.\n", " Evidence\n", "\n", "\n", - "\n", - " Though the W.H.O. has signed off on both Chinese vaccines for emergency use, most Western governments favor mRNA technology.\n", - " Claim\n", + "\n", + " “They are presenting to the world that they are doing well in vaccine development,” he said of officials in Beijing. “And it would be embarrassing for them to show the opposite to the Chinese people.”\n", + " Evidence\n", "\n", "\n", "\n", - " As approval for BioNTech languished, China said that it was close to producing a homegrown mRNA shot called ARCoVax. Two private drugmakers and China’s Academy of Military Medical Sciences said they were preparing to make 200 million doses by October, a Communist Party newspaper reported in September.\n", + " China says its virus policies, which include strict lockdowns, have prevented millions of people from getting sick. But as a consequence, scientists say, the population has not built up enough natural immunity to help fight severe infection, making reliable vaccines even more crucial. And there is slowly mounting pressure on the country to pursue a new approach.\n", " Evidence\n", "\n", "\n", - "\n", - " Had that happened, it would have been a remarkable achievement for China.\n", + "\n", + " In recent months, officials have begun openly discussing the need to introduce better vaccine technology. “We should learn about the good things in other countries, such as mRNA vaccines,” Zhong Nanshan, China’s top respiratory scientist, said at a conference in December. “They have spent years on the research and managed to develop mRNA vaccines in just a few months.”\n", + " Lead\n", + "\n", + "\n", + "\n", + " China last week approved for emergency use a Covid-19 pill made by Pfizer called Paxlovid, a move that some experts said could help change Beijing’s pandemic strategy.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " It wasn’t that long ago that China appeared ready to introduce an mRNA vaccine for Covid-19. Shanghai Fosun Pharmaceutical, BioNTech’s Chinese partner, told investors last year that regulators would approve its mRNA vaccine for use in China by July 2021. The company, which had conducted clinical trials in late 2020, said that it could make as many as a billion doses a year.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " That optimism has since faded. Chinese authorities now say they are still reviewing documents in order to “make a final decision on the approval of our vaccine,” a spokeswoman for BioNTech said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Fosun did not respond to a request for comment.\n", + " Claim\n", + "\n", + "\n", + "\n", + " The approval process for Sinopharm and Sinovac — which manufacture the vaccines that are available in China — looked much different. Chinese regulators changed the rules to allow both Chinese drugmakers to submit their trial data behind schedule. Sinopharm’s vaccine was approved a week after the company filed its application, in December 2020.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Vaccines from Sinovac and Sinopharm help prevent hospitalization and death, but their ability to reduce transmission with variants such as Omicron is still in question. Sinovac has shown to be only 51 percent effective against preventing symptomatic disease, according to scientists in Brazil. The World Health Organization said Sinopharm has an efficacy of 78 percent.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Though the W.H.O. has signed off on both Chinese vaccines for emergency use, most Western governments favor mRNA technology.\n", " Claim\n", "\n", "\n", "\n", - " Unlike traditional vaccines that use an inactivated virus to trigger a response by the immune system, mRNA vaccines use a genetic molecule that assists cells to make proteins that can set off an immune response in the body. This response creates antibodies that are then used to fight the virus. The first mRNA vaccines for the coronavirus were based on research conducted over decades by scientists in different parts of the world. It took the Western pharmaceutical companies Pfizer, BioNTech and Moderna just over a year to take those advances and apply them to a new kind of vaccine able to prevent serious illness and death from Covid-19. The final version of the mRNA vaccines produced by Pfizer and Moderna came together with the help of a multibillion dollar program under the Trump administration called Operation Warp Speed. The Food and Drug Administration determined in 2020 that the BioNTech vaccine has an efficacy rate of 95 percent. “This is not trivial technology,” said John P. Moore, a virologist at Weill Cornell Medicine. “So trying to reverse engineer it from scratch is one of those things where you ask, ‘What could possibly go wrong?’” If China is pursing a program similar to Operation Warp Speed, it has not said anything about it publicly. One of the private companies helping to develop ARCoVax is Suzhou Abogen, a start-up founded in 2019 by a scientist who used to work at Moderna. Before the pandemic, Abogen was developing mRNA drugs for cancer, one of China’s biggest epidemics. The other drugmaker, Walvax, is a publicly listed pharmaceutical group. The two companies’ partnership with the Chinese Academy of Military Medical Sciences suggests strong government backing, though Beijing has not mentioned an official collaboration. Last year, the United States added the Chinese Academy of Military Medical Sciences to an entity list, a federal trade restriction list, accusing it of using biotechnology to support activities like “brain control weaponry.” The designation would make it difficult to export any final vaccine product it develops. Researchers recently published the details of an initial trial of the ARCoVax vaccine involving 120 volunteers. They found it to be safe, and said it produced a moderate level of antibodies but caused more side effects, like fever, than the BioNTech shot. Abogen and Walvax did not respond to requests for comment. A senior executive at Walvax told Reuters last month that it had recruited 28,000 people for a large, Phase 3 clinical trial. ARCoVax is also being tested as a booster. One recent study showed that two doses of Sinovac boosted with an mRNA shot offered strong antibody protection against both the Delta and Omicron variants. But it is still unclear when the ARCoVax vaccine will be available in China.\n", + " As approval for BioNTech languished, China said that it was close to producing a homegrown mRNA shot called ARCoVax. Two private drugmakers and China’s Academy of Military Medical Sciences said they were preparing to make 200 million doses by October, a Communist Party newspaper reported in September.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Had that happened, it would have been a remarkable achievement for China.\n", + " Claim\n", + "\n", + "\n", + "\n", + " Unlike traditional vaccines that use an inactivated virus to trigger a response by the immune system, mRNA vaccines use a genetic molecule that assists cells to make proteins that can set off an immune response in the body. This response creates antibodies that are then used to fight the virus.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The first mRNA vaccines for the coronavirus were based on research conducted over decades by scientists in different parts of the world. It took the Western pharmaceutical companies Pfizer, BioNTech and Moderna just over a year to take those advances and apply them to a new kind of vaccine able to prevent serious illness and death from Covid-19.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The final version of the mRNA vaccines produced by Pfizer and Moderna came together with the help of a multibillion dollar program under the Trump administration called Operation Warp Speed. The Food and Drug Administration determined in 2020 that the BioNTech vaccine has an efficacy rate of 95 percent.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “This is not trivial technology,” said John P. Moore, a virologist at Weill Cornell Medicine. “So trying to reverse engineer it from scratch is one of those things where you ask, ‘What could possibly go wrong?’”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " If China is pursing a program similar to Operation Warp Speed, it has not said anything about it publicly. One of the private companies helping to develop ARCoVax is Suzhou Abogen, a start-up founded in 2019 by a scientist who used to work at Moderna. Before the pandemic, Abogen was developing mRNA drugs for cancer, one of China’s biggest epidemics.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The other drugmaker, Walvax, is a publicly listed pharmaceutical group. The two companies’ partnership with the Chinese Academy of Military Medical Sciences suggests strong government backing, though Beijing has not mentioned an official collaboration.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Last year, the United States added the Chinese Academy of Military Medical Sciences to an entity list, a federal trade restriction list, accusing it of using biotechnology to support activities like “brain control weaponry.” The designation would make it difficult to export any final vaccine product it develops.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Researchers recently published the details of an initial trial of the ARCoVax vaccine involving 120 volunteers. They found it to be safe, and said it produced a moderate level of antibodies but caused more side effects, like fever, than the BioNTech shot.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Abogen and Walvax did not respond to requests for comment. A senior executive at Walvax told Reuters last month that it had recruited 28,000 people for a large, Phase 3 clinical trial. ARCoVax is also being tested as a booster.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " One recent study showed that two doses of Sinovac boosted with an mRNA shot offered strong antibody protection against both the Delta and Omicron variants. But it is still unclear when the ARCoVax vaccine will be available in China.\n", " Evidence\n", "\n", "\n", @@ -5167,7 +8935,7 @@ { "data": { "text/html": [ - "

nytimes\\china-olympics-propaganda.txt

" + "

china-olympics-propaganda.txt

" ], "text/plain": [ "" @@ -5187,7 +8955,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "4911578f33244da09203deaba863408c", + "model_id": "300c5976019242269d2e88b7be4d2a75", "version_major": 2, "version_minor": 0 }, @@ -5208,7 +8976,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "feb3f64a62c344e1acb30ab999a7a796", + "model_id": "865ff56fb699461e91b8b2bab363ca4d", "version_major": 2, "version_minor": 0 }, @@ -5226,7 +8994,7 @@ "This article is published with ProPublica, the nonprofit investigative newsroom. {'label': 'Claim', 'score': 0.5295079350471497}\n", "BEIJING — Inside the Potemkin village of China’s propaganda, the Winter Olympics have unfolded as an unalloyed success, a celebration of sports and political harmony that has obscured — critics say whitewashed — the country’s flaws and rights abuses. {'label': 'Evidence', 'score': 0.3075408637523651}\n", "At Beijing 2022, the hills are snowy, not brown as usual this time of year. A Uyghur skier is the symbol of national unity, the tennis player Peng Shuai just a curious spectator. Athletes and foreign journalists praise the polite volunteers and marvel at the high-speed trains and the robots that boil dumplings and mix drinks. {'label': 'Evidence', 'score': 0.9870136380195618}\n", - "While China’s control of what its domestic viewers and readers consume is well established, the country has spread its own version of the Games beyond its borders, with an arsenal of digital tools that are giving China’s narrative arguably greater reach and more subtlety than ever before. {'label': 'Claim', 'score': 0.4311811625957489}\n", + "While China’s control of what its domestic viewers and readers consume is well established, the country has spread its own version of the Games beyond its borders, with an arsenal of digital tools that are giving China’s narrative arguably greater reach and more subtlety than ever before. {'label': 'Claim', 'score': 0.4311812222003937}\n", "With bots, fake accounts, genuine influencers and other tools, China has been able to selectively edit how the events have appeared, even outside the country, promoting everything that bolsters the official, feel-good story about the Winter Olympics and trying to smother whatever doesn’t. {'label': 'Evidence', 'score': 0.5027697086334229}\n", "“For the Chinese Communist Party, the Winter Olympics are inseparable from the broader political goal of building up the country’s national image,” said David Bandurski, director of the China Media Project, a monitoring organization. Referring to the country’s leader, he added: “This is what Xi Jinping has called ‘telling China’s story well.’” {'label': 'Evidence', 'score': 0.9349364638328552}\n", "On Twitter, which is banned in China, Chinese state media outlets and journalists, as well as diplomats, have tried to buff the image of the Games, raving about venues and cooing over the Olympic mascot. {'label': 'Evidence', 'score': 0.9194518327713013}\n", @@ -5248,7 +9016,7 @@ "One of the biggest political stories of these Games has also unfolded outside China’s internet firewall: the appearance of Peng Shuai, the professional tennis player and three-time Olympian who created a furor when she accused a senior Communist Party leader of sexually assaulting her. {'label': 'Evidence', 'score': 0.8676552176475525}\n", "The president of the International Olympic Committee, Thomas Bach, met her for dinner, as he promised he would when the global outcry over her fate threatened to overshadow the Games. Ms. Peng has appeared at curling and figure skating, among other events. None of that was shown inside China, where all references to her accusations have been erased, including later statements attributed to her, saying she had been misunderstood. {'label': 'Evidence', 'score': 0.9247949719429016}\n", "“It’s absolutely critical to understand that this is not just another narrative,” Mr. Bandurski of the China Media Project said of the Olympics. “It’s a narrative that implies widespread censorship and the manipulation of public opinion, which is actually policy.” {'label': 'Evidence', 'score': 0.5739744305610657}\n", - "Jack Stubbs, vice president of intelligence at Graphika, a social media monitoring company, said his firm had observed another Chinese propaganda network using foreign social media platforms. {'label': 'Evidence', 'score': 0.6897915005683899}\n", + "Jack Stubbs, vice president of intelligence at Graphika, a social media monitoring company, said his firm had observed another Chinese propaganda network using foreign social media platforms. {'label': 'Evidence', 'score': 0.6897914409637451}\n", "The network has spread videos emphasizing the Olympics as environmentally friendly and crooning about strengthening Chinese-Russian ties, punctuated by President Vladimir V. Putin’s attendance at the opening ceremony. {'label': 'Evidence', 'score': 0.7060900330543518}\n" ] }, @@ -5263,7 +9031,43 @@ "Once the Games began, the drama of the sports themselves dominated attention. Protests over China’s human rights record have not materialized, as some activists hoped. On the contrary, many athletes have heaped praise. {'label': 'Evidence', 'score': 0.8231651782989502}\n", "“When you really meet the people here and talk to them,” Jenise Spiteri, the American snowboarder competing for Malta, said in a state media interview, “everyone has a very good heart.” {'label': 'Evidence', 'score': 0.7772222757339478}\n", "Spicy Panda tweeted a state media report about another American competitor, the freestyle skier Aaron Blunck. In remarks posted by the official China Daily newspaper, Mr. Blunck praised China’s Covid protocols. {'label': 'Evidence', 'score': 0.9805193543434143}\n", - "“#AaronBlunck revealed the real China that is totally different from what some American media have said!” Spicy Panda’s post read. {'label': 'Evidence', 'score': 0.6716699004173279}\n" + "“#AaronBlunck revealed the real China that is totally different from what some American media have said!” Spicy Panda’s post read. {'label': 'Evidence', 'score': 0.6716699004173279}\n", + " text label score\n", + "0 This article is published with ProPublica, the... Claim 0.529508\n", + "1 BEIJING — Inside the Potemkin village of China... Evidence 0.307541\n", + "2 At Beijing 2022, the hills are snowy, not brow... Evidence 0.987014\n", + "3 While China’s control of what its domestic vie... Claim 0.431181\n", + "4 With bots, fake accounts, genuine influencers ... Evidence 0.502770\n", + "5 “For the Chinese Communist Party, the Winter O... Evidence 0.934936\n", + "6 On Twitter, which is banned in China, Chinese ... Evidence 0.919452\n", + "7 China has also sought to influence online disc... Evidence 0.987965\n", + "8 Some of their efforts have centered on an acco... Evidence 0.969697\n", + "9 The tweet was reposted 281 times, all by the f... Evidence 0.972171\n", + "10 An analysis of Spicy Panda’s supporters turned... Evidence 0.990818\n", + "11 Spicy Panda appears to have a connection with ... Evidence 0.983680\n", + "12 Other botlike accounts promoted hashtags that ... Claim 0.465651\n", + "13 They promoted content under hashtags like #Bei... Evidence 0.991516\n", + "14 Twitter said in an emailed statement that it h... Evidence 0.973197\n", + "15 Even the Games’ official mascot, Bing Dwen Dwe... Evidence 0.894574\n", + "16 Thousands of new or previously inactive accoun... Evidence 0.561979\n", + "17 “If you want to push out a lot of content on s... Evidence 0.923739\n", + "18 The information space inside China is not unli... Claim 0.675047\n", + "19 Inside the “closed loop” of official propagand... Evidence 0.569159\n", + "20 When the United States men’s hockey team playe... Evidence 0.988426\n", + "21 In Chinese footage of the Games, the mountains... Evidence 0.905663\n", + "22 One of the biggest political stories of these ... Evidence 0.867655\n", + "23 The president of the International Olympic Com... Evidence 0.924795\n", + "24 “It’s absolutely critical to understand that t... Evidence 0.573974\n", + "25 Jack Stubbs, vice president of intelligence at... Evidence 0.689791\n", + "26 The network has spread videos emphasizing the ... Evidence 0.706090\n", + "27 China has defended its use of Twitter and Face... Evidence 0.943950\n", + "28 One American company, Vippi Media, based in Ne... Evidence 0.874496\n", + "29 Under the contract, first reported by the rese... Evidence 0.703768\n", + "30 “They were very clear and I was very clear tha... Evidence 0.299518\n", + "31 Once the Games began, the drama of the sports ... Evidence 0.823165\n", + "32 “When you really meet the people here and talk... Evidence 0.777222\n", + "33 Spicy Panda tweeted a state media report about... Evidence 0.980519\n", + "34 “#AaronBlunck revealed the real China that is ... Evidence 0.671670\n" ] }, { @@ -5276,7 +9080,12 @@ "
\n", "\n", "\n", - " BEIJING — Inside the Potemkin village of China’s propaganda, the Winter Olympics have unfolded as an unalloyed success, a celebration of sports and political harmony that has obscured — critics say whitewashed — the country’s flaws and rights abuses. At Beijing 2022, the hills are snowy, not brown as usual this time of year. A Uyghur skier is the symbol of national unity, the tennis player Peng Shuai just a curious spectator. Athletes and foreign journalists praise the polite volunteers and marvel at the high-speed trains and the robots that boil dumplings and mix drinks.\n", + " BEIJING — Inside the Potemkin village of China’s propaganda, the Winter Olympics have unfolded as an unalloyed success, a celebration of sports and political harmony that has obscured — critics say whitewashed — the country’s flaws and rights abuses.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " At Beijing 2022, the hills are snowy, not brown as usual this time of year. A Uyghur skier is the symbol of national unity, the tennis player Peng Shuai just a curious spectator. Athletes and foreign journalists praise the polite volunteers and marvel at the high-speed trains and the robots that boil dumplings and mix drinks.\n", " Evidence\n", "\n", "\n", @@ -5286,7 +9095,42 @@ "
\n", "\n", "\n", - " With bots, fake accounts, genuine influencers and other tools, China has been able to selectively edit how the events have appeared, even outside the country, promoting everything that bolsters the official, feel-good story about the Winter Olympics and trying to smother whatever doesn’t. “For the Chinese Communist Party, the Winter Olympics are inseparable from the broader political goal of building up the country’s national image,” said David Bandurski, director of the China Media Project, a monitoring organization. Referring to the country’s leader, he added: “This is what Xi Jinping has called ‘telling China’s story well.’” On Twitter, which is banned in China, Chinese state media outlets and journalists, as well as diplomats, have tried to buff the image of the Games, raving about venues and cooing over the Olympic mascot. China has also sought to influence online discussions in more concealed ways. The New York Times and ProPublica identified a network of more than 3,000 inauthentic-looking Twitter accounts that appeared to be coordinating to promote the Olympics by sharing state media posts with identical comments, for instance. Such accounts tended to be recently created with very few followers, tweeted mostly reposts and nothing of their own, and appeared to operate solely to amplify official Chinese voices. Some of their efforts have centered on an account called Spicy Panda, which has been posting cartoons and videos to push back against calls for a boycott of the Olympics. In one cartoon, Spicy Panda accused the United States of wielding “its deceiving propaganda weapon to stain the Olympics.” The tweet was reposted 281 times, all by the fake-looking accounts, but received little other engagement, a strong indication that the network was mobilized to promote the message. Aside from the bursts of promotion, Spicy Panda’s posts about the Olympics received almost no attention. An analysis of Spicy Panda’s supporters turned up 861 accounts — 90 percent of which were created after Dec. 1. The accounts’ first wave of coordinated posts pushed Beijing’s stance that Hong Kong’s legislative council elections were legitimate, though critics have called the vote a sham. Then the accounts turned their attention to the Olympics. (By Thursday, all but one of the accounts had been suspended, shortly after The Times and ProPublica asked Twitter about them.) Spicy Panda appears to have a connection with iChongqing, a state media-linked multimedia platform based in Chongqing, a city in central China. The accounts that shared Spicy Panda’s posts often did the same with tweets by iChongqing’s account. IChongqing did not immediately respond to a request for comment.\n", + " With bots, fake accounts, genuine influencers and other tools, China has been able to selectively edit how the events have appeared, even outside the country, promoting everything that bolsters the official, feel-good story about the Winter Olympics and trying to smother whatever doesn’t.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “For the Chinese Communist Party, the Winter Olympics are inseparable from the broader political goal of building up the country’s national image,” said David Bandurski, director of the China Media Project, a monitoring organization. Referring to the country’s leader, he added: “This is what Xi Jinping has called ‘telling China’s story well.’”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " On Twitter, which is banned in China, Chinese state media outlets and journalists, as well as diplomats, have tried to buff the image of the Games, raving about venues and cooing over the Olympic mascot.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " China has also sought to influence online discussions in more concealed ways. The New York Times and ProPublica identified a network of more than 3,000 inauthentic-looking Twitter accounts that appeared to be coordinating to promote the Olympics by sharing state media posts with identical comments, for instance. Such accounts tended to be recently created with very few followers, tweeted mostly reposts and nothing of their own, and appeared to operate solely to amplify official Chinese voices.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Some of their efforts have centered on an account called Spicy Panda, which has been posting cartoons and videos to push back against calls for a boycott of the Olympics. In one cartoon, Spicy Panda accused the United States of wielding “its deceiving propaganda weapon to stain the Olympics.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The tweet was reposted 281 times, all by the fake-looking accounts, but received little other engagement, a strong indication that the network was mobilized to promote the message. Aside from the bursts of promotion, Spicy Panda’s posts about the Olympics received almost no attention.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " An analysis of Spicy Panda’s supporters turned up 861 accounts — 90 percent of which were created after Dec. 1. The accounts’ first wave of coordinated posts pushed Beijing’s stance that Hong Kong’s legislative council elections were legitimate, though critics have called the vote a sham. Then the accounts turned their attention to the Olympics. (By Thursday, all but one of the accounts had been suspended, shortly after The Times and ProPublica asked Twitter about them.)\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Spicy Panda appears to have a connection with iChongqing, a state media-linked multimedia platform based in Chongqing, a city in central China. The accounts that shared Spicy Panda’s posts often did the same with tweets by iChongqing’s account. IChongqing did not immediately respond to a request for comment.\n", " Evidence\n", "\n", "\n", @@ -5296,7 +9140,27 @@ "
\n", "\n", "\n", - " They promoted content under hashtags like #Beijing2022 and #TogetherForASharedFuture, this year’s official Olympic motto. Some accounts repeatedly posted tweets with identical wording, such as: “China’s hosting of the #Beijing2022 as scheduled has boosted the world’s confidence in defeating the pandemic.” Twitter said in an emailed statement that it had suspended hundreds of the accounts identified by The Times and ProPublica for violations of its platform manipulation and spam policies. It said it was continuing to investigate the accounts’ links to state-backed information operations. Even the Games’ official mascot, Bing Dwen Dwen, a cuddly panda in a suit of ice, has been the subject of an organized campaign on Twitter, according to Albert Zhang, a researcher at the Australian Strategic Policy Institute’s International Cyber Policy Center. Thousands of new or previously inactive accounts have helped the mascot go viral, he said — which China’s state media presented as evidence of the mascot’s popularity and, by extension, that of the Games. “If you want to push out a lot of content on something like the Beijing Olympics, this is an easy way to do it,” Mr. Zhang said. He added that the campaign now underway was like others sponsored by the Chinese state to push Beijing’s narrative on topics such as Covid-19 and the crackdown on Uyghur Muslims in Xinjiang.\n", + " They promoted content under hashtags like #Beijing2022 and #TogetherForASharedFuture, this year’s official Olympic motto. Some accounts repeatedly posted tweets with identical wording, such as: “China’s hosting of the #Beijing2022 as scheduled has boosted the world’s confidence in defeating the pandemic.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Twitter said in an emailed statement that it had suspended hundreds of the accounts identified by The Times and ProPublica for violations of its platform manipulation and spam policies. It said it was continuing to investigate the accounts’ links to state-backed information operations.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Even the Games’ official mascot, Bing Dwen Dwen, a cuddly panda in a suit of ice, has been the subject of an organized campaign on Twitter, according to Albert Zhang, a researcher at the Australian Strategic Policy Institute’s International Cyber Policy Center.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Thousands of new or previously inactive accounts have helped the mascot go viral, he said — which China’s state media presented as evidence of the mascot’s popularity and, by extension, that of the Games.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “If you want to push out a lot of content on something like the Beijing Olympics, this is an easy way to do it,” Mr. Zhang said. He added that the campaign now underway was like others sponsored by the Chinese state to push Beijing’s narrative on topics such as Covid-19 and the crackdown on Uyghur Muslims in Xinjiang.\n", " Evidence\n", "\n", "\n", @@ -5306,7 +9170,82 @@ "
\n", "\n", "\n", - " Inside the “closed loop” of official propaganda, the state carefully curates almost anything ordinary Chinese people see or read. The effect has been an Olympics free of scandal or criticism or bad news. When the United States men’s hockey team played an overmatched Chinese team, the game was not shown on the main state television sports channel, CCTV 5, and the 8-0 defeat was mentioned only glancingly in news reports. A state media slide show devoted to the men’s figure skating competition conspicuously omitted the gold medalist, Nathan Chen of the United States. In Chinese footage of the Games, the mountains where many competitions are being held have been deftly framed to exclude the dry, brown slopes in the background, until Day 8 when a snowstorm covered them in a frosting of white. One of the biggest political stories of these Games has also unfolded outside China’s internet firewall: the appearance of Peng Shuai, the professional tennis player and three-time Olympian who created a furor when she accused a senior Communist Party leader of sexually assaulting her. The president of the International Olympic Committee, Thomas Bach, met her for dinner, as he promised he would when the global outcry over her fate threatened to overshadow the Games. Ms. Peng has appeared at curling and figure skating, among other events. None of that was shown inside China, where all references to her accusations have been erased, including later statements attributed to her, saying she had been misunderstood. “It’s absolutely critical to understand that this is not just another narrative,” Mr. Bandurski of the China Media Project said of the Olympics. “It’s a narrative that implies widespread censorship and the manipulation of public opinion, which is actually policy.” Jack Stubbs, vice president of intelligence at Graphika, a social media monitoring company, said his firm had observed another Chinese propaganda network using foreign social media platforms. The network has spread videos emphasizing the Olympics as environmentally friendly and crooning about strengthening Chinese-Russian ties, punctuated by President Vladimir V. Putin’s attendance at the opening ceremony. China has defended its use of Twitter and Facebook, platforms that it bans at home. A foreign ministry spokeswoman, Hua Chunying, said last year that such sites were an “extra channel” to combat negative portrayals in the West. One American company, Vippi Media, based in New Jersey, signed a $300,000 contract with the consulate general of China in New York to help promote the Games, according to the company’s filing with the Justice Department under the Foreign Agents Registration Act. Under the contract, first reported by the research group Open Secrets, the company has been promoting the Games by recruiting “social media stars” to post on Instagram, YouTube and TikTok, the company’s founder, Vipinder Jaswal, said in a telephone interview. “They were very clear and I was very clear that it’s about the Olympics and the Olympics only, nothing to do with politics,” he said. Once the Games began, the drama of the sports themselves dominated attention. Protests over China’s human rights record have not materialized, as some activists hoped. On the contrary, many athletes have heaped praise. “When you really meet the people here and talk to them,” Jenise Spiteri, the American snowboarder competing for Malta, said in a state media interview, “everyone has a very good heart.” Spicy Panda tweeted a state media report about another American competitor, the freestyle skier Aaron Blunck. In remarks posted by the official China Daily newspaper, Mr. Blunck praised China’s Covid protocols. “#AaronBlunck revealed the real China that is totally different from what some American media have said!” Spicy Panda’s post read.\n", + " Inside the “closed loop” of official propaganda, the state carefully curates almost anything ordinary Chinese people see or read. The effect has been an Olympics free of scandal or criticism or bad news.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " When the United States men’s hockey team played an overmatched Chinese team, the game was not shown on the main state television sports channel, CCTV 5, and the 8-0 defeat was mentioned only glancingly in news reports. A state media slide show devoted to the men’s figure skating competition conspicuously omitted the gold medalist, Nathan Chen of the United States.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In Chinese footage of the Games, the mountains where many competitions are being held have been deftly framed to exclude the dry, brown slopes in the background, until Day 8 when a snowstorm covered them in a frosting of white.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " One of the biggest political stories of these Games has also unfolded outside China’s internet firewall: the appearance of Peng Shuai, the professional tennis player and three-time Olympian who created a furor when she accused a senior Communist Party leader of sexually assaulting her.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The president of the International Olympic Committee, Thomas Bach, met her for dinner, as he promised he would when the global outcry over her fate threatened to overshadow the Games. Ms. Peng has appeared at curling and figure skating, among other events. None of that was shown inside China, where all references to her accusations have been erased, including later statements attributed to her, saying she had been misunderstood.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “It’s absolutely critical to understand that this is not just another narrative,” Mr. Bandurski of the China Media Project said of the Olympics. “It’s a narrative that implies widespread censorship and the manipulation of public opinion, which is actually policy.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Jack Stubbs, vice president of intelligence at Graphika, a social media monitoring company, said his firm had observed another Chinese propaganda network using foreign social media platforms.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The network has spread videos emphasizing the Olympics as environmentally friendly and crooning about strengthening Chinese-Russian ties, punctuated by President Vladimir V. Putin’s attendance at the opening ceremony.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " China has defended its use of Twitter and Facebook, platforms that it bans at home. A foreign ministry spokeswoman, Hua Chunying, said last year that such sites were an “extra channel” to combat negative portrayals in the West.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " One American company, Vippi Media, based in New Jersey, signed a $300,000 contract with the consulate general of China in New York to help promote the Games, according to the company’s filing with the Justice Department under the Foreign Agents Registration Act.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Under the contract, first reported by the research group Open Secrets, the company has been promoting the Games by recruiting “social media stars” to post on Instagram, YouTube and TikTok, the company’s founder, Vipinder Jaswal, said in a telephone interview.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “They were very clear and I was very clear that it’s about the Olympics and the Olympics only, nothing to do with politics,” he said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Once the Games began, the drama of the sports themselves dominated attention. Protests over China’s human rights record have not materialized, as some activists hoped. On the contrary, many athletes have heaped praise. \n", + " Evidence\n", + "\n", + "\n", + "\n", + " “When you really meet the people here and talk to them,” Jenise Spiteri, the American snowboarder competing for Malta, said in a state media interview, “everyone has a very good heart.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Spicy Panda tweeted a state media report about another American competitor, the freestyle skier Aaron Blunck. In remarks posted by the official China Daily newspaper, Mr. Blunck praised China’s Covid protocols.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “#AaronBlunck revealed the real China that is totally different from what some American media have said!” Spicy Panda’s post read.\n", " Evidence\n", "\n", "
" @@ -5330,7 +9269,7 @@ { "data": { "text/html": [ - "

nytimes\\china-us-tech-policy.txt

" + "

china-us-tech-policy.txt

" ], "text/plain": [ "" @@ -5356,7 +9295,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "0e0b107cfe984be3b0fbffb1e51211a9", + "model_id": "8faf455bf2da4461ad168f3123c20cc4", "version_major": 2, "version_minor": 0 }, @@ -5370,7 +9309,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "e2cbf71faa5c4472878312f53d85bcff", + "model_id": "e2a5629e7112463b983d5ad7cc2f0e24", "version_major": 2, "version_minor": 0 }, @@ -5391,7 +9330,7 @@ { "data": { "text/html": [ - "

nytimes\\christopher-buckley-pj-orourke.txt

" + "

christopher-buckley-pj-orourke.txt

" ], "text/plain": [ "" @@ -5404,20 +9343,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-5718d36b4e51eeb2\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-5718d36b4e51eeb2\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-5718d36b4e51eeb2\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-5718d36b4e51eeb2\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "f5764184df034739834a7e34caba3e06", + "model_id": "20d0bad5e6304663b1e6b532e708de34", "version_major": 2, "version_minor": 0 }, @@ -5429,58 +9362,16 @@ "output_type": "display_data" }, { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "8fe62dce905c46feb21991df9ae503db", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00\n", "\n", "\n", - " He was a fellow of infinite jest. I can scarcely recall, over the 40 years we were friends, P.J. saying anything that wasn’t funny. Of all human failings, he found humorlessness the funniest. Back then, the political left was so earnest about saving the world that there was no room for laughter, which denoted a lack of earnestness. Self-deprecating humor, P.J.’s trademark, wasn’t allowed because it could undermine the mission. Saving the world was no laughing matter. One titter and the whole edifice could come crashing down. Humorlessness has crept in its petty pace to the right, where it is conducted with North Korean-level solemnity by the bellowing myrmidons of MAGAdom. A sense of humor, much less self-awareness, are not traits found in cults of personality. If Tucker Carlson has said anything advertently funny, witty or self-knowing from his bully pulpit, I missed it. Maybe you had to be there. P.J. O’Rourke’s death marks the end of a particular and an essential sensibility. He found humor everywhere and in everything, especially in his fellow Republicans. We’ve lost more than the man The Wall Street Journal called “the funniest writer in America.” We’ve lost the last funny conservative. The boomer gen’s H.L. Mencken, P.J. was summa contra everything, but joyously. If you weren’t laughing, you weren’t listening. Along with his peers Oscar Wilde and Dorothy Parker, he was hyperaphoristic. “The good news is that, according to the Obama administration, the rich will pay for everything. The bad news is that, according to the Obama administration, you’re rich.”\n", + " He was a fellow of infinite jest. I can scarcely recall, over the 40 years we were friends, P.J. saying anything that wasn’t funny.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Of all human failings, he found humorlessness the funniest. Back then, the political left was so earnest about saving the world that there was no room for laughter, which denoted a lack of earnestness. Self-deprecating humor, P.J.’s trademark, wasn’t allowed because it could undermine the mission. Saving the world was no laughing matter. One titter and the whole edifice could come crashing down.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Humorlessness has crept in its petty pace to the right, where it is conducted with North Korean-level solemnity by the bellowing myrmidons of MAGAdom. A sense of humor, much less self-awareness, are not traits found in cults of personality. If Tucker Carlson has said anything advertently funny, witty or self-knowing from his bully pulpit, I missed it. Maybe you had to be there.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " P.J. O’Rourke’s death marks the end of a particular and an essential sensibility. He found humor everywhere and in everything, especially in his fellow Republicans. We’ve lost more than the man The Wall Street Journal called “the funniest writer in America.” We’ve lost the last funny conservative.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The boomer gen’s H.L. Mencken, P.J. was summa contra everything, but joyously. If you weren’t laughing, you weren’t listening. Along with his peers Oscar Wilde and Dorothy Parker, he was hyperaphoristic.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “The good news is that, according to the Obama administration, the rich will pay for everything. The bad news is that, according to the Obama administration, you’re rich.”\n", " Evidence\n", "\n", "\n", @@ -5542,13 +9474,33 @@ "\n", "\n", "\n", - " P.J. was a Serious Man — in the sense of what his forebear Mencken might call an ernst mann — who declined to take himself seriously. That’s not to say he lacked ego. (An egoless writer is the very definition of oxymoron.) But he reveled in his various poses — the entitled, whiny boomer; the stoner high school student; the uncultured bumpkin from Toledo, Ohio; the annoyed boozer who joins DAMM, Drunks Against Mad Mothers — as much as he did in the preposterousness of his targets. He was hugely erudite and deeply read. Like another of his paradigms, Tom Wolfe, he had no illusions that he was anything more than just another player in la comédie humaine. A firm belief in human fallibility is an essential element of the conservative temperament. P.J. wasn’t the only conservative pundit to vote for Hillary Clinton in 2016, but he didn’t try to spray Febreze on his ballot. He voted with clothespin firmly affixed to his nose. Mrs. Clinton, he said, was wrong “about absolutely everything,” except in one regard: She wasn’t Donald Trump. “Politics,” as he’d written, “is a necessary evil, or a necessary annoyance, or a necessary conundrum.” The Trump era could have been one great big enormous sandbox for P.J. to play in. Instead, he found it dispiriting, a pageant of stupidity, boorishness and coarseness. His last book, “A Cry From the Far Middle: Dispatches From a Divided Land,” published in 2021, shows him in top form, but in it there’s a note of wistfulness. The last time I visited with him, he told me, “You know, I’ve been doing this for a [expletive] half century. I’m tired.” The weariness didn’t show. Now that he’s gone, the proverbial baton is passed to a new generation of conservative satirists, specifically Lindsey Graham, Ted Cruz, Josh Hawley and Marjorie Taylor Greene. And that isn’t funny.\n", + " P.J. was a Serious Man — in the sense of what his forebear Mencken might call an ernst mann — who declined to take himself seriously. That’s not to say he lacked ego. (An egoless writer is the very definition of oxymoron.) But he reveled in his various poses — the entitled, whiny boomer; the stoner high school student; the uncultured bumpkin from Toledo, Ohio; the annoyed boozer who joins DAMM, Drunks Against Mad Mothers — as much as he did in the preposterousness of his targets. He was hugely erudite and deeply read. Like another of his paradigms, Tom Wolfe, he had no illusions that he was anything more than just another player in la comédie humaine. A firm belief in human fallibility is an essential element of the conservative temperament.\n", " Evidence\n", "\n", - "
" - ], - "text/plain": [ - "" + "\n", + "\n", + " P.J. wasn’t the only conservative pundit to vote for Hillary Clinton in 2016, but he didn’t try to spray Febreze on his ballot. He voted with clothespin firmly affixed to his nose. Mrs. Clinton, he said, was wrong “about absolutely everything,” except in one regard: She wasn’t Donald Trump. “Politics,” as he’d written, “is a necessary evil, or a necessary annoyance, or a necessary conundrum.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The Trump era could have been one great big enormous sandbox for P.J. to play in. Instead, he found it dispiriting, a pageant of stupidity, boorishness and coarseness.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " His last book, “A Cry From the Far Middle: Dispatches From a Divided Land,” published in 2021, shows him in top form, but in it there’s a note of wistfulness. The last time I visited with him, he told me, “You know, I’ve been doing this for a [expletive] half century. I’m tired.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The weariness didn’t show. Now that he’s gone, the proverbial baton is passed to a new generation of conservative satirists, specifically Lindsey Graham, Ted Cruz, Josh Hawley and Marjorie Taylor Greene. And that isn’t funny.\n", + " Evidence\n", + "\n", + "
" + ], + "text/plain": [ + "" ] }, "metadata": {}, @@ -5566,7 +9518,7 @@ { "data": { "text/html": [ - "

nytimes\\civil-suits-trump-jan-6.txt

" + "

civil-suits-trump-jan-6.txt

" ], "text/plain": [ "" @@ -5579,34 +9531,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-091ae9753f5bffc0\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-091ae9753f5bffc0\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-091ae9753f5bffc0\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-091ae9753f5bffc0\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "14ce1871263045d292b09c4f311961fd", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " A federal judge in Washington ruled on Friday that three civil lawsuits against Donald J. Trump related to the attack on the Capitol last January were able to move forward, saying that the former president was not shielded by the normal protections of immunity or the First Amendment. The ruling by the judge, Amit P. Mehta, meant that the plaintiffs in the suits — several members of Congress and police officers who served at the Capitol during the attack — will likely be able to seek information from Mr. Trump about the specific role he played in fostering the chaos at the building on Jan. 6, 2021.\n", + " A federal judge in Washington ruled on Friday that three civil lawsuits against Donald J. Trump related to the attack on the Capitol last January were able to move forward, saying that the former president was not shielded by the normal protections of immunity or the First Amendment.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The ruling by the judge, Amit P. Mehta, meant that the plaintiffs in the suits — several members of Congress and police officers who served at the Capitol during the attack — will likely be able to seek information from Mr. Trump about the specific role he played in fostering the chaos at the building on Jan. 6, 2021.\n", " Evidence\n", "\n", "\n", @@ -5706,7 +9635,22 @@ "\n", "\n", "\n", - " Judge Mehta’s order capped a difficult week for Mr. Trump, one in which a judge in New York ruled that he had to answer questions from state investigators examining his company, the Trump Organization, for evidence of fraud. Officials at the National Archives also said that Mr. Trump had taken classified national security documents from the White House to his private club in Florida. The lawsuits, all of which were filed last year, accused Mr. Trump of overlapping charges of conspiring with several others — people like his lawyer Rudolph W. Giuliani, his son Donald Trump Jr. and extremist groups such as the Proud Boys and the Oath Keepers militia — to sow doubts about the 2020 election, culminating in the violent storming of the Capitol. Judge Mehta allowed the suits to go ahead against the Proud Boys and Oath Keepers, but dismissed them against Mr. Giuliani and Mr. Trump’s son. Judge Mehta ruled that he would consider — and likely grant — a motion to dismiss from another defendant in one of the cases, Representative Mo Brooks, Republican of Alabama. Instead of moving to dismiss, Mr. Brooks had asked Judge Mehta to allow him to substitute the federal government in his place as the defendant in the case. At a nearly five-hour hearing last month, Mr. Trump’s lawyers argued he was immune from being sued because he had been acting in his official role as president when he addressed a huge crowd in Washington at the Ellipse before the Capitol was breached. The lawyers also claimed that Mr. Trump’s incendiary speech, one in which he urged the crowd to “fight like hell,” but also cautioned them to be peaceful and patriotic, should be protected by the First Amendment.\n", + " Judge Mehta’s order capped a difficult week for Mr. Trump, one in which a judge in New York ruled that he had to answer questions from state investigators examining his company, the Trump Organization, for evidence of fraud. Officials at the National Archives also said that Mr. Trump had taken classified national security documents from the White House to his private club in Florida.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The lawsuits, all of which were filed last year, accused Mr. Trump of overlapping charges of conspiring with several others — people like his lawyer Rudolph W. Giuliani, his son Donald Trump Jr. and extremist groups such as the Proud Boys and the Oath Keepers militia — to sow doubts about the 2020 election, culminating in the violent storming of the Capitol. Judge Mehta allowed the suits to go ahead against the Proud Boys and Oath Keepers, but dismissed them against Mr. Giuliani and Mr. Trump’s son.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Judge Mehta ruled that he would consider — and likely grant — a motion to dismiss from another defendant in one of the cases, Representative Mo Brooks, Republican of Alabama. Instead of moving to dismiss, Mr. Brooks had asked Judge Mehta to allow him to substitute the federal government in his place as the defendant in the case.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " At a nearly five-hour hearing last month, Mr. Trump’s lawyers argued he was immune from being sued because he had been acting in his official role as president when he addressed a huge crowd in Washington at the Ellipse before the Capitol was breached. The lawyers also claimed that Mr. Trump’s incendiary speech, one in which he urged the crowd to “fight like hell,” but also cautioned them to be peaceful and patriotic, should be protected by the First Amendment.\n", " Evidence\n", "\n", "\n", @@ -5716,12 +9660,52 @@ "\n", "\n", "\n", - " “To deny a president immunity from civil damages is no small step,” Judge Mehta wrote. “The court well understands the gravity of its decision. But the alleged facts of this case are without precedent.” The judge also found that after months of creating an “air of distrust and anger” by relentlessly claiming the election had been stolen, Mr. Trump should have known his supporters would take his speech not merely as words, but as “a call to action.” For that reason, the judge decided, the address was not “protected expression.” Mr. Trump “invited his supporters to Washington, D.C., after telling them for months that corrupt and spineless politicians were to blame for stealing an election from them; retold that narrative when thousands of them assembled on the Ellipse; and directed them to march on the Capitol building,” Judge Mehta wrote. Each of the suits was based in part on a Reconstruction era law known as the Ku Klux Klan Act of 1871, originally intended to protect former slaves from abuse by local officials but became a vehicle for challenging official actions more broadly. The suits, which seek civil damages, are separate from the Justice Department’s sprawling investigation into hundreds of people who took part in the storming of the Capitol and from a parallel congressional investigation into machinations by Mr. Trump and others to overturn the election results in the weeks and months leading up to Jan. 6. To date, Mr. Trump has not faced a subpoena from either the Justice Department or the House committee investigating the Capitol riot. But the ruling on Friday created the likelihood that Mr. Trump would have to provide documents to the plaintiffs or even sit for a deposition. “Above all else, it’s about accountability,” said Joseph Sellers, one of the lawyers for the plaintiffs. Representatives for Mr. Trump did not immediately respond to requests for comment. While most of the accusations in the suits came from Justice Department court filings or from publicly available information, Judge Mehta highlighted a few allegations in his ruling in particular. He wrote, for instance, that Mr. Trump’s former close adviser, Roger J. Stone Jr., may have served as the link between the former president and extremist groups. Judge Mehta pointed out that shortly after Mr. Stone posted on social media in December 2020 that he had met with Mr. Trump to “ensure” that he “continues as our president,” he also with spoke with Enrique Tarrio, the leader of the Proud Boys at the time. The judge also noted that Mr. Stone was guarded on Jan. 5 and Jan. 6 by members of the Oath Keepers.\n", + " “To deny a president immunity from civil damages is no small step,” Judge Mehta wrote. “The court well understands the gravity of its decision. But the alleged facts of this case are without precedent.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The judge also found that after months of creating an “air of distrust and anger” by relentlessly claiming the election had been stolen, Mr. Trump should have known his supporters would take his speech not merely as words, but as “a call to action.” For that reason, the judge decided, the address was not “protected expression.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mr. Trump “invited his supporters to Washington, D.C., after telling them for months that corrupt and spineless politicians were to blame for stealing an election from them; retold that narrative when thousands of them assembled on the Ellipse; and directed them to march on the Capitol building,” Judge Mehta wrote.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Each of the suits was based in part on a Reconstruction era law known as the Ku Klux Klan Act of 1871, originally intended to protect former slaves from abuse by local officials but became a vehicle for challenging official actions more broadly. The suits, which seek civil damages, are separate from the Justice Department’s sprawling investigation into hundreds of people who took part in the storming of the Capitol and from a parallel congressional investigation into machinations by Mr. Trump and others to overturn the election results in the weeks and months leading up to Jan. 6.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " To date, Mr. Trump has not faced a subpoena from either the Justice Department or the House committee investigating the Capitol riot. But the ruling on Friday created the likelihood that Mr. Trump would have to provide documents to the plaintiffs or even sit for a deposition.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Above all else, it’s about accountability,” said Joseph Sellers, one of the lawyers for the plaintiffs. Representatives for Mr. Trump did not immediately respond to requests for comment.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " While most of the accusations in the suits came from Justice Department court filings or from publicly available information, Judge Mehta highlighted a few allegations in his ruling in particular. He wrote, for instance, that Mr. Trump’s former close adviser, Roger J. Stone Jr., may have served as the link between the former president and extremist groups.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Judge Mehta pointed out that shortly after Mr. Stone posted on social media in December 2020 that he had met with Mr. Trump to “ensure” that he “continues as our president,” he also with spoke with Enrique Tarrio, the leader of the Proud Boys at the time. The judge also noted that Mr. Stone was guarded on Jan. 5 and Jan. 6 by members of the Oath Keepers.\n", " Evidence\n", "\n", "\n", "\n", - " Much of Judge Mehta’s ruling was dedicated to analyzing Mr. Trump’s 75-minute speech at the Ellipse, one in which Mr. Trump and his audience seemed to be engaged in a kind of back-and-forth. The speech, Judge Mehta wrote, showed “a call-and-response quality to the president’s communications, of which the president would have been aware.”\n", + " Much of Judge Mehta’s ruling was dedicated to analyzing Mr. Trump’s 75-minute speech at the Ellipse, one in which Mr. Trump and his audience seemed to be engaged in a kind of back-and-forth.\n", + " Claim\n", + "\n", + "\n", + "\n", + " The speech, Judge Mehta wrote, showed “a call-and-response quality to the president’s communications, of which the president would have been aware.”\n", " Claim\n", "\n", "\n", @@ -5750,7 +9734,7 @@ { "data": { "text/html": [ - "

nytimes\\comedy-jewish-identity.txt

" + "

comedy-jewish-identity.txt

" ], "text/plain": [ "" @@ -5763,34 +9747,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-a4caf305c7cc0857\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-a4caf305c7cc0857\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-a4caf305c7cc0857\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-a4caf305c7cc0857\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "d6ac9fff83834852b3da4ed36654858e", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00\n", "\n", "\n", - " In the climactic scene of the musical “Caroline, or Change,” an 8-year-old Jewish boy, Noah, and his African American maid, Caroline, living in the Jim Crow South, get into a heated fight and end up trading ugly insults. Noah says he hopes a bomb kills all Black people, and Caroline responds that all Jews will go to hell. It’s always a charged moment, but there was something peculiarly unsettling about it the night I saw the recent Broadway revival. For while there was silence after Noah’s hateful outburst, what followed Caroline’s comment was something I did not expect: laughter. Nervous giggling in uncomfortable moments can be a coping mechanism. And that wasn’t the audience reaction every night. But in a radio interview, Sharon D Clarke, who played the title character, said that at the majority of shows, there was laughter. She was disturbed by it but couldn’t explain it. I found it jarring because I thought I could. Of course it’s impossible to get inside the heads of theatergoers, but as a Jewish person, I recognized this laughter. Who would buy a ticket to a Broadway show and chuckle at the eternal damnation of Jewish people other than Jews? There is a long, rich Jewish tradition of grappling with antisemitism by laughing at it. This has produced a vast amount of great comedy, from Mel Brooks turning Nazis into musical theater buffoons in “The Producers” to Sacha Baron Cohen, in character as Borat, leading the denizens of a Southern bar in singing, “Throw the Jew down the well.” There is a sensibility behind these jokes that I grew up around and have long embraced.\n", + " In the climactic scene of the musical “Caroline, or Change,” an 8-year-old Jewish boy, Noah, and his African American maid, Caroline, living in the Jim Crow South, get into a heated fight and end up trading ugly insults. Noah says he hopes a bomb kills all Black people, and Caroline responds that all Jews will go to hell.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " It’s always a charged moment, but there was something peculiarly unsettling about it the night I saw the recent Broadway revival. For while there was silence after Noah’s hateful outburst, what followed Caroline’s comment was something I did not expect: laughter. Nervous giggling in uncomfortable moments can be a coping mechanism. And that wasn’t the audience reaction every night. But in a radio interview, Sharon D Clarke, who played the title character, said that at the majority of shows, there was laughter. She was disturbed by it but couldn’t explain it.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " I found it jarring because I thought I could. Of course it’s impossible to get inside the heads of theatergoers, but as a Jewish person, I recognized this laughter. Who would buy a ticket to a Broadway show and chuckle at the eternal damnation of Jewish people other than Jews?\n", + " Evidence\n", + "\n", + "\n", + "\n", + " There is a long, rich Jewish tradition of grappling with antisemitism by laughing at it. This has produced a vast amount of great comedy, from Mel Brooks turning Nazis into musical theater buffoons in “The Producers” to Sacha Baron Cohen, in character as Borat, leading the denizens of a Southern bar in singing, “Throw the Jew down the well.” There is a sensibility behind these jokes that I grew up around and have long embraced.\n", " Evidence\n", "\n", "\n", @@ -5916,7 +9944,72 @@ "\n", "\n", "\n", - " Those hung up on the question of whether the latest news is good for the Jews always seemed not only hopelessly ineffective but also tedious. Scolds from the Anti-Defamation League, alert to the damage done by every Jewish stereotype, will never end an ancient prejudice, but they could ruin a good time. And yet, as a critic engaging with a chaotic and constantly changing culture, in an online world that seems somehow both more outraged by and tolerant of hate speech, I am increasingly uncomfortable with this kind of condescension. It’s too glib. And that has made me look closer at the disturbing rise in antisemitism today, Jewish culture and identity, and the implications of what we find funny. THERE’S BEEN GROWING PUSHBACK in the last year from some Jews about double standards in the cultural conversation. Take the increasingly politicized issue of casting, which has inspired considerable controversy. We have never been more sensitive to issues of whitewashing, appropriation and representation. Think of Scarlett Johansson being hired for an Asian role. But when gentiles are cast as Golda Meir or Mrs. Maisel or Ruth Bader Ginsburg, there is little blowback. The superb indie comedy “Shiva Baby” tackles explicitly Jewish themes, but the fact that the lead is played by a Catholic stand-up, Rachel Sennott, barely raised an eyebrow. On her podcast, Sarah Silverman has spoken passionately about how Jewish characters are regularly played by gentile actors, specifically lamenting the lack of meaty roles for women. “The pattern in film is just undeniable,” she said, “and the pattern is — if the Jewish woman character is courageous or deserves love, she is never played by a Jew.” She delivered this sharp monologue with an ambivalence that also resonated with me. Acting requires an empathetic leap of imagination. Like Silverman, I know that great performers of any religion can and have brilliantly played Jews, and it’s easier to pass as Jewish than, say, African American. But is experience as a Jewish person irrelevant to playing Tevye in “Fiddler on the Roof” (as Alfred Molina, who was raised Catholic, did on Broadway) or to embodying Joan Rivers in a biopic? (Before the project fell apart, the gentile Kathryn Hahn was slated to play her.) I think it matters. When a gentile plays a Jew, the results are often more affected, the mannerisms pronounced, which can often mean the difference between someone playing Jewish vs. inhabiting a Jewish character. In his book “Jews Don’t Count,” the British comic David Baddiel argues that casting is one of many issues in contemporary discourse that illustrate how antisemitism is far more acceptable than other forms of bigotry. One need only point to the career of Mel Gibson to find evidence. Part of the reason, Baddiel explains, is that at a time when we are particularly sensitive to power imbalances, what distinguishes antisemitism is that the bigot imagines Jewish people as both low status (rats, venal) and high status (running the banks, part of a globalist conspiracy). Jewish people have clearly been tremendously successful in Hollywood, on Broadway and in comedy, among other artistic pursuits, but that doesn’t erase the specific discriminatory shadow hovering behind their rise. Silverman points to the number of famous Jews who have changed their names. “If Winona Ryder had stayed Winona Horowitz, would she have starred in ‘The Age of Innocence’?” Silverman has asked. “She wouldn’t.” Behind the discussion of gentiles in Jewish roles is the long history of Hollywood anxiety that a work will be “too Jewish,” words that have haunted Jewish artists for generations. The first time Jerry Seinfeld appeared on a sitcom, on “Benson” in 1980, he played a courier trying to sell a joke for the governor to use in a speech. When one flopped (“Did you hear about the rabbi who bought himself a ranch? Called it the Bar Mitzvah”), he asked: “Too Jewish?” Nine years later, a Jewish NBC executive dismissed the pilot for “Seinfeld” as “too New York, too Jewish,” and while it was picked up, the network ordered only four episodes. In the most memorable joke of his breakthrough 1986 Broadway comedy, “The World According to Me,” the comic Jackie Mason said, “You know what’s going to happen after this show: The gentiles are going to say, ‘It’s a hit.’ And the Jews are going to say, ‘Too Jewish.’” Mason delivers this cheerfully, but there’s a bristling undercurrent, a finger wag about self-loathing. Mason has always been a kind of guilty pleasure for me. Compared with my favorite comics, he seemed impossibly old-fashioned, not just in his borscht belt rhythms, but also in having bits centered on how fundamentally alien gentiles were to Jews. But listening to him again more recently, I detected a defiance that was, in its own way, radical, even countercultural. His accent itself, which if anything got thicker as he got older, represented a bold refusal to assimilate. The Jewish artists who found mainstream success didn’t sound like him. And when he died last year, with a modest amount of media attention paid to his legacy, it made me wonder about the obstacle course of Jewish success in a country where we are a tiny minority. But I also thought about the role played by Jewish people measuring the degree of acceptable Jewishness, the kind Mason was talking about in his show. WHEN REPRESENTATION IN CULTURE is discussed today, what’s often emphasized is how valuable it can be when children from minority groups see or hear someone like them and how that can expand their horizons. I have never felt this was an issue for me, because there seemed to be an abundance of Jewish people in the arts. Sure, some changed their names or played down their background, but we could tell. I never questioned the idea that Jews had been well represented in popular culture until I read Jeremy Dauber’s book “Jewish Comedy: A Serious History” and learned that not one leading character on prime-time television clearly identified as Jewish from 1954 to 1972 and again from 1978 to 1987. That came as a surprise and made me reconsider my 1980s childhood diet of pop culture. Back then, this mainly consisted of the offerings of three television networks, along with the occasional PG movie. This was the era of “The Cosby Show” and “Family Ties,” and I couldn’t think of a single Jewish character on a show I watched until I became a teenager. But a major shift for Jewish representation took place in 1989. That’s when “Seinfeld,” “Anything but Love” with Richard Lewis and “Chicken Soup” with Mason all premiered. (It’s also the year of “When Harry Met Sally.”) What’s striking about this influx of Jewish characters is that only one kind was allowed: A male stand-up with a gentile love interest. In order to not be too Jewish in the popular culture of my youth, you had to be a funny man interested in someone from another background. For a funny Jewish woman, you had to wait until “The Nanny.” How much did it matter that as a boy I saw no Jewish couples on television? I’m not certain — draw your own conclusions about the fact that I married a non-Jew.\n", + " Those hung up on the question of whether the latest news is good for the Jews always seemed not only hopelessly ineffective but also tedious. Scolds from the Anti-Defamation League, alert to the damage done by every Jewish stereotype, will never end an ancient prejudice, but they could ruin a good time. And yet, as a critic engaging with a chaotic and constantly changing culture, in an online world that seems somehow both more outraged by and tolerant of hate speech, I am increasingly uncomfortable with this kind of condescension. It’s too glib. And that has made me look closer at the disturbing rise in antisemitism today, Jewish culture and identity, and the implications of what we find funny.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " THERE’S BEEN GROWING PUSHBACK in the last year from some Jews about double standards in the cultural conversation. Take the increasingly politicized issue of casting, which has inspired considerable controversy. We have never been more sensitive to issues of whitewashing, appropriation and representation. Think of Scarlett Johansson being hired for an Asian role. But when gentiles are cast as Golda Meir or Mrs. Maisel or Ruth Bader Ginsburg, there is little blowback. The superb indie comedy “Shiva Baby” tackles explicitly Jewish themes, but the fact that the lead is played by a Catholic stand-up, Rachel Sennott, barely raised an eyebrow.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " On her podcast, Sarah Silverman has spoken passionately about how Jewish characters are regularly played by gentile actors, specifically lamenting the lack of meaty roles for women. “The pattern in film is just undeniable,” she said, “and the pattern is — if the Jewish woman character is courageous or deserves love, she is never played by a Jew.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " She delivered this sharp monologue with an ambivalence that also resonated with me. Acting requires an empathetic leap of imagination. Like Silverman, I know that great performers of any religion can and have brilliantly played Jews, and it’s easier to pass as Jewish than, say, African American. But is experience as a Jewish person irrelevant to playing Tevye in “Fiddler on the Roof” (as Alfred Molina, who was raised Catholic, did on Broadway) or to embodying Joan Rivers in a biopic? (Before the project fell apart, the gentile Kathryn Hahn was slated to play her.) I think it matters. When a gentile plays a Jew, the results are often more affected, the mannerisms pronounced, which can often mean the difference between someone playing Jewish vs. inhabiting a Jewish character.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In his book “Jews Don’t Count,” the British comic David Baddiel argues that casting is one of many issues in contemporary discourse that illustrate how antisemitism is far more acceptable than other forms of bigotry. One need only point to the career of Mel Gibson to find evidence. Part of the reason, Baddiel explains, is that at a time when we are particularly sensitive to power imbalances, what distinguishes antisemitism is that the bigot imagines Jewish people as both low status (rats, venal) and high status (running the banks, part of a globalist conspiracy).\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Jewish people have clearly been tremendously successful in Hollywood, on Broadway and in comedy, among other artistic pursuits, but that doesn’t erase the specific discriminatory shadow hovering behind their rise. Silverman points to the number of famous Jews who have changed their names. “If Winona Ryder had stayed Winona Horowitz, would she have starred in ‘The Age of Innocence’?” Silverman has asked. “She wouldn’t.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Behind the discussion of gentiles in Jewish roles is the long history of Hollywood anxiety that a work will be “too Jewish,” words that have haunted Jewish artists for generations. The first time Jerry Seinfeld appeared on a sitcom, on “Benson” in 1980, he played a courier trying to sell a joke for the governor to use in a speech. When one flopped (“Did you hear about the rabbi who bought himself a ranch? Called it the Bar Mitzvah”), he asked: “Too Jewish?” Nine years later, a Jewish NBC executive dismissed the pilot for “Seinfeld” as “too New York, too Jewish,” and while it was picked up, the network ordered only four episodes.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In the most memorable joke of his breakthrough 1986 Broadway comedy, “The World According to Me,” the comic Jackie Mason said, “You know what’s going to happen after this show: The gentiles are going to say, ‘It’s a hit.’ And the Jews are going to say, ‘Too Jewish.’” Mason delivers this cheerfully, but there’s a bristling undercurrent, a finger wag about self-loathing.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mason has always been a kind of guilty pleasure for me. Compared with my favorite comics, he seemed impossibly old-fashioned, not just in his borscht belt rhythms, but also in having bits centered on how fundamentally alien gentiles were to Jews. But listening to him again more recently, I detected a defiance that was, in its own way, radical, even countercultural. His accent itself, which if anything got thicker as he got older, represented a bold refusal to assimilate. The Jewish artists who found mainstream success didn’t sound like him.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " And when he died last year, with a modest amount of media attention paid to his legacy, it made me wonder about the obstacle course of Jewish success in a country where we are a tiny minority. But I also thought about the role played by Jewish people measuring the degree of acceptable Jewishness, the kind Mason was talking about in his show.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " WHEN REPRESENTATION IN CULTURE is discussed today, what’s often emphasized is how valuable it can be when children from minority groups see or hear someone like them and how that can expand their horizons. I have never felt this was an issue for me, because there seemed to be an abundance of Jewish people in the arts. Sure, some changed their names or played down their background, but we could tell. I never questioned the idea that Jews had been well represented in popular culture until I read Jeremy Dauber’s book “Jewish Comedy: A Serious History” and learned that not one leading character on prime-time television clearly identified as Jewish from 1954 to 1972 and again from 1978 to 1987.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " That came as a surprise and made me reconsider my 1980s childhood diet of pop culture. Back then, this mainly consisted of the offerings of three television networks, along with the occasional PG movie. This was the era of “The Cosby Show” and “Family Ties,” and I couldn’t think of a single Jewish character on a show I watched until I became a teenager. But a major shift for Jewish representation took place in 1989. That’s when “Seinfeld,” “Anything but Love” with Richard Lewis and “Chicken Soup” with Mason all premiered. (It’s also the year of “When Harry Met Sally.”) What’s striking about this influx of Jewish characters is that only one kind was allowed: A male stand-up with a gentile love interest.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In order to not be too Jewish in the popular culture of my youth, you had to be a funny man interested in someone from another background. For a funny Jewish woman, you had to wait until “The Nanny.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " How much did it matter that as a boy I saw no Jewish couples on television? I’m not certain — draw your own conclusions about the fact that I married a non-Jew.\n", " Evidence\n", "\n", "\n", @@ -5926,102 +10019,111 @@ "\n", "\n", "\n", - " Once I got older, and studying Shakespeare led to a lifelong love of theater, I never thought, as many do, that the greatness and humanity of the playwright’s characterizations transcended his portrait of Shylock in the antisemitic classic “The Merchant of Venice.” But I also found tossing aside this incredible play because of it an overreaction. To be a young Jew hungry for and alert to the best of culture sometimes meant learning to live with some antisemitism. To be honest, this wasn’t hard. I have never felt impeded or defined by prejudice against Jews, even though I could certainly tell a version of my life that would seem like it. I have a laundry list of what are now known as microaggressions, from a childhood friend who refused to believe I was Jewish and then stopped hanging out with me to a comic online dismissing my positive review because the subject was Jewish. But these didn’t traumatize or even faze me. This is not a boast. If anything, only recently have I questioned the downside of not lingering on these events. Has a coping mechanism prevented me from seeing the world clearly? Of course, one reason some Jews don’t make a bigger fuss about discrimination, one reason they feel comfortable laughing at it, is that they — we — feel safe. It’s easier to laugh at antisemitism when it happens in an unthreatening place. The feeling is: There are worse problems in the world. In her acclaimed book “People Love Dead Jews,” Dara Horn takes fierce aim at this blasé attitude, at the downplaying and rationalizations that Jewish Americans make, whether it’s the strained lengths intellectuals go to to argue that Shakespeare transcended bigotry in his portrayal of Shylock or to take comfort in the story of Anne Frank’s faith in the goodness of people (before bad people killed her). Horn’s bracing argument is that there is a cost to denial, that the rise of antisemitic incidents and hate crimes against Jews — including the deadliest antisemitic attack in American history at the Tree of Life synagogue in Pittsburgh — is directly tied to the fading of the stigma of bigotry against Jews. Hatred of Jews is not unusual, she argues; it’s the years after the Holocaust when that was socially unacceptable that were the anomaly. “Historically speaking, the decades in which my parents and I had grown up simply hadn’t been normal,” writes Horn. Now, she writes, normal is back. For Jews like myself with family photos featuring relatives murdered in the Holocaust, this point stopped me cold. There are signs of a new, more sober attitude toward antisemitism among younger Jewish artists. The 26-year-old Hannah Einbinder, who has integrated a long Hebrew prayer into her stand-up set, has said she stayed off Twitter in part because of antisemitism and always wears a Star of David necklace for political reasons. The comic Alex Edelman, 32, built his extremely funny Off Broadway show “Just for Us” around visiting a white nationalist meeting in Queens, having conversations with antisemites that eventually culminate in confrontation. His show is pointedly pessimistic about the ability of comedy to combat bigotry. AS I MULLED OVER THE TENSION between the twin Jewish traditions of being on guard against antisemitism and of finding humor in it, I thought back to my first adult job, as a copy editor at the Jewish newspaper The Forward in the late 1990s. One of my responsibilities was typing the hard-copy letters to the editor into the computer system, and in filing one from a woman offering feedback on a story about Hebrew schools, I made a typo. What she wrote in reference to her childhood peers was: “We knew exactly why Micah told us first to do justice, then to love mercy.” In a catastrophic mistake, I transcribed it as: “first to do justice, then to love money.” It didn’t take long before I was summoned to the editor’s office and fired. My first reaction was shock and panic. What will I do now? How will I pay the rent? But upon reflection, what stands out is how quickly my anxiety transformed into a kind of delight. I lost a job but gained a terrifically funny story that I would surely tell for years. And I did. It has gotten a ton of laughs. Long before social media, my story went viral offline, so much so that someone told it to me at a party not knowing it was about me. In my version, the woman who wrote the letter and the editor who fired me were guilty of a ridiculous overreaction to an honest mistake. Couldn’t they just laugh it off? In 2014, after a Pew study revealed that 42 percent of American Jews described having a good sense of humor as “essential” to being Jewish (more than twice as many as those who cited “Observing Jewish Law”), The Forward asked me to return to speak to its editorial board about comedy. In exchange, I asked if I could find the letter with my typo from the archives. I made a copy, framed it and put it above my desk. More recently, I took it down and put it in a file.\n", + " Once I got older, and studying Shakespeare led to a lifelong love of theater, I never thought, as many do, that the greatness and humanity of the playwright’s characterizations transcended his portrait of Shylock in the antisemitic classic “The Merchant of Venice.” But I also found tossing aside this incredible play because of it an overreaction. To be a young Jew hungry for and alert to the best of culture sometimes meant learning to live with some antisemitism.\n", " Evidence\n", "\n", "\n", - "\n", - " I wish I could say that considering these issues has led to a dramatic epiphany, that it has radically changed me as a critic and a Jew. That would make for a better ending to this essay. But the truth is that I remain ambivalent, as uncomfortable with being defined by prejudice as with ignoring it, living up to the stereotype of the neurotic Jew.\n", - " Concluding Statement\n", + "\n", + " To be honest, this wasn’t hard. I have never felt impeded or defined by prejudice against Jews, even though I could certainly tell a version of my life that would seem like it. I have a laundry list of what are now known as microaggressions, from a childhood friend who refused to believe I was Jewish and then stopped hanging out with me to a comic online dismissing my positive review because the subject was Jewish. But these didn’t traumatize or even faze me. This is not a boast. If anything, only recently have I questioned the downside of not lingering on these events. Has a coping mechanism prevented me from seeing the world clearly?\n", + " Evidence\n", "\n", "\n", "\n", - " Though I still find that story of being fired to be funny, now the outraged response doesn’t seem ridiculous. Joking about dark things is one of the great joys in life. But some laughs should stick in your throat.\n", + " Of course, one reason some Jews don’t make a bigger fuss about discrimination, one reason they feel comfortable laughing at it, is that they — we — feel safe. It’s easier to laugh at antisemitism when it happens in an unthreatening place. The feeling is: There are worse problems in the world.\n", " Evidence\n", "\n", - "
" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "\n", - "\n" - ] - }, - { - "data": { - "text/html": [ - "

nytimes\\congress-russia-sanctions.txt

" - ], - "text/plain": [ - "" - ] - }, + "\n", + "\n", + " In her acclaimed book “People Love Dead Jews,” Dara Horn takes fierce aim at this blasé attitude, at the downplaying and rationalizations that Jewish Americans make, whether it’s the strained lengths intellectuals go to to argue that Shakespeare transcended bigotry in his portrayal of Shylock or to take comfort in the story of Anne Frank’s faith in the goodness of people (before bad people killed her).\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Horn’s bracing argument is that there is a cost to denial, that the rise of antisemitic incidents and hate crimes against Jews — including the deadliest antisemitic attack in American history at the Tree of Life synagogue in Pittsburgh — is directly tied to the fading of the stigma of bigotry against Jews. Hatred of Jews is not unusual, she argues; it’s the years after the Holocaust when that was socially unacceptable that were the anomaly. “Historically speaking, the decades in which my parents and I had grown up simply hadn’t been normal,” writes Horn. Now, she writes, normal is back.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " For Jews like myself with family photos featuring relatives murdered in the Holocaust, this point stopped me cold. There are signs of a new, more sober attitude toward antisemitism among younger Jewish artists. The 26-year-old Hannah Einbinder, who has integrated a long Hebrew prayer into her stand-up set, has said she stayed off Twitter in part because of antisemitism and always wears a Star of David necklace for political reasons.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The comic Alex Edelman, 32, built his extremely funny Off Broadway show “Just for Us” around visiting a white nationalist meeting in Queens, having conversations with antisemites that eventually culminate in confrontation. His show is pointedly pessimistic about the ability of comedy to combat bigotry.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " AS I MULLED OVER THE TENSION between the twin Jewish traditions of being on guard against antisemitism and of finding humor in it, I thought back to my first adult job, as a copy editor at the Jewish newspaper The Forward in the late 1990s.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " One of my responsibilities was typing the hard-copy letters to the editor into the computer system, and in filing one from a woman offering feedback on a story about Hebrew schools, I made a typo. What she wrote in reference to her childhood peers was: “We knew exactly why Micah told us first to do justice, then to love mercy.” In a catastrophic mistake, I transcribed it as: “first to do justice, then to love money.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " It didn’t take long before I was summoned to the editor’s office and fired. My first reaction was shock and panic. What will I do now? How will I pay the rent? But upon reflection, what stands out is how quickly my anxiety transformed into a kind of delight. I lost a job but gained a terrifically funny story that I would surely tell for years. And I did. It has gotten a ton of laughs. Long before social media, my story went viral offline, so much so that someone told it to me at a party not knowing it was about me. In my version, the woman who wrote the letter and the editor who fired me were guilty of a ridiculous overreaction to an honest mistake. Couldn’t they just laugh it off?\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In 2014, after a Pew study revealed that 42 percent of American Jews described having a good sense of humor as “essential” to being Jewish (more than twice as many as those who cited “Observing Jewish Law”), The Forward asked me to return to speak to its editorial board about comedy. In exchange, I asked if I could find the letter with my typo from the archives. I made a copy, framed it and put it above my desk. More recently, I took it down and put it in a file.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " I wish I could say that considering these issues has led to a dramatic epiphany, that it has radically changed me as a critic and a Jew. That would make for a better ending to this essay. But the truth is that I remain ambivalent, as uncomfortable with being defined by prejudice as with ignoring it, living up to the stereotype of the neurotic Jew.\n", + " Concluding Statement\n", + "\n", + "\n", + "\n", + " Though I still find that story of being fired to be funny, now the outraged response doesn’t seem ridiculous. Joking about dark things is one of the great joys in life. But some laughs should stick in your throat.\n", + " Evidence\n", + "\n", + "
" + ], + "text/plain": [ + "" + ] + }, "metadata": {}, "output_type": "display_data" }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Using custom data configuration default-c69279b8df05313c\n" - ] - }, { "name": "stdout", "output_type": "stream", "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-c69279b8df05313c\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "\n", + "\n", + "\n" ] }, { "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "a405ac3261a8467c81d8a1647a5de657", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00congress-russia-sanctions.txt" + ], "text/plain": [ - " 0%| | 0/1 [00:00" ] }, "metadata": {}, "output_type": "display_data" }, { - "name": "stdout", + "name": "stderr", "output_type": "stream", "text": [ - "Dataset text downloaded and prepared to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-c69279b8df05313c\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4. Subsequent calls will reuse this data.\n" + "Using custom data configuration default-c69279b8df05313c\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-c69279b8df05313c\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "c0e1ff28a906433d983d4fd89e92ed33", + "model_id": "0f9d3dce50bf4f1ebb6a1503b6d7c2f0", "version_major": 2, "version_minor": 0 }, @@ -6033,23 +10135,16 @@ "output_type": "display_data" }, { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "f1de79c224834017954e95504053d22c", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00\n", "\n", "\n", - " “Both parties are saying the same thing about wanting the same result,” said Senator Jim Risch of Idaho, the top Republican on the Foreign Relations Committee, who had been negotiating the bill on behalf of his party. “It’s just, what action gets us that result?” Republicans and Democrats squabbled about that question for weeks. In January, Democrats scuttled an effort by Senator Ted Cruz, Republican of Texas, to impose sanctions on Nord Stream 2, the Russian gas pipeline, arguing that imposing such measures before an invasion would give up key leverage that United States officials needed in diplomatic talks with Russia. Pressing a case made by the White House, they also said it would alienate Germany when demonstrating European unity against Moscow’s aggression was crucial. They all but promised they would coalesce around a new sanctions bill. The measure under discussion in recent weeks by Mr. Risch and Senator Bob Menendez, the New Jersey Democrat who is the chairman of the Foreign Relations Committee, was supposed to be what they called the “mother of all sanctions” packages. It would have slapped immediate penalties on Russian officials and entities, and additional ones should Mr. Putin invade. The bill also would have authorized President Biden to use the Lend-Lease Act of 1941 to lend military equipment to Ukraine, on top of the $2.7 billion in security assistance the United States has committed to Kyiv since 2014. For weeks, senators used language such as “fine-tuning” and “one-yard line” to describe how close they were to reaching a deal. Mr. Menendez suggested that senators might even plow over objections from the White House to imposing sanctions before an invasion, a move that Republicans had pushed for but the Biden administration had lobbied hard to head off. “They’re not enthralled with the idea,” Mr. Menendez told reporters about the White House. “But I have suggested to them that a strong bipartisan response strengthens their hand.”\n", + " “Both parties are saying the same thing about wanting the same result,” said Senator Jim Risch of Idaho, the top Republican on the Foreign Relations Committee, who had been negotiating the bill on behalf of his party. “It’s just, what action gets us that result?”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Republicans and Democrats squabbled about that question for weeks. In January, Democrats scuttled an effort by Senator Ted Cruz, Republican of Texas, to impose sanctions on Nord Stream 2, the Russian gas pipeline, arguing that imposing such measures before an invasion would give up key leverage that United States officials needed in diplomatic talks with Russia. Pressing a case made by the White House, they also said it would alienate Germany when demonstrating European unity against Moscow’s aggression was crucial. They all but promised they would coalesce around a new sanctions bill.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The measure under discussion in recent weeks by Mr. Risch and Senator Bob Menendez, the New Jersey Democrat who is the chairman of the Foreign Relations Committee, was supposed to be what they called the “mother of all sanctions” packages. It would have slapped immediate penalties on Russian officials and entities, and additional ones should Mr. Putin invade.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The bill also would have authorized President Biden to use the Lend-Lease Act of 1941 to lend military equipment to Ukraine, on top of the $2.7 billion in security assistance the United States has committed to Kyiv since 2014.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " For weeks, senators used language such as “fine-tuning” and “one-yard line” to describe how close they were to reaching a deal. Mr. Menendez suggested that senators might even plow over objections from the White House to imposing sanctions before an invasion, a move that Republicans had pushed for but the Biden administration had lobbied hard to head off.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “They’re not enthralled with the idea,” Mr. Menendez told reporters about the White House. “But I have suggested to them that a strong bipartisan response strengthens their hand.”\n", " Evidence\n", "\n", "\n", @@ -6124,17 +10268,47 @@ "\n", "\n", "\n", - " As the talks wore on with no resolution, prominent backers of a sanctions package — including Senator Mitch McConnell, Republican of Kentucky and the minority leader — began to argue that Mr. Biden could unilaterally impose sanctions without congressional action. By Tuesday, eyeing the coming recess and the decaying state of negotiations, Senate Republicans unveiled their own sanctions legislation that also would have provided the Ukrainian government with an additional $500 million in military financing.\n", + " As the talks wore on with no resolution, prominent backers of a sanctions package — including Senator Mitch McConnell, Republican of Kentucky and the minority leader — began to argue that Mr. Biden could unilaterally impose sanctions without congressional action.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " By Tuesday, eyeing the coming recess and the decaying state of negotiations, Senate Republicans unveiled their own sanctions legislation that also would have provided the Ukrainian government with an additional $500 million in military financing.\n", " Evidence\n", "\n", "\n", "\n", - " Mr. Menendez denounced the move as “partisan posturing,” and said the proposal was “largely a reflection of what Democrats had already agreed to.” “A partisan victory is not worth a message of division from Washington, which only benefits Putin,” he said. Despite the partisan bickering over how best to proceed, there has been little division in the Senate over whether additional sanctions could change Mr. Putin’s behavior.\n", + " Mr. Menendez denounced the move as “partisan posturing,” and said the proposal was “largely a reflection of what Democrats had already agreed to.”\n", + " Claim\n", + "\n", + "\n", + "\n", + " “A partisan victory is not worth a message of division from Washington, which only benefits Putin,” he said.\n", + " Claim\n", + "\n", + "\n", + "\n", + " Despite the partisan bickering over how best to proceed, there has been little division in the Senate over whether additional sanctions could change Mr. Putin’s behavior.\n", " Claim\n", "\n", "\n", "\n", - " Even Senator Josh Hawley, Republican of Missouri, who has argued that allowing Ukraine to join NATO would strain the security posture of the United States at a time when it should be focused on China, endorsed imposing additional sanctions. “If they get to a point where their financial system is seriously impaired, I think that that will absolutely send a message,” Mr. Hawley said in a brief interview. “In the new era we’re entering in Europe, we’re going to have to do more with less.” Only Senators Rand Paul, Republican of Kentucky, who has long opposed the use of sanctions, and Bernie Sanders, independent of Vermont, have publicly opposed the proposed bill. “The sanctions against Russia that would be imposed as a consequence of its actions and Russia’s threatened response to those sanctions could result in massive economic upheaval — with impacts on energy, banking, food and the day-to-day needs of ordinary people throughout the entire world,” Mr. Sanders said in a speech from the Senate floor last week.\n", + " Even Senator Josh Hawley, Republican of Missouri, who has argued that allowing Ukraine to join NATO would strain the security posture of the United States at a time when it should be focused on China, endorsed imposing additional sanctions.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “If they get to a point where their financial system is seriously impaired, I think that that will absolutely send a message,” Mr. Hawley said in a brief interview. “In the new era we’re entering in Europe, we’re going to have to do more with less.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Only Senators Rand Paul, Republican of Kentucky, who has long opposed the use of sanctions, and Bernie Sanders, independent of Vermont, have publicly opposed the proposed bill.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “The sanctions against Russia that would be imposed as a consequence of its actions and Russia’s threatened response to those sanctions could result in massive economic upheaval — with impacts on energy, banking, food and the day-to-day needs of ordinary people throughout the entire world,” Mr. Sanders said in a speech from the Senate floor last week.\n", " Evidence\n", "\n", "\n", @@ -6173,7 +10347,7 @@ { "data": { "text/html": [ - "

nytimes\\congress-stock-trading-ban.txt

" + "

congress-stock-trading-ban.txt

" ], "text/plain": [ "" @@ -6186,20 +10360,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-185e8bd71d8b8e99\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-185e8bd71d8b8e99\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-185e8bd71d8b8e99\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-185e8bd71d8b8e99\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "43fe8560a1ab424dbecc0954c1c205b5", + "model_id": "96f728a3524c4f6784386d6e3d5330f2", "version_major": 2, "version_minor": 0 }, @@ -6211,58 +10379,16 @@ "output_type": "display_data" }, { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "c2c56cbaa60541779a40badc21788407", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00\n", "\n", "\n", - " This idea got a fresh jolt in the early days of the pandemic after some lawmakers faced awkward questions about whether they used nonpublic information to make lucrative stock trades just as the severity of the threat posed by the coronavirus was becoming clear. A report in December by Insider was more definitive. It revealed that in 2020 and 2021, dozens of lawmakers failed to abide by rules requiring them to promptly disclose stock trades above a certain threshold. The investigation also found that Congress does a poor job of enforcing accountability and transparency measures. In response to the uproar, there has been a push by both parties, in both houses of Congress, to establish stronger guardrails on congressional stock ownership. Multiple lawmakers have introduced bills pushing variations of a ban on trading individual stocks, some tougher and more expansive than others. The House minority leader, Kevin McCarthy, reportedly told donors in January that if, as expected, Republicans win back the House in the midterm elections this fall, they would work to pass legislation that would limit lawmakers’ ability to trade stocks. In a high-stakes election year, with lawmakers eager to show voters that they feel their rage, now is the moment to drive home this popular, common-sense reform. Americans have lost faith in Congress. Restoring trust in this institution requires concrete, bipartisan change. It has been a decade since Congress last made a significant effort at policing itself in this area. The Stock Act of 2012, among other measures, made it illegal for lawmakers to trade based on access to nonpublic information. The reforms were well intentioned but inadequate. In practice, there are too many legal shades of gray. A clearer, brighter line needs to be drawn. For all of the Democratic Party’s talk about restoring public faith in government, its leaders in the House have been, until recently, resistant to talk of a trading ban for members. “We are a free-market economy,” Speaker Nancy Pelosi said in December. “They should be able to participate in that.” The majority leader, Steny Hoyer, has been similarly weak, suggesting that a ban is unnecessary. While Mr. Hoyer owns no stock, he has said that “members ought not to be in a different situation that they would otherwise be if they weren’t members of Congress.”\n", + " This idea got a fresh jolt in the early days of the pandemic after some lawmakers faced awkward questions about whether they used nonpublic information to make lucrative stock trades just as the severity of the threat posed by the coronavirus was becoming clear.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " A report in December by Insider was more definitive. It revealed that in 2020 and 2021, dozens of lawmakers failed to abide by rules requiring them to promptly disclose stock trades above a certain threshold. The investigation also found that Congress does a poor job of enforcing accountability and transparency measures.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In response to the uproar, there has been a push by both parties, in both houses of Congress, to establish stronger guardrails on congressional stock ownership. Multiple lawmakers have introduced bills pushing variations of a ban on trading individual stocks, some tougher and more expansive than others. The House minority leader, Kevin McCarthy, reportedly told donors in January that if, as expected, Republicans win back the House in the midterm elections this fall, they would work to pass legislation that would limit lawmakers’ ability to trade stocks.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In a high-stakes election year, with lawmakers eager to show voters that they feel their rage, now is the moment to drive home this popular, common-sense reform. Americans have lost faith in Congress. Restoring trust in this institution requires concrete, bipartisan change.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " It has been a decade since Congress last made a significant effort at policing itself in this area. The Stock Act of 2012, among other measures, made it illegal for lawmakers to trade based on access to nonpublic information. The reforms were well intentioned but inadequate. In practice, there are too many legal shades of gray. A clearer, brighter line needs to be drawn.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " For all of the Democratic Party’s talk about restoring public faith in government, its leaders in the House have been, until recently, resistant to talk of a trading ban for members. “We are a free-market economy,” Speaker Nancy Pelosi said in December. “They should be able to participate in that.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The majority leader, Steny Hoyer, has been similarly weak, suggesting that a ban is unnecessary. While Mr. Hoyer owns no stock, he has said that “members ought not to be in a different situation that they would otherwise be if they weren’t members of Congress.”\n", " Evidence\n", "\n", "\n", @@ -6331,7 +10509,37 @@ "\n", "\n", "\n", - " The common argument that a trading ban would pose a hardship for lawmakers is no more compelling. Most of the proposals under consideration do not call for members of Congress to sell all their stock holdings. They would merely prohibit lawmakers from trading stocks in individual companies. Assets could still be held in vehicles such as index funds or blind trusts. It also bears noting that only a sliver of American families, about 15 percent, directly hold stock in individual companies, as opposed to indirectly through mutual funds and the like. A stock trading ban would put lawmakers more in sync with the 85 percent of Americans who own no individual stock, rather than align their interests with the 15 percent who do. A ban on congressional trading enjoys a bipartisan appeal that is rare in this polarized age. A January poll found that 63 percent of American voters are at least somewhat in favor of such a move — with strong backing among Democrats, Republicans and independents alike. With the support for reform growing, Ms. Pelosi adjusted course this month, saying she was open to a ban and announcing that the House Administration Committee would look into the situation. The committee chairwoman, Zoe Lofgren of California, has said her team is analyzing the existing bills and would put together a broad-based consensus proposal. The speaker’s public shift was vital to keeping the push alive, but there is a difference between grudging acceptance and vigorous support. Proponents of reform need to keep the pressure on to ensure that this effort does not get slow-walked or bogged down in the devilish details. Ms. Pelosi, for instance, insisted that reform legislation should apply not only to Congress but also to the judiciary, including the Supreme Court. “It has to be governmentwide,” she asserted. The judicial branch certainly could use some ethical shoring up. An investigation last year by The Wall Street Journal found that from 2010 to 2018, 131 federal judges “unlawfully ruled in cases involving companies in which they or their families held shares.” People involved in close to 800 lawsuits have since been notified that their cases are eligible to be reopened because of these conflicts. There are proposals floating around that would address all three branches. Two Democrats, Senator Kirsten Gillibrand of New York and Representative Katie Porter of California, recently reintroduced a bill that would tighten reporting requirements across the board, as well as bar trading of individual stocks by members of Congress, the president and vice president, Supreme Court justices and top officials with the Federal Reserve — which suffered its own trading scandals last year.\n", + " The common argument that a trading ban would pose a hardship for lawmakers is no more compelling. Most of the proposals under consideration do not call for members of Congress to sell all their stock holdings. They would merely prohibit lawmakers from trading stocks in individual companies. Assets could still be held in vehicles such as index funds or blind trusts.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " It also bears noting that only a sliver of American families, about 15 percent, directly hold stock in individual companies, as opposed to indirectly through mutual funds and the like. A stock trading ban would put lawmakers more in sync with the 85 percent of Americans who own no individual stock, rather than align their interests with the 15 percent who do.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " A ban on congressional trading enjoys a bipartisan appeal that is rare in this polarized age. A January poll found that 63 percent of American voters are at least somewhat in favor of such a move — with strong backing among Democrats, Republicans and independents alike.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " With the support for reform growing, Ms. Pelosi adjusted course this month, saying she was open to a ban and announcing that the House Administration Committee would look into the situation. The committee chairwoman, Zoe Lofgren of California, has said her team is analyzing the existing bills and would put together a broad-based consensus proposal.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The speaker’s public shift was vital to keeping the push alive, but there is a difference between grudging acceptance and vigorous support. Proponents of reform need to keep the pressure on to ensure that this effort does not get slow-walked or bogged down in the devilish details. Ms. Pelosi, for instance, insisted that reform legislation should apply not only to Congress but also to the judiciary, including the Supreme Court. “It has to be governmentwide,” she asserted.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The judicial branch certainly could use some ethical shoring up. An investigation last year by The Wall Street Journal found that from 2010 to 2018, 131 federal judges “unlawfully ruled in cases involving companies in which they or their families held shares.” People involved in close to 800 lawsuits have since been notified that their cases are eligible to be reopened because of these conflicts.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " There are proposals floating around that would address all three branches. Two Democrats, Senator Kirsten Gillibrand of New York and Representative Katie Porter of California, recently reintroduced a bill that would tighten reporting requirements across the board, as well as bar trading of individual stocks by members of Congress, the president and vice president, Supreme Court justices and top officials with the Federal Reserve — which suffered its own trading scandals last year.\n", " Evidence\n", "\n", "\n", @@ -6341,7 +10549,17 @@ "\n", "\n", "\n", - " Lawmakers’ top priority — arguably, their first duty — should be to clean up their own branch of government. They are, as elected officials, directly accountable to their voters, and many of the people to whom they owe their jobs and salaries have grave doubts about their ethical guidelines and rules of fair play. In a series of recent Times Opinion focus groups, voters across the political spectrum described their frustrations and even anger at the political class and the system, seeing elected officials in both parties as acting in self-interest without rules or consequences. “They all just go to their barbecues and cocktail parties and laugh,” said one independent voter. “They just want the power. They couldn’t care less about us.” Some Democratic voters expressed interest in term limits, curbs on lobbyist influence on lawmakers and new rules on money in politics. The push for a trading ban is about more than imposing rules to keep lawmakers on the straight and narrow. It is about changing the widespread perception of public service as a playground for corruption and self-dealing. It is about restoring Americans’ faith in their government. For Congress, there may be no worthier cause.\n", + " Lawmakers’ top priority — arguably, their first duty — should be to clean up their own branch of government. They are, as elected officials, directly accountable to their voters, and many of the people to whom they owe their jobs and salaries have grave doubts about their ethical guidelines and rules of fair play.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In a series of recent Times Opinion focus groups, voters across the political spectrum described their frustrations and even anger at the political class and the system, seeing elected officials in both parties as acting in self-interest without rules or consequences. “They all just go to their barbecues and cocktail parties and laugh,” said one independent voter. “They just want the power. They couldn’t care less about us.” Some Democratic voters expressed interest in term limits, curbs on lobbyist influence on lawmakers and new rules on money in politics.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The push for a trading ban is about more than imposing rules to keep lawmakers on the straight and narrow. It is about changing the widespread perception of public service as a playground for corruption and self-dealing. It is about restoring Americans’ faith in their government. For Congress, there may be no worthier cause.\n", " Evidence\n", "\n", "
" @@ -6365,7 +10583,7 @@ { "data": { "text/html": [ - "

nytimes\\covid-depression-anxiety.txt

" + "

covid-depression-anxiety.txt

" ], "text/plain": [ "" @@ -6378,20 +10596,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-61685495b7258437\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-61685495b7258437\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-61685495b7258437\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-61685495b7258437\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "3afce42943804e3c8b439b7a8c9b5937", + "model_id": "2ca2cf0b4ae04255909b75e9a5ed8326", "version_major": 2, "version_minor": 0 }, @@ -6402,64 +10614,22 @@ "metadata": {}, "output_type": "display_data" }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Loading cached processed dataset at C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-61685495b7258437\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4\\cache-c5edc487b8fb01fb.arrow\n" + ] + }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "53c097c512694915bfb7958fdab9d903", + "model_id": "943a2afcb7d942b1aacbf86547ae50b1", "version_major": 2, "version_minor": 0 }, "text/plain": [ - " 0%| | 0/1 [00:00\n", "\n", "\n", - " The study, published Wednesday in the journal The BMJ, analyzed records of nearly 154,000 Covid patients in the Veterans Health Administration system and compared their experience in the year after they recovered from their initial infection with that of a similar group of people who did not contract the virus. The study included only patients who had no mental health diagnoses or treatment for at least two years before becoming infected with the coronavirus, allowing researchers to focus on psychiatric diagnoses and treatment that occurred after coronavirus infection. People who had Covid were 39 percent more likely to be diagnosed with depression and 35 percent more likely to be diagnosed with anxiety over the months following infection than people without Covid during the same period, the study found. Covid patients were 38 percent more likely to be diagnosed with stress and adjustment disorders and 41 percent more likely to be diagnosed with sleep disorders than uninfected people. “There appears to be a clear excess of mental health diagnoses in the months after Covid,” said Dr. Paul Harrison, a professor of psychiatry at the University of Oxford, who was not involved in the study. He said the results echoed the emerging picture from other research, including a 2021 study on which he was an author, and “it strengthens the case that there is something about Covid that is leaving people at greater risk of common mental health conditions.” The data does not suggest that most Covid patients will develop mental health symptoms. Only between 4.4 percent and 5.6 percent of those in the study received diagnoses of depression, anxiety or stress and adjustment disorders. “It’s not an epidemic of anxiety and depression, fortunately,” Dr. Harrison said. “But it’s not trivial.” Researchers also found that Covid patients were 80 percent more likely to develop cognitive problems like brain fog, confusion and forgetfulness than those who didn’t have Covid. They were 34 percent more likely to develop opioid use disorders, possibly from drugs prescribed for pain, and 20 percent more likely to develop non-opioid substance use disorders including alcoholism, the study reported. After having Covid, people were 55 percent more likely to be taking prescribed antidepressants and 65 percent more likely to be taking prescribed anti-anxiety medications than contemporaries without Covid, the study found. Overall, more than 18 percent of the Covid patients received a diagnosis of or prescription for a neuropsychiatric issue in the following year, compared with less than 12 percent of the non-Covid group. Covid patients were 60 percent more likely to fall into those categories than people who didn’t have Covid, the study found. The study found that patients hospitalized for Covid were more likely to be diagnosed with mental health issues than those with less serious coronavirus infections. But people with mild initial infections were still at greater risk than people without Covid.\n", + " The study, published Wednesday in the journal The BMJ, analyzed records of nearly 154,000 Covid patients in the Veterans Health Administration system and compared their experience in the year after they recovered from their initial infection with that of a similar group of people who did not contract the virus.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The study included only patients who had no mental health diagnoses or treatment for at least two years before becoming infected with the coronavirus, allowing researchers to focus on psychiatric diagnoses and treatment that occurred after coronavirus infection.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " People who had Covid were 39 percent more likely to be diagnosed with depression and 35 percent more likely to be diagnosed with anxiety over the months following infection than people without Covid during the same period, the study found. Covid patients were 38 percent more likely to be diagnosed with stress and adjustment disorders and 41 percent more likely to be diagnosed with sleep disorders than uninfected people.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “There appears to be a clear excess of mental health diagnoses in the months after Covid,” said Dr. Paul Harrison, a professor of psychiatry at the University of Oxford, who was not involved in the study. He said the results echoed the emerging picture from other research, including a 2021 study on which he was an author, and “it strengthens the case that there is something about Covid that is leaving people at greater risk of common mental health conditions.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The data does not suggest that most Covid patients will develop mental health symptoms. Only between 4.4 percent and 5.6 percent of those in the study received diagnoses of depression, anxiety or stress and adjustment disorders.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “It’s not an epidemic of anxiety and depression, fortunately,” Dr. Harrison said. “But it’s not trivial.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Researchers also found that Covid patients were 80 percent more likely to develop cognitive problems like brain fog, confusion and forgetfulness than those who didn’t have Covid. They were 34 percent more likely to develop opioid use disorders, possibly from drugs prescribed for pain, and 20 percent more likely to develop non-opioid substance use disorders including alcoholism, the study reported.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " After having Covid, people were 55 percent more likely to be taking prescribed antidepressants and 65 percent more likely to be taking prescribed anti-anxiety medications than contemporaries without Covid, the study found.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Overall, more than 18 percent of the Covid patients received a diagnosis of or prescription for a neuropsychiatric issue in the following year, compared with less than 12 percent of the non-Covid group. Covid patients were 60 percent more likely to fall into those categories than people who didn’t have Covid, the study found.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The study found that patients hospitalized for Covid were more likely to be diagnosed with mental health issues than those with less serious coronavirus infections. But people with mild initial infections were still at greater risk than people without Covid.\n", " Evidence\n", "\n", "\n", @@ -6529,17 +10772,42 @@ "\n", "\n", "\n", - " The team also compared mental health diagnoses for people hospitalized for Covid with those hospitalized for any other reason. “Whether people were hospitalized for heart attacks or chemotherapy or whatever other conditions, the Covid-19 group exhibited a higher risk,” Dr. Al-Aly said. The study involved electronic medical records of 153,848 adults who tested positive for the coronavirus between March 1, 2020, and Jan. 15, 2021, and survived for at least 30 days. Because it was early in the pandemic, very few were vaccinated before infection. The patients were followed until Nov. 30, 2021. Dr. Al-Aly said his team was planning to analyze whether subsequent vaccination modified people’s mental health symptoms, as well as other post-Covid medical issues the group has studied. The Covid patients were compared with more than 5.6 million patients in the Veterans system who did not test positive for the coronavirus and more than 5.8 million patients from before the pandemic, in the period spanning March 2018 through January 2019. To try to gauge the mental health impact of Covid-19 against that of another virus, the patients were also compared with about 72,000 patients who had the flu during the two and a half years before the pandemic. (Dr. Al-Aly said there were too few flu cases during the pandemic to provide a contemporaneous comparison.)\n", + " The team also compared mental health diagnoses for people hospitalized for Covid with those hospitalized for any other reason. “Whether people were hospitalized for heart attacks or chemotherapy or whatever other conditions, the Covid-19 group exhibited a higher risk,” Dr. Al-Aly said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The study involved electronic medical records of 153,848 adults who tested positive for the coronavirus between March 1, 2020, and Jan. 15, 2021, and survived for at least 30 days. Because it was early in the pandemic, very few were vaccinated before infection. The patients were followed until Nov. 30, 2021. Dr. Al-Aly said his team was planning to analyze whether subsequent vaccination modified people’s mental health symptoms, as well as other post-Covid medical issues the group has studied.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The Covid patients were compared with more than 5.6 million patients in the Veterans system who did not test positive for the coronavirus and more than 5.8 million patients from before the pandemic, in the period spanning March 2018 through January 2019. To try to gauge the mental health impact of Covid-19 against that of another virus, the patients were also compared with about 72,000 patients who had the flu during the two and a half years before the pandemic. (Dr. Al-Aly said there were too few flu cases during the pandemic to provide a contemporaneous comparison.)\n", " Evidence\n", "\n", "\n", "\n", - " The researchers tried to minimize differences between groups by adjusting for many demographic characteristics, pre-Covid health conditions, residence in nursing homes and other variables. In the year after their infection, the Covid patients had higher rates of mental health diagnoses than the other groups.\n", + " The researchers tried to minimize differences between groups by adjusting for many demographic characteristics, pre-Covid health conditions, residence in nursing homes and other variables.\n", + " Claim\n", + "\n", + "\n", + "\n", + " In the year after their infection, the Covid patients had higher rates of mental health diagnoses than the other groups.\n", " Claim\n", "\n", "\n", "\n", - " “It’s not really surprising to me because we’ve been seeing this,” said Dr. Maura Boldrini, an associate professor of psychiatry at NewYork-Presbyterian Columbia University Medical Center. “It’s striking to me how many times we’ve seen people with these new symptoms with no previous psychiatric history.” Most veterans in the study were men, three-quarters were white and their average age was 63, so the findings may not apply to all Americans. Still, the study included over 1.3 million women and 2.1 million Black patients, and Dr. Al-Aly said “we found evidence of increased risk regardless of age, race or gender.” There are several possible reasons for the increase in mental health diagnoses, Dr. Al-Aly and outside experts said. Dr. Boldrini said she believed the symptoms were most likely influenced by both biological factors and the psychological stresses associated with having an illness.\n", + " “It’s not really surprising to me because we’ve been seeing this,” said Dr. Maura Boldrini, an associate professor of psychiatry at NewYork-Presbyterian Columbia University Medical Center. “It’s striking to me how many times we’ve seen people with these new symptoms with no previous psychiatric history.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Most veterans in the study were men, three-quarters were white and their average age was 63, so the findings may not apply to all Americans. Still, the study included over 1.3 million women and 2.1 million Black patients, and Dr. Al-Aly said “we found evidence of increased risk regardless of age, race or gender.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " There are several possible reasons for the increase in mental health diagnoses, Dr. Al-Aly and outside experts said. Dr. Boldrini said she believed the symptoms were most likely influenced by both biological factors and the psychological stresses associated with having an illness.\n", " Evidence\n", "\n", "\n", @@ -6549,7 +10817,27 @@ "\n", "\n", "\n", - " Research, including brain autopsies of patients who died of Covid-19, has found evidence that Covid infection can generate inflammation or tiny blood clots in the brain, and can cause small and large strokes, said Dr. Boldrini, who has conducted some of these studies. In some people, the immune response that is activated to fight against a coronavirus infection may not shut down effectively once the infection is gone, which can fuel inflammation, she said. “Inflammatory markers can disrupt the ability of the brain to function in many ways, including the ability of the brain to make serotonin, which is fundamental for mood and sleep,” Dr. Boldrini said. By themselves, such brain changes may or may not cause psychological problems. But, if someone is experiencing stress from having felt physically ill or because having Covid disrupted their lives and routines, she said, “you may be more prone to not being able to cope because your brain is not functioning 100 percent.” Dr. Harrison, who has conducted other studies with large electronic medical databases, noted that such analyses can miss more granular information about patients. He also said that some people in the comparison groups might have had Covid and not been tested to confirm it, and that some Covid patients might have been more likely to receive diagnoses because they were more worried about their health after Covid or because doctors were quicker to identify psychological symptoms. “There’s no one analysis that tells you the whole story,” Dr. Al-Aly said. “Maybe all of us or most of us experienced some sort of an emotional distress or mental health stress or some sleep problem,” he added. “But people with Covid did worse.”\n", + " Research, including brain autopsies of patients who died of Covid-19, has found evidence that Covid infection can generate inflammation or tiny blood clots in the brain, and can cause small and large strokes, said Dr. Boldrini, who has conducted some of these studies. In some people, the immune response that is activated to fight against a coronavirus infection may not shut down effectively once the infection is gone, which can fuel inflammation, she said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Inflammatory markers can disrupt the ability of the brain to function in many ways, including the ability of the brain to make serotonin, which is fundamental for mood and sleep,” Dr. Boldrini said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " By themselves, such brain changes may or may not cause psychological problems. But, if someone is experiencing stress from having felt physically ill or because having Covid disrupted their lives and routines, she said, “you may be more prone to not being able to cope because your brain is not functioning 100 percent.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Dr. Harrison, who has conducted other studies with large electronic medical databases, noted that such analyses can miss more granular information about patients. He also said that some people in the comparison groups might have had Covid and not been tested to confirm it, and that some Covid patients might have been more likely to receive diagnoses because they were more worried about their health after Covid or because doctors were quicker to identify psychological symptoms.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “There’s no one analysis that tells you the whole story,” Dr. Al-Aly said. “Maybe all of us or most of us experienced some sort of an emotional distress or mental health stress or some sleep problem,” he added. “But people with Covid did worse.”\n", " Evidence\n", "\n", "" @@ -6573,7 +10861,7 @@ { "data": { "text/html": [ - "

nytimes\\covid-nursing-shortages.txt

" + "

covid-nursing-shortages.txt

" ], "text/plain": [ "" @@ -6586,34 +10874,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-792f600720f967e5\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-792f600720f967e5\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-792f600720f967e5\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-792f600720f967e5\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "a960104520b3475b89fe23250bf5785f", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " As hospitals in the United States battled another coronavirus wave in the past few months, another crisis was steadily growing more acute: a shortage of nurses. At Pascagoula Hospital in Mississippi, one nurse acknowledged the inevitable: Under such relentless pressure, patient care is deteriorating. We speak to some of the “forgotten warriors” of the nursing profession to find out what life is like on the front line of the pandemic. Andrew Jacobs, a global health reporter for The New York Times. The exodus of medical workers during the pandemic has been especially brutal for the small, nonprofit safety-net hospitals where millions of Americans seek care.\n", + " As hospitals in the United States battled another coronavirus wave in the past few months, another crisis was steadily growing more acute: a shortage of nurses.\n", + " Claim\n", + "\n", + "\n", + "\n", + " At Pascagoula Hospital in Mississippi, one nurse acknowledged the inevitable: Under such relentless pressure, patient care is deteriorating.\n", + " Claim\n", + "\n", + "\n", + "\n", + " We speak to some of the “forgotten warriors” of the nursing profession to find out what life is like on the front line of the pandemic.\n", + " Claim\n", + "\n", + "\n", + "\n", + " Andrew Jacobs, a global health reporter for The New York Times.\n", + " Claim\n", + "\n", + "\n", + "\n", + " The exodus of medical workers during the pandemic has been especially brutal for the small, nonprofit safety-net hospitals where millions of Americans seek care.\n", " Claim\n", "\n", "
" @@ -6713,7 +10979,7 @@ { "data": { "text/html": [ - "

nytimes\\covid-plague-work-labor.txt

" + "

covid-plague-work-labor.txt

" ], "text/plain": [ "" @@ -6726,34 +10992,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-f71b96cec2acb335\n" + "Using custom data configuration default-f71b96cec2acb335\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-f71b96cec2acb335\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-f71b96cec2acb335\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" - ] - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "79d3255cf5fc4db2ba8bea8504e3aa18", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00\n", "\n", "\n", - " The struggles over wages and the value of labor that defined the postplague years were in some ways as dramatic as the pandemic itself. Eventually, Europe erupted into violence. Given where we are right now, it’s worth paying attention to the chain of events that led, link by link, from pandemic to panic to bloody uprising. The Black Death, as we now call it, burned its way across the Eurasian continent from 1347 to 1351. Arab historian Ibn Khaldun recalled with horror, “Civilization both in the East and the West was visited by a destructive plague which devastated nations and caused populations to vanish. It swallowed up many of the good things of civilization and wiped them out.’’ Europe, particularly hard-hit, lost somewhere between a third and a half of its population (though historians still dispute the figure). “Many lands and cities were made desolate,” the Italian historian Giovanni Villani wrote in 1348. “And this plague lasted till _____.” He never filled in the end date. He had died of the plague before he could. When we think of the Black Death, we tend to think of the gruesome scenes reported in the cities: the heaped corpses, the trenches where bodies were hurled, unmourned. What contemporaries also found eerie, however, was what they saw in the countryside — not scenes of destruction, but visions of bounty and overgrowth. Fields of ripe grain sitting under the sun. Vines heavy with grapes. These sights were unsettling because they suggested there was no one left alive to bring in the harvests. “Many a fine, noble estate / Lay idle without those to work it,” wrote the poet and composer Guillaume de Machaut, who weathered the plague by hiding locked up in his tower. His poem goes on: The cattle lay aboutThe fields completely abandonedGrazing in the corn and among the grapesAnywhere at all they likedAnd they had no master, no cowherdNo man at all to round them up Following the demographic collapse, there was a severe shortage of labor. And so, after the initial shock, as modern economists would predict, the price of labor skyrocketed. Machaut wrote: No man had his fields plowedHis grain sowed, or his vines tendedThough he’d have paid out triple wagesNo, surely, not even for 20 times the rateBecause so many had died Workers of all kinds — farm laborers, artisans in the cities, even poor parish priests who’d had to minister to the dying — looked at their lives once the pandemic had eased and reassessed what they were worth. They saw a system that was tilted impossibly against them. In England, for example, around half the population was legally tied to the land in serfdom, forced to labor for their local landlord. But suddenly, these workers seemed to have some bargaining power. No longer were they obligated to put up with unreasonable demands. No longer were their employers able to take them for granted. They needed higher wages, for one thing, to deal with the runaway inflation that followed the plague: In England, despite the drop in the cost of some basic commodities like grain, overall prices for consumer goods rose about 27 percent from 1348 to 1350. Laborers complained they couldn’t afford the bare necessities — and if they weren’t paid what they demanded, they walked away from the plow, fled their landlords’ villages, and went off in search of a better deal. We have not suffered as brutal a demographic blow during Covid, but still American workers have reassessed what it means to work and what their labor is worth — and record numbers have left their jobs in the Great Resignation of the past several months. About 3 percent of the total U.S. work force quit in November alone, the Labor Department reported. According to a September poll, 46 percent of full-time employees were either considering or actively looking for a new job.\n", + " The struggles over wages and the value of labor that defined the postplague years were in some ways as dramatic as the pandemic itself. Eventually, Europe erupted into violence. Given where we are right now, it’s worth paying attention to the chain of events that led, link by link, from pandemic to panic to bloody uprising.\n", " Evidence\n", "\n", "\n", - "\n", - " Low-paying entry-level jobs have become particularly hard to fill, while social media is full of angry discussions about how two or even three jobs are necessary to pay the average rent in the average city.\n", - " Claim\n", + "\n", + " The Black Death, as we now call it, burned its way across the Eurasian continent from 1347 to 1351. Arab historian Ibn Khaldun recalled with horror, “Civilization both in the East and the West was visited by a destructive plague which devastated nations and caused populations to vanish. It swallowed up many of the good things of civilization and wiped them out.’’\n", + " Evidence\n", "\n", "\n", "\n", - " The past few months have seen several high-profile strikes as workers demand fair compensation, with notable union successes at Kellogg and Deere. In this sense, we are seeing echoes of the situation following the Black Death, as workers refuse to return to prepandemic conditions and as they re-evaluate their needs and their value. Too much has changed in the last two years. The world is different.\n", + " Europe, particularly hard-hit, lost somewhere between a third and a half of its population (though historians still dispute the figure). “Many lands and cities were made desolate,” the Italian historian Giovanni Villani wrote in 1348. “And this plague lasted till _____.” He never filled in the end date. He had died of the plague before he could.\n", " Evidence\n", "\n", "\n", - "\n", - " As we move toward a new, postpandemic era, the tensions in the labor market of the 14th century may have something to teach us about turmoil to come.\n", - " Claim\n", + "\n", + " When we think of the Black Death, we tend to think of the gruesome scenes reported in the cities: the heaped corpses, the trenches where bodies were hurled, unmourned. What contemporaries also found eerie, however, was what they saw in the countryside — not scenes of destruction, but visions of bounty and overgrowth. Fields of ripe grain sitting under the sun. Vines heavy with grapes. These sights were unsettling because they suggested there was no one left alive to bring in the harvests.\n", + " Evidence\n", "\n", "\n", "\n", - " In the years after the plague, all across Europe, landowners and noblemen watched, first in outrage, then in fury, as people walked away from their jobs and went in search of a better life. What followed was a hysterical wave of legislation that tried to return the economy to where it had been before the plague. Statutes and ordinances froze wages at pre-plague levels; they made it illegal to leave a master’s land, illegal to flee; they, in effect, made unemployment itself illegal. The English Statute of Laborers condemned peasants who fled their manorial contracts to have an ‘F’ branded on their foreheads, for ‘Falsity.’ In Italy, Florence’s new labor laws, openly called “Against Rural Laborers,” declared that those who neglected their master’s farm could be tried as rebels — liable to be dragged through the streets in red-hot chains and buried alive. Pressure continued to build: On one side, a newly emboldened work force demanded a living wage, a chance to flourish; on the other, kings and councils, lords and wealthy commons, were determined that nothing change. Eventually, the pressure became too great. In the second half of the century, violence erupted across Europe. Workers swarmed through the streets of the great towns. They burned manorial records and labor contracts. They destroyed any evidence of their service and their ties to the land. One shocked chronicler in France in 1358 wrote that outraged peasants “killed, slaughtered and massacred without mercy all the nobles whom they could find, even their own lords. Not only this: They leveled the houses and fortresses of the nobles to the ground.” Nobles, in turn, began burning villages and slaughtering laborers. The same French chronicler describes them attacking “not merely those they believed to have done them harm, but all they found, whether in their houses or digging in the vineyards or in the fields.” In England, popular resentment about taxation and outrageous inequities burst into vandalism and violence in the Great Rising of 1381. Mobs executed the chancellor and mounted his messily severed head up on London Bridge. They demanded the end of lordship and recognized no authority but the king’s. Of course, there are many important differences between our financial and political situation and those in the decades after the plague. But the growing sense of frustration among the vast working population of our country connects us to those medieval peasants and artisans who bucked elite expectations to seek a better life for themselves. Over the past four decades, most Americans have seen wages stagnate against the cost of living. The Trump-era tax laws of 2017 legislated breaks that disproportionately benefited the rich. And we, like the medieval peasantry, are surrounded by the spectacle of high net worth individuals and their expensive adventurism. The fortunes of American billionaires grew by 70 percent in the pandemic — and as we learned this summer, some regularly pay nothing or next to nothing in taxes.\n", + " “Many a fine, noble estate / Lay idle without those to work it,” wrote the poet and composer Guillaume de Machaut, who weathered the plague by hiding locked up in his tower. His poem goes on:\n", " Evidence\n", "\n", "\n", - "\n", - " The wealthy are taking the rest of us for a ride in a system that is slanted against us. Left and right formulate it differently — but we’re all aware of that gap.\n", - " Claim\n", + "\n", + " The cattle lay aboutThe fields completely abandonedGrazing in the corn and among the grapesAnywhere at all they likedAnd they had no master, no cowherdNo man at all to round them up\n", + " Evidence\n", "\n", "\n", "\n", - " The mood of the country is dark and fundamentally splintered. If we do see spasms of violence, I predict they are less likely to resemble the revolutionary politics of the medieval uprisings than the feckless, irrational atrocities that often went on in the shadows of those uprisings, when mobs targeted out-groups: Jews, accused of poisoning wells; the Flemish, accused of stealing English jobs, some of whom were hunted down in the streets and killed on sight.\n", + " Following the demographic collapse, there was a severe shortage of labor. And so, after the initial shock, as modern economists would predict, the price of labor skyrocketed. Machaut wrote:\n", " Evidence\n", "\n", "\n", - "\n", - " How, then, do we address the cavernous inequities and avoid the violence of resentment?\n", - " Claim\n", + "\n", + " No man had his fields plowedHis grain sowed, or his vines tendedThough he’d have paid out triple wagesNo, surely, not even for 20 times the rateBecause so many had died\n", + " Evidence\n", "\n", "\n", "\n", - " The American electorate needs a shared story that fits the facts without scapegoating or conspiratorial paranoia. This is a moment ripe for action precisely because we do share some fragments of a story: a weariness and wariness; a sense that we can’t get ahead; an outrage that the powerful are never held accountable. The major medieval uprisings brought together people from many different walks of life, rural and urban: not just peasants but artisans, builders, small-time merchants and even the clergy. A collective labor movement could do something similar for us today. The union victories of the past couple of months are a great example of how workers can come together and take advantage of this moment of dissent — and an example of how C-suite elites can strengthen employee loyalty in a time of high turnover. We also need to more proactively discuss the broadening gap of income inequality that has marked this new century. At this point, the top 1 percent of earners own nearly a third of all wealth in the country, while the bottom 50 percent of earners own about 2.5 percent. We have known for a long time that such steeply pitched inequality stifles economic growth — and that’s a story we need to keep telling.\n", + " Workers of all kinds — farm laborers, artisans in the cities, even poor parish priests who’d had to minister to the dying — looked at their lives once the pandemic had eased and reassessed what they were worth. They saw a system that was tilted impossibly against them.\n", " Evidence\n", "\n", "\n", - "\n", - " But answers also need to lie with our own ruling elite. America’s legislators must ease the tremendous — and potentially violent — pressure building up with actions that address the things that contribute to our national feeling of futility: raising the minimum wage, assisting with debt, balancing the tax code so the wealthy pay their fair share, creating solid infrastructure jobs, providing child care and health care coverage for American workers (a move that would also help small employers).\n", - " Rebuttal\n", + "\n", + " In England, for example, around half the population was legally tied to the land in serfdom, forced to labor for their local landlord. But suddenly, these workers seemed to have some bargaining power. No longer were they obligated to put up with unreasonable demands. No longer were their employers able to take them for granted.\n", + " Evidence\n", "\n", "\n", "\n", - " Instead of helplessly witnessing division, we could seek prosperity and opportunity for all our fellow Americans. Imagine the sense of pride and shared purpose that are possible. Such measures supporting consumers would pump money into the system at its base. The economy as a whole becomes more stable when there’s a broad base of people who have cash to spend. Politically, the country would be less prone to eruptions. The young might even feel hope.\n", + " They needed higher wages, for one thing, to deal with the runaway inflation that followed the plague: In England, despite the drop in the cost of some basic commodities like grain, overall prices for consumer goods rose about 27 percent from 1348 to 1350. Laborers complained they couldn’t afford the bare necessities — and if they weren’t paid what they demanded, they walked away from the plow, fled their landlords’ villages, and went off in search of a better deal.\n", " Evidence\n", "\n", "\n", - "\n", - " But it is a rare elite that is willing to think in the long term. Most, like those all across Europe in the aftermath of the plague, instead choose to hold more tightly to what they have, to try to keep a lid clamped on the shared prosperity of others — and by clutching everything to themselves, in the end will push their nations into crisis and be left with nothing but riot, mourning, fear, flame and misery.\n", - " Rebuttal\n", + "\n", + " We have not suffered as brutal a demographic blow during Covid, but still American workers have reassessed what it means to work and what their labor is worth — and record numbers have left their jobs in the Great Resignation of the past several months. About 3 percent of the total U.S. work force quit in November alone, the Labor Department reported. According to a September poll, 46 percent of full-time employees were either considering or actively looking for a new job.\n", + " Evidence\n", "\n", - "" + "\n", + "\n", + " Low-paying entry-level jobs have become particularly hard to fill, while social media is full of angry discussions about how two or even three jobs are necessary to pay the average rent in the average city.\n", + " Claim\n", + "\n", + "\n", + "\n", + " The past few months have seen several high-profile strikes as workers demand fair compensation, with notable union successes at Kellogg and Deere. In this sense, we are seeing echoes of the situation following the Black Death, as workers refuse to return to prepandemic conditions and as they re-evaluate their needs and their value. Too much has changed in the last two years. The world is different.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " As we move toward a new, postpandemic era, the tensions in the labor market of the 14th century may have something to teach us about turmoil to come.\n", + " Claim\n", + "\n", + "\n", + "\n", + " In the years after the plague, all across Europe, landowners and noblemen watched, first in outrage, then in fury, as people walked away from their jobs and went in search of a better life. What followed was a hysterical wave of legislation that tried to return the economy to where it had been before the plague. Statutes and ordinances froze wages at pre-plague levels; they made it illegal to leave a master’s land, illegal to flee; they, in effect, made unemployment itself illegal.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The English Statute of Laborers condemned peasants who fled their manorial contracts to have an ‘F’ branded on their foreheads, for ‘Falsity.’ In Italy, Florence’s new labor laws, openly called “Against Rural Laborers,” declared that those who neglected their master’s farm could be tried as rebels — liable to be dragged through the streets in red-hot chains and buried alive.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Pressure continued to build: On one side, a newly emboldened work force demanded a living wage, a chance to flourish; on the other, kings and councils, lords and wealthy commons, were determined that nothing change.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Eventually, the pressure became too great. In the second half of the century, violence erupted across Europe. Workers swarmed through the streets of the great towns. They burned manorial records and labor contracts. They destroyed any evidence of their service and their ties to the land.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " One shocked chronicler in France in 1358 wrote that outraged peasants “killed, slaughtered and massacred without mercy all the nobles whom they could find, even their own lords. Not only this: They leveled the houses and fortresses of the nobles to the ground.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Nobles, in turn, began burning villages and slaughtering laborers. The same French chronicler describes them attacking “not merely those they believed to have done them harm, but all they found, whether in their houses or digging in the vineyards or in the fields.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In England, popular resentment about taxation and outrageous inequities burst into vandalism and violence in the Great Rising of 1381. Mobs executed the chancellor and mounted his messily severed head up on London Bridge. They demanded the end of lordship and recognized no authority but the king’s.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Of course, there are many important differences between our financial and political situation and those in the decades after the plague. But the growing sense of frustration among the vast working population of our country connects us to those medieval peasants and artisans who bucked elite expectations to seek a better life for themselves.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Over the past four decades, most Americans have seen wages stagnate against the cost of living. The Trump-era tax laws of 2017 legislated breaks that disproportionately benefited the rich. And we, like the medieval peasantry, are surrounded by the spectacle of high net worth individuals and their expensive adventurism. The fortunes of American billionaires grew by 70 percent in the pandemic — and as we learned this summer, some regularly pay nothing or next to nothing in taxes.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The wealthy are taking the rest of us for a ride in a system that is slanted against us. Left and right formulate it differently — but we’re all aware of that gap.\n", + " Claim\n", + "\n", + "\n", + "\n", + " The mood of the country is dark and fundamentally splintered. If we do see spasms of violence, I predict they are less likely to resemble the revolutionary politics of the medieval uprisings than the feckless, irrational atrocities that often went on in the shadows of those uprisings, when mobs targeted out-groups: Jews, accused of poisoning wells; the Flemish, accused of stealing English jobs, some of whom were hunted down in the streets and killed on sight.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " How, then, do we address the cavernous inequities and avoid the violence of resentment?\n", + " Claim\n", + "\n", + "\n", + "\n", + " The American electorate needs a shared story that fits the facts without scapegoating or conspiratorial paranoia. This is a moment ripe for action precisely because we do share some fragments of a story: a weariness and wariness; a sense that we can’t get ahead; an outrage that the powerful are never held accountable.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The major medieval uprisings brought together people from many different walks of life, rural and urban: not just peasants but artisans, builders, small-time merchants and even the clergy. A collective labor movement could do something similar for us today.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The union victories of the past couple of months are a great example of how workers can come together and take advantage of this moment of dissent — and an example of how C-suite elites can strengthen employee loyalty in a time of high turnover.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " We also need to more proactively discuss the broadening gap of income inequality that has marked this new century. At this point, the top 1 percent of earners own nearly a third of all wealth in the country, while the bottom 50 percent of earners own about 2.5 percent. We have known for a long time that such steeply pitched inequality stifles economic growth — and that’s a story we need to keep telling.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " But answers also need to lie with our own ruling elite. America’s legislators must ease the tremendous — and potentially violent — pressure building up with actions that address the things that contribute to our national feeling of futility: raising the minimum wage, assisting with debt, balancing the tax code so the wealthy pay their fair share, creating solid infrastructure jobs, providing child care and health care coverage for American workers (a move that would also help small employers).\n", + " Rebuttal\n", + "\n", + "\n", + "\n", + " Instead of helplessly witnessing division, we could seek prosperity and opportunity for all our fellow Americans. Imagine the sense of pride and shared purpose that are possible. Such measures supporting consumers would pump money into the system at its base. The economy as a whole becomes more stable when there’s a broad base of people who have cash to spend. Politically, the country would be less prone to eruptions. The young might even feel hope.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " But it is a rare elite that is willing to think in the long term. Most, like those all across Europe in the aftermath of the plague, instead choose to hold more tightly to what they have, to try to keep a lid clamped on the shared prosperity of others — and by clutching everything to themselves, in the end will push their nations into crisis and be left with nothing but riot, mourning, fear, flame and misery.\n", + " Rebuttal\n", + "\n", + "" ], "text/plain": [ "" @@ -6955,7 +11320,7 @@ { "data": { "text/html": [ - "

nytimes\\cuomo-melissa-derosa-sexual-harassment.txt

" + "

cuomo-melissa-derosa-sexual-harassment.txt

" ], "text/plain": [ "" @@ -6968,34 +11333,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-a716add4f4121bfd\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-a716add4f4121bfd\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-a716add4f4121bfd\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-a716add4f4121bfd\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "da8d712a673c4613a6fab8134ac78336", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " A state trooper who says former Gov. Andrew M. Cuomo touched her inappropriately when she was a member of his protective detail sued him, his longtime top aide and the New York State Police on Thursday, accusing them of discrimination and retaliation. The filing of the lawsuit, which coincided with New York Democrats overwhelmingly endorsing Mr. Cuomo’s successor, Gov. Kathy Hochul, as their nominee in this year’s election, was a reminder that he still faces potential legal jeopardy over the events that hastened his resignation last August. The trooper appears to be the first of 11 women who have accused Mr. Cuomo of sexual misconduct to sue him. Her suit came several weeks after the Oswego County district attorney decided, like his counterparts in four other counties, against charging Mr. Cuomo criminally over acts the former governor’s accusers said had occurred in his jurisdiction. The trooper, identified as Trooper 1, recounts in the suit what she says were repeated instances of unwanted physical contact and numerous suggestive remarks Mr. Cuomo subjected her to after she was transferred onto his security detail, despite lacking the necessary credentials. An investigation by New York’s attorney general, Letitia James, corroborated the trooper’s accusations and those of the other women. “He arranged for the service requirements to be changed so that Trooper 1 could be close to him,” the trooper’s suit, filed in Federal District Court in New York’s Eastern District, says. “He then sexually harassed her.” In naming Mr. Cuomo’s longtime aide, Melissa DeRosa, and the State Police as defendants, the trooper argues that the former governor’s offending behavior could have been stopped but was not. “The governor did not act alone,” the suit says. “He was enabled by the machinery of the state.” In a statement, Rich Azzopardi, a spokesman for Mr. Cuomo, characterized the suit as meritless and claimed that the law firm representing the trooper, Wigdor LLP, “is widely known to use the press to extort settlements on behalf of ‘anonymous claimants.’” Mr. Cuomo, Mr. Azzopardi said in the statement, “will fight every attempt at cheap cash extortions and is anxious to have the dirty politics stop.”\n", + " A state trooper who says former Gov. Andrew M. Cuomo touched her inappropriately when she was a member of his protective detail sued him, his longtime top aide and the New York State Police on Thursday, accusing them of discrimination and retaliation.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The filing of the lawsuit, which coincided with New York Democrats overwhelmingly endorsing Mr. Cuomo’s successor, Gov. Kathy Hochul, as their nominee in this year’s election, was a reminder that he still faces potential legal jeopardy over the events that hastened his resignation last August.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The trooper appears to be the first of 11 women who have accused Mr. Cuomo of sexual misconduct to sue him. Her suit came several weeks after the Oswego County district attorney decided, like his counterparts in four other counties, against charging Mr. Cuomo criminally over acts the former governor’s accusers said had occurred in his jurisdiction.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The trooper, identified as Trooper 1, recounts in the suit what she says were repeated instances of unwanted physical contact and numerous suggestive remarks Mr. Cuomo subjected her to after she was transferred onto his security detail, despite lacking the necessary credentials. An investigation by New York’s attorney general, Letitia James, corroborated the trooper’s accusations and those of the other women.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “He arranged for the service requirements to be changed so that Trooper 1 could be close to him,” the trooper’s suit, filed in Federal District Court in New York’s Eastern District, says. “He then sexually harassed her.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In naming Mr. Cuomo’s longtime aide, Melissa DeRosa, and the State Police as defendants, the trooper argues that the former governor’s offending behavior could have been stopped but was not.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “The governor did not act alone,” the suit says. “He was enabled by the machinery of the state.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In a statement, Rich Azzopardi, a spokesman for Mr. Cuomo, characterized the suit as meritless and claimed that the law firm representing the trooper, Wigdor LLP, “is widely known to use the press to extort settlements on behalf of ‘anonymous claimants.’”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mr. Cuomo, Mr. Azzopardi said in the statement, “will fight every attempt at cheap cash extortions and is anxious to have the dirty politics stop.”\n", " Evidence\n", "\n", "\n", @@ -7097,7 +11476,57 @@ "\n", "\n", "\n", - " Valdi Licul, one of the trooper’s lawyers, responded to Mr. Azzopardi by saying Mr. Cuomo was “only making his legal problems worse by lashing out at his victim and her counsel with false and defamatory statements intended to further retaliate against her and defame us.” Like Mr. Azzopardi, Paul Shechtman, a lawyer for Ms. DeRosa, was dismissive of the suit. “We are only aware of this case from Twitter, but according to the trooper’s own testimony Melissa’s only interaction with her was to say ‘hello and goodbye,’” Mr. Shechtman said in the statement. “It is not a viable case anywhere in America and is beyond frivolous.” The suit does not make specific allegations against the State Police, but accuses the agency, along with Mr. Cuomo and Ms. DeRosa, of discrimination and retaliation. A Wigdor firm spokesman said the agency was named as a defendant because it is the trooper’s employer. A State Police spokesman declined to comment, citing a policy against doing so in active litigation. The trooper repeats in her suit what she told the attorney general’s investigators: that the governor began to flirt with her shortly after they first met, that he spoke with senior members of his security staff about having her join the protective detail, and that she was soon given the coveted assignment. Among other things, the suit says that at an event at Belmont Park, in Elmont, N.Y., in September 2019, Mr. Cuomo ran the palm of his hand over her navel and slid it across her waist to her right hip, where her gun was holstered. The act, the suit says, made her feel “violated.” A senior State Police investigator “fully corroborated” the female trooper’s account of the episode, according to the report that came out of the attorney general’s inquiry. Mr. Cuomo has consistently attacked the investigation overseen by Ms. James as a politically motivated exercise by a fellow Democrat who had her own designs on the governor’s job. Ms. James announced a run for governor in October, but abandoned it a few weeks later. On Thursday, New York Democrats endorsed her bid for re-election this year. Mr. Cuomo has denied ever acting inappropriately with the women who have accused him of sexual misconduct, saying they misconstrued behavior on his part that might have been out of step with the times but was not meant to be sexual. In dismissing the substance of the trooper’s claims, Mr. Azzopardi noted in his statement the district attorneys’ decisions not to file criminal charges against Mr. Cuomo. He did not mention that none of the five had discounted the women’s accusations, and that several had used words like “deeply troubling” and “credible” to characterize the allegations.\n", + " Valdi Licul, one of the trooper’s lawyers, responded to Mr. Azzopardi by saying Mr. Cuomo was “only making his legal problems worse by lashing out at his victim and her counsel with false and defamatory statements intended to further retaliate against her and defame us.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Like Mr. Azzopardi, Paul Shechtman, a lawyer for Ms. DeRosa, was dismissive of the suit.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “We are only aware of this case from Twitter, but according to the trooper’s own testimony Melissa’s only interaction with her was to say ‘hello and goodbye,’” Mr. Shechtman said in the statement. “It is not a viable case anywhere in America and is beyond frivolous.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The suit does not make specific allegations against the State Police, but accuses the agency, along with Mr. Cuomo and Ms. DeRosa, of discrimination and retaliation. A Wigdor firm spokesman said the agency was named as a defendant because it is the trooper’s employer.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " A State Police spokesman declined to comment, citing a policy against doing so in active litigation.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The trooper repeats in her suit what she told the attorney general’s investigators: that the governor began to flirt with her shortly after they first met, that he spoke with senior members of his security staff about having her join the protective detail, and that she was soon given the coveted assignment.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Among other things, the suit says that at an event at Belmont Park, in Elmont, N.Y., in September 2019, Mr. Cuomo ran the palm of his hand over her navel and slid it across her waist to her right hip, where her gun was holstered. The act, the suit says, made her feel “violated.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " A senior State Police investigator “fully corroborated” the female trooper’s account of the episode, according to the report that came out of the attorney general’s inquiry.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mr. Cuomo has consistently attacked the investigation overseen by Ms. James as a politically motivated exercise by a fellow Democrat who had her own designs on the governor’s job. Ms. James announced a run for governor in October, but abandoned it a few weeks later. On Thursday, New York Democrats endorsed her bid for re-election this year.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mr. Cuomo has denied ever acting inappropriately with the women who have accused him of sexual misconduct, saying they misconstrued behavior on his part that might have been out of step with the times but was not meant to be sexual.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In dismissing the substance of the trooper’s claims, Mr. Azzopardi noted in his statement the district attorneys’ decisions not to file criminal charges against Mr. Cuomo. He did not mention that none of the five had discounted the women’s accusations, and that several had used words like “deeply troubling” and “credible” to characterize the allegations.\n", " Evidence\n", "\n", "
" @@ -7121,7 +11550,7 @@ { "data": { "text/html": [ - "

nytimes\\death-certificate-cause.txt

" + "

death-certificate-cause.txt

" ], "text/plain": [ "" @@ -7134,20 +11563,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-4c100879187442bf\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-4c100879187442bf\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-4c100879187442bf\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-4c100879187442bf\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "fed0c5c749d14c72b499b0ef3238d3f4", + "model_id": "fee48e4f9a7f471797f898c25c2f3e4f", "version_major": 2, "version_minor": 0 }, @@ -7158,15 +11581,22 @@ "metadata": {}, "output_type": "display_data" }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Loading cached processed dataset at C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-4c100879187442bf\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4\\cache-31d9a696054225d9.arrow\n" + ] + }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "3b89edb17aff4f30ab3109435f1f031b", + "model_id": "c97ae19e2c7e45c68b90fb2794228f1e", "version_major": 2, "version_minor": 0 }, "text/plain": [ - " 0%| | 0/1 [00:00\n", "\n", "\n", - " For example, in an obituary published on Jan. 9 in The New York Times for Dwayne Hickman, who starred in the television sitcom “The Many Loves of Dobie Gillis,” a spokesman attributed his death at 87 to “complications of Parkinson’s disease.” And another, published two days earlier for Lani Guinier, a legal scholar and champion of voting rights, stated that she succumbed at 71 to “complications of Alzheimer’s disease.” What, I wondered, does that mean? How is it recorded on death certificates? And does it result in accurate mortality statistics needed for assigning priorities for medical research and allocating resources? I looked up the complications of Parkinson’s and Alzheimer’s diseases. Someone with Parkinson’s disease may have poor balance and die from a fall, for example, but Parkinson’s is actually the underlying cause of the death. Similarly, people with Alzheimer’s disease often have difficulty swallowing and may accidentally inhale food and develop a fatal pneumonia; such secondary infections are listed as the cause of death for as many as two-thirds of these patients. The result can be seriously misleading information, said Dr. James Gill, the chief medical examiner for the state of Connecticut. While pneumonia may be the proximate cause of death, Alzheimer’s disease, which is why the patient developed pneumonia in the first place, is the “specific underlying cause that started the chain of events and should be listed as the cause of death,” he said. In fact, one study from 2014 suggested that the real death rate from Alzheimer’s in 2010 may have been about six times higher than the number of deaths reported to the Centers for Disease Control and Prevention. Likewise, if someone with Covid-19 develops pneumonia and dies, their death certificate might say that pneumonia was the cause of death, but in reality it was a coronavirus infection. I asked Dr. Gill, who heads the College of American Pathologists Forensic Pathology Committee, why this matters. “In order to prevent deaths, we want to know what’s causing them, which influences medical practice and the awarding of research grants,” he said. “If many dementia deaths are hidden, the disease is not getting enough funding.” More dramatically, Dr. Gill added, “Having accurate death certificates saves lives. It enables us to identify new and trending diseases and take appropriate action.” If someone is living or working in a building with a poorly installed or maintained furnace, for instance, they may be exposed to toxic levels of carbon monoxide that could eventually cause fatal cardiac and respiratory failure. The cause of death might be recorded as cardiac arrest, but in fact was a result of carbon monoxide poisoning, and the presence of the faulty appliance would likely be missed and could result in further casualties. In a research review published in the magazine Today’s Geriatric Medicine, Dr. Emily Carter, a geriatrician affiliated with the Maine Medical Center, and co-authors noted that the data submitted on death certificates can affect families with regard to life insurance, estate settlement, genetic risk factors and finding closure. They estimate that major errors, like incorrect cause or manner of death, occur in 33 to 40 percent of death certificates that are completed at academic institutions like their own in the United States. An analysis of death certificates at their own institution found that cardiac or respiratory arrest were incorrectly entered as the immediate cause of death on 11 of the 50 documents they reviewed. As Dr. Gill said, “Everyone who dies, dies of cardiopulmonary arrest. The critical question is: Why did this happen? Let’s say someone dies of a stomach hemorrhage. What caused it? Stomach cancer, an ulcer or what?” There are many reasons for the high rate of inaccurate or incomplete death certificates, starting with the meager attention paid to the subject in medical school and the hectic pace in many medical settings. Speed is sometimes dictated by the need to release a body to a funeral home for burial or cremation. The C.D.C. has estimated that 20 to 30 percent of death certificates, though not necessarily inaccurate, “have issues with completeness.” The agency stated that heavy workloads, insufficient information about a death or inadequate training can result in death certificates that are incomplete or inaccurate. Furthermore, many deaths are certified by coroners, who are elected or appointed to their positions and may have bachelor’s degrees in forensic science, but are usually not doctors. They can be subject to political or family influence and may fail, for example, to list opioid overdose as a cause of death. Even when death certificates are completed by medical examiners, who are usually doctors, they may not be trained in forensic pathology and could miss the real cause of death. A death following a fall, for example, might have been accidental, or it could have resulted from an underlying disease or even homicide. According to a blog post from Womble Bond Dickinson, a trans-Atlantic law firm with headquarters in London, “the death certificate may be critical in a lawsuit” to help determine “the nature of the death,” factors that contributed to it, when it occurred and illnesses that may have played a role. If the death was the result of a medical illness, the death certificate is usually completed by the physician in charge, Dr. Carter and her colleagues wrote in their review. However, they emphasized, a medical examiner should certify all other causes, including deaths related to hip fracture which could have resulted from an accident, and deaths related to a history of malicious injury that could be a homicide.\n", + " For example, in an obituary published on Jan. 9 in The New York Times for Dwayne Hickman, who starred in the television sitcom “The Many Loves of Dobie Gillis,” a spokesman attributed his death at 87 to “complications of Parkinson’s disease.” And another, published two days earlier for Lani Guinier, a legal scholar and champion of voting rights, stated that she succumbed at 71 to “complications of Alzheimer’s disease.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " What, I wondered, does that mean? How is it recorded on death certificates? And does it result in accurate mortality statistics needed for assigning priorities for medical research and allocating resources?\n", + " Evidence\n", + "\n", + "\n", + "\n", + " I looked up the complications of Parkinson’s and Alzheimer’s diseases. Someone with Parkinson’s disease may have poor balance and die from a fall, for example, but Parkinson’s is actually the underlying cause of the death. Similarly, people with Alzheimer’s disease often have difficulty swallowing and may accidentally inhale food and develop a fatal pneumonia; such secondary infections are listed as the cause of death for as many as two-thirds of these patients.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The result can be seriously misleading information, said Dr. James Gill, the chief medical examiner for the state of Connecticut. While pneumonia may be the proximate cause of death, Alzheimer’s disease, which is why the patient developed pneumonia in the first place, is the “specific underlying cause that started the chain of events and should be listed as the cause of death,” he said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In fact, one study from 2014 suggested that the real death rate from Alzheimer’s in 2010 may have been about six times higher than the number of deaths reported to the Centers for Disease Control and Prevention. Likewise, if someone with Covid-19 develops pneumonia and dies, their death certificate might say that pneumonia was the cause of death, but in reality it was a coronavirus infection.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " I asked Dr. Gill, who heads the College of American Pathologists Forensic Pathology Committee, why this matters. “In order to prevent deaths, we want to know what’s causing them, which influences medical practice and the awarding of research grants,” he said. “If many dementia deaths are hidden, the disease is not getting enough funding.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " More dramatically, Dr. Gill added, “Having accurate death certificates saves lives. It enables us to identify new and trending diseases and take appropriate action.” If someone is living or working in a building with a poorly installed or maintained furnace, for instance, they may be exposed to toxic levels of carbon monoxide that could eventually cause fatal cardiac and respiratory failure. The cause of death might be recorded as cardiac arrest, but in fact was a result of carbon monoxide poisoning, and the presence of the faulty appliance would likely be missed and could result in further casualties.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In a research review published in the magazine Today’s Geriatric Medicine, Dr. Emily Carter, a geriatrician affiliated with the Maine Medical Center, and co-authors noted that the data submitted on death certificates can affect families with regard to life insurance, estate settlement, genetic risk factors and finding closure. They estimate that major errors, like incorrect cause or manner of death, occur in 33 to 40 percent of death certificates that are completed at academic institutions like their own in the United States.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " An analysis of death certificates at their own institution found that cardiac or respiratory arrest were incorrectly entered as the immediate cause of death on 11 of the 50 documents they reviewed. As Dr. Gill said, “Everyone who dies, dies of cardiopulmonary arrest. The critical question is: Why did this happen? Let’s say someone dies of a stomach hemorrhage. What caused it? Stomach cancer, an ulcer or what?”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " There are many reasons for the high rate of inaccurate or incomplete death certificates, starting with the meager attention paid to the subject in medical school and the hectic pace in many medical settings. Speed is sometimes dictated by the need to release a body to a funeral home for burial or cremation.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The C.D.C. has estimated that 20 to 30 percent of death certificates, though not necessarily inaccurate, “have issues with completeness.” The agency stated that heavy workloads, insufficient information about a death or inadequate training can result in death certificates that are incomplete or inaccurate.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Furthermore, many deaths are certified by coroners, who are elected or appointed to their positions and may have bachelor’s degrees in forensic science, but are usually not doctors. They can be subject to political or family influence and may fail, for example, to list opioid overdose as a cause of death. Even when death certificates are completed by medical examiners, who are usually doctors, they may not be trained in forensic pathology and could miss the real cause of death. A death following a fall, for example, might have been accidental, or it could have resulted from an underlying disease or even homicide.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " According to a blog post from Womble Bond Dickinson, a trans-Atlantic law firm with headquarters in London, “the death certificate may be critical in a lawsuit” to help determine “the nature of the death,” factors that contributed to it, when it occurred and illnesses that may have played a role.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " If the death was the result of a medical illness, the death certificate is usually completed by the physician in charge, Dr. Carter and her colleagues wrote in their review. However, they emphasized, a medical examiner should certify all other causes, including deaths related to hip fracture which could have resulted from an accident, and deaths related to a history of malicious injury that could be a homicide.\n", " Evidence\n", "\n", "\n", @@ -7271,7 +11737,12 @@ "
\n", "\n", "\n", - " Families can often benefit from knowing the real cause of a relative’s or housemate’s death. Might there be a payout from life insurance? Is there a home problem, like a slippery floor, lack of grab bars in the bathroom or a faulty furnace, that needs correction? Is there an inherited medical condition that can be mitigated to avert further casualties? Could malpractice have caused or contributed to the death? If a death certificate contains errors that warrant correction, the sooner that’s done the better. In New York State, the funeral firm or medical certifier can usually help with a correction request that’s made within six months of the death. Beyond six months, you would have to fill out an application for a correction.\n", + " Families can often benefit from knowing the real cause of a relative’s or housemate’s death. Might there be a payout from life insurance? Is there a home problem, like a slippery floor, lack of grab bars in the bathroom or a faulty furnace, that needs correction? Is there an inherited medical condition that can be mitigated to avert further casualties? Could malpractice have caused or contributed to the death?\n", + " Evidence\n", + "\n", + "\n", + "\n", + " If a death certificate contains errors that warrant correction, the sooner that’s done the better. In New York State, the funeral firm or medical certifier can usually help with a correction request that’s made within six months of the death. Beyond six months, you would have to fill out an application for a correction.\n", " Evidence\n", "\n", "" @@ -7295,7 +11766,7 @@ { "data": { "text/html": [ - "

nytimes\\depression-anxiety-physical-health.txt

" + "

depression-anxiety-physical-health.txt

" ], "text/plain": [ "" @@ -7308,34 +11779,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-170df54b35f8d962\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-170df54b35f8d962\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-170df54b35f8d962\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-170df54b35f8d962\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "df03e5b5ecf34f178bcd7b1c9ed0a3d9", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " It’s no surprise that when a person gets a diagnosis of heart disease, cancer or some other life-limiting or life-threatening physical ailment, they become anxious or depressed. But the reverse can also be true: Undue anxiety or depression can foster the development of a serious physical disease, and even impede the ability to withstand or recover from one. The potential consequences are particularly timely, as the ongoing stress and disruptions of the pandemic continue to take a toll on mental health. The human organism does not recognize the medical profession’s artificial separation of mental and physical ills. Rather, mind and body form a two-way street. What happens inside a person’s head can have damaging effects throughout the body, as well as the other way around. An untreated mental illness can significantly increase the risk of becoming physically ill, and physical disorders may result in behaviors that make mental conditions worse. In studies that tracked how patients with breast cancer fared, for example, Dr. David Spiegel and his colleagues at Stanford University School of Medicine showed decades ago that women whose depression was easing lived longer than those whose depression was getting worse. His research and other studies have clearly shown that “the brain is intimately connected to the body and the body to the brain,” Dr. Spiegel said in an interview. “The body tends to react to mental stress as if it was a physical stress.”\n", + " It’s no surprise that when a person gets a diagnosis of heart disease, cancer or some other life-limiting or life-threatening physical ailment, they become anxious or depressed. But the reverse can also be true: Undue anxiety or depression can foster the development of a serious physical disease, and even impede the ability to withstand or recover from one. The potential consequences are particularly timely, as the ongoing stress and disruptions of the pandemic continue to take a toll on mental health.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The human organism does not recognize the medical profession’s artificial separation of mental and physical ills. Rather, mind and body form a two-way street. What happens inside a person’s head can have damaging effects throughout the body, as well as the other way around. An untreated mental illness can significantly increase the risk of becoming physically ill, and physical disorders may result in behaviors that make mental conditions worse.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In studies that tracked how patients with breast cancer fared, for example, Dr. David Spiegel and his colleagues at Stanford University School of Medicine showed decades ago that women whose depression was easing lived longer than those whose depression was getting worse. His research and other studies have clearly shown that “the brain is intimately connected to the body and the body to the brain,” Dr. Spiegel said in an interview. “The body tends to react to mental stress as if it was a physical stress.”\n", " Evidence\n", "\n", "\n", @@ -7435,7 +11888,77 @@ "\n", "\n", "\n", - " Many people are reluctant to seek treatment for emotional ills. Some people with anxiety or depression may fear being stigmatized, even if they recognize they have a serious psychological problem. Many attempt to self-treat their emotional distress by adopting behaviors like drinking too much or abusing drugs, which only adds insult to their pre-existing injury. And sometimes, family and friends inadvertently reinforce a person’s denial of mental distress by labeling it as “that’s just the way he is” and do nothing to encourage them to seek professional help. Anxiety disorders affect nearly 20 percent of American adults. That means millions are beset by an overabundance of the fight-or-flight response that primes the body for action. When you’re stressed, the brain responds by prompting the release of cortisol, nature’s built-in alarm system. It evolved to help animals facing physical threats by increasing respiration, raising the heart rate and redirecting blood flow from abdominal organs to muscles that assist in confronting or escaping danger. These protective actions stem from the neurotransmitters epinephrine and norepinephrine, which stimulate the sympathetic nervous system and put the body on high alert. But when they are invoked too often and indiscriminately, the chronic overstimulation can result in all manner of physical ills, including digestive symptoms like indigestion, cramps, diarrhea or constipation, and an increased risk of heart attack or stroke. Depression, while less common than chronic anxiety, can have even more devastating effects on physical health. While it’s normal to feel depressed from time to time, more than 6 percent of adults have such persistent feelings of depression that it disrupts personal relationships, interferes with work and play, and impairs their ability to cope with the challenges of daily life. Persistent depression can also exacerbate a person’s perception of pain and increase their chances of developing chronic pain. “Depression diminishes a person’s capacity to analyze and respond rationally to stress,” Dr. Spiegel said. “They end up on a vicious cycle with limited capacity to get out of a negative mental state.” Potentially making matters worse, undue anxiety and depression often coexist, leaving people vulnerable to a panoply of physical ailments and an inability to adopt and stick with needed therapy. A study of 1,204 elderly Korean men and women initially evaluated for depression and anxiety found that two years later, these emotional disorders increased their risk of physical disorders and disability. Anxiety alone was linked with heart disease, depression alone was linked with asthma, and the two together were linked with eyesight problems, persistent cough, asthma, hypertension, heart disease and gastrointestinal problems. Although persistent anxiety and depression are highly treatable with medications, cognitive behavioral therapy and talk therapy, without treatment these conditions tend to get worse. According to Dr. John Frownfelter, treatment for any condition works better when doctors understand “the pressures patients face that affect their behavior and result in clinical harm.” Dr. Frownfelter is an internist and chief medical officer of a start-up called Jvion. The organization uses artificial intelligence to identify not just medical factors but psychological, social and behavioral ones as well that can impact the effectiveness of treatment on patients’ health. Its aim is to foster more holistic approaches to treatment that address the whole patient, body and mind combined. The analyses used by Jvion, a Hindi word meaning life-giving, could alert a doctor when underlying depression might be hindering the effectiveness of prescribed treatments for another condition. For example, patients being treated for diabetes who are feeling hopeless may fail to improve because they take their prescribed medication only sporadically and don’t follow a proper diet, Dr. Frownfelter said. “We often talk about depression as a complication of chronic illness,” Dr. Frownfelter wrote in Medpage Today in July. “But what we don’t talk about enough is how depression can lead to chronic disease. Patients with depression may not have the motivation to exercise regularly or cook healthy meals. Many also have trouble getting adequate sleep.” Some changes to medical care during the pandemic have greatly increased patient access to depression and anxiety treatment. The expansion of telehealth has enabled patients to access treatment by psychotherapists who may be as far as a continent away. Patients may also be able to treat themselves without the direct help of a therapist. For example, Dr. Spiegel and his co-workers created an app called Reveri that teaches people self-hypnosis techniques designed to help reduce stress and anxiety, improve sleep, reduce pain and suppress or quit smoking. Improving sleep is especially helpful, Dr. Spiegel said, because “it enhances a person’s ability to regulate the stress response system and not get stuck in a mental rut.” Data demonstrating the effectiveness of the Reveri app has been collected but not yet published, he said.\n", + " Many people are reluctant to seek treatment for emotional ills. Some people with anxiety or depression may fear being stigmatized, even if they recognize they have a serious psychological problem. Many attempt to self-treat their emotional distress by adopting behaviors like drinking too much or abusing drugs, which only adds insult to their pre-existing injury.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " And sometimes, family and friends inadvertently reinforce a person’s denial of mental distress by labeling it as “that’s just the way he is” and do nothing to encourage them to seek professional help.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Anxiety disorders affect nearly 20 percent of American adults. That means millions are beset by an overabundance of the fight-or-flight response that primes the body for action. When you’re stressed, the brain responds by prompting the release of cortisol, nature’s built-in alarm system. It evolved to help animals facing physical threats by increasing respiration, raising the heart rate and redirecting blood flow from abdominal organs to muscles that assist in confronting or escaping danger.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " These protective actions stem from the neurotransmitters epinephrine and norepinephrine, which stimulate the sympathetic nervous system and put the body on high alert. But when they are invoked too often and indiscriminately, the chronic overstimulation can result in all manner of physical ills, including digestive symptoms like indigestion, cramps, diarrhea or constipation, and an increased risk of heart attack or stroke.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Depression, while less common than chronic anxiety, can have even more devastating effects on physical health. While it’s normal to feel depressed from time to time, more than 6 percent of adults have such persistent feelings of depression that it disrupts personal relationships, interferes with work and play, and impairs their ability to cope with the challenges of daily life. Persistent depression can also exacerbate a person’s perception of pain and increase their chances of developing chronic pain.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Depression diminishes a person’s capacity to analyze and respond rationally to stress,” Dr. Spiegel said. “They end up on a vicious cycle with limited capacity to get out of a negative mental state.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Potentially making matters worse, undue anxiety and depression often coexist, leaving people vulnerable to a panoply of physical ailments and an inability to adopt and stick with needed therapy.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " A study of 1,204 elderly Korean men and women initially evaluated for depression and anxiety found that two years later, these emotional disorders increased their risk of physical disorders and disability. Anxiety alone was linked with heart disease, depression alone was linked with asthma, and the two together were linked with eyesight problems, persistent cough, asthma, hypertension, heart disease and gastrointestinal problems.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Although persistent anxiety and depression are highly treatable with medications, cognitive behavioral therapy and talk therapy, without treatment these conditions tend to get worse. According to Dr. John Frownfelter, treatment for any condition works better when doctors understand “the pressures patients face that affect their behavior and result in clinical harm.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Dr. Frownfelter is an internist and chief medical officer of a start-up called Jvion. The organization uses artificial intelligence to identify not just medical factors but psychological, social and behavioral ones as well that can impact the effectiveness of treatment on patients’ health. Its aim is to foster more holistic approaches to treatment that address the whole patient, body and mind combined.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The analyses used by Jvion, a Hindi word meaning life-giving, could alert a doctor when underlying depression might be hindering the effectiveness of prescribed treatments for another condition. For example, patients being treated for diabetes who are feeling hopeless may fail to improve because they take their prescribed medication only sporadically and don’t follow a proper diet, Dr. Frownfelter said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “We often talk about depression as a complication of chronic illness,” Dr. Frownfelter wrote in Medpage Today in July. “But what we don’t talk about enough is how depression can lead to chronic disease. Patients with depression may not have the motivation to exercise regularly or cook healthy meals. Many also have trouble getting adequate sleep.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Some changes to medical care during the pandemic have greatly increased patient access to depression and anxiety treatment. The expansion of telehealth has enabled patients to access treatment by psychotherapists who may be as far as a continent away.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Patients may also be able to treat themselves without the direct help of a therapist. For example, Dr. Spiegel and his co-workers created an app called Reveri that teaches people self-hypnosis techniques designed to help reduce stress and anxiety, improve sleep, reduce pain and suppress or quit smoking.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Improving sleep is especially helpful, Dr. Spiegel said, because “it enhances a person’s ability to regulate the stress response system and not get stuck in a mental rut.” Data demonstrating the effectiveness of the Reveri app has been collected but not yet published, he said.\n", " Evidence\n", "\n", "
" @@ -7459,7 +11982,7 @@ { "data": { "text/html": [ - "

nytimes\\dog-review.txt

" + "

dog-review.txt

" ], "text/plain": [ "" @@ -7472,20 +11995,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-2da713e065bae8af\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-2da713e065bae8af\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-2da713e065bae8af\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-2da713e065bae8af\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "54cd43fe19674b76bbb960d192dead6e", + "model_id": "361a13edab534be49581af834420bdad", "version_major": 2, "version_minor": 0 }, @@ -7496,15 +12013,22 @@ "metadata": {}, "output_type": "display_data" }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Loading cached processed dataset at C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-2da713e065bae8af\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4\\cache-287e2c07dc9f1c6e.arrow\n" + ] + }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "e160b08e5c39487a93f264bd001ca762", + "model_id": "fc0fce1b2e50428eb09a8caaa99234b1", "version_major": 2, "version_minor": 0 }, "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " Road comedies that pair an animal and a movie star are a minor genre unto themselves. The best examples, in my opinion, involve Clint Eastwood and an orangutan named Clyde, though the recent one with Eastwood and a rooster wasn’t bad. Channing Tatum is a different kind of screen presence — sweeter, chattier, bulkier — and in “Dog,” which he directed with Reid Carolin, he amiably shares the screen with (spoiler alert!) a dog. She is a Belgian Malinois named Lulu (played by three talented canines), and she has served in the U.S. military in Iraq and Afghanistan. So has Tatum’s character, Jackson Briggs, a former Army Ranger living in a cabin in the Northwest. A history of brain injuries has kept him out of action, but he hopes that a good word from his commanding officer will give him a chance to go back overseas. To make that happen, Jackson agrees to accompany Lulu from Fort Lewis, Wash., to Nogales, Ariz. The reason for the road trip is the funeral of her handler, a Ranger whose death in a car crash haunts Jackson and the film. While “Dog” is a man-beast buddy movie, it’s also preoccupied with grief, trauma and the challenges of post-combat life. Lulu and Jackson are both wounded warriors who must learn to trust each other and help each other heal. Though much is made of Lulu’s ferociousness, the film’s humor is gentle and mostly unthreatening. She chews up the seats in Jackson’s already battered Ford Bronco, disrupts his potential threesome with a pair of Tantra practitioners in Portland and causes an unfortunate ruckus in a San Francisco hotel. Jackson has variously awkward, hostile and touching human encounters, notably with New Age cannabis growers and a resentful, racist police officer. “Dog” is unabashedly sentimental. A movie about a dog and a soldier could hardly be otherwise. Luckily, Tatum’s self-deprecating charm and Carolin’s script keep the story on the tolerable side of maudlin. It’s also circumspect about Lulu and Jackson’s experiences of war, which is vaguely understood as something horrible but also glorious. Neither one is as complex as a real dog or a real man would be, which makes the movie an easy watch, but at the cost of some credibility. It’s friendly and eager to please, but it won’t quite hunt.\n", + " Road comedies that pair an animal and a movie star are a minor genre unto themselves. The best examples, in my opinion, involve Clint Eastwood and an orangutan named Clyde, though the recent one with Eastwood and a rooster wasn’t bad. Channing Tatum is a different kind of screen presence — sweeter, chattier, bulkier — and in “Dog,” which he directed with Reid Carolin, he amiably shares the screen with (spoiler alert!) a dog.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " She is a Belgian Malinois named Lulu (played by three talented canines), and she has served in the U.S. military in Iraq and Afghanistan. So has Tatum’s character, Jackson Briggs, a former Army Ranger living in a cabin in the Northwest. A history of brain injuries has kept him out of action, but he hopes that a good word from his commanding officer will give him a chance to go back overseas.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " To make that happen, Jackson agrees to accompany Lulu from Fort Lewis, Wash., to Nogales, Ariz. The reason for the road trip is the funeral of her handler, a Ranger whose death in a car crash haunts Jackson and the film. While “Dog” is a man-beast buddy movie, it’s also preoccupied with grief, trauma and the challenges of post-combat life. Lulu and Jackson are both wounded warriors who must learn to trust each other and help each other heal.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Though much is made of Lulu’s ferociousness, the film’s humor is gentle and mostly unthreatening. She chews up the seats in Jackson’s already battered Ford Bronco, disrupts his potential threesome with a pair of Tantra practitioners in Portland and causes an unfortunate ruckus in a San Francisco hotel. Jackson has variously awkward, hostile and touching human encounters, notably with New Age cannabis growers and a resentful, racist police officer.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Dog” is unabashedly sentimental. A movie about a dog and a soldier could hardly be otherwise. Luckily, Tatum’s self-deprecating charm and Carolin’s script keep the story on the tolerable side of maudlin. It’s also circumspect about Lulu and Jackson’s experiences of war, which is vaguely understood as something horrible but also glorious. Neither one is as complex as a real dog or a real man would be, which makes the movie an easy watch, but at the cost of some credibility. It’s friendly and eager to please, but it won’t quite hunt.\n", " Evidence\n", "\n", "
" @@ -7599,7 +12100,7 @@ { "data": { "text/html": [ - "

nytimes\\durham-right-wing-media-trump.txt

" + "

durham-right-wing-media-trump.txt

" ], "text/plain": [ "" @@ -7612,34 +12113,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-06033861187e33a3\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-06033861187e33a3\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-06033861187e33a3\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-06033861187e33a3\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "f8cf3bae94d446c99a3543e0bee37445", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " WASHINGTON — John H. Durham, the Trump-era special counsel scrutinizing the investigation into Russia’s 2016 election interference, distanced himself on Thursday from false reports by right-wing news outlets that a motion he recently filed said Hillary Clinton’s campaign had paid to spy on Trump White House servers. Citing a barrage of such reports on Fox News and elsewhere based on the prosecutor’s Feb. 11 filing, defense lawyers for a Democratic-linked cybersecurity lawyer, Michael Sussmann, have accused the special counsel of including unnecessary and misleading information in filings “plainly intended to politicize this case, inflame media coverage and taint the jury pool.” In a filing on Thursday, Mr. Durham defended himself, saying those accusations about his intentions were “simply not true.” He said he had “valid and straightforward reasons” for including the information in the Feb. 11 filing that set off the firestorm, while disavowing responsibility for how certain news outlets had interpreted and portrayed it.\n", + " WASHINGTON — John H. Durham, the Trump-era special counsel scrutinizing the investigation into Russia’s 2016 election interference, distanced himself on Thursday from false reports by right-wing news outlets that a motion he recently filed said Hillary Clinton’s campaign had paid to spy on Trump White House servers.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Citing a barrage of such reports on Fox News and elsewhere based on the prosecutor’s Feb. 11 filing, defense lawyers for a Democratic-linked cybersecurity lawyer, Michael Sussmann, have accused the special counsel of including unnecessary and misleading information in filings “plainly intended to politicize this case, inflame media coverage and taint the jury pool.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In a filing on Thursday, Mr. Durham defended himself, saying those accusations about his intentions were “simply not true.” He said he had “valid and straightforward reasons” for including the information in the Feb. 11 filing that set off the firestorm, while disavowing responsibility for how certain news outlets had interpreted and portrayed it.\n", " Evidence\n", "\n", "\n", @@ -7746,7 +12231,37 @@ "\n", "\n", "\n", - " Former President Donald J. Trump has seized on the inaccurate reporting to declare that there is now “indisputable evidence” of a Clinton campaign conspiracy against him — and to suggest that there ought to be executions. Mr. Trump, Fox News hosts and others have also criticized mainstream journalists for not covering the purported revelation. The dispute traces back to a pretrial motion in the case Mr. Durham has brought against Mr. Sussmann accusing him of making a false statement during a September 2016 meeting with the F.B.I. where he relayed concerns about possible cyberlinks between Mr. Trump and Russia. The bureau later dismissed those as unfounded. Mr. Durham says Mr. Sussmann falsely told the F.B.I. official he had no clients, but was really there on behalf of both the Clinton campaign and a technology executive named Rodney Joffe. Mr. Sussmann denies ever saying that, while maintaining he was only there on behalf of Mr. Joffe — not the campaign. Several sentences of the filing recounted a second meeting, in February 2017, where Mr. Sussmann had presented different concerns about odd internet data and Russia to the C.I.A., which came from the same cybersecurity researchers who developed the suspicions he had presented to the F.B.I. At the C.I.A. meeting, Mr. Sussmann shared concerns about data that suggested that someone using a Russian-made smartphone may have been connecting to networks at Trump Tower and the White House, among other places. Mr. Sussmann had obtained that information from Mr. Joffe. The court filing also stated that Mr. Joffe’s company, Neustar, had helped maintain internet-related servers for the White House, and accused Mr. Joffe — whom Mr. Durham has not charged with any crime — and his associates of having “exploited this arrangement” by mining certain records to gather derogatory information about Mr. Trump. In the fall, The New York Times had reported on Mr. Sussmann’s C.I.A. meeting and the concerns he had relayed about the data suggesting the presence of Russian-made YotaPhones — smartphones that are rarely seen in the United States — in proximity to Mr. Trump and in the White House.\n", + " Former President Donald J. Trump has seized on the inaccurate reporting to declare that there is now “indisputable evidence” of a Clinton campaign conspiracy against him — and to suggest that there ought to be executions. Mr. Trump, Fox News hosts and others have also criticized mainstream journalists for not covering the purported revelation.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The dispute traces back to a pretrial motion in the case Mr. Durham has brought against Mr. Sussmann accusing him of making a false statement during a September 2016 meeting with the F.B.I. where he relayed concerns about possible cyberlinks between Mr. Trump and Russia. The bureau later dismissed those as unfounded.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mr. Durham says Mr. Sussmann falsely told the F.B.I. official he had no clients, but was really there on behalf of both the Clinton campaign and a technology executive named Rodney Joffe. Mr. Sussmann denies ever saying that, while maintaining he was only there on behalf of Mr. Joffe — not the campaign.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Several sentences of the filing recounted a second meeting, in February 2017, where Mr. Sussmann had presented different concerns about odd internet data and Russia to the C.I.A., which came from the same cybersecurity researchers who developed the suspicions he had presented to the F.B.I.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " At the C.I.A. meeting, Mr. Sussmann shared concerns about data that suggested that someone using a Russian-made smartphone may have been connecting to networks at Trump Tower and the White House, among other places.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mr. Sussmann had obtained that information from Mr. Joffe. The court filing also stated that Mr. Joffe’s company, Neustar, had helped maintain internet-related servers for the White House, and accused Mr. Joffe — whom Mr. Durham has not charged with any crime — and his associates of having “exploited this arrangement” by mining certain records to gather derogatory information about Mr. Trump.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In the fall, The New York Times had reported on Mr. Sussmann’s C.I.A. meeting and the concerns he had relayed about the data suggesting the presence of Russian-made YotaPhones — smartphones that are rarely seen in the United States — in proximity to Mr. Trump and in the White House.\n", " Evidence\n", "\n", "\n", @@ -7756,7 +12271,22 @@ "\n", "\n", "\n", - " Most important, the coverage about purported spying on the Trump White House was premised on the idea that the White House network data involved came from when Mr. Trump was president. But Mr. Durham’s filing did not say when it was from. Lawyers for a Georgia Institute of Technology data scientist who helped analyze the Yota data said on Monday that the data came from the Obama presidency. Mr. Sussmann’s lawyers said the same in a filing on Monday night complaining about Mr. Durham’s conduct. Mr. Durham did not directly address that basic factual dispute. But his explanation for why he included the information about the matter in the earlier filing implicitly confirmed that Mr. Sussmann had conveyed concerns about White House data that came from before Mr. Trump was president. The purpose of the earlier filing was to ask a judge to look at potential conflicts of interest on Mr. Sussmann’s legal team. Mr. Durham included those paragraphs, he wrote, in part because one of the potential conflicts was that a member of the defense had worked for the White House “during relevant events that involved” the White House.\n", + " Most important, the coverage about purported spying on the Trump White House was premised on the idea that the White House network data involved came from when Mr. Trump was president. But Mr. Durham’s filing did not say when it was from.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Lawyers for a Georgia Institute of Technology data scientist who helped analyze the Yota data said on Monday that the data came from the Obama presidency. Mr. Sussmann’s lawyers said the same in a filing on Monday night complaining about Mr. Durham’s conduct.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mr. Durham did not directly address that basic factual dispute. But his explanation for why he included the information about the matter in the earlier filing implicitly confirmed that Mr. Sussmann had conveyed concerns about White House data that came from before Mr. Trump was president.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The purpose of the earlier filing was to ask a judge to look at potential conflicts of interest on Mr. Sussmann’s legal team. Mr. Durham included those paragraphs, he wrote, in part because one of the potential conflicts was that a member of the defense had worked for the White House “during relevant events that involved” the White House.\n", " Evidence\n", "\n", "\n", @@ -7766,7 +12296,17 @@ "\n", "\n", "\n", - " Separately on Thursday, lawyers for Mr. Sussmann filed a pretrial motion asking a judge to dismiss the case. They argued that even if Mr. Sussmann did falsely say at the F.B.I. meeting that he had no client — which they deny — that would not rise to a “material” false statement, meaning one affecting a government decision. The decision facing the F.B.I. was whether to open an investigation about the concerns he relayed at that meeting, and it would have done so regardless, they said. Mr. Durham has said Mr. Sussmann’s supposed lie was material because had the F.B.I. known that he was acting “as a paid advocate for clients with a political or business agenda,” agents might have asked more questions or taken additional steps before opening an investigation.\n", + " Separately on Thursday, lawyers for Mr. Sussmann filed a pretrial motion asking a judge to dismiss the case.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " They argued that even if Mr. Sussmann did falsely say at the F.B.I. meeting that he had no client — which they deny — that would not rise to a “material” false statement, meaning one affecting a government decision. The decision facing the F.B.I. was whether to open an investigation about the concerns he relayed at that meeting, and it would have done so regardless, they said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mr. Durham has said Mr. Sussmann’s supposed lie was material because had the F.B.I. known that he was acting “as a paid advocate for clients with a political or business agenda,” agents might have asked more questions or taken additional steps before opening an investigation.\n", " Evidence\n", "\n", "
" @@ -7790,7 +12330,7 @@ { "data": { "text/html": [ - "

nytimes\\eileen-gu-chinese-american.txt

" + "

eileen-gu-chinese-american.txt

" ], "text/plain": [ "" @@ -7803,34 +12343,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-ed0f0ffc361318cc\n" + "Using custom data configuration default-ed0f0ffc361318cc\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-ed0f0ffc361318cc\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-ed0f0ffc361318cc\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" - ] - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "31f87a23b446402993293e003b1c5130", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00\n", "\n", "\n", - " “I think what I’m seeing is somebody who isn’t afraid to love her identities and share that with people,” said Sarah Belle Lin, 28, a Harlem resident. “I think it’s so brave, actually, for her to speak about that on a public platform.” To Ms. Lin and more than two dozen other Chinese Americans interviewed in the New York metro area, home to the country’s largest Chinese American population as of 2019, Ms. Gu’s statement expresses a duality that resembles their lived experiences. And they find that duality comfortable, they said, not counterintuitive. For that reason, many expressed dismay about social media users and conservative pundits calling Ms. Gu a “traitor” and “ungrateful,” painting her as somehow not quite an American because she had chosen to compete for China, and suggesting that her identity must fall into a binary — Chinese or American, but not both. Ms. Gu has repeatedly stated that she made her choice because she wanted to serve as a role model for female athletes in China, and raise the profile of skiing in a country where it is still largely a nascent sport.\n", + " “I think what I’m seeing is somebody who isn’t afraid to love her identities and share that with people,” said Sarah Belle Lin, 28, a Harlem resident. “I think it’s so brave, actually, for her to speak about that on a public platform.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " To Ms. Lin and more than two dozen other Chinese Americans interviewed in the New York metro area, home to the country’s largest Chinese American population as of 2019, Ms. Gu’s statement expresses a duality that resembles their lived experiences. And they find that duality comfortable, they said, not counterintuitive.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " For that reason, many expressed dismay about social media users and conservative pundits calling Ms. Gu a “traitor” and “ungrateful,” painting her as somehow not quite an American because she had chosen to compete for China, and suggesting that her identity must fall into a binary — Chinese or American, but not both.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Ms. Gu has repeatedly stated that she made her choice because she wanted to serve as a role model for female athletes in China, and raise the profile of skiing in a country where it is still largely a nascent sport.\n", " Evidence\n", "\n", "\n", @@ -7968,7 +12512,12 @@ "
\n", "\n", "\n", - " “I think, if political tensions continue to rise, we will find ourselves in situations, whether we’re in the States or in China, where people will push us to identify with one over the other,” said Easten Law, 38, of Princeton, N.J. “For us everyday Chinese Americans, we’re going to have to deal with the same issues of, you know, claiming versus disassociating, and parsing through what to identify with and what not to,” he said. “I think it’s inevitable.”\n", + " “I think, if political tensions continue to rise, we will find ourselves in situations, whether we’re in the States or in China, where people will push us to identify with one over the other,” said Easten Law, 38, of Princeton, N.J.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “For us everyday Chinese Americans, we’re going to have to deal with the same issues of, you know, claiming versus disassociating, and parsing through what to identify with and what not to,” he said. “I think it’s inevitable.”\n", " Evidence\n", "\n", "\n", @@ -7978,7 +12527,22 @@ "
\n", "\n", "\n", - " Jessica Wu, a Queens resident, never felt this projection more clearly than in 2017, when she flew from Portugal to Philadelphia. While passing through immigration with others from her flight, Ms. Wu said, a Transportation Security Administration agent laughed when he saw her United States passport and asked if she was actually an American citizen. “Even though I never felt like I have to choose or even think about my identity, I think other people make that assumption for me, or they put their own racist assumptions on me,” said Ms. Wu. Though Ms. Gu, who was born to a Chinese mother and an American father, has described herself as a typical Asian American teen, she had an unusually privileged childhood. She was raised in an affluent neighborhood of San Francisco, attended an elite private school and spent most summers in Beijing. Her experience since then has been similarly uncommon. She has been allowed to compete with an ambiguous citizenship status: China does not allow dual citizenship, but there is no record of Ms. Gu having renounced her American citizenship.\n", + " Jessica Wu, a Queens resident, never felt this projection more clearly than in 2017, when she flew from Portugal to Philadelphia. While passing through immigration with others from her flight, Ms. Wu said, a Transportation Security Administration agent laughed when he saw her United States passport and asked if she was actually an American citizen.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Even though I never felt like I have to choose or even think about my identity, I think other people make that assumption for me, or they put their own racist assumptions on me,” said Ms. Wu.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Though Ms. Gu, who was born to a Chinese mother and an American father, has described herself as a typical Asian American teen, she had an unusually privileged childhood. She was raised in an affluent neighborhood of San Francisco, attended an elite private school and spent most summers in Beijing.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Her experience since then has been similarly uncommon. She has been allowed to compete with an ambiguous citizenship status: China does not allow dual citizenship, but there is no record of Ms. Gu having renounced her American citizenship.\n", " Evidence\n", "\n", "\n", @@ -7988,40 +12552,105 @@ "
\n", "\n", "\n", - " She has contracts with more than 30 international brands, according to The Wall Street Journal, including Tiffany & Company and Louis Vuitton, and her rising modeling career has put her on the covers of the Chinese editions of Vogue and Marie Claire. Lai Ling Li, 38, who said she was a fan of Ms. Gu, said she thought China’s audience of 1.4 billion people likely drove the athlete’s decision.\n", + " She has contracts with more than 30 international brands, according to The Wall Street Journal, including Tiffany & Company and Louis Vuitton, and her rising modeling career has put her on the covers of the Chinese editions of Vogue and Marie Claire.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Lai Ling Li, 38, who said she was a fan of Ms. Gu, said she thought China’s audience of 1.4 billion people likely drove the athlete’s decision.\n", " Evidence\n", "\n", "\n", "\n", - " “It really comes down to opportunity,” said Ms. Li, noting Ms. Gu’s impressive sponsorship roster. “I don’t know any other athlete who’s able to do that, especially at 18 years old,” she added. Whether or not Ms. Gu was motivated by identity or national preference, her story is one that is now inextricably tangled up in both.\n", + " “It really comes down to opportunity,” said Ms. Li, noting Ms. Gu’s impressive sponsorship roster.\n", + " Claim\n", + "\n", + "\n", + "\n", + " “I don’t know any other athlete who’s able to do that, especially at 18 years old,” she added.\n", + " Claim\n", + "\n", + "\n", + "\n", + " Whether or not Ms. Gu was motivated by identity or national preference, her story is one that is now inextricably tangled up in both.\n", " Claim\n", "\n", "\n", "\n", - " The relationship between China and the United States has reached a new low in recent years as China’s economic and military global power has grown. The tension was compounded by former President Donald J. Trump’s punitive trade policies and explicit anti-Chinese statements at the height of the coronavirus pandemic. As assaults against Asian Americans spiked across the country over the last two years, many attackers parroted the former president’s rhetoric. Under the shadow of today’s antagonism, Ms. Gu has had to field countless questions about everything from whether she intends to renounce her American citizenship to her thoughts on China’s censorship policies and the sexual assault allegations made by Peng Shuai, one of the country’s star tennis players, against a senior government official. Ms. Gu has stressed repeatedly that she wants to avoid discussing politics when it comes to China, telling The New York Times in a previous interview that she did not want to be “divisive” and that her mission is “all about inclusivity.” In New York, many of those interviewed said her decision to compete for China should not be conflated with a political preference, arguing that it was unfair to expect someone’s identity to represent a country or its political climate. (Others noted that she was just 15 when she made the choice.) “To be Chinese doesn’t mean that you are always in support of China’s government,” said Lucy Yu, 27, who recently opened Yu and Me Books, a bookstore in Manhattan’s Chinatown. “I can respect that and also understand the difficulties that come with expressing that.”\n", + " The relationship between China and the United States has reached a new low in recent years as China’s economic and military global power has grown. The tension was compounded by former President Donald J. Trump’s punitive trade policies and explicit anti-Chinese statements at the height of the coronavirus pandemic. As assaults against Asian Americans spiked across the country over the last two years, many attackers parroted the former president’s rhetoric.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Under the shadow of today’s antagonism, Ms. Gu has had to field countless questions about everything from whether she intends to renounce her American citizenship to her thoughts on China’s censorship policies and the sexual assault allegations made by Peng Shuai, one of the country’s star tennis players, against a senior government official.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Ms. Gu has stressed repeatedly that she wants to avoid discussing politics when it comes to China, telling The New York Times in a previous interview that she did not want to be “divisive” and that her mission is “all about inclusivity.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In New York, many of those interviewed said her decision to compete for China should not be conflated with a political preference, arguing that it was unfair to expect someone’s identity to represent a country or its political climate. (Others noted that she was just 15 when she made the choice.)\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “To be Chinese doesn’t mean that you are always in support of China’s government,” said Lucy Yu, 27, who recently opened Yu and Me Books, a bookstore in Manhattan’s Chinatown. “I can respect that and also understand the difficulties that come with expressing that.”\n", " Evidence\n", "\n", "\n", "\n", - " Some said they were confused as to why Ms. Gu had chosen to compete for a country facing widespread allegations of human rights abuses, such as accusations of carrying out a genocide against Uyghurs and other Muslim residents, and a history of suppressing those who have attempted to sound the alarm over social unrest or government wrongdoing. Others said that although they did not believe Ms. Gu was obligated to speak up on issues affecting Chinese people, they did not understand why she had chosen to stay tight-lipped on matters in China while making her position clear on issues relevant to Americans, such as the rise in anti-Asian attacks and the Black Lives Matter movement.\n", + " Some said they were confused as to why Ms. Gu had chosen to compete for a country facing widespread allegations of human rights abuses, such as accusations of carrying out a genocide against Uyghurs and other Muslim residents, and a history of suppressing those who have attempted to sound the alarm over social unrest or government wrongdoing.\n", + " Counterclaim\n", + "\n", + "\n", + "\n", + " Others said that although they did not believe Ms. Gu was obligated to speak up on issues affecting Chinese people, they did not understand why she had chosen to stay tight-lipped on matters in China while making her position clear on issues relevant to Americans, such as the rise in anti-Asian attacks and the Black Lives Matter movement.\n", " Counterclaim\n", "\n", "\n", "\n", - " Ricky Yeh, 37, said as a Taiwanese American, he was troubled by Ms. Gu’s choice. Beijing considers the island part of China and has long demanded unification, but an increasing number of Taiwanese people have distanced themselves from mainland culture. “If you are a supporter of human rights, according to her public speech, then why do you support that kind of country?” Mr. Yeh said. “Maybe that’s not her priority. But in recent days, every country has recognized that China has been harming human rights in every way they can.” And some, such as Ming Xia, a professor of political science at the City University of New York’s Graduate Center, feared that the longer Ms. Gu competes for China, the more vulnerable she may become to any of the country’s attempts to exploit her image for political propaganda. “She was recruited to compete on behalf of China, but she was not recruited to become the spokesperson for China’s toxic patriotism,” said Dr. Xia.\n", + " Ricky Yeh, 37, said as a Taiwanese American, he was troubled by Ms. Gu’s choice. Beijing considers the island part of China and has long demanded unification, but an increasing number of Taiwanese people have distanced themselves from mainland culture.\n", " Evidence\n", "\n", "\n", - "\n", - " Perhaps at the heart of the controversy is the question of what it means to be Asian American, and how that evolving description stretches and bends for each person.\n", - " Claim\n", + "\n", + " “If you are a supporter of human rights, according to her public speech, then why do you support that kind of country?” Mr. Yeh said. “Maybe that’s not her priority. But in recent days, every country has recognized that China has been harming human rights in every way they can.”\n", + " Evidence\n", "\n", "\n", "\n", - " Ms. Lin, the Harlem resident, plans to live in Hong Kong or Shanghai for a few years. She said that wherever she ends up moving, she would be just as American there as she is Asian while living in the United States. The idea that someone would feel justified in questioning her identity or even her political loyalty over this choice, she said, angered her. And although members of the public may have already made up their minds about who Ms. Gu is and what she stands for, she said, only the athlete herself will know the answer. “I’m Asian American, now and forever,” Ms. Lin said. “And I feel like the same goes for anybody who wants to say the same.”\n", + " And some, such as Ming Xia, a professor of political science at the City University of New York’s Graduate Center, feared that the longer Ms. Gu competes for China, the more vulnerable she may become to any of the country’s attempts to exploit her image for political propaganda.\n", " Evidence\n", "\n", - "" + "\n", + "\n", + " “She was recruited to compete on behalf of China, but she was not recruited to become the spokesperson for China’s toxic patriotism,” said Dr. Xia.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Perhaps at the heart of the controversy is the question of what it means to be Asian American, and how that evolving description stretches and bends for each person.\n", + " Claim\n", + "\n", + "\n", + "\n", + " Ms. Lin, the Harlem resident, plans to live in Hong Kong or Shanghai for a few years. She said that wherever she ends up moving, she would be just as American there as she is Asian while living in the United States.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The idea that someone would feel justified in questioning her identity or even her political loyalty over this choice, she said, angered her. And although members of the public may have already made up their minds about who Ms. Gu is and what she stands for, she said, only the athlete herself will know the answer.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “I’m Asian American, now and forever,” Ms. Lin said. “And I feel like the same goes for anybody who wants to say the same.”\n", + " Evidence\n", + "\n", + "" ], "text/plain": [ "" @@ -8042,7 +12671,7 @@ { "data": { "text/html": [ - "

nytimes\\energy-savings-nest.txt

" + "

energy-savings-nest.txt

" ], "text/plain": [ "" @@ -8055,34 +12684,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-8e9a77c5c5c37e7c\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-8e9a77c5c5c37e7c\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-8e9a77c5c5c37e7c\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-8e9a77c5c5c37e7c\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "42b88f2495814af0b6bc5d6c2c52d04c", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " To hear more audio stories from publications like The New York Times, download Audm for iPhone or Android. The cost of just about everything has gone up. But nothing has been more ulcer-inducing than the skyrocketing price of a basic need: energy.\n", + " To hear more audio stories from publications like The New York Times, download Audm for iPhone or Android.\n", + " Claim\n", + "\n", + "\n", + "\n", + " The cost of just about everything has gone up. But nothing has been more ulcer-inducing than the skyrocketing price of a basic need: energy.\n", " Claim\n", "\n", "\n", "\n", - " The price increases stem in large part from the pandemic’s many disruptions. Pacific Gas & Electric, the largest power provider in California, recently said natural gas prices this winter had jumped 90 percent from a year earlier because of stifled production worldwide. Electricity prices in January climbed 11 percent from last year, according to the Bureau of Labor Statistics. On social media apps like Nextdoor and Twitter, thousands of people have complained throughout the winter about their soaring gas and electricity bills, some of which have quadrupled to $900 a month. That’s the equivalent of buying a fancy new smartphone every month. So this winter, I embarked on a test of energy-saving tech. In January 2021, my energy bill peaked at $370. I wanted to see if I could do better. For my experiment, I adjusted my Nest smart thermostat to control my heat and lower my gas expenses. For electricity, I experimented with internet-connected plugs that could be programmed to turn off appliances and devices at certain hours to avoid wasting energy. The great news: My winter energy bills dropped to an average of about $250 a month from an average of $310. The bad news: An energy-efficiency expert paid a visit and, while concluding that the bill could drop by 1.5 times more, said there was a lot to do for my home that gadgets would not solve. “Tech is helpful for sure, but most likely won’t take a huge bite out of bills,” said the expert, Mickey Souza, the owner of Energineers, a home energy auditing firm in the San Francisco Bay Area. She added that the main culprit of a home’s high energy costs was usually improper insulation.\n", + " The price increases stem in large part from the pandemic’s many disruptions. Pacific Gas & Electric, the largest power provider in California, recently said natural gas prices this winter had jumped 90 percent from a year earlier because of stifled production worldwide. Electricity prices in January climbed 11 percent from last year, according to the Bureau of Labor Statistics.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " On social media apps like Nextdoor and Twitter, thousands of people have complained throughout the winter about their soaring gas and electricity bills, some of which have quadrupled to $900 a month. That’s the equivalent of buying a fancy new smartphone every month.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " So this winter, I embarked on a test of energy-saving tech. In January 2021, my energy bill peaked at $370. I wanted to see if I could do better.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " For my experiment, I adjusted my Nest smart thermostat to control my heat and lower my gas expenses. For electricity, I experimented with internet-connected plugs that could be programmed to turn off appliances and devices at certain hours to avoid wasting energy.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The great news: My winter energy bills dropped to an average of about $250 a month from an average of $310. The bad news: An energy-efficiency expert paid a visit and, while concluding that the bill could drop by 1.5 times more, said there was a lot to do for my home that gadgets would not solve.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Tech is helpful for sure, but most likely won’t take a huge bite out of bills,” said the expert, Mickey Souza, the owner of Energineers, a home energy auditing firm in the San Francisco Bay Area. She added that the main culprit of a home’s high energy costs was usually improper insulation.\n", " Evidence\n", "\n", "\n", @@ -8200,17 +12878,107 @@ "\n", "\n", "\n", - " There is no one-size-fits-all advice for saving energy. I learned this in December 2020 when I first started using Google’s Nest thermostat, which can create a heating and cooling schedule based on your usage habits throughout the day. The Department of Energy and utilities like PG&E and Consolidated Edison recommended setting the thermostat at 68 degrees Fahrenheit in the winter. So I programmed the Nest for 68 throughout the day. When the $370 bill arrived a month later, I realized that the rule of thumb was terrible for my two-bedroom home, which was built in the 1960s with insulation treated as an afterthought. Once the house reached 68 degrees, it couldn’t retain that temperature for long, so the furnace powered back on about 20 minutes later. This is all to say that saving energy with tech requires some independent thinking. While leaving the thermostat at 68 all day may make sense for small apartments in well-insulated buildings, this is generic advice that many homes probably wouldn’t benefit from, said Ben Brown, Google’s product manager for the Nest thermostat. Instead, ask yourself some questions. What is the size of your home? What do you know about the insulation? How long does it take to heat up a few degrees? And most important, at what temperature would you and your family feel comfortable? In November, I decided to try to make the Nest work better with my home this winter. After tinkering with the Nest’s settings and studying my energy costs every day for a month, I concluded that this was the best schedule for my house: 6:30 a.m.: Raise the temperature to 66, for when it’s time to get out of bed. 8 a.m.: Set the temperature to 60 so that the temperature steadily drops throughout the day. This made the house a bit chilly but tolerable wearing a sweater. 8 p.m.: Raise the temperature to 66, for when it gets cold at night (and after PG&E’s peak-pricing period). 11 p.m.: Set the temperature to 57, for bedtime. During this experiment, the Nest thermostat also gave me a “heads-up” warning that my furnace was turning on and off every few minutes, which meant something was wrong. I hired an HVAC professional who diagnosed and fixed the problem: The gas pressure was too high, causing the furnace to overheat and shut down automatically.\n", + " There is no one-size-fits-all advice for saving energy. I learned this in December 2020 when I first started using Google’s Nest thermostat, which can create a heating and cooling schedule based on your usage habits throughout the day.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The Department of Energy and utilities like PG&E and Consolidated Edison recommended setting the thermostat at 68 degrees Fahrenheit in the winter. So I programmed the Nest for 68 throughout the day.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " When the $370 bill arrived a month later, I realized that the rule of thumb was terrible for my two-bedroom home, which was built in the 1960s with insulation treated as an afterthought. Once the house reached 68 degrees, it couldn’t retain that temperature for long, so the furnace powered back on about 20 minutes later.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " This is all to say that saving energy with tech requires some independent thinking. While leaving the thermostat at 68 all day may make sense for small apartments in well-insulated buildings, this is generic advice that many homes probably wouldn’t benefit from, said Ben Brown, Google’s product manager for the Nest thermostat.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Instead, ask yourself some questions. What is the size of your home? What do you know about the insulation? How long does it take to heat up a few degrees? And most important, at what temperature would you and your family feel comfortable?\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In November, I decided to try to make the Nest work better with my home this winter. After tinkering with the Nest’s settings and studying my energy costs every day for a month, I concluded that this was the best schedule for my house:\n", + " Evidence\n", + "\n", + "\n", + "\n", + " 6:30 a.m.: Raise the temperature to 66, for when it’s time to get out of bed.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " 8 a.m.: Set the temperature to 60 so that the temperature steadily drops throughout the day. This made the house a bit chilly but tolerable wearing a sweater.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " 8 p.m.: Raise the temperature to 66, for when it gets cold at night (and after PG&E’s peak-pricing period).\n", + " Evidence\n", + "\n", + "\n", + "\n", + " 11 p.m.: Set the temperature to 57, for bedtime.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " During this experiment, the Nest thermostat also gave me a “heads-up” warning that my furnace was turning on and off every few minutes, which meant something was wrong. I hired an HVAC professional who diagnosed and fixed the problem: The gas pressure was too high, causing the furnace to overheat and shut down automatically.\n", " Evidence\n", "\n", "\n", "\n", - " This solution, combined with the programmed heating schedule, led to a significant drop in my bills. In December, after finishing my experiment with gas, I turned my attention to electricity. The results were less remarkable.\n", + " This solution, combined with the programmed heating schedule, led to a significant drop in my bills.\n", + " Claim\n", + "\n", + "\n", + "\n", + " In December, after finishing my experiment with gas, I turned my attention to electricity. The results were less remarkable.\n", " Claim\n", "\n", "\n", "\n", - " I tested smart plugs from TP-Link, which offers a smartphone app to program the light switches and devices to turn on and off on a schedule. I also plugged in devices that were frequent offenders of so-called vampire energy, which suck power even when not in use. They included a large speaker, a laptop charger and a phone charger, for which I programmed the plugs to stay on only when I was likely to use them. Over a few weeks, I studied my bills. The differences in energy costs were marginal. That’s not to say we shouldn’t try to avoid wasting small amounts of power. But if your goal is to cut down on your bill, look elsewhere. After the tests, I brought in Ms. Souza of Energineers, who toured my home for two hours and delivered the unfortunate news: There were major issues with my home’s “shell” — that is, the roof and walls. “The shell naturally is the most important piece of efficiency,” she said. “Just like the shell on a turtle, it’s going to keep whatever’s out there that you don’t want from coming into your home.” Using an infrared camera, Ms. Souza showed that my roof lacked adequate insulation and that the walls had none at all. She also found that some ducts lacked insulation. There were also holes throughout the home where air was leaking out of the house. Ms. Souza estimated that hiring a contractor to seal leaks and install proper insulation would cost $7,000 to $10,000. I would qualify for roughly $2,000 in rebates, but ouch. If I did the work, Ms. Souza said, my average winter bill would most likely drop to about $165 a month, from $250. More important, my wife, our dogs and I would live more comfortably.\n", + " I tested smart plugs from TP-Link, which offers a smartphone app to program the light switches and devices to turn on and off on a schedule. I also plugged in devices that were frequent offenders of so-called vampire energy, which suck power even when not in use. They included a large speaker, a laptop charger and a phone charger, for which I programmed the plugs to stay on only when I was likely to use them.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Over a few weeks, I studied my bills. The differences in energy costs were marginal.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " That’s not to say we shouldn’t try to avoid wasting small amounts of power. But if your goal is to cut down on your bill, look elsewhere.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " After the tests, I brought in Ms. Souza of Energineers, who toured my home for two hours and delivered the unfortunate news: There were major issues with my home’s “shell” — that is, the roof and walls.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “The shell naturally is the most important piece of efficiency,” she said. “Just like the shell on a turtle, it’s going to keep whatever’s out there that you don’t want from coming into your home.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Using an infrared camera, Ms. Souza showed that my roof lacked adequate insulation and that the walls had none at all. She also found that some ducts lacked insulation. There were also holes throughout the home where air was leaking out of the house.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Ms. Souza estimated that hiring a contractor to seal leaks and install proper insulation would cost $7,000 to $10,000. I would qualify for roughly $2,000 in rebates, but ouch.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " If I did the work, Ms. Souza said, my average winter bill would most likely drop to about $165 a month, from $250. More important, my wife, our dogs and I would live more comfortably.\n", " Evidence\n", "\n", "\n", @@ -8244,7 +13012,7 @@ { "data": { "text/html": [ - "

nytimes\\eunice-storm-damage.txt

" + "

eunice-storm-damage.txt

" ], "text/plain": [ "" @@ -8257,34 +13025,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-d4a9503f2d6bce6d\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-d4a9503f2d6bce6d\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-d4a9503f2d6bce6d\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-d4a9503f2d6bce6d\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "fa4a04f7ec26439c9f2af07dfde67383", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " LONDON — Strong winds battered parts of Britain and Northern Europe on Friday, as a severe storm led to the deaths of at least seven people in the region, damaged buildings and severely disrupted travel by air, land and sea. The storm, called Eunice, tore into roofs, flung debris through streets, wobbled planes in the skies and led the British authorities to issue a rare weather safety warning for London. Britain’s national weather service, the Meteorological Office, said a wind gust of 122 miles per hour was recorded on the Isle of Wight, off the south coast of England, which if confirmed would be the country’s highest ever. Severe weather warnings were also issued in Belgium and the Netherlands. Richard Miles, a spokesman for the Met Office, said the storm was going to be more significant than any since one in January 1990 that killed dozens of people in England. The winds led to the deaths on Friday of at least six people who were killed by falling trees. A cyclist and one other person were struck and killed by trees in Amsterdam, the Amsterdam-Amstelland Fire Brigade said in a statement. A person in the town of Diemen was killed inside a car after it was hit by a tree, the Fire Brigade said. A man in his 60s was struck and killed by a falling tree in southeast Ireland, the country’s police service said in a statement. The man, an employee of the Wexford County Council, was helping to clear debris from the storm. A woman in her 30s died in London after a tree fell on the car she was in, the Metropolitan Police Service said in a statement. And a sixth person, a man in his 50s, was killed when debris struck the windscreen of a vehicle in Netherton, England, the Merseyside police said in a statement. A 79-year-old British man died after he fell from his boat at a marina on a waterway in the northern town of Ypres, Belgium, after strong winds knocked him into the water, Reuters reported. The high winds from the storm also sent a crane crashing into the roof of a hospital in the town of Tournai, west of Brussels. No injuries were reported. The London Fire Brigade said it had received more emergency calls over a two-and-a-half-hour period on Friday than it normally received in a day. About 1,000 people were evacuated from the O2 Arena in London, one of Britain’s largest concert venues, after part of the building’s roof was shredded by the wind. There were no reports of injuries or structural damage to the arena, the London Fire Brigade said. More than 200 flights were canceled at airports across Northern Europe, with most of the cancellations at Amsterdam’s Schipol Airport, according to FlightAware, a flight-tracking website. A livestream of jets trying to land at Heathrow Airport in London was being watched by more than 200,000 people at one point. The video, on a YouTube channel for aviation enthusiasts, was hosted by Jerry Dyer, who provided colorful commentary with each landing. As one plane tilted and drifted toward the tarmac, Mr. Dyer said “easy son, easy, easy” before a successful landing, earning a “nicely done” from Mr. Dyer. Train service in parts of Britain was also disrupted, with Wales canceling all service for the day because of the weather. Network Rail, which owns and operates Britain’s rail infrastructure, urged people not to travel “unless absolutely necessary” and suspended some service in southern England on Friday afternoon because of debris blocking the tracks, including fallen trees, a trampoline and the roof of a building. Service was also suspended into and out of major train stations in London, including Waterloo and Euston. The Port of Dover in southeastern England was temporarily closed to shipping on Friday afternoon. Ferry services were also suspended between Dover and Calais, France, and canceled in the north of England between Newcastle and Amsterdam. Scores of schools districts along the southern and western coasts of Britain were closed Friday, and attractions in and around London, including the London Eye, were also forced to close because of dangerous winds. Plans for Prince Charles to visit Newport and Swansea, on the south coast of Wales, were also canceled Friday in the “interest of public safety.” A wider swath of the United Kingdom was under an amber warning, indicating a high risk for power outages, damage to buildings and uprooted trees, the Met Office said. Windy conditions could also scatter debris along beaches. The northern edge of the storm was expected to bring the risk of snow to parts of Britain, and some areas could see blizzard conditions. In the Netherlands, rail service was temporarily suspended and professional soccer games on Friday were postponed. In Belgium, some schools closed early because of the storm. The storm was expected to clear out by the end of the day, Mr. Miles said, but conditions will remain windy over the weekend. Eunice comes just after another storm, Dudley, knocked out power across parts of Britain and Northern Europe and sent waves crashing through a ferry in Hamburg, Germany, causing damage.\n", + " LONDON — Strong winds battered parts of Britain and Northern Europe on Friday, as a severe storm led to the deaths of at least seven people in the region, damaged buildings and severely disrupted travel by air, land and sea.\n", " Evidence\n", "\n", - "
" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "\n", - "\n" - ] - }, - { - "data": { - "text/html": [ - "

nytimes\\ezra-klein-podcast-alex-tabarrok.txt

" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Using custom data configuration default-70ff68c06233a4fe\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-70ff68c06233a4fe\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" - ] - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "8a28f709e4b74e6785c601787e61488d", - "version_major": 2, - "version_minor": 0 - }, + "\n", + "\n", + " The storm, called Eunice, tore into roofs, flung debris through streets, wobbled planes in the skies and led the British authorities to issue a rare weather safety warning for London. Britain’s national weather service, the Meteorological Office, said a wind gust of 122 miles per hour was recorded on the Isle of Wight, off the south coast of England, which if confirmed would be the country’s highest ever. Severe weather warnings were also issued in Belgium and the Netherlands.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Richard Miles, a spokesman for the Met Office, said the storm was going to be more significant than any since one in January 1990 that killed dozens of people in England.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The winds led to the deaths on Friday of at least six people who were killed by falling trees.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " A cyclist and one other person were struck and killed by trees in Amsterdam, the Amsterdam-Amstelland Fire Brigade said in a statement. A person in the town of Diemen was killed inside a car after it was hit by a tree, the Fire Brigade said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " A man in his 60s was struck and killed by a falling tree in southeast Ireland, the country’s police service said in a statement. The man, an employee of the Wexford County Council, was helping to clear debris from the storm.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " A woman in her 30s died in London after a tree fell on the car she was in, the Metropolitan Police Service said in a statement. And a sixth person, a man in his 50s, was killed when debris struck the windscreen of a vehicle in Netherton, England, the Merseyside police said in a statement.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " A 79-year-old British man died after he fell from his boat at a marina on a waterway in the northern town of Ypres, Belgium, after strong winds knocked him into the water, Reuters reported.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The high winds from the storm also sent a crane crashing into the roof of a hospital in the town of Tournai, west of Brussels. No injuries were reported.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The London Fire Brigade said it had received more emergency calls over a two-and-a-half-hour period on Friday than it normally received in a day. \n", + " Evidence\n", + "\n", + "\n", + "\n", + " About 1,000 people were evacuated from the O2 Arena in London, one of Britain’s largest concert venues, after part of the building’s roof was shredded by the wind. There were no reports of injuries or structural damage to the arena, the London Fire Brigade said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " More than 200 flights were canceled at airports across Northern Europe, with most of the cancellations at Amsterdam’s Schipol Airport, according to FlightAware, a flight-tracking website.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " A livestream of jets trying to land at Heathrow Airport in London was being watched by more than 200,000 people at one point. The video, on a YouTube channel for aviation enthusiasts, was hosted by Jerry Dyer, who provided colorful commentary with each landing. As one plane tilted and drifted toward the tarmac, Mr. Dyer said “easy son, easy, easy” before a successful landing, earning a “nicely done” from Mr. Dyer.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Train service in parts of Britain was also disrupted, with Wales canceling all service for the day because of the weather. Network Rail, which owns and operates Britain’s rail infrastructure, urged people not to travel “unless absolutely necessary” and suspended some service in southern England on Friday afternoon because of debris blocking the tracks, including fallen trees, a trampoline and the roof of a building. Service was also suspended into and out of major train stations in London, including Waterloo and Euston.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The Port of Dover in southeastern England was temporarily closed to shipping on Friday afternoon. Ferry services were also suspended between Dover and Calais, France, and canceled in the north of England between Newcastle and Amsterdam.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Scores of schools districts along the southern and western coasts of Britain were closed Friday, and attractions in and around London, including the London Eye, were also forced to close because of dangerous winds. Plans for Prince Charles to visit Newport and Swansea, on the south coast of Wales, were also canceled Friday in the “interest of public safety.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " A wider swath of the United Kingdom was under an amber warning, indicating a high risk for power outages, damage to buildings and uprooted trees, the Met Office said. Windy conditions could also scatter debris along beaches.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The northern edge of the storm was expected to bring the risk of snow to parts of Britain, and some areas could see blizzard conditions.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In the Netherlands, rail service was temporarily suspended and professional soccer games on Friday were postponed. In Belgium, some schools closed early because of the storm.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The storm was expected to clear out by the end of the day, Mr. Miles said, but conditions will remain windy over the weekend.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Eunice comes just after another storm, Dudley, knocked out power across parts of Britain and Northern Europe and sent waves crashing through a ferry in Hamburg, Germany, causing damage.\n", + " Evidence\n", + "\n", + "
" + ], "text/plain": [ - " 0%| | 0/1 [00:00" ] }, "metadata": {}, "output_type": "display_data" }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "\n", + "\n" + ] + }, { "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "d4d22a5b0bf04c91adca9b45c3f23c92", - "version_major": 2, - "version_minor": 0 - }, + "text/html": [ + "

ezra-klein-podcast-alex-tabarrok.txt

" + ], "text/plain": [ - " 0%| | 0/1 [00:00" ] }, "metadata": {}, "output_type": "display_data" }, { - "name": "stdout", + "name": "stderr", "output_type": "stream", "text": [ - "Dataset text downloaded and prepared to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-70ff68c06233a4fe\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4. Subsequent calls will reuse this data.\n" + "Using custom data configuration default-70ff68c06233a4fe\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-70ff68c06233a4fe\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "266dae95f55d4d38a48a8c2850b75b57", + "model_id": "32a4a85ae1c34f1c8ce3b1211192ae66", "version_major": 2, "version_minor": 0 }, @@ -8473,23 +13274,16 @@ "output_type": "display_data" }, { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "7537a69664674555b57a313bb15327dd", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00\n", "\n", "\n", - " [You can listen to this episode of “The Ezra Klein Show” on Apple, Spotify, Google or wherever you get your podcasts.] Alex Tabarrok is an economist at George Mason University, a blogger at Marginal Revolution and for years has been one of the sharpest libertarian critics of big government. But the experience of the pandemic has changed his thinking in key ways. “Ninety-nine years out of 100, I’m a libertarian,” he told me last year. “But then there’s that one year out of 100.”\n", + " [You can listen to this episode of “The Ezra Klein Show” on Apple, Spotify, Google or wherever you get your podcasts.]\n", " Evidence\n", "\n", "\n", + "\n", + " Alex Tabarrok is an economist at George Mason University, a blogger at Marginal Revolution and for years has been one of the sharpest libertarian critics of big government. But the experience of the pandemic has changed his thinking in key ways. “Ninety-nine years out of 100, I’m a libertarian,” he told me last year. “But then there’s that one year out of 100.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " So this conversation is about the central tension that Tabarrok and I are grappling with right now: Government failure has never been more apparent — and yet we need government more than ever.\n", + " Concluding Statement\n", + "\n", + "\n", "\n", - " So this conversation is about the central tension that Tabarrok and I are grappling with right now: Government failure has never been more apparent — and yet we need government more than ever. We discuss (and debate) the public choice theory of government failure, why it’s so damn hard to build things in America, how reforms intended to weaken special interests often empower them, why the American right is responsible for much of the government dysfunction it criticizes, the case for state capacity libertarianism, the appropriate size of the welfare state, the political importance of massive economic inequality and how the crypto world’s pursuit of decentralization could backfire.\n", + " We discuss (and debate) the public choice theory of government failure, why it’s so damn hard to build things in America, how reforms intended to weaken special interests often empower them, why the American right is responsible for much of the government dysfunction it criticizes, the case for state capacity libertarianism, the appropriate size of the welfare state, the political importance of massive economic inequality and how the crypto world’s pursuit of decentralization could backfire.\n", " Concluding Statement\n", "\n", "\n", @@ -8568,7 +13391,7 @@ { "data": { "text/html": [ - "

nytimes\\facebook-experiments.txt

" + "

facebook-experiments.txt

" ], "text/plain": [ "" @@ -8581,34 +13404,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-e74dc4484e78364f\n" + "Using custom data configuration default-e74dc4484e78364f\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-e74dc4484e78364f\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-e74dc4484e78364f\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" - ] - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "f0423966d24445289b27d106689590f4", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00\n", "\n", "\n", - " Facebook acts like a small child who falls in love with a new Lego set but then grows bored. It is up to users and business partners to pick up the mess. Six years ago, Facebook said its next big thing was robots in its Messenger app that send texts to help people order flowers or figure out which pair of jeans to buy. This idea isn’t a dud, but I’m guessing that a Messenger bot doesn’t pick out your pants. The company also went hot and then cool on a feature that let people broadcast live from their phones, and on a TV-like video hub called Facebook Watch. On Monday, Facebook threw in the towel on its planned digital currency, a project that forced financial and government establishments to respond, but that was half-baked from the start. Experimentation and failure can be healthy. For Facebook and other corporate titans, flops or short-lived whims usually don’t do much harm. (The company has renamed itself Meta, but I’m sticking with Facebook.) \n", + " Facebook acts like a small child who falls in love with a new Lego set but then grows bored. It is up to users and business partners to pick up the mess.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Six years ago, Facebook said its next big thing was robots in its Messenger app that send texts to help people order flowers or figure out which pair of jeans to buy. This idea isn’t a dud, but I’m guessing that a Messenger bot doesn’t pick out your pants.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The company also went hot and then cool on a feature that let people broadcast live from their phones, and on a TV-like video hub called Facebook Watch. On Monday, Facebook threw in the towel on its planned digital currency, a project that forced financial and government establishments to respond, but that was half-baked from the start.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Experimentation and failure can be healthy. For Facebook and other corporate titans, flops or short-lived whims usually don’t do much harm. (The company has renamed itself Meta, but I’m sticking with Facebook.) \n", " Evidence\n", "\n", "\n", @@ -8718,7 +13559,17 @@ "
\n", "\n", "\n", - " This pain might be the inevitable cost of invention. But particularly now — as Facebook bets the company on a more immersive future of the internet, called the metaverse — it’s worth asking what we gain and lose when companies with Facebook’s power and influence persuade the world to follow them to a future that never arrives. In a way, it’s adorable how often Facebook becomes excited about a new idea and then — well, moves on to a different shiny object. Live video and Facebook Watch still exist. They’re just not the high priorities they once were. Other Big Tech companies lose interest in things they once loved. (Heck, we all do this.) But perhaps no other company has the combination of Facebook’s sprawl and its willingness to declare THIS IS GOING TO BE HUGE, persuade people to come along for the ride, and then … shrug.\n", + " This pain might be the inevitable cost of invention. But particularly now — as Facebook bets the company on a more immersive future of the internet, called the metaverse — it’s worth asking what we gain and lose when companies with Facebook’s power and influence persuade the world to follow them to a future that never arrives.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In a way, it’s adorable how often Facebook becomes excited about a new idea and then — well, moves on to a different shiny object. Live video and Facebook Watch still exist. They’re just not the high priorities they once were.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Other Big Tech companies lose interest in things they once loved. (Heck, we all do this.) But perhaps no other company has the combination of Facebook’s sprawl and its willingness to declare THIS IS GOING TO BE HUGE, persuade people to come along for the ride, and then … shrug.\n", " Evidence\n", "\n", "\n", @@ -8728,7 +13579,22 @@ "
\n", "\n", "\n", - " The Federal Reserve doesn’t have infinite time and resources to study what turned out to be the Betamax of cryptocurrency. News organizations, government institutions and most businesses have limited resources — imagine what else they might have done if they hadn’t responded to Facebook’s latest obsession. Even for Facebook, could the staff and energy that it is pouring into the metaverse be better spent doing more to ensure its apps don’t spread election misinformation or allow authoritarian governments to misuse them? I don’t know if there’s a fix for the collateral damage of Facebook’s whims. Maybe for a start, it would be helpful if Facebook presented its new projects as hypotheses to test, rather than firm and permanent declarations of its priorities. Facebook’s fixation on the metaverse is different from its past short-lived projects. For one, Facebook is not alone on the bandwagon trying to pull us toward a more immersive internet that further blurs the lines between digital life and the real thing. And at least for now, this change of direction is a riskier bet for Facebook than for the company’s users or business partners.\n", + " The Federal Reserve doesn’t have infinite time and resources to study what turned out to be the Betamax of cryptocurrency. News organizations, government institutions and most businesses have limited resources — imagine what else they might have done if they hadn’t responded to Facebook’s latest obsession.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Even for Facebook, could the staff and energy that it is pouring into the metaverse be better spent doing more to ensure its apps don’t spread election misinformation or allow authoritarian governments to misuse them?\n", + " Evidence\n", + "\n", + "\n", + "\n", + " I don’t know if there’s a fix for the collateral damage of Facebook’s whims. Maybe for a start, it would be helpful if Facebook presented its new projects as hypotheses to test, rather than firm and permanent declarations of its priorities. \n", + " Evidence\n", + "\n", + "\n", + "\n", + " Facebook’s fixation on the metaverse is different from its past short-lived projects. For one, Facebook is not alone on the bandwagon trying to pull us toward a more immersive internet that further blurs the lines between digital life and the real thing. And at least for now, this change of direction is a riskier bet for Facebook than for the company’s users or business partners.\n", " Evidence\n", "\n", "\n", @@ -8738,7 +13604,17 @@ "
\n", "\n", "\n", - " Technology from Apple and Google effectively dictate how any company reaches potential customers online. When Amazon made fast shipping free, Americans came to expect it from everyone. America’s internet is turning into QVC because tech giants want it that way. We live in Big Tech’s world. Sometimes that brings us handy maps on our phones and online spaces for neighbors to gather. The flip side is that when tech giants like Facebook give up on their dreams, everyone else is left to pick up the pieces. A big month for video game mergers: Sony is spending $3.6 billion to buy Bungie, the company behind the Halo video game franchise. That comes after Microsoft splurged $70 billion to buy Activision, and after Zynga, which makes Words With Friends, was bought for $11 billion. \n", + " Technology from Apple and Google effectively dictate how any company reaches potential customers online. When Amazon made fast shipping free, Americans came to expect it from everyone. America’s internet is turning into QVC because tech giants want it that way. \n", + " Evidence\n", + "\n", + "\n", + "\n", + " We live in Big Tech’s world. Sometimes that brings us handy maps on our phones and online spaces for neighbors to gather. The flip side is that when tech giants like Facebook give up on their dreams, everyone else is left to pick up the pieces. \n", + " Evidence\n", + "\n", + "\n", + "\n", + " A big month for video game mergers: Sony is spending $3.6 billion to buy Bungie, the company behind the Halo video game franchise. That comes after Microsoft splurged $70 billion to buy Activision, and after Zynga, which makes Words With Friends, was bought for $11 billion. \n", " Evidence\n", "\n", "\n", @@ -8748,7 +13624,22 @@ "\n", "\n", "\n", - " A lot of business in being a front door to government services: Bloomberg News tells us about ID.me, a company whose software the IRS will begin using for facial recognition scans to prove Americans’ identities. Bloomberg also reports that it looks increasingly likely that ID.me overstated a claim that the company uncovered $400 billion in thefts from state unemployment insurance programs. (A subscription may be required.) “Everyone in New York is betting on sports” because a crush of new online wagering sites sprang up after the state legalized the activity, New York magazine’s Intelligencer writes. My colleague Kurt Streeter has a related column about the heartbreak of sports gambling addicts. “It’s like bread and butter, you know? It’s like a Thomas’ English muffin with some jam. Spreads nice.” I wish for more blizzards to hear again from Andy the Massachusetts snow plow driver. We want to hear from you. Tell us what you think of this newsletter and what else you’d like us to explore. You can reach us at ontech@nytimes.com.\n", + " A lot of business in being a front door to government services: Bloomberg News tells us about ID.me, a company whose software the IRS will begin using for facial recognition scans to prove Americans’ identities. Bloomberg also reports that it looks increasingly likely that ID.me overstated a claim that the company uncovered $400 billion in thefts from state unemployment insurance programs. (A subscription may be required.)\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Everyone in New York is betting on sports” because a crush of new online wagering sites sprang up after the state legalized the activity, New York magazine’s Intelligencer writes. My colleague Kurt Streeter has a related column about the heartbreak of sports gambling addicts.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “It’s like bread and butter, you know? It’s like a Thomas’ English muffin with some jam. Spreads nice.” I wish for more blizzards to hear again from Andy the Massachusetts snow plow driver.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " We want to hear from you. Tell us what you think of this newsletter and what else you’d like us to explore. You can reach us at ontech@nytimes.com.\n", " Evidence\n", "\n", "\n", @@ -8777,7 +13668,7 @@ { "data": { "text/html": [ - "

nytimes\\fact-check-joe-rogan-robert-malone.txt

" + "

fact-check-joe-rogan-robert-malone.txt

" ], "text/plain": [ "" @@ -8790,34 +13681,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-79eb5f72797967b6\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-79eb5f72797967b6\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-79eb5f72797967b6\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-79eb5f72797967b6\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "63b223937d5049ed80e3670556850464", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " To hear more audio stories from publications like The New York Times, download Audm for iPhone or Android. Spotify has been rocked in recent weeks by the controversy engulfing its most popular podcaster, Joe Rogan.\n", + " To hear more audio stories from publications like The New York Times, download Audm for iPhone or Android.\n", + " Claim\n", + "\n", + "\n", + "\n", + " Spotify has been rocked in recent weeks by the controversy engulfing its most popular podcaster, Joe Rogan.\n", " Claim\n", "\n", "\n", "\n", - " Several prominent musicians and podcasters have left the streaming service to protest what they described as Mr. Rogan’s history of promoting misinformation about the coronavirus and vaccines. There have been calls for boycotts, and Mr. Rogan issued an apology for his past use of a racial slur and took down as many as 70 old episodes of his podcast, “The Joe Rogan Experience,” without explanation. The catalyst for much of the controversy was a December episode of his podcast that featured Dr. Robert Malone, a virologist and vaccine skeptic. Hundreds of public health officials and professors, citing the promotion of “several falsehoods about Covid-19 vaccines,” urged the service to crack down on misinformation about the virus. For over three hours, Dr. Malone and Mr. Rogan discussed theories and claims about the coronavirus pandemic and vaccines. The conversation included a false equivalence between the vaccine and Nazi medical experiments, baseless conjecture that President Biden is not actually vaccinated and inaccurate interpretations of government data and guidelines.\n", + " Several prominent musicians and podcasters have left the streaming service to protest what they described as Mr. Rogan’s history of promoting misinformation about the coronavirus and vaccines. There have been calls for boycotts, and Mr. Rogan issued an apology for his past use of a racial slur and took down as many as 70 old episodes of his podcast, “The Joe Rogan Experience,” without explanation.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The catalyst for much of the controversy was a December episode of his podcast that featured Dr. Robert Malone, a virologist and vaccine skeptic. Hundreds of public health officials and professors, citing the promotion of “several falsehoods about Covid-19 vaccines,” urged the service to crack down on misinformation about the virus.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " For over three hours, Dr. Malone and Mr. Rogan discussed theories and claims about the coronavirus pandemic and vaccines. The conversation included a false equivalence between the vaccine and Nazi medical experiments, baseless conjecture that President Biden is not actually vaccinated and inaccurate interpretations of government data and guidelines.\n", " Evidence\n", "\n", "\n", @@ -8961,22 +13862,67 @@ "\n", "\n", "\n", - " It is not exactly a secret that Uttar Pradesh has promoted ivermectin as a prophylactic. The state issued a government notice in August 2020 recommending the prescription of the drug to those who had come into contact with Covid patients, and officials have publicly acknowledged its use throughout the pandemic. Mr. Biden and Mr. Modi met in September, and officials in Uttar Pradesh have continued to publicize the state’s use of ivermectin since, even as India stopped recommending it. Dr. Malone was also wrong that cases in Uttar Pradesh “flatlined” as the world coped with the Omicron variant. Though the case count in the state remained low during the summer and fall, it began to trend upward by late December, when Dr. Malone spoke with Mr. Rogan, and reached more than 11,000 daily cases in mid-January. Promoters of ivermectin often cite Uttar Pradesh’s low death toll as proof of the drug’s efficacy, but experts say there is no proof of that causal link. It is also worth noting that researchers have questioned the reliability of data from Uttar Pradesh. Mr. Rogan: “But I saw the shot where Joe Biden got it on TV and they didn’t aspirate them. They just ——”\n", + " It is not exactly a secret that Uttar Pradesh has promoted ivermectin as a prophylactic. The state issued a government notice in August 2020 recommending the prescription of the drug to those who had come into contact with Covid patients, and officials have publicly acknowledged its use throughout the pandemic. Mr. Biden and Mr. Modi met in September, and officials in Uttar Pradesh have continued to publicize the state’s use of ivermectin since, even as India stopped recommending it.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Dr. Malone was also wrong that cases in Uttar Pradesh “flatlined” as the world coped with the Omicron variant. Though the case count in the state remained low during the summer and fall, it began to trend upward by late December, when Dr. Malone spoke with Mr. Rogan, and reached more than 11,000 daily cases in mid-January.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Promoters of ivermectin often cite Uttar Pradesh’s low death toll as proof of the drug’s efficacy, but experts say there is no proof of that causal link. It is also worth noting that researchers have questioned the reliability of data from Uttar Pradesh.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mr. Rogan: “But I saw the shot where Joe Biden got it on TV and they didn’t aspirate them. They just ——”\n", " Evidence\n", "\n", "\n", "\n", - " Dr. Malone: “I don’t know what to say ——” Mr. Rogan: “I’ll tell you what to say — that’s not the way to do it.” Dr. Malone: “Yeah, and was that really a vaccine? Right, then we go down that whole rabbit ——” Mr. Rogan: “That’s my favorite rabbit hole because of the fake set, remember.”\n", + " Dr. Malone: “I don’t know what to say ——”\n", + " Claim\n", + "\n", + "\n", + "\n", + " Mr. Rogan: “I’ll tell you what to say — that’s not the way to do it.”\n", + " Claim\n", + "\n", + "\n", + "\n", + " Dr. Malone: “Yeah, and was that really a vaccine? Right, then we go down that whole rabbit ——”\n", + " Claim\n", + "\n", + "\n", + "\n", + " Mr. Rogan: “That’s my favorite rabbit hole because of the fake set, remember.”\n", " Claim\n", "\n", "\n", "\n", - " False. Aspiration refers to pulling back the plunger of a syringe to check that the needle was not inserted into a blood vessel. The practice and its perceived benefits are the subject of debate among medical professionals. Mr. Rogan and others have wrongly suggested that Mr. Biden has not actually received the vaccine since his shots were not aspirated. But the Centers for Disease Control and Prevention does not recommend aspirating before administering any vaccines, as it could cause additional pain. Mr. Biden received his booster shot on camera in September, in front of a backdrop that looks like the White House but is actually in the South Court Auditorium in the Eisenhower Executive Office Building. Some social media posts cited the use of the backdrop as evidence that Mr. Biden had not actually been vaccinated. In reality, Mr. Biden and his predecessors have used the auditorium for events for years. Mr. Rogan: “So, if they had just done what Sweden had done and some other countries where they didn’t institute lockdowns and they sort of let people just live their lives and make their own choices, they were saying that millions of people would have died?”\n", + " False. Aspiration refers to pulling back the plunger of a syringe to check that the needle was not inserted into a blood vessel. The practice and its perceived benefits are the subject of debate among medical professionals. Mr. Rogan and others have wrongly suggested that Mr. Biden has not actually received the vaccine since his shots were not aspirated. But the Centers for Disease Control and Prevention does not recommend aspirating before administering any vaccines, as it could cause additional pain.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mr. Biden received his booster shot on camera in September, in front of a backdrop that looks like the White House but is actually in the South Court Auditorium in the Eisenhower Executive Office Building. Some social media posts cited the use of the backdrop as evidence that Mr. Biden had not actually been vaccinated. In reality, Mr. Biden and his predecessors have used the auditorium for events for years.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mr. Rogan: “So, if they had just done what Sweden had done and some other countries where they didn’t institute lockdowns and they sort of let people just live their lives and make their own choices, they were saying that millions of people would have died?”\n", " Evidence\n", "\n", "\n", "\n", - " Dr. Malone: “So it would be, so it seems.” Mr. Rogan: “But time has shown that Sweden actually had a more effective take on the virus.”\n", + " Dr. Malone: “So it would be, so it seems.”\n", + " Claim\n", + "\n", + "\n", + "\n", + " Mr. Rogan: “But time has shown that Sweden actually had a more effective take on the virus.”\n", " Claim\n", "\n", "\n", @@ -8986,7 +13932,27 @@ "\n", "\n", "\n", - " “Now, we’re two years into this and Sweden doesn’t really stand out,” Anders Tegnell, the country’s chief epidemiologist, told The Financial Times in November. “We’re not the best, but we’re definitely not the worst.” Compared with those of other countries in Europe, Sweden’s death rate and case count are indeed in the middle of the pack. Among its Scandinavian neighbors, however, Sweden has the highest death rate. “Those surrounding states in the Palestinian territory does not have that level of vaccine uptake at all. The mortality in the surrounding states in the Palestinian Authority is substantially less from this virus than the mortality in Israel.” — Dr. Malone False. About two-thirds of the Israeli population had been fully vaccinated by the end of December, compared with about a third of those living in the West Bank and Gaza. The case fatality rate and cumulative death rate from Covid are both higher in the occupied territories than in Israel. “The C.D.C. made the determination that they were going to make a core assumption — if P.C.R. positive and you die — that is death due to Covid. And so the extreme example, just to show the absurdity: If the patient comes in with a bullet hole in the head and they do a nose swab and they come up P.C.R. positive, they’re determined to have died from Covid.” — Dr. Malone\n", + " “Now, we’re two years into this and Sweden doesn’t really stand out,” Anders Tegnell, the country’s chief epidemiologist, told The Financial Times in November. “We’re not the best, but we’re definitely not the worst.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Compared with those of other countries in Europe, Sweden’s death rate and case count are indeed in the middle of the pack. Among its Scandinavian neighbors, however, Sweden has the highest death rate.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Those surrounding states in the Palestinian territory does not have that level of vaccine uptake at all. The mortality in the surrounding states in the Palestinian Authority is substantially less from this virus than the mortality in Israel.” — Dr. Malone\n", + " Evidence\n", + "\n", + "\n", + "\n", + " False. About two-thirds of the Israeli population had been fully vaccinated by the end of December, compared with about a third of those living in the West Bank and Gaza. The case fatality rate and cumulative death rate from Covid are both higher in the occupied territories than in Israel.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “The C.D.C. made the determination that they were going to make a core assumption — if P.C.R. positive and you die — that is death due to Covid. And so the extreme example, just to show the absurdity: If the patient comes in with a bullet hole in the head and they do a nose swab and they come up P.C.R. positive, they’re determined to have died from Covid.” — Dr. Malone\n", " Evidence\n", "\n", "\n", @@ -8996,7 +13962,12 @@ "\n", "\n", "\n", - " Robert Anderson, the chief of mortality statistics at the C.D.C.’s National Center for Health Statistics, said on a podcast in January that a car crash victim who tested positive and died would not be counted as a Covid fatality in “most cases.” “Maybe the person comes in and they’ve got a very severe injury and they simply test positive for Covid and there are no symptoms that are likely to be incidental to death,” he said. “But if you had somebody who, let’s say, had chest trauma from the car accident and they were, they’re struggling to breathe already. They get Covid in the hospital and they’re showing some symptoms. There, it could contribute.”\n", + " Robert Anderson, the chief of mortality statistics at the C.D.C.’s National Center for Health Statistics, said on a podcast in January that a car crash victim who tested positive and died would not be counted as a Covid fatality in “most cases.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Maybe the person comes in and they’ve got a very severe injury and they simply test positive for Covid and there are no symptoms that are likely to be incidental to death,” he said. “But if you had somebody who, let’s say, had chest trauma from the car accident and they were, they’re struggling to breathe already. They get Covid in the hospital and they’re showing some symptoms. There, it could contribute.”\n", " Evidence\n", "\n", "\n", @@ -9041,7 +14012,12 @@ "\n", "\n", "\n", - " For example, someone’s immediate cause of death could be respiratory distress syndrome, which was caused by viral pneumonia, which in turn was caused by the coronavirus. Other comorbidities would be listed on that death certificate, but the underlying cause is still Covid-19. “These mandates of an experimental vaccine are explicitly illegal. They are explicitly inconsistent with the Nuremberg Code. They’re explicitly inconsistent with the Belmont Report.” — Dr. Malone\n", + " For example, someone’s immediate cause of death could be respiratory distress syndrome, which was caused by viral pneumonia, which in turn was caused by the coronavirus. Other comorbidities would be listed on that death certificate, but the underlying cause is still Covid-19.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “These mandates of an experimental vaccine are explicitly illegal. They are explicitly inconsistent with the Nuremberg Code. They’re explicitly inconsistent with the Belmont Report.” — Dr. Malone\n", " Evidence\n", "\n", "\n", @@ -9075,7 +14051,7 @@ { "data": { "text/html": [ - "

nytimes\\faith-ringgold-new-museum.txt

" + "

faith-ringgold-new-museum.txt

" ], "text/plain": [ "" @@ -9088,34 +14064,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-2af44b322a0fb802\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-2af44b322a0fb802\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-2af44b322a0fb802\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-2af44b322a0fb802\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "433df690851f4e2c9fc952cb4b896e29", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " If you want to catch the heat of the lava flow that was United States racial politics in the 1960s, the second floor of the New Museum in Manhattan is a good place to go. There you’ll find the earliest work in “Faith Ringgold: American People,” the first local retrospective of the Harlem-born artist in almost 40 years. Now 91, Ringgold was already a committed painter when the Black Power movement erupted. And she had a personal investment in the questions it raised: not just how to survive as a Black person in a racist white world, but how, as a woman, to thrive in any world at all. As an artist of ambition, she seems to have made strategic decisions for forward movement. One was to be constantly producing, no matter what. Another was to seek out support within a Black matriarchy of family and friends. A third decision — the tough one — was to forge a career path of maximum resistance. To this end, she pursued figure painting, worked with fabric art and focused on narrative content at a time when the mainstream art market wanted little to do with any of these. This retrospective, which fills three floors of the New Museum, combines figures, craft techniques and storytelling in inventive combinations. And it makes clear that what consigned Ringgold to an outlier track half a century ago puts her front and center now. It says a lot about strong art and changing taste that her 1967 mural-size painting “American People Series #20: Die,” an explosive scene of blood-spattered biracial carnage, was a star attraction of the Museum of Modern Art’s much-watched 2019 permanent collection rehang. Stick-to-itiveness and art-making came early to Ringgold. As a child she was frequently housebound with asthma. To keep her occupied her mother, Willi Posey, a seamstress and clothing designer, supplied her with art materials. The creativity stuck. In 1950, she enrolled in art courses at City College of New York. She also married and had, in quick succession, two daughters, one of whom, Michele Wallace, is now a noted art historian, and a collaborator with Ringgold on activist projects. The marriage came and went. What persisted was Ringgold’s interest in art. After earning a graduate degree, she took a job teaching in a public school. There one of her students was the young sister of James Baldwin, whose writings were instrumental in turning Ringgold’s painting — mostly Impressionistic landscape through the 1950s — in a political direction. The retrospective — organized by Massimiliano Gioni, the artistic director of the New Museum, Gary Carrion-Murayari, a curator, and Madeline Weisburg, a curatorial assistant — begins at this turning point moment with a group of brooding, broadly stroked figure paintings called “American People Series.” In one, dated 1963, a row of light-skinned male figures face outward, a wall of blank-eyed malice. In another, called “The Civil Rights Triangle,” four of five men depicted have dark skin, but a light-skinned fifth man towers over them. All the pictures are about hierarchies of power; women are barely even present. Ringgold referred to this early, wary work as “super realist.” At this point she approached members of New York’s Black male art establishment — Romare Bearden, Hale Woodruff — for career help but was turned away with what sounds like the equivalent of a pat on the head. She must have realized that she was, professionally, on her own, and maybe that further loosened up her art. In the late 1960s and early ’70s — years marked by police killings of Black activists across the country — her paintings suddenly go big, loud, bull-blast crazy. (MoMA’s “Die”” comes from this time, as does a related picture, “The Flag Is Bleeding,” both done on a mural scale to connect them with Picasso’s “Guernica” and Mexican mural paintings of the past. “I just wanted to give some understanding of what America is about,” Ringgold said of that work, in the catalog interview with Gioni. “You notice there is no Black woman in the picture. The white woman was trying to bring the Black and white man together because she really had no power, and the only way to acquire it was by bringing together the men. Black women were literally out of the picture, period. It took decades before people realized that we existed.” Other paintings of the time go almost mute. For a group called “Black Light Series,” Ringgold eliminated white paint entirely from her palette and darkened her colors with black. Faces and bodies seem to float out of reach, submerged, all but invisible. Her political commitments in general expanded. As co-organizer of an anti-Vietnam War exhibition she was accused of desecrating the United States flag and arrested. (The charge was dropped.) She designed posters protesting the jailing of Angela Davis and the killing of prisoners at Attica. She joined Michele Wallace in picketing the Whitney Museum of American Art for its exclusion of Black women artists. Her relationship to the predominantly white feminist movement was guarded, though not to feminism itself. A bold statement of her allegiance came in the form of a mural-style painting she made for the Correctional Institute for Women on Rikers Island in 1971. Long in storage on Rikers and now, at Ringgold’s request, on long-term loan by the city to the Brooklyn Museum, the work is in the show. Using bright colors and a compartmented design based on African textiles, it depicts women of different ages and ethnicities engaged in a range of professions — doctor, athlete, bus driver, United States president — that prisoners, given the chance and resources, might pursue once out in the world. Before getting down to work on the piece, Ringgold invited all the women at Rikers to propose ideas for it. And she discreetly included herself in the picture. (You see her in profile in the picture’s lower right side)\n", + " If you want to catch the heat of the lava flow that was United States racial politics in the 1960s, the second floor of the New Museum in Manhattan is a good place to go. There you’ll find the earliest work in “Faith Ringgold: American People,” the first local retrospective of the Harlem-born artist in almost 40 years.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Now 91, Ringgold was already a committed painter when the Black Power movement erupted. And she had a personal investment in the questions it raised: not just how to survive as a Black person in a racist white world, but how, as a woman, to thrive in any world at all.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " As an artist of ambition, she seems to have made strategic decisions for forward movement. One was to be constantly producing, no matter what. Another was to seek out support within a Black matriarchy of family and friends. A third decision — the tough one — was to forge a career path of maximum resistance. To this end, she pursued figure painting, worked with fabric art and focused on narrative content at a time when the mainstream art market wanted little to do with any of these.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " This retrospective, which fills three floors of the New Museum, combines figures, craft techniques and storytelling in inventive combinations. And it makes clear that what consigned Ringgold to an outlier track half a century ago puts her front and center now. It says a lot about strong art and changing taste that her 1967 mural-size painting “American People Series #20: Die,” an explosive scene of blood-spattered biracial carnage, was a star attraction of the Museum of Modern Art’s much-watched 2019 permanent collection rehang.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Stick-to-itiveness and art-making came early to Ringgold. As a child she was frequently housebound with asthma. To keep her occupied her mother, Willi Posey, a seamstress and clothing designer, supplied her with art materials. The creativity stuck. In 1950, she enrolled in art courses at City College of New York. She also married and had, in quick succession, two daughters, one of whom, Michele Wallace, is now a noted art historian, and a collaborator with Ringgold on activist projects.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The marriage came and went. What persisted was Ringgold’s interest in art. After earning a graduate degree, she took a job teaching in a public school. There one of her students was the young sister of James Baldwin, whose writings were instrumental in turning Ringgold’s painting — mostly Impressionistic landscape through the 1950s — in a political direction.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The retrospective — organized by Massimiliano Gioni, the artistic director of the New Museum, Gary Carrion-Murayari, a curator, and Madeline Weisburg, a curatorial assistant — begins at this turning point moment with a group of brooding, broadly stroked figure paintings called “American People Series.” In one, dated 1963, a row of light-skinned male figures face outward, a wall of blank-eyed malice. In another, called “The Civil Rights Triangle,” four of five men depicted have dark skin, but a light-skinned fifth man towers over them. All the pictures are about hierarchies of power; women are barely even present. Ringgold referred to this early, wary work as “super realist.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " At this point she approached members of New York’s Black male art establishment — Romare Bearden, Hale Woodruff — for career help but was turned away with what sounds like the equivalent of a pat on the head. She must have realized that she was, professionally, on her own, and maybe that further loosened up her art.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In the late 1960s and early ’70s — years marked by police killings of Black activists across the country — her paintings suddenly go big, loud, bull-blast crazy. (MoMA’s “Die”” comes from this time, as does a related picture, “The Flag Is Bleeding,” both done on a mural scale to connect them with Picasso’s “Guernica” and Mexican mural paintings of the past.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “I just wanted to give some understanding of what America is about,” Ringgold said of that work, in the catalog interview with Gioni. “You notice there is no Black woman in the picture. The white woman was trying to bring the Black and white man together because she really had no power, and the only way to acquire it was by bringing together the men. Black women were literally out of the picture, period. It took decades before people realized that we existed.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Other paintings of the time go almost mute. For a group called “Black Light Series,” Ringgold eliminated white paint entirely from her palette and darkened her colors with black. Faces and bodies seem to float out of reach, submerged, all but invisible.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Her political commitments in general expanded. As co-organizer of an anti-Vietnam War exhibition she was accused of desecrating the United States flag and arrested. (The charge was dropped.) She designed posters protesting the jailing of Angela Davis and the killing of prisoners at Attica. She joined Michele Wallace in picketing the Whitney Museum of American Art for its exclusion of Black women artists.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Her relationship to the predominantly white feminist movement was guarded, though not to feminism itself. A bold statement of her allegiance came in the form of a mural-style painting she made for the Correctional Institute for Women on Rikers Island in 1971.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Long in storage on Rikers and now, at Ringgold’s request, on long-term loan by the city to the Brooklyn Museum, the work is in the show. Using bright colors and a compartmented design based on African textiles, it depicts women of different ages and ethnicities engaged in a range of professions — doctor, athlete, bus driver, United States president — that prisoners, given the chance and resources, might pursue once out in the world. Before getting down to work on the piece, Ringgold invited all the women at Rikers to propose ideas for it. And she discreetly included herself in the picture. (You see her in profile in the picture’s lower right side)\n", " Evidence\n", "\n", "\n", @@ -9225,7 +14267,32 @@ "\n", "\n", "\n", - " They first worked together in the early 1970s on the “Feminist Series,” a group of paintings with fabric frames modeled on those of Tibetan thangkas and sewn by her mother. Posey also worked on a group of life-size, African-inspired fabric figures worn by Ringgold in performances or displayed as soft-sculpture tableaus, like the imposing, multipart 1976 “The Wake and Resurrection of the Bicentennial Negro,” installed on the museum’s third floor. Finally, in 1980, Posey sewed Ringgold’s first painted quilt, “Echoes of Harlem,” helping to create the prototype for what would become the artist’s most familiar art medium. After her mother died the following year, Ringgold paid tribute with “Mother’s Quilt,” a quilt appliquéd with doll-like Black figures, like angels, made from fabric scraps the women were saving for future use. An elaboration on the painted quilt form, called “story quilts,” brought Ringgold attention both inside and outside the art world. Vehicles for personal narratives, often annotated with sewn-in text panels, some of these hangings are diaristic, as in the case of “Change: Faith Ringgold’s Over 100 Pound Weight Loss Performance Story Quilt,” from 1991. Most combine fiction and autobiography. Best known of them is the single quilt “Tar Beach,” which illustrates Ringgold’s childhood memory of summer-night picnics on a Harlem rooftop with the George Washington Bridge glowing in the distance. From the quilt, Ringgold derived a suite of drawings, which, in 1991, appeared as a widely praised children’s book, the first of many Ringgold has done. (You can page through all of them in an exhibition reading room on the museum’s 7th floor.) The story-quilt form is also the vehicle for Ringgold’s most formally complex and buoyant painting project, “The French Connection,” which unfurls in 12 regally scaled hangings, like chapters, on the midnight-blue walls of the museum’s 4th floor. It related the experience of a single main character, a young African American painter named Willia Marie Simone, who comes to Europe for the first time in the 1920s with her two young children, to immerse herself in European art — a journey, which, as it happens, Ringgold herself made in 1961 for the same reason, and with her mother and daughters in tow. Once settled in, Simone is everywhere, meeting everyone. She poses for Matisse. She spends time in Gertrude Stein’s salon. She joins time-traveling compatriots — Sojourner Truth, Harriet Tubman, Rosa Parks — to stitch a sunflower quilt in Van Gogh’s Arles. Finally, back in Paris, she paints an all-female déjeuner sur l’herbe, in which all the picnickers are Ringgold’s family and friends. Actually, there is one male in this scene, Pablo Picasso, posing skinny and nude on a towel on the grass. No one seems to notice him.\n", + " They first worked together in the early 1970s on the “Feminist Series,” a group of paintings with fabric frames modeled on those of Tibetan thangkas and sewn by her mother. Posey also worked on a group of life-size, African-inspired fabric figures worn by Ringgold in performances or displayed as soft-sculpture tableaus, like the imposing, multipart 1976 “The Wake and Resurrection of the Bicentennial Negro,” installed on the museum’s third floor.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Finally, in 1980, Posey sewed Ringgold’s first painted quilt, “Echoes of Harlem,” helping to create the prototype for what would become the artist’s most familiar art medium. After her mother died the following year, Ringgold paid tribute with “Mother’s Quilt,” a quilt appliquéd with doll-like Black figures, like angels, made from fabric scraps the women were saving for future use.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " An elaboration on the painted quilt form, called “story quilts,” brought Ringgold attention both inside and outside the art world. Vehicles for personal narratives, often annotated with sewn-in text panels, some of these hangings are diaristic, as in the case of “Change: Faith Ringgold’s Over 100 Pound Weight Loss Performance Story Quilt,” from 1991. Most combine fiction and autobiography.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Best known of them is the single quilt “Tar Beach,” which illustrates Ringgold’s childhood memory of summer-night picnics on a Harlem rooftop with the George Washington Bridge glowing in the distance. From the quilt, Ringgold derived a suite of drawings, which, in 1991, appeared as a widely praised children’s book, the first of many Ringgold has done. (You can page through all of them in an exhibition reading room on the museum’s 7th floor.)\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The story-quilt form is also the vehicle for Ringgold’s most formally complex and buoyant painting project, “The French Connection,” which unfurls in 12 regally scaled hangings, like chapters, on the midnight-blue walls of the museum’s 4th floor. It related the experience of a single main character, a young African American painter named Willia Marie Simone, who comes to Europe for the first time in the 1920s with her two young children, to immerse herself in European art — a journey, which, as it happens, Ringgold herself made in 1961 for the same reason, and with her mother and daughters in tow.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Once settled in, Simone is everywhere, meeting everyone. She poses for Matisse. She spends time in Gertrude Stein’s salon. She joins time-traveling compatriots — Sojourner Truth, Harriet Tubman, Rosa Parks — to stitch a sunflower quilt in Van Gogh’s Arles. Finally, back in Paris, she paints an all-female déjeuner sur l’herbe, in which all the picnickers are Ringgold’s family and friends. Actually, there is one male in this scene, Pablo Picasso, posing skinny and nude on a towel on the grass. No one seems to notice him.\n", " Evidence\n", "\n", "\n", @@ -9259,7 +14326,7 @@ { "data": { "text/html": [ - "

nytimes\\family-birthday-reminders-social-qs.txt

" + "

family-birthday-reminders-social-qs.txt

" ], "text/plain": [ "" @@ -9272,20 +14339,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-f60f5f0dd5e2b54c\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-f60f5f0dd5e2b54c\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-f60f5f0dd5e2b54c\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-f60f5f0dd5e2b54c\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "0648d57e963d446eacad3d7ea24a3e9a", + "model_id": "b32ff67e8c664b2e9ef99b29b97e5f77", "version_major": 2, "version_minor": 0 }, @@ -9296,15 +14357,22 @@ "metadata": {}, "output_type": "display_data" }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Loading cached processed dataset at C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-f60f5f0dd5e2b54c\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4\\cache-6df510ea281c9e3f.arrow\n" + ] + }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "dfaf57f1f6ad453f9486f6d1f3e1405b", + "model_id": "bf303581308e491aaebffcee2b9eebd4", "version_major": 2, "version_minor": 0 }, "text/plain": [ - " 0%| | 0/1 [00:00\n", "\n", "\n", - " Before we deal with your problem, let’s deal with mine: All we’ve heard about the men in your family is that two of them married meticulous gift givers, and the youngest (who was spotty at it) hitched his wagon to an underperformer. Yet somehow these men — the actual blood relations — aren’t expected to pitch in at all. Now, there’s no problem here if each of the couples has agreed to this division of labor. But it seems sexist to simply expect the new woman to solve the problem of family gifts. It may also explain why you hear from your grumpy daughters-in-law about this, and not your sons. They may resent their burden. As for what you can do: Extricate yourself! I know you want family harmony, but you can’t force adults to send gifts. If your sons or their wives tell you they’re upset about this, suggest they speak directly to your youngest son. This may be more motivating for him than hearing from you again. He and his wife may not be “gift people,” but we all have calendars. (Or they may not care.) Stay out of it. My roommate and I have shared an apartment for three years. We’re tight. Lately, he’s been seeing a girl he met on Tinder. I never had a good feeling about her. It’s like she’s always looking over his shoulder. Last week, she came over to pick up some stuff and was fully flirting with me: touching my arm and saying we should hang out. I know you say we shouldn’t comment on friends’ relationships if we don’t know what their agreements are. So, I didn’t tell him, but I’m not comfortable. Advice?\n", + " Before we deal with your problem, let’s deal with mine: All we’ve heard about the men in your family is that two of them married meticulous gift givers, and the youngest (who was spotty at it) hitched his wagon to an underperformer. Yet somehow these men — the actual blood relations — aren’t expected to pitch in at all.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Now, there’s no problem here if each of the couples has agreed to this division of labor. But it seems sexist to simply expect the new woman to solve the problem of family gifts. It may also explain why you hear from your grumpy daughters-in-law about this, and not your sons. They may resent their burden.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " As for what you can do: Extricate yourself! I know you want family harmony, but you can’t force adults to send gifts. If your sons or their wives tell you they’re upset about this, suggest they speak directly to your youngest son. This may be more motivating for him than hearing from you again. He and his wife may not be “gift people,” but we all have calendars. (Or they may not care.) Stay out of it.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " My roommate and I have shared an apartment for three years. We’re tight. Lately, he’s been seeing a girl he met on Tinder. I never had a good feeling about her. It’s like she’s always looking over his shoulder. Last week, she came over to pick up some stuff and was fully flirting with me: touching my arm and saying we should hang out. I know you say we shouldn’t comment on friends’ relationships if we don’t know what their agreements are. So, I didn’t tell him, but I’m not comfortable. Advice?\n", " Evidence\n", "\n", "\n", @@ -9427,7 +14479,17 @@ "\n", "\n", "\n", - " I know this will cause a ruckus among the tit-for-tat gifting crowd, but the birthday couple did nothing wrong here. The only reason you know about your friend’s small destination party is because you asked her about it directly. That does not entitle you to an invitation. Likewise, your friend’s husband simply forwarded an invitation to contribute to a crowdsourced gift (arranged by friends) in honor of her milestone birthday. Ignore it if you prefer not to contribute — or subscribe to the idea that you must get something in order to give. But don’t reach for epithets like “tacky,” as some readers may. It’s ungenerous. And standing guard against small financial imbalances is itself kind of tacky. A co-worker moved in next door, and there’s not much distance between our houses. We’ve worked together for years, but we’re not friends. The family uses strongly scented dryer sheets, and the smell is driving me crazy. I’d like to bring them unscented ones to use instead. Thoughts?\n", + " I know this will cause a ruckus among the tit-for-tat gifting crowd, but the birthday couple did nothing wrong here. The only reason you know about your friend’s small destination party is because you asked her about it directly. That does not entitle you to an invitation.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Likewise, your friend’s husband simply forwarded an invitation to contribute to a crowdsourced gift (arranged by friends) in honor of her milestone birthday. Ignore it if you prefer not to contribute — or subscribe to the idea that you must get something in order to give. But don’t reach for epithets like “tacky,” as some readers may. It’s ungenerous. And standing guard against small financial imbalances is itself kind of tacky.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " A co-worker moved in next door, and there’s not much distance between our houses. We’ve worked together for years, but we’re not friends. The family uses strongly scented dryer sheets, and the smell is driving me crazy. I’d like to bring them unscented ones to use instead. Thoughts?\n", " Evidence\n", "\n", "\n", @@ -9466,7 +14528,7 @@ { "data": { "text/html": [ - "

nytimes\\federal-reserve-trading-restrictions.txt

" + "

federal-reserve-trading-restrictions.txt

" ], "text/plain": [ "" @@ -9479,34 +14541,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-076469b233c5d75c\n" + "Using custom data configuration default-076469b233c5d75c\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-076469b233c5d75c\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-076469b233c5d75c\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" - ] - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "b83c8344b8e44e5c8c2447650d73cbb7", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " The Federal Reserve on Friday adopted a new set of ethics rules meant to prevent questionable financial market trading activity by top officials, a sweeping response to a scandal that has rocked the central bank since late last year. Fed officials traded in individual stocks, real estate securities and stock funds in 2020, a year in which the central bank rolled out a range of pandemic response programs that placed officials’ day-to-day decisions at the core of what happened in financial markets. Three high-ranking policymakers resigned earlier than they had planned after news of the trading broke last year and early in 2022. Jerome H. Powell, the Fed chair, acknowledged in the wake of the revelations that he and his colleagues were not “happy” with what had happened and said they would revamp the central bank’s ethics rules to prevent a similar situation in the future. The new rules, which were previewed in October, aim to fulfill that promise. They prevent senior officials from purchasing individual stocks or funds tracing business sectors, the Fed said, and they ban investments in individual bonds, cryptocurrencies, commodities or foreign currencies, among other securities. Senior Fed officials must now announce that they are buying or selling a security 45 days in advance, and that notice will not be retractable. Investments must be held for at least one year under the new guidelines. The Fed’s 12 regional bank presidents will be required to publicly disclose securities transactions within 30 days, the way that its seven board members in Washington already do. They must post financial disclosures on their bank websites, something they now do only sporadically.\n", + " The Federal Reserve on Friday adopted a new set of ethics rules meant to prevent questionable financial market trading activity by top officials, a sweeping response to a scandal that has rocked the central bank since late last year.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Fed officials traded in individual stocks, real estate securities and stock funds in 2020, a year in which the central bank rolled out a range of pandemic response programs that placed officials’ day-to-day decisions at the core of what happened in financial markets. Three high-ranking policymakers resigned earlier than they had planned after news of the trading broke last year and early in 2022.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Jerome H. Powell, the Fed chair, acknowledged in the wake of the revelations that he and his colleagues were not “happy” with what had happened and said they would revamp the central bank’s ethics rules to prevent a similar situation in the future.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The new rules, which were previewed in October, aim to fulfill that promise. They prevent senior officials from purchasing individual stocks or funds tracing business sectors, the Fed said, and they ban investments in individual bonds, cryptocurrencies, commodities or foreign currencies, among other securities.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Senior Fed officials must now announce that they are buying or selling a security 45 days in advance, and that notice will not be retractable. Investments must be held for at least one year under the new guidelines.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The Fed’s 12 regional bank presidents will be required to publicly disclose securities transactions within 30 days, the way that its seven board members in Washington already do. They must post financial disclosures on their bank websites, something they now do only sporadically.\n", " Evidence\n", "\n", "\n", @@ -9598,7 +14649,22 @@ "\n", "\n", "\n", - " The Fed will also extend its financial trading blackout period — which typically applies in the run-up to Fed meetings — by one day after each meeting. That will align it with the period in which Fed officials are not allowed to give speeches. Most of the restrictions will take effect on May 1, although the new rules on the advance notice and preclearance of transactions will take effect on July 1. Financial disclosures released in late 2021 showed that Robert S. Kaplan, the former Federal Reserve Bank of Dallas president, had made big individual-stock trades, while Eric S. Rosengren, the Boston Fed president, had traded in real estate securities. Mr. Kaplan resigned in September, citing the scandal; Mr. Rosengren resigned simultaneously, citing health issues. Richard H. Clarida, then the Fed’s vice chair, sold and then rapidly repurchased a stock fund on the eve of a major Fed decision, corrected financial disclosures showed. Mr. Clarida also resigned slightly earlier than planned, though he did not cite a reason.\n", + " The Fed will also extend its financial trading blackout period — which typically applies in the run-up to Fed meetings — by one day after each meeting. That will align it with the period in which Fed officials are not allowed to give speeches.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Most of the restrictions will take effect on May 1, although the new rules on the advance notice and preclearance of transactions will take effect on July 1.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Financial disclosures released in late 2021 showed that Robert S. Kaplan, the former Federal Reserve Bank of Dallas president, had made big individual-stock trades, while Eric S. Rosengren, the Boston Fed president, had traded in real estate securities. Mr. Kaplan resigned in September, citing the scandal; Mr. Rosengren resigned simultaneously, citing health issues.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Richard H. Clarida, then the Fed’s vice chair, sold and then rapidly repurchased a stock fund on the eve of a major Fed decision, corrected financial disclosures showed. Mr. Clarida also resigned slightly earlier than planned, though he did not cite a reason.\n", " Evidence\n", "\n", "
" @@ -9622,7 +14688,7 @@ { "data": { "text/html": [ - "

nytimes\\felicity-ace-vessel-fire.txt

" + "

felicity-ace-vessel-fire.txt

" ], "text/plain": [ "" @@ -9635,34 +14701,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-5b9a217691a70eb9\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-5b9a217691a70eb9\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-5b9a217691a70eb9\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-5b9a217691a70eb9\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "958106516d60424c8b247fb96cb98b10", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " A mammoth cargo ship believed to be carrying thousands of vehicles including 1,100 Porsches was on fire and drifting off the coast of the Azores on Thursday after its 22 crew members were rescued from the vessel. The fire broke out on Wednesday morning in the cargo hold of the ship, called the Felicity Ace, which had departed from Emden, Germany, on Feb. 10 and was scheduled to arrive in the port of Davisville, R.I., on Wednesday, according to a ship tracking website. The ship was about 200 miles from Terceira Island in the Azores, the Portuguese island territory, when Portuguese forces moved in on Wednesday to evacuate the crew. No rescuers or crew members were injured in the “highly skilled and physically demanding” operation, which included a helicopter that whisked the crew members to the nearby Portuguese island of Faial, according to the authorities. It was unclear how much of the 650-foot, 60,000-ton cargo ship’s inventory was lost in the fire and how the authorities would tend to the stricken ship. The Drive, an automotive website, reported that the Volkswagen Group estimated nearly 4,000 vehicles were on board, including 189 Bentleys. Emails sent to the Volkswagen Group were not immediately answered. On Friday, Boskalis, a Dutch marine services company, said that a team of 16 experts from a subsidiary, SMIT Salvage, had been mobilized and that large equipment was en route from Spain and the Netherlands to help put out the fire on the ship. Mitsui O.S.K. Lines, which operated the Felicity Ace, said it had established an incident response team to coordinate the emergency and would “make every effort to contain the damage and resolve the situation.” Photos released on Friday by the Portuguese navy showed smoke billowing from the ship and at least one firefighting boat dousing the vessel with water. The fire comes as showrooms across the country are trying to meet consumer demand amid supply-chain problems caused partly by the pandemic. Low interest rates, higher savings rates and government stimulus payments have increased demand, while automakers have struggled to weather a shortage of computer chips. Matt Farah, a car enthusiast and editor of The Smoking Tire, had been waiting for his 2022 frozen-berry metallic Boxster Spyder, with a retail price of about $123,000 and modified to his precise specifications, since August. “The best sports car of all time, hands down,” he wrote. He received disappointing news on Wednesday, he said: “I just got a call from my dealer. My car is now adrift, possibly on fire, in the middle of the ocean.” In a statement on Thursday, Mr. Farah said that a Porsche representative confirmed that his car was on the boat and apologized for the inconvenience. “That was yesterday, and I have not heard any updates since,” he said. “I’m glad no one was hurt in the fire and everyone is safe, which is the most important thing. I’m sure that whatever happens going forward, Porsche will do right by their customers.” In a statement on Thursday evening, a spokeswoman for Porsche Cars North America said that 1,100 of the company’s cars were on board but that the fate of the vehicles was unknown. She encouraged customers worried about their car to contact their dealer. “Our immediate thoughts are of relief that the 22 crew members of the merchant ship Felicity Ace are safe and well,” the statement said.\n", + " A mammoth cargo ship believed to be carrying thousands of vehicles including 1,100 Porsches was on fire and drifting off the coast of the Azores on Thursday after its 22 crew members were rescued from the vessel.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The fire broke out on Wednesday morning in the cargo hold of the ship, called the Felicity Ace, which had departed from Emden, Germany, on Feb. 10 and was scheduled to arrive in the port of Davisville, R.I., on Wednesday, according to a ship tracking website.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The ship was about 200 miles from Terceira Island in the Azores, the Portuguese island territory, when Portuguese forces moved in on Wednesday to evacuate the crew.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " No rescuers or crew members were injured in the “highly skilled and physically demanding” operation, which included a helicopter that whisked the crew members to the nearby Portuguese island of Faial, according to the authorities.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " It was unclear how much of the 650-foot, 60,000-ton cargo ship’s inventory was lost in the fire and how the authorities would tend to the stricken ship.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The Drive, an automotive website, reported that the Volkswagen Group estimated nearly 4,000 vehicles were on board, including 189 Bentleys. Emails sent to the Volkswagen Group were not immediately answered.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " On Friday, Boskalis, a Dutch marine services company, said that a team of 16 experts from a subsidiary, SMIT Salvage, had been mobilized and that large equipment was en route from Spain and the Netherlands to help put out the fire on the ship.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mitsui O.S.K. Lines, which operated the Felicity Ace, said it had established an incident response team to coordinate the emergency and would “make every effort to contain the damage and resolve the situation.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Photos released on Friday by the Portuguese navy showed smoke billowing from the ship and at least one firefighting boat dousing the vessel with water.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The fire comes as showrooms across the country are trying to meet consumer demand amid supply-chain problems caused partly by the pandemic. Low interest rates, higher savings rates and government stimulus payments have increased demand, while automakers have struggled to weather a shortage of computer chips.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Matt Farah, a car enthusiast and editor of The Smoking Tire, had been waiting for his 2022 frozen-berry metallic Boxster Spyder, with a retail price of about $123,000 and modified to his precise specifications, since August. “The best sports car of all time, hands down,” he wrote.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " He received disappointing news on Wednesday, he said: “I just got a call from my dealer. My car is now adrift, possibly on fire, in the middle of the ocean.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In a statement on Thursday, Mr. Farah said that a Porsche representative confirmed that his car was on the boat and apologized for the inconvenience.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “That was yesterday, and I have not heard any updates since,” he said. “I’m glad no one was hurt in the fire and everyone is safe, which is the most important thing. I’m sure that whatever happens going forward, Porsche will do right by their customers.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In a statement on Thursday evening, a spokeswoman for Porsche Cars North America said that 1,100 of the company’s cars were on board but that the fate of the vehicles was unknown. She encouraged customers worried about their car to contact their dealer.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Our immediate thoughts are of relief that the 22 crew members of the merchant ship Felicity Ace are safe and well,” the statement said.\n", " Evidence\n", "\n", "
" @@ -9773,7 +14883,7 @@ { "data": { "text/html": [ - "

nytimes\\finland-bordertown-piece-of-my-heart.txt

" + "

finland-bordertown-piece-of-my-heart.txt

" ], "text/plain": [ "" @@ -9786,20 +14896,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-9c9cdfce705bc222\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-9c9cdfce705bc222\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-9c9cdfce705bc222\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-9c9cdfce705bc222\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "fb04dca16521427fa0bc8c0aa4f36f84", + "model_id": "87f2423f66ab48c3aa3100df208b1399", "version_major": 2, "version_minor": 0 }, @@ -9811,58 +14915,16 @@ "output_type": "display_data" }, { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "4a678b4429874ec195a5fd31746e2e27", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " Americans who stream a lot of television are likely to have some familiarity with British or South Korean or Latin American TV. They may even have an idea of what to expect from a Turkish or Israeli or South African show. It’s less likely that “Finnish TV” would conjure anything in their minds besides snow, or images of dour crime dramas from more celebrated TV-producing neighbors like Denmark and Sweden. But in a TV Venn diagram whose circles were tiny population, high productivity and “surprisingly enjoyable,” Finland would be in the center. Don’t go looking for Finnish comedies — they may exist, but they don’t appear to be what the streaming services are buying. What you’re going to find are dramas, typically ones that bring a twist to familiar genres. They also tend to have an unforced seriousness, without the sanctimony or self-consciousness that often mar their American counterparts.\n", + " Americans who stream a lot of television are likely to have some familiarity with British or South Korean or Latin American TV. They may even have an idea of what to expect from a Turkish or Israeli or South African show.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " It’s less likely that “Finnish TV” would conjure anything in their minds besides snow, or images of dour crime dramas from more celebrated TV-producing neighbors like Denmark and Sweden. But in a TV Venn diagram whose circles were tiny population, high productivity and “surprisingly enjoyable,” Finland would be in the center.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Don’t go looking for Finnish comedies — they may exist, but they don’t appear to be what the streaming services are buying. What you’re going to find are dramas, typically ones that bring a twist to familiar genres. They also tend to have an unforced seriousness, without the sanctimony or self-consciousness that often mar their American counterparts.\n", " Evidence\n", "\n", "\n", @@ -9915,7 +15015,22 @@ "\n", "\n", "\n", - " Premiering Thursday on the streaming service Topic (also home to “The Killing,” an icon of Scandinavian Noir), this eight-episode drama takes the conventions of the buddy-cop show and transfers them to an occupation not often featured on TV: child protective services. Rita (Lotta Lehtikari) is the embittered veteran obsessed with a case that went wrong; Laura (Niina Koponen) is the idealistic, empathetic newcomer. They adjust to each other while going out on calls — yes, it’s a child-welfare procedural — involving Helsinki’s homeless, abused or simply troubled youngsters. Freaked-out parents and disingenuous bureaucrats are the antagonists; the police, the usual heroes in this sort of scenario, are a necessary evil, indifferent and sometimes hostile. A few American shows, like “Judging Amy” and “The Guardian,” have ventured into this territory; “Piece of My Heart” may seem a little drab and slow by comparison, but it’s also more inclined to focus on the actual logistics of caring for children and less on the heart-tugging problems of the people providing the care, which is refreshing. (Rita and Laura have plenty of issues, including Rita’s continuing struggles with the case that hobbled her career, but the show doesn’t overly indulge them — the tone is “get over it and do your job.”) An American viewer also may be grimly amused by the portrayal of social work in one of the world’s most advanced welfare states, such as when Laura takes a teenage girl shopping to buy furniture for her new duplex apartment, all provided by the government.\n", + " Premiering Thursday on the streaming service Topic (also home to “The Killing,” an icon of Scandinavian Noir), this eight-episode drama takes the conventions of the buddy-cop show and transfers them to an occupation not often featured on TV: child protective services.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Rita (Lotta Lehtikari) is the embittered veteran obsessed with a case that went wrong; Laura (Niina Koponen) is the idealistic, empathetic newcomer. They adjust to each other while going out on calls — yes, it’s a child-welfare procedural — involving Helsinki’s homeless, abused or simply troubled youngsters. Freaked-out parents and disingenuous bureaucrats are the antagonists; the police, the usual heroes in this sort of scenario, are a necessary evil, indifferent and sometimes hostile.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " A few American shows, like “Judging Amy” and “The Guardian,” have ventured into this territory; “Piece of My Heart” may seem a little drab and slow by comparison, but it’s also more inclined to focus on the actual logistics of caring for children and less on the heart-tugging problems of the people providing the care, which is refreshing. (Rita and Laura have plenty of issues, including Rita’s continuing struggles with the case that hobbled her career, but the show doesn’t overly indulge them — the tone is “get over it and do your job.”)\n", + " Evidence\n", + "\n", + "\n", + "\n", + " An American viewer also may be grimly amused by the portrayal of social work in one of the world’s most advanced welfare states, such as when Laura takes a teenage girl shopping to buy furniture for her new duplex apartment, all provided by the government.\n", " Evidence\n", "\n", "\n", @@ -9935,7 +15050,47 @@ "\n", "\n", "\n", - " Sofia is inclined to expose her father’s dirty deeds, but doing so would bring an end to the good work he does as well as threaten her own health. It’s an ingenious setup: While she dithers, tap dancing with investigators and berating dad every chance she gets, she is also drawn into the cutting-edge work he and his team are doing. The show, therefore, gets to have case-of-the-week episodes while exploring, in more detail than we’re used to, the science and ethics of cloning and gene therapy. As the highhanded but crafty scientist, Taneli Makela steals the show, bringing a perfectly controlled blend of intellectual disdain and deadpan humor to lines like, “You don’t want us to throw a perfectly good fetus away, do you?” “The Americans” and the “Deutschland” series set a high bar in the category of well-written, sleekly produced Cold War period dramas. Finland’s contribution to the genre, “Shadow Lines,” whose second season premiered in December on Sundance Now, is not far off in storytelling and production value. And it is distinguished by a strain of existential earnestness: The Finnish agents’ contributions to world-shaking events are taking place just down the road from the Soviet Union. Emmi Parviainen plays Helena, a college student with a murky past who joins a secret unit of the security services in 1955, when the United States and the Soviet Union are both deeply interested in the outcome of the next Finnish presidential election. The C.I.A. is determined to keep the left-leaning Urho Kekkonen (Janne Reinikainen) out of office, while the K.G.B. is working just as hard to get him in. (The real-life Kekkonen won — he served for 26 years — and he does in the show as well, setting up the second season’s story lines.) Helena’s group, known as Fist, watches, infiltrates and tries to thwart the plans of both of its much larger and better equipped intelligence rivals, and the Finns’ resourcefulness and bravery make for satisfyingly tense entertainment in this well-above-average spy drama. The action is crisp, the violence is realistic, and the costume and set designers convincingly evoke the early days of the Cold War. The three seasons of this cop show, available on Netflix, have probably done more than anything else to draw attention to Finnish TV. The third premiered on Netflix in 2020, as the pandemic was setting in, and no announcement has been made, one way or the other, about a Season 4. The main attraction of “Bordertown” is the sly performance of Ville Virtanen as Kari Sorjonen, a classic idiosyncratic but high-functioning detective in the Sherlock Holmes mode. His eyes dart and his limbs twitch as he scans a crime scene before muttering, almost defensively, an uncanny analysis of the “We’re looking for a short woman in a blue parka with a limp” variety. Most shows play this sort of thing for humor, but in “Bordertown” it’s done straight — Kari is just that good. “Bordertown” may be the best current exemplar of Scandinavian noir, and it doesn’t depart in any significant way from the norms of that genre. Kari himself is strongly reminiscent of the somewhere-on-the-spectrum detective Saga Noren in the Danish-Swedish production “The Bridge,” and Kari’s partnership with the former Russian agent Lena Jaakkola (Anu Sinisalo) recalls the pairing of Noren, a Swede, with a Danish detective. Its Finnishness is partly a matter of isolation: The show takes place in Lappeenranta, a small, isolated city near the Russian border. Kari leaves a high-profile job in Helsinki and takes his family to the woods because he wants a place with “cozy crime.” He of course finds the opposite, partly because of the proximity of Russia, and the dead bodies just keep washing up.\n", + " Sofia is inclined to expose her father’s dirty deeds, but doing so would bring an end to the good work he does as well as threaten her own health. It’s an ingenious setup: While she dithers, tap dancing with investigators and berating dad every chance she gets, she is also drawn into the cutting-edge work he and his team are doing. The show, therefore, gets to have case-of-the-week episodes while exploring, in more detail than we’re used to, the science and ethics of cloning and gene therapy.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " As the highhanded but crafty scientist, Taneli Makela steals the show, bringing a perfectly controlled blend of intellectual disdain and deadpan humor to lines like, “You don’t want us to throw a perfectly good fetus away, do you?”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “The Americans” and the “Deutschland” series set a high bar in the category of well-written, sleekly produced Cold War period dramas. Finland’s contribution to the genre, “Shadow Lines,” whose second season premiered in December on Sundance Now, is not far off in storytelling and production value. And it is distinguished by a strain of existential earnestness: The Finnish agents’ contributions to world-shaking events are taking place just down the road from the Soviet Union.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Emmi Parviainen plays Helena, a college student with a murky past who joins a secret unit of the security services in 1955, when the United States and the Soviet Union are both deeply interested in the outcome of the next Finnish presidential election. The C.I.A. is determined to keep the left-leaning Urho Kekkonen (Janne Reinikainen) out of office, while the K.G.B. is working just as hard to get him in. (The real-life Kekkonen won — he served for 26 years — and he does in the show as well, setting up the second season’s story lines.)\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Helena’s group, known as Fist, watches, infiltrates and tries to thwart the plans of both of its much larger and better equipped intelligence rivals, and the Finns’ resourcefulness and bravery make for satisfyingly tense entertainment in this well-above-average spy drama. The action is crisp, the violence is realistic, and the costume and set designers convincingly evoke the early days of the Cold War.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The three seasons of this cop show, available on Netflix, have probably done more than anything else to draw attention to Finnish TV. The third premiered on Netflix in 2020, as the pandemic was setting in, and no announcement has been made, one way or the other, about a Season 4.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The main attraction of “Bordertown” is the sly performance of Ville Virtanen as Kari Sorjonen, a classic idiosyncratic but high-functioning detective in the Sherlock Holmes mode. His eyes dart and his limbs twitch as he scans a crime scene before muttering, almost defensively, an uncanny analysis of the “We’re looking for a short woman in a blue parka with a limp” variety. Most shows play this sort of thing for humor, but in “Bordertown” it’s done straight — Kari is just that good.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Bordertown” may be the best current exemplar of Scandinavian noir, and it doesn’t depart in any significant way from the norms of that genre. Kari himself is strongly reminiscent of the somewhere-on-the-spectrum detective Saga Noren in the Danish-Swedish production “The Bridge,” and Kari’s partnership with the former Russian agent Lena Jaakkola (Anu Sinisalo) recalls the pairing of Noren, a Swede, with a Danish detective.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Its Finnishness is partly a matter of isolation: The show takes place in Lappeenranta, a small, isolated city near the Russian border. Kari leaves a high-profile job in Helsinki and takes his family to the woods because he wants a place with “cozy crime.” He of course finds the opposite, partly because of the proximity of Russia, and the dead bodies just keep washing up.\n", " Evidence\n", "\n", "\n", @@ -9964,7 +15119,7 @@ { "data": { "text/html": [ - "

nytimes\\flight-attendants-covid.txt

" + "

flight-attendants-covid.txt

" ], "text/plain": [ "" @@ -9977,34 +15132,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-763e134aa68bd061\n" + "Using custom data configuration default-763e134aa68bd061\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-763e134aa68bd061\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-763e134aa68bd061\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" - ] - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "c1eb0eb4bea645958dab8141f322f7c1", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " It was the German shepherd in Row 4 that finally pushed Veronica, a flight attendant, over the edge. He was Veronica’s third ‘unruly passenger,’ as the Federal Aviation Administration calls them, in one month. A week or two before the dog, a middle-aged man reacted belligerently when, just before he boarded the plane, Veronica asked him to pull up his mask. ‘Who do you think you are, you liberals?!’ he screamed at her. ‘These masks don’t work.’ Then he threatened to punch her in the face. About a week before, it was a group of young female athletes. The girls kept removing their masks when they talked to one another, and Veronica, who was working the back of the plane near the girls, repeatedly reminded them: “Please put your mask on.” (She and most other attendants asked me not to use their full names, either because an airline’s media policy does not allow them to speak without permission or for fear that doing so might hinder their employment.) “Please put your mask on,” a girl mocked Veronica each time she said it. When the girl got up to go to the bathroom, without a mask, Veronica asked again. The girl, who was about 5-foot-10 and towered over Veronica’s 5-foot-2 frame, said: “I’m so sick and tired of you, bitch. You don’t have authority over me.” They were almost body to body in the cramped area near the lavatory, and Veronica feared the girl was about to hit her, before one of the coaches intervened. Finally, the German shepherd. He was supposedly a service dog (or one in training). He whined and whimpered as he boarded, and he whined in the bulkhead row near the front of the plane where he and his owner sat. Another flight attendant asked the owner if the dog was OK. Then, during the safety demonstration, Veronica leaned into Row 4 — as she has done many times when service animals were there — to point out the exit sign. The dog lunged at her, before the owner pulled him back. Then he lunged again. His tooth went through her pantyhose and scraped and bruised her thigh. Fortunately, the plane was still on the ground: A gate agent removed the dog and owner. (Veronica later heard that the passenger and her dog got on another flight.) Veronica told a manager, who was sympathetic and concerned, sent him photos and called in sick the next day. Two weeks later, she informed her airline that she was done. She quit what had, for six years, been her dream job. Flight attendants often love their jobs. The wages are decent for an occupation that doesn’t require a college education and that provides on-the-job training: Median pay was about $60,000 in 2020, according to the Bureau of Labor Statistics, with roughly 10 percent of attendants earning $85,000 or more. Attendants often have flexible schedules and little direct supervision. I spoke to about 15 flight attendants, most of whom talked about the rewards of flying: joking with passengers, having conversations with them about the honeymoon they are headed to or the funeral they returned from. Sometimes they pray with passengers or in other ways comfort them when they are in distress. They hold and rock babies to give parents a break. They also build lifelong friendships with other crew members and have jump-seat therapy, as they call it, with flight attendants they’ve just met. And they are proud of their lifesaving skills: They are trained to give CPR, fight fires onboard, help with emergency landings and evacuate planes. The career also provides plenty of perks, which grow over time. An attendant with seniority might work just nine days a month (three three-day trips), jetting to Paris and other international destinations. Off-the-job benefits include often flying free or at little cost and getting discounts on hotels and rental cars. “I saw the world,” one recently retired flight attendant told me, “and it was the only way I could afford to do it.” On layovers, crews often gather for meals or drinks. They go to Disney World together, tour Capitol Hill, have picnics in the Jardin des Tuileries. But pandemic anxiety, hostility and tantrums have turned airplanes into battlefronts. In some ways, it’s not so different on the ground for greeters at big-box stores, grocery employees, waiters, bus drivers and other workers whose jobs require that they remind people to comply with mask policies. They all risk being cursed out, spit at or punched. But airlines are a particular dumping ground for stress and rudeness. People are angry about wearing masks. People are angry at those who don’t wear masks. They are all tired of the long lines, packed airplanes and cancellations caused by weather and Omicron. (During the week of Jan. 2 this year, 10 percent of flights in the United States were canceled.) And if a customer spins out of control midflight, flight attendants have no escape and no way (despite what might be their secret fantasy) to eject the passenger. Instead, the attendant is required to uphold a federal mask mandate with little perceived authority — the public thinks “we are nothing more than cocktail waitresses,” one told me — and without the muscle of law enforcement. Before the pandemic, unruly passengers — people who interfere with crew members’ jobs or intimidate, threaten or assault them — were so rare that the F.A.A. didn’t even track them annually. But in 2021 and early 2022, the F.A.A. reported a stunning 6,300 unruly-passenger incidents — more than 4,500 of them mask-related. And 85 percent of flight attendants said they had dealt with such passengers last year, according to a July 2021 survey by the Association of Flight Attendants-C.W.A., which represents attendants at 17 airlines. Fifty-eight percent said they had experienced at least five occurrences. (Sixty-one percent of the flight attendants also said that passengers used sexist, racist and/or homophobic slurs.) And 17 percent reported physical incidents. They described passengers shoving and hitting them, kicking seats, throwing trash at them. When a Frontier Airlines flight attendant duct taped a drunken man to his seat last August, it was after he allegedly groped the breasts of two female flight attendants and punched a male flight attendant who intervened. It doesn’t help that people are also drinking a lot. Since January of last year, the F.A.A. has received more than 300 reports of passenger disturbances related to alcohol. And, so far, the agency has levied more than $161,000 in civil penalties for alleged unruly behavior involving booze. Airport vendors promoting to-go liquor — a pandemic phenomenon — are partly to blame. One flight attendant told me about a woman who tried to board with a beer when a gate agent told her to throw it away. On the plane, she drunkenly swayed back and forth and then popped open a 16-ounce Corona, claiming the agent said that was OK. (The crew removed her from the flight.) Other passengers’ bad behavior reflects a time of receding civility. Like the man who argued with attendants when they told his son to stop vaping. As he was escorted off the plane, he yelled at a flight attendant, “Imagine all of you in body bags.” Or the man who dumped a diaper filled with poop in the beverage cart, ending service for the rest of the flight. “The bathroom was three feet away,” Roger, a flight attendant who asked me to use a nickname that his friends call him, told me. “There was only one family with a baby on the plane, so we asked him. The dad admitted to it, but he never apologized.” But mask-defiers create the most problems, and the greatest risks, for flight crews. An attendant with 25 years of airline experience told me about a passenger who repeatedly refused to put a mask on her young daughter. When she deplaned, after the flight attendant said, “Have a good night,” the woman looked her in the eyes and tossed a crumpled mask in her face. Last month, on a Delta flight from Dublin to New York City, a 29-year-old man repeatedly refused to wear a mask, pulled down his pants and exposed his butt, threw a can at a passenger and put his own cap on and off the pilot’s head when the pilot walked through the cabin, according to the F.B.I. Then the man made a fist and said to the pilot, “Don’t touch me.” Several months earlier, after a Southwest flight attendant asked a woman to buckle her seatbelt, put up her tray table and wear her mask over her nose, the woman stood up and repeatedly punched the attendant, drawing blood and chipping three of her teeth. The threats are great enough that Roger, who has been flying for seven years, now avoids working as a lead attendant: The risk and responsibility aren’t worth it. Another attendant who asked me to use his middle name, Wilson, said he won’t sign up for jobs where he would be the sole attendant on smaller planes, like the 50-seater he worked last year when a passenger who was about 6-foot-3 and 200 pounds refused to put on a mask. When Wilson approached him, the man stood up and put his arms and hands out, essentially saying back off. Wilson was stuck 30,000 feet in the air with only pilots behind bulletproof doors to back him up. He reported the incident to the pilot, but when everyone disembarked, the passenger just walked away. “I’m getting all these emails from the airline saying we support you, and then I just felt alone and deflated,” he said. “I’m stuck in a tin can with this guy. It’s not like I can run. I knew he could whale the snot out of me.” Roger said he has filed more than 30 complaints about unruly passengers and never received a response from the airline. The same with another flight attendant who told me that she has filed 100 reports. In the union’s survey of attendants last year, 71 percent said they received no follow-up from their airlines after filing incident reports, and a majority saw no efforts to address passenger conduct. The Association of Flight Attendants-C.W.A. has called on airlines to improve communications with flight attendants. “Airlines are doing a decent job of forwarding complaints to the F.A.A. for investigations,” Taylor Garland, a spokeswoman for the union, said. “But there’s not a feedback loop with flight attendants.” When I reached out to several airlines about the issue, they either didn’t address it directly or said they review reports and follow up with the crew member or their flight leader. Some flight attendants told me that these days they either file reports only sporadically or have stopped doing it entirely. They are not only tired but also usually have to file reports during nonworking hours — and they aren’t convinced it makes a difference. Flight attendants feel isolated in other ways too. “It used to be that I’d get off a flight in D.C., change out of my uniform, call an Uber and walk around the National Mall and Smithsonian,” Roger told me. “Now I go to the hotel room, order takeout, turn on the TV. I haven’t gone out for a meal with crew for a long time.” He has become, as he says, a “slam clicker.” Those are the crew members who, after the flying day is done, go to the hotel, close the door behind them, click the lock and come out only when the workday starts again. They used to be in the minority, but now flight crews are full of them, either because of their fears of Covid or just exhaustion. And in some cases, they have no choice. In Tokyo and Seoul, prime destinations for senior attendants, flight crews now can’t leave their hotel rooms at all because of national pandemic rules, except for traveling to and from the airport. I talked to one attendant in January who called in sick because he was burned out after more than a week of 4 a.m. alarms and 14-hour days. Several months earlier he got stuck in Chicago overnight after multiple schedule changes because of delays and last-minute staff shortages. He was stranded in an airport lounge until 3:30 a.m. when his airline found an empty hotel room for him. (He had to wake up at 6 a.m. for a flight home.) “How much more do they expect for us to take?” Nas Lewis, a flight attendant, said. “We are at our wits’ end.” Last year, when a late-arriving passenger got on an overbooked flight, Lewis, who has flown for seven years, scouted for a possible seat for her. When Lewis found nothing, the passenger yelled at her and shoved her. Lewis didn’t report the incident. “The day was long enough,” she said. In December, partly in response to her own experiences, as well as what she was hearing from others, Lewis started a texting hotline for distressed flight attendants. The service, which is part of her nonprofit, th|AIR|apy, is staffed by 30 volunteer attendants who have gone through 15 to 30 hours of training on issues like depression, suicide and drug abuse and who provide resources to help. The first text she got was from an attendant who felt suicidal and was worn down by her schedule. There have been 3,000 messages to date, most of which, Lewis says, are about experiences of despair, thoughts of quitting, aggressive incidents on the flights and feeling unsupported by airlines. “We are getting messages all hours of the night,” she said. Since the pandemic began, attendants are also turning in greater numbers to the Association of Flight Attendants-C.W.A.’s Employee Assistant Program, which provides help and resources for drug dependence, emotional issues, workplace trauma, financial problems and harassment. Sara Nelson, the head of the union, testified before Congress in December, saying flight crews were “punching bags” and, among other things, called on the government to create a centralized list of banned passengers for all airlines. The F.A.A., meanwhile, has begun issuing harsher penalties for unruly passengers and investigated more than 1,100 cases in 2021 — compared with about 150 in previous years — and the government has started hundreds of enforcement actions. Veronica, like many others, hopes that if the pandemic recedes and the government lifts the mask mandate (which could occur as soon as March 18, but is not certain), the violence and verbal assaults will decline. If that happens, she would like to return to the skies. In the meantime, she has taken her 3-year-old daughter out of day care and is a full-time mother. There’s nothing like flying. But for now, “instead of dealing with 72 toddlers,” Veronica said, “I’m taking care of one.”\n", + " It was the German shepherd in Row 4 that finally pushed Veronica, a flight attendant, over the edge. He was Veronica’s third ‘unruly passenger,’ as the Federal Aviation Administration calls them, in one month. A week or two before the dog, a middle-aged man reacted belligerently when, just before he boarded the plane, Veronica asked him to pull up his mask. ‘Who do you think you are, you liberals?!’ he screamed at her. ‘These masks don’t work.’ Then he threatened to punch her in the face. About a week before, it was a group of young female athletes. The girls kept removing their masks when they talked to one another, and Veronica, who was working the back of the plane near the girls, repeatedly reminded them: “Please put your mask on.” (She and most other attendants asked me not to use their full names, either because an airline’s media policy does not allow them to speak without permission or for fear that doing so might hinder their employment.) “Please put your mask on,” a girl mocked Veronica each time she said it. When the girl got up to go to the bathroom, without a mask, Veronica asked again. The girl, who was about 5-foot-10 and towered over Veronica’s 5-foot-2 frame, said: “I’m so sick and tired of you, bitch. You don’t have authority over me.” They were almost body to body in the cramped area near the lavatory, and Veronica feared the girl was about to hit her, before one of the coaches intervened.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Finally, the German shepherd. He was supposedly a service dog (or one in training). He whined and whimpered as he boarded, and he whined in the bulkhead row near the front of the plane where he and his owner sat. Another flight attendant asked the owner if the dog was OK. Then, during the safety demonstration, Veronica leaned into Row 4 — as she has done many times when service animals were there — to point out the exit sign. The dog lunged at her, before the owner pulled him back. Then he lunged again. His tooth went through her pantyhose and scraped and bruised her thigh. Fortunately, the plane was still on the ground: A gate agent removed the dog and owner. (Veronica later heard that the passenger and her dog got on another flight.) Veronica told a manager, who was sympathetic and concerned, sent him photos and called in sick the next day. Two weeks later, she informed her airline that she was done. She quit what had, for six years, been her dream job.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Flight attendants often love their jobs. The wages are decent for an occupation that doesn’t require a college education and that provides on-the-job training: Median pay was about $60,000 in 2020, according to the Bureau of Labor Statistics, with roughly 10 percent of attendants earning $85,000 or more. Attendants often have flexible schedules and little direct supervision. I spoke to about 15 flight attendants, most of whom talked about the rewards of flying: joking with passengers, having conversations with them about the honeymoon they are headed to or the funeral they returned from. Sometimes they pray with passengers or in other ways comfort them when they are in distress. They hold and rock babies to give parents a break. They also build lifelong friendships with other crew members and have jump-seat therapy, as they call it, with flight attendants they’ve just met. And they are proud of their lifesaving skills: They are trained to give CPR, fight fires onboard, help with emergency landings and evacuate planes.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The career also provides plenty of perks, which grow over time. An attendant with seniority might work just nine days a month (three three-day trips), jetting to Paris and other international destinations. Off-the-job benefits include often flying free or at little cost and getting discounts on hotels and rental cars. “I saw the world,” one recently retired flight attendant told me, “and it was the only way I could afford to do it.” On layovers, crews often gather for meals or drinks. They go to Disney World together, tour Capitol Hill, have picnics in the Jardin des Tuileries.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " But pandemic anxiety, hostility and tantrums have turned airplanes into battlefronts. In some ways, it’s not so different on the ground for greeters at big-box stores, grocery employees, waiters, bus drivers and other workers whose jobs require that they remind people to comply with mask policies. They all risk being cursed out, spit at or punched. But airlines are a particular dumping ground for stress and rudeness. People are angry about wearing masks. People are angry at those who don’t wear masks. They are all tired of the long lines, packed airplanes and cancellations caused by weather and Omicron. (During the week of Jan. 2 this year, 10 percent of flights in the United States were canceled.) And if a customer spins out of control midflight, flight attendants have no escape and no way (despite what might be their secret fantasy) to eject the passenger. Instead, the attendant is required to uphold a federal mask mandate with little perceived authority — the public thinks “we are nothing more than cocktail waitresses,” one told me — and without the muscle of law enforcement.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Before the pandemic, unruly passengers — people who interfere with crew members’ jobs or intimidate, threaten or assault them — were so rare that the F.A.A. didn’t even track them annually. But in 2021 and early 2022, the F.A.A. reported a stunning 6,300 unruly-passenger incidents — more than 4,500 of them mask-related. And 85 percent of flight attendants said they had dealt with such passengers last year, according to a July 2021 survey by the Association of Flight Attendants-C.W.A., which represents attendants at 17 airlines. Fifty-eight percent said they had experienced at least five occurrences. (Sixty-one percent of the flight attendants also said that passengers used sexist, racist and/or homophobic slurs.) And 17 percent reported physical incidents. They described passengers shoving and hitting them, kicking seats, throwing trash at them. When a Frontier Airlines flight attendant duct taped a drunken man to his seat last August, it was after he allegedly groped the breasts of two female flight attendants and punched a male flight attendant who intervened.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " It doesn’t help that people are also drinking a lot. Since January of last year, the F.A.A. has received more than 300 reports of passenger disturbances related to alcohol. And, so far, the agency has levied more than $161,000 in civil penalties for alleged unruly behavior involving booze. Airport vendors promoting to-go liquor — a pandemic phenomenon — are partly to blame. One flight attendant told me about a woman who tried to board with a beer when a gate agent told her to throw it away. On the plane, she drunkenly swayed back and forth and then popped open a 16-ounce Corona, claiming the agent said that was OK. (The crew removed her from the flight.)\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Other passengers’ bad behavior reflects a time of receding civility. Like the man who argued with attendants when they told his son to stop vaping. As he was escorted off the plane, he yelled at a flight attendant, “Imagine all of you in body bags.” Or the man who dumped a diaper filled with poop in the beverage cart, ending service for the rest of the flight. “The bathroom was three feet away,” Roger, a flight attendant who asked me to use a nickname that his friends call him, told me. “There was only one family with a baby on the plane, so we asked him. The dad admitted to it, but he never apologized.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " But mask-defiers create the most problems, and the greatest risks, for flight crews. An attendant with 25 years of airline experience told me about a passenger who repeatedly refused to put a mask on her young daughter. When she deplaned, after the flight attendant said, “Have a good night,” the woman looked her in the eyes and tossed a crumpled mask in her face. Last month, on a Delta flight from Dublin to New York City, a 29-year-old man repeatedly refused to wear a mask, pulled down his pants and exposed his butt, threw a can at a passenger and put his own cap on and off the pilot’s head when the pilot walked through the cabin, according to the F.B.I. Then the man made a fist and said to the pilot, “Don’t touch me.” Several months earlier, after a Southwest flight attendant asked a woman to buckle her seatbelt, put up her tray table and wear her mask over her nose, the woman stood up and repeatedly punched the attendant, drawing blood and chipping three of her teeth.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The threats are great enough that Roger, who has been flying for seven years, now avoids working as a lead attendant: The risk and responsibility aren’t worth it. Another attendant who asked me to use his middle name, Wilson, said he won’t sign up for jobs where he would be the sole attendant on smaller planes, like the 50-seater he worked last year when a passenger who was about 6-foot-3 and 200 pounds refused to put on a mask. When Wilson approached him, the man stood up and put his arms and hands out, essentially saying back off. Wilson was stuck 30,000 feet in the air with only pilots behind bulletproof doors to back him up. He reported the incident to the pilot, but when everyone disembarked, the passenger just walked away. “I’m getting all these emails from the airline saying we support you, and then I just felt alone and deflated,” he said. “I’m stuck in a tin can with this guy. It’s not like I can run. I knew he could whale the snot out of me.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Roger said he has filed more than 30 complaints about unruly passengers and never received a response from the airline. The same with another flight attendant who told me that she has filed 100 reports. In the union’s survey of attendants last year, 71 percent said they received no follow-up from their airlines after filing incident reports, and a majority saw no efforts to address passenger conduct. The Association of Flight Attendants-C.W.A. has called on airlines to improve communications with flight attendants. “Airlines are doing a decent job of forwarding complaints to the F.A.A. for investigations,” Taylor Garland, a spokeswoman for the union, said. “But there’s not a feedback loop with flight attendants.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " When I reached out to several airlines about the issue, they either didn’t address it directly or said they review reports and follow up with the crew member or their flight leader. Some flight attendants told me that these days they either file reports only sporadically or have stopped doing it entirely. They are not only tired but also usually have to file reports during nonworking hours — and they aren’t convinced it makes a difference.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Flight attendants feel isolated in other ways too. “It used to be that I’d get off a flight in D.C., change out of my uniform, call an Uber and walk around the National Mall and Smithsonian,” Roger told me. “Now I go to the hotel room, order takeout, turn on the TV. I haven’t gone out for a meal with crew for a long time.” He has become, as he says, a “slam clicker.” Those are the crew members who, after the flying day is done, go to the hotel, close the door behind them, click the lock and come out only when the workday starts again. They used to be in the minority, but now flight crews are full of them, either because of their fears of Covid or just exhaustion. And in some cases, they have no choice. In Tokyo and Seoul, prime destinations for senior attendants, flight crews now can’t leave their hotel rooms at all because of national pandemic rules, except for traveling to and from the airport.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " I talked to one attendant in January who called in sick because he was burned out after more than a week of 4 a.m. alarms and 14-hour days. Several months earlier he got stuck in Chicago overnight after multiple schedule changes because of delays and last-minute staff shortages. He was stranded in an airport lounge until 3:30 a.m. when his airline found an empty hotel room for him. (He had to wake up at 6 a.m. for a flight home.)\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “How much more do they expect for us to take?” Nas Lewis, a flight attendant, said. “We are at our wits’ end.” Last year, when a late-arriving passenger got on an overbooked flight, Lewis, who has flown for seven years, scouted for a possible seat for her. When Lewis found nothing, the passenger yelled at her and shoved her. Lewis didn’t report the incident. “The day was long enough,” she said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In December, partly in response to her own experiences, as well as what she was hearing from others, Lewis started a texting hotline for distressed flight attendants. The service, which is part of her nonprofit, th|AIR|apy, is staffed by 30 volunteer attendants who have gone through 15 to 30 hours of training on issues like depression, suicide and drug abuse and who provide resources to help. The first text she got was from an attendant who felt suicidal and was worn down by her schedule. There have been 3,000 messages to date, most of which, Lewis says, are about experiences of despair, thoughts of quitting, aggressive incidents on the flights and feeling unsupported by airlines. “We are getting messages all hours of the night,” she said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Since the pandemic began, attendants are also turning in greater numbers to the Association of Flight Attendants-C.W.A.’s Employee Assistant Program, which provides help and resources for drug dependence, emotional issues, workplace trauma, financial problems and harassment.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Sara Nelson, the head of the union, testified before Congress in December, saying flight crews were “punching bags” and, among other things, called on the government to create a centralized list of banned passengers for all airlines. The F.A.A., meanwhile, has begun issuing harsher penalties for unruly passengers and investigated more than 1,100 cases in 2021 — compared with about 150 in previous years — and the government has started hundreds of enforcement actions.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Veronica, like many others, hopes that if the pandemic recedes and the government lifts the mask mandate (which could occur as soon as March 18, but is not certain), the violence and verbal assaults will decline. If that happens, she would like to return to the skies. In the meantime, she has taken her 3-year-old daughter out of day care and is a full-time mother. There’s nothing like flying. But for now, “instead of dealing with 72 toddlers,” Veronica said, “I’m taking care of one.”\n", " Evidence\n", "\n", "
" @@ -10124,7 +15341,7 @@ { "data": { "text/html": [ - "

nytimes\\focus-johann-hari.txt

" + "

focus-johann-hari.txt

" ], "text/plain": [ "" @@ -10137,20 +15354,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-734e0fd9ed573990\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-734e0fd9ed573990\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-734e0fd9ed573990\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-734e0fd9ed573990\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "269ca33f2d7a496d8c68d764ab10d0d7", + "model_id": "9085324ce1ae454ea6e261c29c32494d", "version_major": 2, "version_minor": 0 }, @@ -10161,15 +15372,22 @@ "metadata": {}, "output_type": "display_data" }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Loading cached processed dataset at C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-734e0fd9ed573990\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4\\cache-23f9c5eb9793e1a3.arrow\n" + ] + }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "f6845c53d8a7446fba098c40f2295ccd", + "model_id": "f7304ce7552b4c1a8aa63753773ff7df", "version_major": 2, "version_minor": 0 }, "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " The typical American worker focuses on a given task for just three minutes. Each day, we touch or check our phones more than 2,000 times, and spend more than three hours staring at them, on average. So says Johann Hari, an author who has previously written about depression and addiction, in his new book “Stolen Focus.” It is an investigation into how we got ourselves into this distracted state — what Mr. Hari describes as an “attention crisis.” Some factors that Mr. Hari identifies seem straightforward, like the current business model of Big Tech, which makes money in direct proportion to the attention people give it. Other factors he unearths are less commonly discussed, from what we eat (highly processed food, filled with refined carbohydrates) and how we sleep (by some accounts, less than we used to) to the nature of American childhood, with its widespread loss of autonomy. Mr. Hari calls for an “attention rebellion,” a drastic collective action to force major changes, such as instituting a four-day workweek and letting children have much more unsupervised free play.\n", + " The typical American worker focuses on a given task for just three minutes. Each day, we touch or check our phones more than 2,000 times, and spend more than three hours staring at them, on average. So says Johann Hari, an author who has previously written about depression and addiction, in his new book “Stolen Focus.” It is an investigation into how we got ourselves into this distracted state — what Mr. Hari describes as an “attention crisis.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Some factors that Mr. Hari identifies seem straightforward, like the current business model of Big Tech, which makes money in direct proportion to the attention people give it. Other factors he unearths are less commonly discussed, from what we eat (highly processed food, filled with refined carbohydrates) and how we sleep (by some accounts, less than we used to) to the nature of American childhood, with its widespread loss of autonomy. Mr. Hari calls for an “attention rebellion,” a drastic collective action to force major changes, such as instituting a four-day workweek and letting children have much more unsupervised free play.\n", " Evidence\n", "\n", "\n", @@ -10272,17 +15493,42 @@ "\n", "\n", "\n", - " J.H.: There’s always a mystery in my head that I genuinely want to investigate. With this book, I could feel my own attention getting worse. Things that required deep focus, that were core to my sense of self, like reading books and having deep conversations, were getting more and more like running up a down escalator. I could still do them, but they were getting harder. And I could see this happening to most people I knew. I also think there’s a deeper connection. With each of these phenomena — depression, addiction and our attention crisis — we think of them as primarily individual problems and individual flaws. But these are phenomena that are occurring within an environment. As Dr. Joel Nigg, a psychiatry professor who is one of the leading experts on children’s attention problems, put it to me, we need to ask if we are facing what he called an “attentional pathogenic culture,” a culture that is undermining the ability of most of us to focus.\n", + " J.H.: There’s always a mystery in my head that I genuinely want to investigate. With this book, I could feel my own attention getting worse. Things that required deep focus, that were core to my sense of self, like reading books and having deep conversations, were getting more and more like running up a down escalator. I could still do them, but they were getting harder. And I could see this happening to most people I knew.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " I also think there’s a deeper connection. With each of these phenomena — depression, addiction and our attention crisis — we think of them as primarily individual problems and individual flaws. But these are phenomena that are occurring within an environment. As Dr. Joel Nigg, a psychiatry professor who is one of the leading experts on children’s attention problems, put it to me, we need to ask if we are facing what he called an “attentional pathogenic culture,” a culture that is undermining the ability of most of us to focus.\n", " Evidence\n", "\n", "\n", "\n", - " What about the pandemic? How have the events of these past two years contributed to our fractured sense of focus? J.H.: It has made us more stressed, and we know that stress triggers a state called vigilance — and vigilance is where you find it harder to focus because your brain is scanning the horizon for danger.\n", + " What about the pandemic? How have the events of these past two years contributed to our fractured sense of focus?\n", + " Claim\n", + "\n", + "\n", + "\n", + " J.H.: It has made us more stressed, and we know that stress triggers a state called vigilance — and vigilance is where you find it harder to focus because your brain is scanning the horizon for danger.\n", " Claim\n", "\n", "\n", "\n", - " The other thing is it’s given us this dystopian vision of the future. Naomi Klein argues that we suddenly got slammed forward to where we would have been in 15 years time with regard to technology. It has shown us a vision of the future that many of us hate. In the last two years, I have not once heard the phrase, “Hooray, another Zoom call!” So it’s given us a vision of the future we are moving toward that we can now consciously choose to abandon and move toward a much better future. On that subject: There are those, like the writer and tech expert Nir Eyal, who say we need to be individually accountable for our own discipline around screen time, rather than blame technology for our distractibility. You call this “cruel optimism,” which you define as a solution that sounds good, but won’t work. J.H.: At the start of the research for the book, I had essentially two stories for what had happened to me. I thought: “One, you’re lacking willpower. And two, someone invented the smartphone.” I decided to exert my willpower, and I went away without my smartphone for three months. I spent three months in Provincetown, Mass., completely offline, in a radical act of will. There were many ups and downs, but I was stunned by how much my attention came back. I could read books for eight hours a day. At the end of my time there, I thought, “I’m never going to go back to how I lived before.” The pleasures of focus are so much greater than the rewards of likes and retweets. Then I got my phone back, and within a few months, I was 80 percent back to where I had been. I only really understood why when I interviewed James Williams, who I would argue is the leading philosopher on attention in the world now, and he said to me, “It’s like you thought the solution to air pollution was for you personally to wear a gas mask.”\n", + " The other thing is it’s given us this dystopian vision of the future. Naomi Klein argues that we suddenly got slammed forward to where we would have been in 15 years time with regard to technology. It has shown us a vision of the future that many of us hate. In the last two years, I have not once heard the phrase, “Hooray, another Zoom call!” So it’s given us a vision of the future we are moving toward that we can now consciously choose to abandon and move toward a much better future.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " On that subject: There are those, like the writer and tech expert Nir Eyal, who say we need to be individually accountable for our own discipline around screen time, rather than blame technology for our distractibility. You call this “cruel optimism,” which you define as a solution that sounds good, but won’t work.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " J.H.: At the start of the research for the book, I had essentially two stories for what had happened to me. I thought: “One, you’re lacking willpower. And two, someone invented the smartphone.” I decided to exert my willpower, and I went away without my smartphone for three months. I spent three months in Provincetown, Mass., completely offline, in a radical act of will. There were many ups and downs, but I was stunned by how much my attention came back. I could read books for eight hours a day. At the end of my time there, I thought, “I’m never going to go back to how I lived before.” The pleasures of focus are so much greater than the rewards of likes and retweets.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Then I got my phone back, and within a few months, I was 80 percent back to where I had been. I only really understood why when I interviewed James Williams, who I would argue is the leading philosopher on attention in the world now, and he said to me, “It’s like you thought the solution to air pollution was for you personally to wear a gas mask.”\n", " Evidence\n", "\n", "\n", @@ -10312,7 +15558,12 @@ "\n", "\n", "\n", - " To that point, the diagnosis of A.D.H.D. has soared since the beginning of this century. Roughly six million American children are now diagnosed with it. But you unearthed ambiguity on this subject — researchers don’t agree on whether A.D.H.D. is a strictly “biological illness.” J.H.: Of all the topics in the book, this was the one where the scientists I interviewed disagreed the most. The evidence is fairly clear that there are some people whose genes make them somewhat more vulnerable to attention problems. However, the extent to which those attention problems are driven by biology has been somewhat overstated. This is the first human society ever that has tried to get kids to sit still for eight hours a day. No one has ever done that before because it’s an absolutely idiotic thing to do.\n", + " To that point, the diagnosis of A.D.H.D. has soared since the beginning of this century. Roughly six million American children are now diagnosed with it. But you unearthed ambiguity on this subject — researchers don’t agree on whether A.D.H.D. is a strictly “biological illness.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " J.H.: Of all the topics in the book, this was the one where the scientists I interviewed disagreed the most. The evidence is fairly clear that there are some people whose genes make them somewhat more vulnerable to attention problems. However, the extent to which those attention problems are driven by biology has been somewhat overstated. This is the first human society ever that has tried to get kids to sit still for eight hours a day. No one has ever done that before because it’s an absolutely idiotic thing to do.\n", " Evidence\n", "\n", "\n", @@ -10322,7 +15573,12 @@ "\n", "\n", "\n", - " Your solution to all of this is to start an “attention rebellion.” What does that look like? J.H.: The first step is consciousness raising. It’s everyone coming together and saying: You think you’re failing because you can’t focus, and actually it’s happening to all of us and it’s happening for big structural reasons.\n", + " Your solution to all of this is to start an “attention rebellion.” What does that look like?\n", + " Claim\n", + "\n", + "\n", + "\n", + " J.H.: The first step is consciousness raising. It’s everyone coming together and saying: You think you’re failing because you can’t focus, and actually it’s happening to all of us and it’s happening for big structural reasons.\n", " Claim\n", "\n", "
" @@ -10346,7 +15602,7 @@ { "data": { "text/html": [ - "

nytimes\\food-english-foreign-languages.txt

" + "

food-english-foreign-languages.txt

" ], "text/plain": [ "" @@ -10359,34 +15615,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-62991eba72ac6d9a\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-62991eba72ac6d9a\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-62991eba72ac6d9a\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-62991eba72ac6d9a\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "7c9d53173327412da878ac1d93cd7dc0", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00\n", "\n", "\n", - " While my family’s sentiments were understandable, this led me to think about whether the English language contained its own expressive words that encapsulated entire concepts about food. Was there a word like the Japanese “kuchinaoshi,” which translates to “mouth fix,” a way to describe eating something tasty to “fix” the bad taste in your mouth from something else? What about the Swedish idea of “lagom,” which means “not too much, not too little”? It’s a way of expressing the need for balance in life, even when it comes to eating. In Spanish, there’s “sobremesa,” which captures the idea of lingering at the table long after a meal is finished and enjoying one another’s company. Cornelia Gerhardt, an English linguist at Saarland University in Germany and one of the founders of culinary linguistics, a field concerned with the ties between language and food, believes that English is a language that does not like to pack too much information into one word. “English is analytical, using a series of words to explain an idea,” Dr. Gerhardt said, “unlike polysynthetic languages (where entire concepts are reduced to a single word) or agglutinative languages (where suffixes and prefixes are added to a root word to create new words).” The Norwegian word “utepils,” for example, is a noun that translates to “outside beer,” or the experience of having a beer outside on a sunny day. The literal meaning is easily understood in English. But to truly grasp its cultural context, one would need to understand that Norway is dark and cold for most of the year and, even in warmer weather, it can be rainy and overcast. So sitting outside with a beer on a sunny day is a rare pleasure. And all of that is encapsulated neatly into a single word. Peggy Mohan, a linguist and visiting professor at Ashoka University in Delhi, said via email that many languages had “cryptic terms,” words whose meanings are difficult for nonnative speakers to grasp. Many of these are food words, she said. “Such words get invented easily, and there is even a sense of fun and humor in creating these little tokens of an existence shared by a small community and obscure to outsiders,” she said.\n", + " While my family’s sentiments were understandable, this led me to think about whether the English language contained its own expressive words that encapsulated entire concepts about food. Was there a word like the Japanese “kuchinaoshi,” which translates to “mouth fix,” a way to describe eating something tasty to “fix” the bad taste in your mouth from something else? What about the Swedish idea of “lagom,” which means “not too much, not too little”? It’s a way of expressing the need for balance in life, even when it comes to eating. In Spanish, there’s “sobremesa,” which captures the idea of lingering at the table long after a meal is finished and enjoying one another’s company.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Cornelia Gerhardt, an English linguist at Saarland University in Germany and one of the founders of culinary linguistics, a field concerned with the ties between language and food, believes that English is a language that does not like to pack too much information into one word.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “English is analytical, using a series of words to explain an idea,” Dr. Gerhardt said, “unlike polysynthetic languages (where entire concepts are reduced to a single word) or agglutinative languages (where suffixes and prefixes are added to a root word to create new words).”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The Norwegian word “utepils,” for example, is a noun that translates to “outside beer,” or the experience of having a beer outside on a sunny day. The literal meaning is easily understood in English. But to truly grasp its cultural context, one would need to understand that Norway is dark and cold for most of the year and, even in warmer weather, it can be rainy and overcast. So sitting outside with a beer on a sunny day is a rare pleasure. And all of that is encapsulated neatly into a single word.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Peggy Mohan, a linguist and visiting professor at Ashoka University in Delhi, said via email that many languages had “cryptic terms,” words whose meanings are difficult for nonnative speakers to grasp. Many of these are food words, she said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Such words get invented easily, and there is even a sense of fun and humor in creating these little tokens of an existence shared by a small community and obscure to outsiders,” she said.\n", " Evidence\n", "\n", "\n", "\n", - " But “English, especially American English, is in no way a ‘minority’ language in this global age,” Ms. Mohan continued. “It is a language that expects to have nonnative speakers, so it needs to be accessible. Cryptic terms would go against this need to engage and speak for the global community.” But does that mean that English has not developed socially or culturally deep-rooted words about food of its own?\n", + " But “English, especially American English, is in no way a ‘minority’ language in this global age,” Ms. Mohan continued. “It is a language that expects to have nonnative speakers, so it needs to be accessible. Cryptic terms would go against this need to engage and speak for the global community.”\n", + " Rebuttal\n", + "\n", + "\n", + "\n", + " But does that mean that English has not developed socially or culturally deep-rooted words about food of its own?\n", " Rebuttal\n", "\n", "\n", @@ -10499,7 +15755,27 @@ "\n", "\n", "\n", - " “The quality of food discourse in a culture will affect the degree to which they come up with these interesting, peculiar, untranslatable words,” Dr. Buccini said in a phone interview. “And I think English has a lot of them.” “A pizza parlor, for me, growing up in New Jersey, has to have certain associations,” Dr. Buccini said. “Italian family-owned. The furnishing was of a certain type. Other food items besides pizzas were a certain type — baked clams, mussels in tomato sauce.” There are also compounds such as “pub crawl,” a group of people roaming from one bar to another, almost always drinking excessively, he added in a statement that has been paraphrased. So while English may not have a single word that describes sitting outside on a sunny day while enjoying a beer, it has some lovely terms for culturally specific food concepts. Ruth Dsouza Prabhu is an independent features journalist based in Bangalore, India. She has been published in Al Jazeera, Whetstone SA, The National, Good Beer Hunting and other publications in India.\n", + " “The quality of food discourse in a culture will affect the degree to which they come up with these interesting, peculiar, untranslatable words,” Dr. Buccini said in a phone interview. “And I think English has a lot of them.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “A pizza parlor, for me, growing up in New Jersey, has to have certain associations,” Dr. Buccini said. “Italian family-owned. The furnishing was of a certain type. Other food items besides pizzas were a certain type — baked clams, mussels in tomato sauce.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " There are also compounds such as “pub crawl,” a group of people roaming from one bar to another, almost always drinking excessively, he added in a statement that has been paraphrased.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " So while English may not have a single word that describes sitting outside on a sunny day while enjoying a beer, it has some lovely terms for culturally specific food concepts.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Ruth Dsouza Prabhu is an independent features journalist based in Bangalore, India. She has been published in Al Jazeera, Whetstone SA, The National, Good Beer Hunting and other publications in India.\n", " Evidence\n", "\n", "\n", @@ -10528,7 +15804,7 @@ { "data": { "text/html": [ - "

nytimes\\fourth-dose-covid-vaccine.txt

" + "

fourth-dose-covid-vaccine.txt

" ], "text/plain": [ "" @@ -10541,34 +15817,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-c7dced11643524ca\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-c7dced11643524ca\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-c7dced11643524ca\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-c7dced11643524ca\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "052ebf2b5d7d43288fb498df7e7d15d4", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " WASHINGTON — Although new federal data suggests that the effectiveness of booster shots wanes after about four months, the Biden administration is not planning to recommend fourth doses of the coronavirus vaccine anytime soon. “We simply don’t have enough data to know that it’s a good thing to do,” Dr. Peter Marks, who heads the division of the Food and Drug Administration that regulates vaccines, said in an interview this week. In a separate interview, Dr. Anthony S. Fauci, the chief medical adviser to the White House, said the vaccines are still a firm bulwark against severe illness, despite data from the Centers for Disease Control and Prevention showing that booster shots lose some of their potency after four to five months. The C.D.C.’s research, released last Friday, analyzed hospitalizations and visits to emergency rooms and urgent care clinics in 10 states by people who had had booster shots of either Moderna’s or Pfizer-BioNTech’s vaccine. The study showed the level of protection against hospitalization fell from 91 percent in the two months after a third shot to 78 percent after four to five months. Effectiveness against visits to emergency rooms or urgent care clinics declined from 87 percent to 66 percent.\n", + " WASHINGTON — Although new federal data suggests that the effectiveness of booster shots wanes after about four months, the Biden administration is not planning to recommend fourth doses of the coronavirus vaccine anytime soon.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “We simply don’t have enough data to know that it’s a good thing to do,” Dr. Peter Marks, who heads the division of the Food and Drug Administration that regulates vaccines, said in an interview this week.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In a separate interview, Dr. Anthony S. Fauci, the chief medical adviser to the White House, said the vaccines are still a firm bulwark against severe illness, despite data from the Centers for Disease Control and Prevention showing that booster shots lose some of their potency after four to five months.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The C.D.C.’s research, released last Friday, analyzed hospitalizations and visits to emergency rooms and urgent care clinics in 10 states by people who had had booster shots of either Moderna’s or Pfizer-BioNTech’s vaccine. The study showed the level of protection against hospitalization fell from 91 percent in the two months after a third shot to 78 percent after four to five months. Effectiveness against visits to emergency rooms or urgent care clinics declined from 87 percent to 66 percent.\n", " Evidence\n", "\n", "\n", @@ -10668,7 +15931,12 @@ "\n", "\n", "\n", - " “‘Should I get a fourth shot?’ That’s what a lot of people are asking me,” Dr. Fauci said. “The answer is if you look at where we are now, it looks like it’s good protection. Seventy-eight percent is good.” The administration’s vaccine strategy has been under constant review since President Biden took office. What comes next, Dr. Fauci said, will depend on whether protection from boosters holds steady or continues to drop after four to five months — and if it keeps dropping, how steeply.\n", + " “‘Should I get a fourth shot?’ That’s what a lot of people are asking me,” Dr. Fauci said. “The answer is if you look at where we are now, it looks like it’s good protection. Seventy-eight percent is good.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The administration’s vaccine strategy has been under constant review since President Biden took office. What comes next, Dr. Fauci said, will depend on whether protection from boosters holds steady or continues to drop after four to five months — and if it keeps dropping, how steeply.\n", " Evidence\n", "\n", "\n", @@ -10678,39 +15946,69 @@ "\n", "\n", "\n", - " That means more uncertainty for Americans exhausted by frequent changes in vaccine recommendations — pivots largely forced by the onset of new variants. Dr. Sterling Ransone, president of the American Academy of Family Physicians, said his patients keep asking about whether a fourth shot will be necessary and if so, when. “It’s frustrating, right?” said Dr. Ransone, who practices in the small town of Deltaville, Va. “We humans want some certainty and control of the situation. And this is a case where we don’t know what’s going to happen in the future. We don’t know the exact recommendation.” In Bangor, Maine, Dr. James W. Jarvis, who leads Covid response for Northern Light Health, a local health care system, said that he stresses to his patients how well the vaccines are working, even if boosters are needed. Although they don’t offer complete protection, he said, “the most recent data really suggests that these vaccines are still doing a good job.” Data from Britain is similar to that from the C.D.C., indicating that boosters are about 75 percent to 85 percent effective against hospitalization four to six months after they are given. Israel has also noted waning of the Pfizer-BioNTech vaccine’s effectiveness in the months after a booster shot, according to the C.D.C. Israel began offering a fourth shot in late December, at first only to health care workers though eligibility has broadened. The C.D.C. has recommended that those with immune deficiencies get three shots as part of their initial series, followed by a fourth shot as a booster. Biden administration officials say two-thirds of eligible adults have gotten a booster shot since the additional injections were authorized in November. Uptake has been slower among children over 12, who only became eligible in early January. Dr. Marks said it may turn out that the best time for an additional shot is this fall, when the spread of the coronavirus is expected to pick up again. “Barring any surprises from new variants, maybe the best thing is to think about our booster strategy in conjunction with the influenza vaccine next fall, and get as many people as possible boosted then,” he said.\n", + " That means more uncertainty for Americans exhausted by frequent changes in vaccine recommendations — pivots largely forced by the onset of new variants. Dr. Sterling Ransone, president of the American Academy of Family Physicians, said his patients keep asking about whether a fourth shot will be necessary and if so, when.\n", " Evidence\n", "\n", "\n", - "\n", - " Dr. Ransone said some of his patients would prefer that, so they can get their immunizations in a single visit.\n", - " Claim\n", + "\n", + " “It’s frustrating, right?” said Dr. Ransone, who practices in the small town of Deltaville, Va. “We humans want some certainty and control of the situation. And this is a case where we don’t know what’s going to happen in the future. We don’t know the exact recommendation.”\n", + " Evidence\n", "\n", "\n", "\n", - " At a session hosted last month by the F.D.A. and the University of California, San Francisco, Dr. Marks said he hoped that a third shot would be enough of a shield against disease that only a yearly Covid booster would be needed. But both he and Dr. Fauci said it is impossible to make any prediction without more data.\n", + " In Bangor, Maine, Dr. James W. Jarvis, who leads Covid response for Northern Light Health, a local health care system, said that he stresses to his patients how well the vaccines are working, even if boosters are needed. Although they don’t offer complete protection, he said, “the most recent data really suggests that these vaccines are still doing a good job.”\n", " Evidence\n", "\n", "\n", - "\n", - " Earlier this month, Dr. Fauci suggested that any recommendation would likely be aimed at those most at risk, possibly based on age as well as underlying conditions.\n", - " Claim\n", + "\n", + " Data from Britain is similar to that from the C.D.C., indicating that boosters are about 75 percent to 85 percent effective against hospitalization four to six months after they are given. Israel has also noted waning of the Pfizer-BioNTech vaccine’s effectiveness in the months after a booster shot, according to the C.D.C.\n", + " Evidence\n", "\n", "\n", "\n", - " “I don’t think you’re going to be hearing, if you do, any kind of recommendations that would be across the board for everyone,” he said at a White House briefing. “It very likely will take into account what subset of people have a diminished, or not, protection against the important parameters such as hospitalization.”\n", + " Israel began offering a fourth shot in late December, at first only to health care workers though eligibility has broadened. The C.D.C. has recommended that those with immune deficiencies get three shots as part of their initial series, followed by a fourth shot as a booster.\n", " Evidence\n", "\n", - "
" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { + "\n", + "\n", + " Biden administration officials say two-thirds of eligible adults have gotten a booster shot since the additional injections were authorized in November. Uptake has been slower among children over 12, who only became eligible in early January.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Dr. Marks said it may turn out that the best time for an additional shot is this fall, when the spread of the coronavirus is expected to pick up again. “Barring any surprises from new variants, maybe the best thing is to think about our booster strategy in conjunction with the influenza vaccine next fall, and get as many people as possible boosted then,” he said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Dr. Ransone said some of his patients would prefer that, so they can get their immunizations in a single visit.\n", + " Claim\n", + "\n", + "\n", + "\n", + " At a session hosted last month by the F.D.A. and the University of California, San Francisco, Dr. Marks said he hoped that a third shot would be enough of a shield against disease that only a yearly Covid booster would be needed. But both he and Dr. Fauci said it is impossible to make any prediction without more data.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Earlier this month, Dr. Fauci suggested that any recommendation would likely be aimed at those most at risk, possibly based on age as well as underlying conditions.\n", + " Claim\n", + "\n", + "\n", + "\n", + " “I don’t think you’re going to be hearing, if you do, any kind of recommendations that would be across the board for everyone,” he said at a White House briefing. “It very likely will take into account what subset of people have a diminished, or not, protection against the important parameters such as hospitalization.”\n", + " Evidence\n", + "\n", + "
" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { "name": "stdout", "output_type": "stream", "text": [ @@ -10722,7 +16020,7 @@ { "data": { "text/html": [ - "

nytimes\\girls-eating-disorders-pandemic.txt

" + "

girls-eating-disorders-pandemic.txt

" ], "text/plain": [ "" @@ -10735,34 +16033,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-452f73eba769cf53\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-452f73eba769cf53\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-452f73eba769cf53\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-452f73eba769cf53\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "77eb2cccf6b94a2e98c0eb7c23912a4b", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00\n", "\n", "\n", - " Mental health experts hypothesize that the pandemic prompted some youth to feel isolated, lonely and out-of-control. Some coped by seeking to have control over their own behavior, said Emily Pluhar, a pediatric psychologist at Boston Children’s Hospital and instructor at Harvard Medical School. “You take a very vulnerable group and put on a global pandemic,” she said. “The eating disorders are out of control.” In the C.D.C. study, the agency said that the proportion of eating disorder visits doubled among teenage girls, set off by pandemic-related risk factors, like the “lack of structure in daily routine, emotional distress and changes in food availability.” The agency said that the increase in tic disorders was “atypical,” as these disorders often present earlier, and are more common in boys. But the C.D.C., reinforcing speculation from other clinicians and researchers, said that some teenage girls may be developing tics after seeing the phenomenon spread widely on social media, notably on TikTok. “Stress of the pandemic or exposure to severe tics, highlighted on social media platforms, might be associated with increases in visits with tics and tic-like behavior among adolescent females,” the C.D.C. wrote. In a related report, the C.D.C. also said on Friday that the increase in visits for mental health issues occurred as emergency rooms reported sharp declines overall in visits during the pandemic. As compared with 2019, overall visits fell by 51 percent in 2020 and by 22 percent in 2021, declines that the agency attributed in part to families delaying care, and a drop in physical injuries from activities like swimming and running. There was a decline in overall emergency room visits for mental health conditions among all youths, up to age 17. Increases occurred for particular maladies, and particularly among teenage girls. More broadly, the surge in adolescent mental health distress appears to have intensified during the pandemic, but it began earlier. Emergency room visits among youths related to depression, anxiety and similar issues rose by 28 percent from 2007 to 2018, according to another report by the surgeon general. In its report on Friday, the C.D.C. said that mental health-related emergency room visits for teenage boys fell in both 2020 and 2021 as compared with 2019. But the C.D.C. also reported that the data was nuanced and that the visitation patterns for boys, as well as girls, depended on specific mental health condition and time period. “These sex differences might represent differences in need, recognition and health care-seeking behavior,” the C.D.C. wrote. For teenage girls, weekly emergency room visits rose for eating and tic disorders during 2020; and for those conditions and obsessive compulsive disorders in 2021. During January of 2022, the C.D.C. said there also was an increase in anxiety, trauma and stress-related issues.\n", + " Mental health experts hypothesize that the pandemic prompted some youth to feel isolated, lonely and out-of-control. Some coped by seeking to have control over their own behavior, said Emily Pluhar, a pediatric psychologist at Boston Children’s Hospital and instructor at Harvard Medical School.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “You take a very vulnerable group and put on a global pandemic,” she said. “The eating disorders are out of control.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In the C.D.C. study, the agency said that the proportion of eating disorder visits doubled among teenage girls, set off by pandemic-related risk factors, like the “lack of structure in daily routine, emotional distress and changes in food availability.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The agency said that the increase in tic disorders was “atypical,” as these disorders often present earlier, and are more common in boys. But the C.D.C., reinforcing speculation from other clinicians and researchers, said that some teenage girls may be developing tics after seeing the phenomenon spread widely on social media, notably on TikTok.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Stress of the pandemic or exposure to severe tics, highlighted on social media platforms, might be associated with increases in visits with tics and tic-like behavior among adolescent females,” the C.D.C. wrote.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In a related report, the C.D.C. also said on Friday that the increase in visits for mental health issues occurred as emergency rooms reported sharp declines overall in visits during the pandemic. As compared with 2019, overall visits fell by 51 percent in 2020 and by 22 percent in 2021, declines that the agency attributed in part to families delaying care, and a drop in physical injuries from activities like swimming and running.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " There was a decline in overall emergency room visits for mental health conditions among all youths, up to age 17. Increases occurred for particular maladies, and particularly among teenage girls.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " More broadly, the surge in adolescent mental health distress appears to have intensified during the pandemic, but it began earlier. Emergency room visits among youths related to depression, anxiety and similar issues rose by 28 percent from 2007 to 2018, according to another report by the surgeon general.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In its report on Friday, the C.D.C. said that mental health-related emergency room visits for teenage boys fell in both 2020 and 2021 as compared with 2019. But the C.D.C. also reported that the data was nuanced and that the visitation patterns for boys, as well as girls, depended on specific mental health condition and time period.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “These sex differences might represent differences in need, recognition and health care-seeking behavior,” the C.D.C. wrote.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " For teenage girls, weekly emergency room visits rose for eating and tic disorders during 2020; and for those conditions and obsessive compulsive disorders in 2021. During January of 2022, the C.D.C. said there also was an increase in anxiety, trauma and stress-related issues.\n", " Evidence\n", "\n", "
" @@ -10880,7 +16194,7 @@ { "data": { "text/html": [ - "

nytimes\\google-facebook-advertising.txt

" + "

google-facebook-advertising.txt

" ], "text/plain": [ "" @@ -10893,34 +16207,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-640c7389aced1e39\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-640c7389aced1e39\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-640c7389aced1e39\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-640c7389aced1e39\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "2105785b14ea4c0ba150d1b01ae4a4b2", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " This article is part of the On Tech newsletter. Here is a collection of past columns. Google and Facebook love to talk about the cutting-edge stuff that they’re working on. Metaverse! Driverless cars! Cloud! Artificial intelligence!\n", + " This article is part of the On Tech newsletter. Here is a collection of past columns.\n", + " Lead\n", + "\n", + "\n", + "\n", + " Google and Facebook love to talk about the cutting-edge stuff that they’re working on. Metaverse! Driverless cars! Cloud! Artificial intelligence!\n", " Lead\n", "\n", "\n", @@ -11032,7 +16358,17 @@ "\n", "\n", "\n", - " Alphabet, the corporate entity that includes Google, made about 80 percent of its revenue this year from the ads that we see when searching the web, watching YouTube videos, checking out Google Maps and more. Facebook generated 98 percent of its revenue from ads. (Facebook likely won’t mention this today, when it plans to discuss the company’s vision of us living, shopping and working in its virtual reality world.) It’s not breaking news that Google and Facebook are souped-up versions of old-school advertising mediums like newspapers or radio. I am stressing the point for two reasons. First, zeroing in on their essence helps demystify those tech superpowers. Google and Facebook seem less mythical and imposing when you know that their empires are built on selling us more socks. Second, I want us to think more about the warts-and-all effects of the Google and Facebook advertising powerhouses. The methods of advertising that the companies helped popularize — highly automated; based on information about who we are, what we do online and where we go; and at a scale unlike anything before — has changed the world around us in both good and harmful ways, without most of us really noticing.\n", + " Alphabet, the corporate entity that includes Google, made about 80 percent of its revenue this year from the ads that we see when searching the web, watching YouTube videos, checking out Google Maps and more. Facebook generated 98 percent of its revenue from ads. (Facebook likely won’t mention this today, when it plans to discuss the company’s vision of us living, shopping and working in its virtual reality world.)\n", + " Evidence\n", + "\n", + "\n", + "\n", + " It’s not breaking news that Google and Facebook are souped-up versions of old-school advertising mediums like newspapers or radio. I am stressing the point for two reasons. First, zeroing in on their essence helps demystify those tech superpowers. Google and Facebook seem less mythical and imposing when you know that their empires are built on selling us more socks.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Second, I want us to think more about the warts-and-all effects of the Google and Facebook advertising powerhouses. The methods of advertising that the companies helped popularize — highly automated; based on information about who we are, what we do online and where we go; and at a scale unlike anything before — has changed the world around us in both good and harmful ways, without most of us really noticing.\n", " Evidence\n", "\n", "\n", @@ -11042,7 +16378,12 @@ "\n", "\n", "\n", - " If you type “Miami vacations” into Google, that’s a blaring signal that you might be interested in booking a hotel room. If a hotel can pay an average of $1 per new customer for its website to show up prominently in those Google search results — versus spending $2 for each customer if it buys a television commercial — those hotel rooms might be cheaper for us. That example is radically oversimplified, but you get the point. Even if you say that you hate ads or never use Facebook, the ads on these sites have beneficial ripple effects.\n", + " If you type “Miami vacations” into Google, that’s a blaring signal that you might be interested in booking a hotel room. If a hotel can pay an average of $1 per new customer for its website to show up prominently in those Google search results — versus spending $2 for each customer if it buys a television commercial — those hotel rooms might be cheaper for us.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " That example is radically oversimplified, but you get the point. Even if you say that you hate ads or never use Facebook, the ads on these sites have beneficial ripple effects.\n", " Evidence\n", "\n", "\n", @@ -11052,7 +16393,12 @@ "\n", "\n", "\n", - " The last thing I’ll mention is the perpetual motion machine of bigness. Google and Facebook are the biggest advertising sellers in the world largely because they are the largest gatherings of humans in the world. More people translate into more spots to sell ads. That has created ripple effects for entertainment companies, newspapers and internet properties to try to merge or do anything they can to get bigger. I wonder if we would have a healthier economy and internet life if Comcast, TikTok and nearly every other company weren’t trying to amass the biggest audience of humans possible — partly to compete with Google and Facebook and sell more ads.\n", + " The last thing I’ll mention is the perpetual motion machine of bigness. Google and Facebook are the biggest advertising sellers in the world largely because they are the largest gatherings of humans in the world. More people translate into more spots to sell ads.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " That has created ripple effects for entertainment companies, newspapers and internet properties to try to merge or do anything they can to get bigger. I wonder if we would have a healthier economy and internet life if Comcast, TikTok and nearly every other company weren’t trying to amass the biggest audience of humans possible — partly to compete with Google and Facebook and sell more ads.\n", " Evidence\n", "\n", "\n", @@ -11072,7 +16418,27 @@ "\n", "\n", "\n", - " Download and install the latest software update for iOS (version 15.1). To do that, open the Settings app, tap General and then tap Software Update. Now retrieve your digital vaccine card from your health department. These steps vary by state. California residents can visit the vaccine record website for the California Department of Public Health to request a copy of their digital vaccine card. Once you receive the vaccine card, tap and hold down on the QR code — a digital bar code that looks like a bunch of black-and-white squares — to open a menu. Then select “Open in Health.” Here, select “Add to Wallet & Health.” Now you can access your vaccine card by opening the Wallet app. Never delete anything, I guess? Facebook told employees to preserve a wide range of internal documents and communications dating back to 2016, my colleagues Ryan Mac and Mike Isaac report. The company said that it did this in response to government inquiries stemming from the internal materials disseminated by Frances Haugen, a former Facebook product manager.\n", + " Download and install the latest software update for iOS (version 15.1). To do that, open the Settings app, tap General and then tap Software Update.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Now retrieve your digital vaccine card from your health department. These steps vary by state. California residents can visit the vaccine record website for the California Department of Public Health to request a copy of their digital vaccine card.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Once you receive the vaccine card, tap and hold down on the QR code — a digital bar code that looks like a bunch of black-and-white squares — to open a menu. Then select “Open in Health.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Here, select “Add to Wallet & Health.” Now you can access your vaccine card by opening the Wallet app.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Never delete anything, I guess? Facebook told employees to preserve a wide range of internal documents and communications dating back to 2016, my colleagues Ryan Mac and Mike Isaac report. The company said that it did this in response to government inquiries stemming from the internal materials disseminated by Frances Haugen, a former Facebook product manager.\n", " Evidence\n", "\n", "\n", @@ -11121,7 +16487,7 @@ { "data": { "text/html": [ - "

nytimes\\gregory-peck-mockingbird-sequel.txt

" + "

gregory-peck-mockingbird-sequel.txt

" ], "text/plain": [ "" @@ -11134,34 +16500,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-01aee1ec192a8c11\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-01aee1ec192a8c11\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-01aee1ec192a8c11\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-01aee1ec192a8c11\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "4009542b0179411895f03c2989f958b4", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00\n", "\n", "\n", - " Now, after a yearslong legal battle, the path has been cleared for another major adaptation: a film remake or sequel. No plans have been announced, or are even being contemplated, according to the successors and heirs of the makers of the original 1962 film adaptation starring Gregory Peck.\n", + " Now, after a yearslong legal battle, the path has been cleared for another major adaptation: a film remake or sequel.\n", " Claim\n", "\n", "\n", - "\n", - " But unsealed documents filed in an Alabama federal court reveal how those successors and heirs successfully fought Lee’s estate to preserve the right to make any sequel or derivative movie, which they argued had been originally granted by Lee in 1961 and reaffirmed by her in 2008.\n", - " Rebuttal\n", + "\n", + " No plans have been announced, or are even being contemplated, according to the successors and heirs of the makers of the original 1962 film adaptation starring Gregory Peck.\n", + " Claim\n", + "\n", + "\n", + "\n", + " But unsealed documents filed in an Alabama federal court reveal how those successors and heirs successfully fought Lee’s estate to preserve the right to make any sequel or derivative movie, which they argued had been originally granted by Lee in 1961 and reaffirmed by her in 2008.\n", + " Rebuttal\n", "\n", "\n", "\n", @@ -11268,7 +16608,47 @@ "\n", "\n", "\n", - " The drawn-out fight pitted a best-selling American literary icon against the descendants of filmmakers who had produced an acclaimed movie that was nominated for an Oscar for best picture and that Lee herself professed to love. As part of an arbitration settlement, which was reported earlier by the digital media company Puck, the Lee estate also agreed to pay an undisclosed sum to the heirs of the “Mockingbird” producer Alan Pakula; the director, Robert Mulligan; and Peck, who played the lead role as Atticus Finch, a small-town Alabama lawyer who fights to exonerate a wrongly convicted Black man. Cecilia Peck, the actor’s daughter, signed for the Atticus Corporation, which was party to the agreement. The agreement also gives the producers rights to make a film adaptation of “Go Set a Watchman,” with the caveat that the estate must sign off on it. It was another legal setback for Lee’s estate, which recently lost a battle with the publisher of a stage version of “Mockingbird,” after an arbitrator ruled that the estate must pay more than $2.5 million in damages and fees to Dramatic Publishing, a theatrical publishing company that has licensed a stage adaptation of “To Kill a Mockingbird” for decades. Lee herself was such a fan of the 1962 film that she was firmly opposed to a sequel or remake that might dilute its legacy. In a 2008 letter to Peck’s widow, she was adamant that no one but Peck should embody Atticus onscreen: “Of course, he was the only Atticus & I hope there is some way to prevent a re-make, of any kind,” she wrote. “I know that we can ‘forbid’ forever, but things happen.” In 2008, Lee entered a new agreement with the successors to the original producers, which gave them motion picture and other rights to “To Kill a Mockingbird,” while Lee reserved the literary, stage, television and single-person radio rights. Lee’s representatives tried to terminate those rights in 2015, just months before her death, but the arbitrator ruled that the effort to revoke rights had not been valid. In a statement, Tonja B. Carter, executor of the Lee estate, lamented the outcome of the arbitration, and said that Lee had been misguided when she entered the 2008 agreement. “We are disappointed with the outcome of this arbitration,” she said. “It was based entirely upon a one-sided 2008 agreement that the heirs of Gregory Peck convinced Ms. Lee to sign, at a time when she was advised solely by her 93-year-old sister, even though it was entirely against her interests to do so. The 2008 agreement transferred extraordinarily valuable intellectual property rights owned by Ms. Lee in exchange for $1.” A lawyer representing the producers, Mark Lee, said that his clients fought to retain film rights partly to prevent anyone else from making a movie that would undermine the spirit of the novel or the original film. “They want to be proper guardians of those rights,” he said. “They want nothing to happen with those rights that they do not approve of, or that would not honor Ms. Lee’s legacy.”\n", + " The drawn-out fight pitted a best-selling American literary icon against the descendants of filmmakers who had produced an acclaimed movie that was nominated for an Oscar for best picture and that Lee herself professed to love.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " As part of an arbitration settlement, which was reported earlier by the digital media company Puck, the Lee estate also agreed to pay an undisclosed sum to the heirs of the “Mockingbird” producer Alan Pakula; the director, Robert Mulligan; and Peck, who played the lead role as Atticus Finch, a small-town Alabama lawyer who fights to exonerate a wrongly convicted Black man. Cecilia Peck, the actor’s daughter, signed for the Atticus Corporation, which was party to the agreement. The agreement also gives the producers rights to make a film adaptation of “Go Set a Watchman,” with the caveat that the estate must sign off on it.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " It was another legal setback for Lee’s estate, which recently lost a battle with the publisher of a stage version of “Mockingbird,” after an arbitrator ruled that the estate must pay more than $2.5 million in damages and fees to Dramatic Publishing, a theatrical publishing company that has licensed a stage adaptation of “To Kill a Mockingbird” for decades.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Lee herself was such a fan of the 1962 film that she was firmly opposed to a sequel or remake that might dilute its legacy. In a 2008 letter to Peck’s widow, she was adamant that no one but Peck should embody Atticus onscreen: “Of course, he was the only Atticus & I hope there is some way to prevent a re-make, of any kind,” she wrote. “I know that we can ‘forbid’ forever, but things happen.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In 2008, Lee entered a new agreement with the successors to the original producers, which gave them motion picture and other rights to “To Kill a Mockingbird,” while Lee reserved the literary, stage, television and single-person radio rights. Lee’s representatives tried to terminate those rights in 2015, just months before her death, but the arbitrator ruled that the effort to revoke rights had not been valid.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In a statement, Tonja B. Carter, executor of the Lee estate, lamented the outcome of the arbitration, and said that Lee had been misguided when she entered the 2008 agreement.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “We are disappointed with the outcome of this arbitration,” she said. “It was based entirely upon a one-sided 2008 agreement that the heirs of Gregory Peck convinced Ms. Lee to sign, at a time when she was advised solely by her 93-year-old sister, even though it was entirely against her interests to do so. The 2008 agreement transferred extraordinarily valuable intellectual property rights owned by Ms. Lee in exchange for $1.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " A lawyer representing the producers, Mark Lee, said that his clients fought to retain film rights partly to prevent anyone else from making a movie that would undermine the spirit of the novel or the original film.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “They want to be proper guardians of those rights,” he said. “They want nothing to happen with those rights that they do not approve of, or that would not honor Ms. Lee’s legacy.”\n", " Evidence\n", "\n", "\n", @@ -11302,7 +16682,7 @@ { "data": { "text/html": [ - "

nytimes\\hadley-palmer-greenwich.txt

" + "

hadley-palmer-greenwich.txt

" ], "text/plain": [ "" @@ -11315,34 +16695,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-45305696bb8bdbe3\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-45305696bb8bdbe3\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-45305696bb8bdbe3\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-45305696bb8bdbe3\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "fb64f402952d47f3b8818b0d219670b3", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " GREENWICH, Conn. — In a place where it is difficult to stand out among the secluded mansions, Birkin bags and Mercedes-Benz G-Wagons, one woman has drawn unwanted attention this week to one of America’s wealthiest bastions. Not long ago, photographs of Hadley Palmer, 53, had regularly graced the society pages here. She was a fixture at charity galas and can’t-miss parties. The daughter of a hedge fund founder, she lived with her family in a $10 million mansion overlooking Long Island Sound in Belle Haven. The enclave on a peninsula has been home to hedge fund moguls like Ray Dalio and Paul Tudor Jones II — and at least one celebrity, the singer Diana Ross. Now, Ms. Palmer is inmate No. 439165 at the York Correctional Institution in Niantic, with her mug shot in the papers and in heavy rotation on the local TV news. This week, lurid details began to emerge from a sealed criminal case of how she pleaded guilty in January to secretly recording videos of several minors in intimate situations. All three victims were under 18, and at least one was 15 or younger, the police said. Prosecutors have recommended that she serve 90 days to five years in prison, along with 20 years of probation. She must also register as a sex offender. “I’m sure someone is going to make a movie about it,” Herb Foote, 61, a Greenwich resident who sells solar roofing panels, said on Tuesday. He learned about the case from his wife. “It’s like, whoa,” he said. “Everybody’s imagination runs amok.”\n", + " GREENWICH, Conn. — In a place where it is difficult to stand out among the secluded mansions, Birkin bags and Mercedes-Benz G-Wagons, one woman has drawn unwanted attention this week to one of America’s wealthiest bastions.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Not long ago, photographs of Hadley Palmer, 53, had regularly graced the society pages here. She was a fixture at charity galas and can’t-miss parties.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The daughter of a hedge fund founder, she lived with her family in a $10 million mansion overlooking Long Island Sound in Belle Haven. The enclave on a peninsula has been home to hedge fund moguls like Ray Dalio and Paul Tudor Jones II — and at least one celebrity, the singer Diana Ross.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Now, Ms. Palmer is inmate No. 439165 at the York Correctional Institution in Niantic, with her mug shot in the papers and in heavy rotation on the local TV news.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " This week, lurid details began to emerge from a sealed criminal case of how she pleaded guilty in January to secretly recording videos of several minors in intimate situations. All three victims were under 18, and at least one was 15 or younger, the police said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Prosecutors have recommended that she serve 90 days to five years in prison, along with 20 years of probation. She must also register as a sex offender.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “I’m sure someone is going to make a movie about it,” Herb Foote, 61, a Greenwich resident who sells solar roofing panels, said on Tuesday. He learned about the case from his wife. “It’s like, whoa,” he said. “Everybody’s imagination runs amok.”\n", " Evidence\n", "\n", "\n", @@ -11471,7 +16876,12 @@ "\n", "\n", "\n", - " Many people approached here for comment this week treated Ms. Palmer’s arrest as taboo. Outside of Richards, a luxury clothing store known for its trunk shows, one woman scurried away, a velour Chanel Paris tote bag dangling from her shoulder, when asked about the case. Another waved off a reporter, explaining: “I don’t like to be exposed.” Marjory Tait, 90, a retired probate court employee, said Greenwich was a different place than the town she moved to in the 1960s, one where opulence had become amplified. The average home price recently eclipsed $3 million, a buying bonanza catalyzed by the flight of New Yorkers during the pandemic.\n", + " Many people approached here for comment this week treated Ms. Palmer’s arrest as taboo. Outside of Richards, a luxury clothing store known for its trunk shows, one woman scurried away, a velour Chanel Paris tote bag dangling from her shoulder, when asked about the case. Another waved off a reporter, explaining: “I don’t like to be exposed.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Marjory Tait, 90, a retired probate court employee, said Greenwich was a different place than the town she moved to in the 1960s, one where opulence had become amplified. The average home price recently eclipsed $3 million, a buying bonanza catalyzed by the flight of New Yorkers during the pandemic.\n", " Evidence\n", "\n", "\n", @@ -11481,7 +16891,12 @@ "\n", "\n", "\n", - " Ms. Palmer’s arrest last October went largely unnoticed. Soon after, her lawyer sought to have her case sealed, first on a temporary basis and then permanently. A Connecticut Superior Court judge granted Ms. Palmer’s request earlier this month, a move supported by lawyers seeking to protect her victims. The Associated Press opposed the step, with a reporter for the wire service telling the judge that it had created the impression of a second, privileged tier of justice.\n", + " Ms. Palmer’s arrest last October went largely unnoticed. Soon after, her lawyer sought to have her case sealed, first on a temporary basis and then permanently.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " A Connecticut Superior Court judge granted Ms. Palmer’s request earlier this month, a move supported by lawyers seeking to protect her victims. The Associated Press opposed the step, with a reporter for the wire service telling the judge that it had created the impression of a second, privileged tier of justice.\n", " Evidence\n", "\n", "\n", @@ -11491,7 +16906,17 @@ "\n", "\n", "\n", - " A Greenwich psychologist has also been arrested on a charge that he had failed to report the matter, as required by Connecticut’s child welfare laws. Anna Belton, who lives in New York City and was in Greenwich for business on Wednesday, said that Ms. Palmer’s case had made her believe that “people who have power and money can do whatever they want.” Ms. Belton added that as a Black woman, she felt like an outsider while walking near downtown, where the customers are mostly white and wealthy.\n", + " A Greenwich psychologist has also been arrested on a charge that he had failed to report the matter, as required by Connecticut’s child welfare laws.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Anna Belton, who lives in New York City and was in Greenwich for business on Wednesday, said that Ms. Palmer’s case had made her believe that “people who have power and money can do whatever they want.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Ms. Belton added that as a Black woman, she felt like an outsider while walking near downtown, where the customers are mostly white and wealthy.\n", " Evidence\n", "\n", "\n", @@ -11506,7 +16931,12 @@ "\n", "\n", "\n", - " “How did it get sealed?” she asked. Ms. McGrath said she was still not used to the signs of prosperity that surrounded her.\n", + " “How did it get sealed?” she asked.\n", + " Claim\n", + "\n", + "\n", + "\n", + " Ms. McGrath said she was still not used to the signs of prosperity that surrounded her.\n", " Claim\n", "\n", "\n", @@ -11516,7 +16946,37 @@ "\n", "\n", "\n", - " A couple of stores down, past Lululemon and Saks Fifth Avenue, past a Yeti brand water bowl for thirsty pets, was Sekani Thompson, 29, busy at work with a cleaning towel in hand. For nine years, he has worked in Greenwich as a window washer. What Ms. Palmer did was “sickening,” he said. But it spoke to “how rich people get out of stuff easily,” he added. He focused back on his work. He would be done with just a few more swipes of the glass. Behind it was a golden Rolex watch worth $86,000. In Belle Haven, property records show that Ms. Palmer, a mother of four, shared a renovated 19th-century mansion with her now-estranged husband, Bradley C. Palmer, a Greenwich financier. The home, which has a solarium, walled gardens and a carriage house, is less than a mile from where one of the most searing crimes in Greenwich’s history took place: the 1975 murder of Martha Moxley, 15, who had been bludgeoned with a golf club and stabbed. That crime spawned books and intense media spotlight, culminating more than 25 years later with the conviction of Michael Skakel, a Kennedy cousin, in the teenager’s murder. Mr. Skakel’s conviction was overturned in 2018. “Historically, Belle Haven has had a dark side,” Timothy Dumas, author of “Greentown: Murder and Mystery in Greenwich, America’s Wealthiest Community,” said on Tuesday. Mr. Dumas described Belle Haven as “Gatsby-esque.” The enclave has its own security force, and its bylaws prohibit outsiders from taking pictures. That didn’t stop a photographer for a British tabloid this week. A parent of a former schoolmate of one of Ms. Palmer’s children said this week that nothing had seemed amiss during repeated encounters with her. “These are nice people we thought we knew,” said the parent, who spoke on the condition of anonymity to avoid embarrassment. “You just never know about people.”\n", + " A couple of stores down, past Lululemon and Saks Fifth Avenue, past a Yeti brand water bowl for thirsty pets, was Sekani Thompson, 29, busy at work with a cleaning towel in hand.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " For nine years, he has worked in Greenwich as a window washer. What Ms. Palmer did was “sickening,” he said. But it spoke to “how rich people get out of stuff easily,” he added. He focused back on his work. He would be done with just a few more swipes of the glass. Behind it was a golden Rolex watch worth $86,000.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In Belle Haven, property records show that Ms. Palmer, a mother of four, shared a renovated 19th-century mansion with her now-estranged husband, Bradley C. Palmer, a Greenwich financier.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The home, which has a solarium, walled gardens and a carriage house, is less than a mile from where one of the most searing crimes in Greenwich’s history took place: the 1975 murder of Martha Moxley, 15, who had been bludgeoned with a golf club and stabbed. That crime spawned books and intense media spotlight, culminating more than 25 years later with the conviction of Michael Skakel, a Kennedy cousin, in the teenager’s murder. Mr. Skakel’s conviction was overturned in 2018.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Historically, Belle Haven has had a dark side,” Timothy Dumas, author of “Greentown: Murder and Mystery in Greenwich, America’s Wealthiest Community,” said on Tuesday.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mr. Dumas described Belle Haven as “Gatsby-esque.” The enclave has its own security force, and its bylaws prohibit outsiders from taking pictures. That didn’t stop a photographer for a British tabloid this week.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " A parent of a former schoolmate of one of Ms. Palmer’s children said this week that nothing had seemed amiss during repeated encounters with her. “These are nice people we thought we knew,” said the parent, who spoke on the condition of anonymity to avoid embarrassment. “You just never know about people.”\n", " Evidence\n", "\n", "\n", @@ -11526,7 +16986,32 @@ "\n", "\n", "\n", - " When her estranged husband sought access to her social media accounts, along with any videos or photographs she may have sent to anyone with whom she had been romantically or sexually involved, Ms. Palmer objected last July. “The plaintiff asserts her Fifth Amendment rights against self-incrimination,” Ms. Palmer’s lawyer wrote in a motion at the time. Mr. Palmer did not respond to a text message seeking an interview on Wednesday. His lawyers also did not respond, including one defending him in a lawsuit filed in 2021 by a former chief financial officer of his firm who contends that Mr. Palmer never paid him $3.4 million in earnings. In court filings, Mr. Palmer’s lawyer disputed those accusations. Legal observers in Connecticut said that the hushed circumstances of Ms. Palmer’s case had recalled the systematic sealing of court files of the rich and politically connected in the state more than two decades ago. The contentious and informal practice was known as a shadow docket. “It was very clearly delineated for insiders,” Philip Russell, a longtime defense lawyer from Greenwich and former prosecutor in the Bronx, said on Tuesday. The inequitable arrangement prompted changes to the law and the practice book for lawyers that required a notice period for the public to comment on the sealing of cases and a judicial fact-finding process, Mr. Russell said.\n", + " When her estranged husband sought access to her social media accounts, along with any videos or photographs she may have sent to anyone with whom she had been romantically or sexually involved, Ms. Palmer objected last July.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “The plaintiff asserts her Fifth Amendment rights against self-incrimination,” Ms. Palmer’s lawyer wrote in a motion at the time.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mr. Palmer did not respond to a text message seeking an interview on Wednesday. His lawyers also did not respond, including one defending him in a lawsuit filed in 2021 by a former chief financial officer of his firm who contends that Mr. Palmer never paid him $3.4 million in earnings. In court filings, Mr. Palmer’s lawyer disputed those accusations.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Legal observers in Connecticut said that the hushed circumstances of Ms. Palmer’s case had recalled the systematic sealing of court files of the rich and politically connected in the state more than two decades ago. The contentious and informal practice was known as a shadow docket.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “It was very clearly delineated for insiders,” Philip Russell, a longtime defense lawyer from Greenwich and former prosecutor in the Bronx, said on Tuesday.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The inequitable arrangement prompted changes to the law and the practice book for lawyers that required a notice period for the public to comment on the sealing of cases and a judicial fact-finding process, Mr. Russell said.\n", " Evidence\n", "\n", "\n", @@ -11536,7 +17021,27 @@ "\n", "\n", "\n", - " In 2006, he became entangled in a widely publicized criminal case in town when he destroyed a laptop computer containing sexual abuse images of children that had been used by a longtime music director at Christ Church Greenwich. Mr. Russell, who had been representing the church, pleaded guilty to failing to report the music director’s crimes and was sentenced to six months of home confinement. Christopher Fountain, who blogs about Greenwich on his website, For What It’s Worth, suggested on Monday that the legal system had exercised unusual discretion on Ms. Palmer’s behalf. Writing on his blog, he cited the case of an elected official in Greenwich who made international headlines in 2016 after his arrest on charges that he had groped a woman and told her that he no longer needed to be politically correct because Donald J. Trump had been elected president. The official, Chris von Keyserling, was convicted of fourth-degree sexual assault, a misdemeanor, and sentenced to 90 days of house arrest. “Chris, of course, lives in a second-floor walk-up apartment in Cos Cob, and not in Belle Haven,” Mr. Fountain wrote. “Mind you, Hadley’s shelter under the cone of silence has just ended rather spectacularly.” Not everyone in Greenwich has an opinion about the case. On Wednesday morning, Alberto Flores was walking a mile and a half to work — to save money, he explained in Spanish — past the town’s Cadillac and Lexus dealerships. Asked about Ms. Palmer, he replied, “I don’t have time for that.”\n", + " In 2006, he became entangled in a widely publicized criminal case in town when he destroyed a laptop computer containing sexual abuse images of children that had been used by a longtime music director at Christ Church Greenwich. Mr. Russell, who had been representing the church, pleaded guilty to failing to report the music director’s crimes and was sentenced to six months of home confinement.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Christopher Fountain, who blogs about Greenwich on his website, For What It’s Worth, suggested on Monday that the legal system had exercised unusual discretion on Ms. Palmer’s behalf.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Writing on his blog, he cited the case of an elected official in Greenwich who made international headlines in 2016 after his arrest on charges that he had groped a woman and told her that he no longer needed to be politically correct because Donald J. Trump had been elected president. The official, Chris von Keyserling, was convicted of fourth-degree sexual assault, a misdemeanor, and sentenced to 90 days of house arrest.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Chris, of course, lives in a second-floor walk-up apartment in Cos Cob, and not in Belle Haven,” Mr. Fountain wrote. “Mind you, Hadley’s shelter under the cone of silence has just ended rather spectacularly.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Not everyone in Greenwich has an opinion about the case. On Wednesday morning, Alberto Flores was walking a mile and a half to work — to save money, he explained in Spanish — past the town’s Cadillac and Lexus dealerships. Asked about Ms. Palmer, he replied, “I don’t have time for that.”\n", " Evidence\n", "\n", "
" @@ -11560,7 +17065,7 @@ { "data": { "text/html": [ - "

nytimes\\happiness-confidence-struggle.txt

" + "

happiness-confidence-struggle.txt

" ], "text/plain": [ "" @@ -11573,34 +17078,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-5afd5bb7e7242e78\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-5afd5bb7e7242e78\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-5afd5bb7e7242e78\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-5afd5bb7e7242e78\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "3f7fcfd4887d421d889e7e26ee606514", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " It happens almost every day: A friend, an acquaintance or a complete stranger confides in me about a past struggle that only a few people in his or her life are privy to, about physical pain or emotional turmoil that almost nobody sees. It happened just the other day. Someone who’d always struck me as a portrait of unflappable confidence and unforced buoyancy told me for the first time about a medical misfortune that he suffered decades ago and repercussions from it that linger. I was surprised by the details of his hardship but not by the fact of it. His story is my story. My story is many people’s stories. Our outward calm veils inner turbulence. Much of the confidence we project is a camouflage we perfect. And when you admit to that, you’re blessed with others’ admissions. You join an informal community of people eager or at least willing to embrace the messy and liberating truth. I joined it after suddenly losing some of my eyesight several years ago, being told that I might go blind and then writing about that. My account seemed to resonate with readers in part because my condition exemplified a public-private disconnect. Nothing about my composure or appearance suggested trouble. I met my deadlines. I honored my obligations. My eyes looked the way they’d always looked. But they didn’t act the way they’d always acted. Never again would I read as fleetly and fluidly as before. Never again would I type with as much ease and as few errors.\n", + " It happens almost every day: A friend, an acquaintance or a complete stranger confides in me about a past struggle that only a few people in his or her life are privy to, about physical pain or emotional turmoil that almost nobody sees.\n", " Evidence\n", "\n", "\n", - "\n", - " That was the bad part. The good? Never again would I trust that I knew anything important about someone — or, really, anything at all — from what was evident on the surface.\n", - " Rebuttal\n", + "\n", + " It happened just the other day. Someone who’d always struck me as a portrait of unflappable confidence and unforced buoyancy told me for the first time about a medical misfortune that he suffered decades ago and repercussions from it that linger.\n", + " Evidence\n", "\n", "\n", - "\n", - " I understand in a new and important way that struggle isn’t exceptional. It’s inevitable. It’s endemic. It’s our default setting. It’s just often hidden, and I wonder what life would be like if we all walked around wearing sandwich boards that listed what we’re enduring. What we’re surviving. What we’ve overcome.\n", - " Concluding Statement\n", + "\n", + " I was surprised by the details of his hardship but not by the fact of it. His story is my story. My story is many people’s stories. Our outward calm veils inner turbulence. Much of the confidence we project is a camouflage we perfect.\n", + " Evidence\n", "\n", "\n", "\n", - " That was the gist of an excerpt from my new book, “The Beauty of Dusk: On Vision Lost and Found,” that The Times published on Tuesday. (To add to that today, here’s a corresponding portion of the audio version of the book.) The excerpt comes from a chapter of “The Beauty of Dusk” titled “The Sandwich Board Theory of Life,” which posits that our moments of self-pity would be rarer and our capacity for empathy stronger if we knew the full truth of the people around us. Sometimes we simply can’t, but sometimes it’s a matter of looking more closely, listening more attentively, signaling an openness to that knowledge, asking the right questions. It entails a shift in perspective and a heightened awareness. Much has been written about the psychological impact of the honeyed lives that people project on Instagram, Facebook and other social media. Everyone’s at a party to which you haven’t been invited. Everyone’s children are excelling, everyone’s cakes are rising, everyone’s trip to Grand Cayman or the Grand Canyon was heaven on earth.\n", + " And when you admit to that, you’re blessed with others’ admissions. You join an informal community of people eager or at least willing to embrace the messy and liberating truth.\n", " Evidence\n", "\n", "\n", - "\n", - " But that’s only one set of dispatches and one way to read them. I take in different, or at least additional, information. I notice when the CNN anchor John King, who exhibits such preternatural poise and split-second decisiveness in front of those color-coded maps on election night, reveals that more than a decade ago, he was diagnosed with multiple sclerosis.\n", - " Rebuttal\n", + "\n", + " I joined it after suddenly losing some of my eyesight several years ago, being told that I might go blind and then writing about that. My account seemed to resonate with readers in part because my condition exemplified a public-private disconnect.\n", + " Evidence\n", "\n", "\n", "\n", - " “I remember like it was yesterday,” he said in an article by Emily Strohm in People magazine in November, mentioning “the first look at the M.R.I. and the lesions that look like little dried flowers running up the spinal cord and nerves.” “I was petrified,” he said. And he has lived ever since with the question of whether those lesions might someday impair him. I hear the “cancer” buried in a long story that someone is telling about her past and realize that while the word is rushing by for most listeners, the reality didn’t rush by for her and the fear of its recurrence is probably still present. I welcome the stories shared with me — by the record producer who, at the peak of his career, lost hearing in one ear, jeopardizing his livelihood, or by the Vietnam veteran who sometimes feels acutely self-conscious, all these decades later, about the prosthesis where his lower leg used to be. They’ve been met with mighty challenges, but those trials aren’t obvious to most of the people around them.\n", + " Nothing about my composure or appearance suggested trouble. I met my deadlines. I honored my obligations. My eyes looked the way they’d always looked. But they didn’t act the way they’d always acted. Never again would I read as fleetly and fluidly as before. Never again would I type with as much ease and as few errors.\n", " Evidence\n", "\n", "\n", - "\n", - " And I accept that my compromised, imperiled vision isn’t some extraordinary thing. It’s just my thing.\n", - " Claim\n", - "\n", + "\n", + " That was the bad part. The good? Never again would I trust that I knew anything important about someone — or, really, anything at all — from what was evident on the surface.\n", + " Rebuttal\n", + "\n", + "\n", + "\n", + " I understand in a new and important way that struggle isn’t exceptional. It’s inevitable. It’s endemic. It’s our default setting. It’s just often hidden, and I wonder what life would be like if we all walked around wearing sandwich boards that listed what we’re enduring. What we’re surviving. What we’ve overcome.\n", + " Concluding Statement\n", + "\n", + "\n", + "\n", + " That was the gist of an excerpt from my new book, “The Beauty of Dusk: On Vision Lost and Found,” that The Times published on Tuesday. (To add to that today, here’s a corresponding portion of the audio version of the book.)\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The excerpt comes from a chapter of “The Beauty of Dusk” titled “The Sandwich Board Theory of Life,” which posits that our moments of self-pity would be rarer and our capacity for empathy stronger if we knew the full truth of the people around us. Sometimes we simply can’t, but sometimes it’s a matter of looking more closely, listening more attentively, signaling an openness to that knowledge, asking the right questions. It entails a shift in perspective and a heightened awareness.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Much has been written about the psychological impact of the honeyed lives that people project on Instagram, Facebook and other social media. Everyone’s at a party to which you haven’t been invited. Everyone’s children are excelling, everyone’s cakes are rising, everyone’s trip to Grand Cayman or the Grand Canyon was heaven on earth.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " But that’s only one set of dispatches and one way to read them. I take in different, or at least additional, information. I notice when the CNN anchor John King, who exhibits such preternatural poise and split-second decisiveness in front of those color-coded maps on election night, reveals that more than a decade ago, he was diagnosed with multiple sclerosis.\n", + " Rebuttal\n", + "\n", + "\n", + "\n", + " “I remember like it was yesterday,” he said in an article by Emily Strohm in People magazine in November, mentioning “the first look at the M.R.I. and the lesions that look like little dried flowers running up the spinal cord and nerves.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “I was petrified,” he said. And he has lived ever since with the question of whether those lesions might someday impair him.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " I hear the “cancer” buried in a long story that someone is telling about her past and realize that while the word is rushing by for most listeners, the reality didn’t rush by for her and the fear of its recurrence is probably still present.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " I welcome the stories shared with me — by the record producer who, at the peak of his career, lost hearing in one ear, jeopardizing his livelihood, or by the Vietnam veteran who sometimes feels acutely self-conscious, all these decades later, about the prosthesis where his lower leg used to be. They’ve been met with mighty challenges, but those trials aren’t obvious to most of the people around them.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " And I accept that my compromised, imperiled vision isn’t some extraordinary thing. It’s just my thing.\n", + " Claim\n", + "\n", + "\n", + "\n", + " Among the many witty responses to Representative Marjorie Taylor Greene’s confusion of “Gestapo” with “gazpacho,” one by Noel Casler, a stand-up comedian, stood out: “Sure the Gazpacho Police are bad but the elite Vichyssoise inspired puréed terror.” (Thanks to Ramin Dowlati of Danville, Calif., for nominating this.)\n", + " Evidence\n", + "\n", + "\n", + "\n", + " As best I recall, I had never received a nomination that cited the magazine America, a Jesuit publication, so I was delighted to get this, regarding an article by Jim McDermott: “When we hold on to a story too tightly, or identify with it too fully, the gift we have been given becomes the god we worship. What was a source of liberation becomes our new jail. We’re Gollum screaming for our Precious.” (Diane Dugan, Philadelphia)\n", + " Evidence\n", + "\n", + "\n", + "\n", + " From The Guardian, here’s Marina Hyde on Britain’s Prime Minister Boris Johnson: “As loyalists keep explaining, the P.M. is ‘rebooting’ his Downing Street operation. I love the idea that this full-scale meltdown can somehow be rebooted. Like standing in the ruins of the reactor building at Chernobyl and going, ‘Have you tried switching it off and on again?’” (Allan Tarlow, West Hollywood, Calif., and Eric Eales, Kelowna, British Columbia)\n", + " Evidence\n", + "\n", + "\n", + "\n", + " From the NPR website, here’s Glen Weldon, noting that his current television-watching habits recall those of some 20 years ago, when he was “working in bookstores” and “trying to make mock turtlenecks happen for me.” “All those bookstores I used to work in have closed,” he added. “Also I’m bald now, so mock turtlenecks just make me look like roll-on deodorant.” (Susan Sawatzky, Colorado Springs)\n", + " Evidence\n", + "\n", + "\n", + "\n", + " From The Atlantic, here’s Jennifer Senior about a withholding friend: “Her life was always fine, swell, just couldn’t be better, thanks. Talking with her was like playing strip poker with someone in a down parka.” (Susan Dixon, Kennewick, Wash., and David Schaps, Bnei Brak, Israel)\n", + " Evidence\n", + "\n", + "\n", + "\n", + " From The New Yorker, here’s Margaret Talbot on Supreme Court Justice Amy Coney Barrett and her ideological allies: “The America of 2022 is quite plainly not a country where citizens’ ability to worship freely is in jeopardy. Nor is the nation on the cusp of canceling gun rights. Yet the conservative justices often act as if they were alone in a broken elevator, jabbing the emergency button and hollering for help.” (Sally Corden, Madison, Wis., and Pete Browne, Kansas City, Mo.)\n", + " Evidence\n", + "\n", + "\n", + "\n", + " From The Washington Post, here’s Damon Young in his debut column in the newspaper’s magazine, about getting doxxed by white supremacists: “If you’re sincerely paralyzed by the insipid monotony of existence, and feel like an arbitrary assemblage of galactic flotsam scudding toward the sweet nothingness of death, and need an anchor to remind you of the preciousness of life, try Be Black, Get doxxed.” (Kennetha Bigham-Tsai, East Lansing, Mich., and S.R. Cohen, Baltimore)\n", + " Evidence\n", + "\n", "\n", "\n", - " Among the many witty responses to Representative Marjorie Taylor Greene’s confusion of “Gestapo” with “gazpacho,” one by Noel Casler, a stand-up comedian, stood out: “Sure the Gazpacho Police are bad but the elite Vichyssoise inspired puréed terror.” (Thanks to Ramin Dowlati of Danville, Calif., for nominating this.) As best I recall, I had never received a nomination that cited the magazine America, a Jesuit publication, so I was delighted to get this, regarding an article by Jim McDermott: “When we hold on to a story too tightly, or identify with it too fully, the gift we have been given becomes the god we worship. What was a source of liberation becomes our new jail. We’re Gollum screaming for our Precious.” (Diane Dugan, Philadelphia) From The Guardian, here’s Marina Hyde on Britain’s Prime Minister Boris Johnson: “As loyalists keep explaining, the P.M. is ‘rebooting’ his Downing Street operation. I love the idea that this full-scale meltdown can somehow be rebooted. Like standing in the ruins of the reactor building at Chernobyl and going, ‘Have you tried switching it off and on again?’” (Allan Tarlow, West Hollywood, Calif., and Eric Eales, Kelowna, British Columbia) From the NPR website, here’s Glen Weldon, noting that his current television-watching habits recall those of some 20 years ago, when he was “working in bookstores” and “trying to make mock turtlenecks happen for me.” “All those bookstores I used to work in have closed,” he added. “Also I’m bald now, so mock turtlenecks just make me look like roll-on deodorant.” (Susan Sawatzky, Colorado Springs) From The Atlantic, here’s Jennifer Senior about a withholding friend: “Her life was always fine, swell, just couldn’t be better, thanks. Talking with her was like playing strip poker with someone in a down parka.” (Susan Dixon, Kennewick, Wash., and David Schaps, Bnei Brak, Israel) From The New Yorker, here’s Margaret Talbot on Supreme Court Justice Amy Coney Barrett and her ideological allies: “The America of 2022 is quite plainly not a country where citizens’ ability to worship freely is in jeopardy. Nor is the nation on the cusp of canceling gun rights. Yet the conservative justices often act as if they were alone in a broken elevator, jabbing the emergency button and hollering for help.” (Sally Corden, Madison, Wis., and Pete Browne, Kansas City, Mo.) From The Washington Post, here’s Damon Young in his debut column in the newspaper’s magazine, about getting doxxed by white supremacists: “If you’re sincerely paralyzed by the insipid monotony of existence, and feel like an arbitrary assemblage of galactic flotsam scudding toward the sweet nothingness of death, and need an anchor to remind you of the preciousness of life, try Be Black, Get doxxed.” (Kennetha Bigham-Tsai, East Lansing, Mich., and S.R. Cohen, Baltimore) Finally, The Times! Here’s Wesley Morris on weeping at the movies: “What I’d felt was the ancient power of art to make a puddle of us. ‘E.T.’ led me into a love affair with being made to cry among strangers in the dark. I almost typed ‘being reduced to tears,’ except where is the reduction? Crying for art is an honor, an exaltation, a salute. It’s applause with mucus and salt.” (Jo Wollschlaeger, Portland, Ore., and Mary Allman-Koernig, Port Charlotte, Fla.)\n", + " Finally, The Times! Here’s Wesley Morris on weeping at the movies: “What I’d felt was the ancient power of art to make a puddle of us. ‘E.T.’ led me into a love affair with being made to cry among strangers in the dark. I almost typed ‘being reduced to tears,’ except where is the reduction? Crying for art is an honor, an exaltation, a salute. It’s applause with mucus and salt.” (Jo Wollschlaeger, Portland, Ore., and Mary Allman-Koernig, Port Charlotte, Fla.)\n", " Evidence\n", "\n", "\n", @@ -11773,17 +17400,67 @@ "\n", "\n", "\n", - " In the newsletter two weeks ago, I wrote about the cats in my past and mentioned Cupid, a male one, identifying him as a calico. Many of you wrote to me to suggest that I was almost certainly misguided, as calicos are very rarely male. (Some of you said that they’re never male, which contradicts this Business Insider article.) So was Cupid an oddity? I don’t know. I wrote “calico” based on a vague visual memory of him and was unaware of how specific the reference is. Cupid probably wasn’t an honest-to-goodness calico. But he was special all the same! My apologies for any sloppiness. Many of you also wrote to chide me for another matter of misidentification, noting that I used the word “rhymes” for near rhymes in the most recent edition of For the Love of Lyrics. I was speaking — or, rather, writing — informally, and assumed that most readers would understand. But, yes, “man” and “land” don’t rhyme in the strictest sense. Only one of you took issue with my use of “factoid” in last week’s newsletter. But that one of you — David Mayo of Fukuoka, Japan — had a point. “The word ‘factoid’ doesn’t mean a little fact, the way an asteroid is a little planet,” he wrote, noting that it denotes “the kind of false information that’s widely accepted as fact” and is analogous to “humanoid versus human being.” He’s right about its origin, though its meaning has apparently evolved to permit my deployment of it. He added: “For a little piece of accurate information, we may have to coin a word like ‘factette.’” So coined — but I’ll let him circulate it first. He continued: “As I write, the Cincinnati Bengals have gone ahead on a 75-yard touchdown pass, and you’re on your way to being hailed as the second coming of Jimmy the Greek.” That was in reference to my prediction in the same newsletter that the Bengals would win the Super Bowl, and I have clearly emerged as the second coming of nothing more than another dreamer in thrall to the underdogs (or, in the Bengals’ case, undercats). I hereby own that — with pride. A book is a kind of sequential tease. Every time you think you’re done, you’re not. You type the last word of the manuscript, attach the document to an email to your editor, press Send and breathe a titanic sigh of relief: Finished! At last! Except you’re not. Not even close. Your editor has suggestions (which turn out to be a godsend) and questions (ditto). Proofreaders have more questions (and thanks for those, too). In the case of my new book, there were probably more proofreader questions and corrections than ever before. My odyssey with my eyes gave me a story to tell but made the telling of it — the typing of it — more difficult and prone to error. Joseph Heller would have appreciated that. Then the box of 20 complimentary hardcovers lands at your front door, and there are still miles to go. If you’re lucky, booksellers, podcast hosts and others invite you to talk about your book. I am very lucky and will be doing some talking and want to share when and where with you. While a fuller, continually updated list exists on my website, here are some highlights:\n", + " In the newsletter two weeks ago, I wrote about the cats in my past and mentioned Cupid, a male one, identifying him as a calico. Many of you wrote to me to suggest that I was almost certainly misguided, as calicos are very rarely male. (Some of you said that they’re never male, which contradicts this Business Insider article.) So was Cupid an oddity? I don’t know. I wrote “calico” based on a vague visual memory of him and was unaware of how specific the reference is. Cupid probably wasn’t an honest-to-goodness calico. But he was special all the same! My apologies for any sloppiness.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Many of you also wrote to chide me for another matter of misidentification, noting that I used the word “rhymes” for near rhymes in the most recent edition of For the Love of Lyrics. I was speaking — or, rather, writing — informally, and assumed that most readers would understand. But, yes, “man” and “land” don’t rhyme in the strictest sense.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Only one of you took issue with my use of “factoid” in last week’s newsletter. But that one of you — David Mayo of Fukuoka, Japan — had a point. “The word ‘factoid’ doesn’t mean a little fact, the way an asteroid is a little planet,” he wrote, noting that it denotes “the kind of false information that’s widely accepted as fact” and is analogous to “humanoid versus human being.” He’s right about its origin, though its meaning has apparently evolved to permit my deployment of it. He added: “For a little piece of accurate information, we may have to coin a word like ‘factette.’” So coined — but I’ll let him circulate it first.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " He continued: “As I write, the Cincinnati Bengals have gone ahead on a 75-yard touchdown pass, and you’re on your way to being hailed as the second coming of Jimmy the Greek.” That was in reference to my prediction in the same newsletter that the Bengals would win the Super Bowl, and I have clearly emerged as the second coming of nothing more than another dreamer in thrall to the underdogs (or, in the Bengals’ case, undercats). I hereby own that — with pride.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " A book is a kind of sequential tease. Every time you think you’re done, you’re not. You type the last word of the manuscript, attach the document to an email to your editor, press Send and breathe a titanic sigh of relief: Finished! At last!\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Except you’re not. Not even close. Your editor has suggestions (which turn out to be a godsend) and questions (ditto). Proofreaders have more questions (and thanks for those, too). In the case of my new book, there were probably more proofreader questions and corrections than ever before. My odyssey with my eyes gave me a story to tell but made the telling of it — the typing of it — more difficult and prone to error. Joseph Heller would have appreciated that.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Then the box of 20 complimentary hardcovers lands at your front door, and there are still miles to go. If you’re lucky, booksellers, podcast hosts and others invite you to talk about your book. I am very lucky and will be doing some talking and want to share when and where with you. While a fuller, continually updated list exists on my website, here are some highlights:\n", " Evidence\n", "\n", "\n", "\n", - " At 4 p.m. Eastern today, John Dickerson of CBS News and I will be talking live on Twitter (in what’s called a Twitter Space) about the book and more. You can listen in by going here, or you can find the conversation later through my Twitter profile or his. Talk about pinch-me territory: Next Tuesday evening (Feb. 22), I’ll be chatting with Oprah Winfrey for one of her “The Life You Want” classes — on the subject of vulnerability — on the Oprah Daily website. If you’re a subscriber, you can tune in here.\n", + " At 4 p.m. Eastern today, John Dickerson of CBS News and I will be talking live on Twitter (in what’s called a Twitter Space) about the book and more. You can listen in by going here, or you can find the conversation later through my Twitter profile or his.\n", + " Lead\n", + "\n", + "\n", + "\n", + " Talk about pinch-me territory: Next Tuesday evening (Feb. 22), I’ll be chatting with Oprah Winfrey for one of her “The Life You Want” classes — on the subject of vulnerability — on the Oprah Daily website. If you’re a subscriber, you can tune in here.\n", " Lead\n", "\n", "\n", "\n", - " In Manhattan on March 2, my Times colleague and dear friend Maureen Dowd will join me for an in-person and virtual event at the Temple Emanu-El Streicker Center. In Washington, D.C., on March 4, John King of CNN — who, as I mentioned earlier in this newsletter, was diagnosed with multiple sclerosis more than a decade ago — will join me for an event at the Union Market location of Politics and Prose. In Carrboro, N.C., on March 7, Molly Worthen, who contributes frequently to the Opinion section of The Times, will join me for an event at the ArtsCenter. Apart from discussions of the book, I’ve been asked to deliver the commencement address this May at my alma mater, the University of North Carolina at Chapel Hill. When I graduated in 1986, I certainly didn’t foresee this. Life metes out some brutal shocks. But also some lovely surprises.\n", + " In Manhattan on March 2, my Times colleague and dear friend Maureen Dowd will join me for an in-person and virtual event at the Temple Emanu-El Streicker Center.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In Washington, D.C., on March 4, John King of CNN — who, as I mentioned earlier in this newsletter, was diagnosed with multiple sclerosis more than a decade ago — will join me for an event at the Union Market location of Politics and Prose.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In Carrboro, N.C., on March 7, Molly Worthen, who contributes frequently to the Opinion section of The Times, will join me for an event at the ArtsCenter.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Apart from discussions of the book, I’ve been asked to deliver the commencement address this May at my alma mater, the University of North Carolina at Chapel Hill. When I graduated in 1986, I certainly didn’t foresee this. Life metes out some brutal shocks. But also some lovely surprises.\n", " Evidence\n", "\n", "
" @@ -11807,7 +17484,7 @@ { "data": { "text/html": [ - "

nytimes\\hearing-aids-fda.txt

" + "

hearing-aids-fda.txt

" ], "text/plain": [ "" @@ -11820,34 +17497,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-874ed5e38df4c018\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-874ed5e38df4c018\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-874ed5e38df4c018\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-874ed5e38df4c018\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "11a43018b2a24adf9114626874f64a7b", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00\n", "\n", "\n", - " You can buy reading glasses at Walgreens without a prescription. Perhaps by this time next year, you’ll be able to do the same with an officially labeled hearing aid at a cost of a few hundred dollars. Medical professionals, patient advocates and tech executives that I’ve spoken with are excited about the potential of over-the-counter hearing aids. They imagine the government’s blessing will spark new inventions from companies like Bose, Best Buy and Apple. And they believe that this could be the start of a golden age for hearing help.\n", + " You can buy reading glasses at Walgreens without a prescription. Perhaps by this time next year, you’ll be able to do the same with an officially labeled hearing aid at a cost of a few hundred dollars.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Medical professionals, patient advocates and tech executives that I’ve spoken with are excited about the potential of over-the-counter hearing aids. They imagine the government’s blessing will spark new inventions from companies like Bose, Best Buy and Apple. And they believe that this could be the start of a golden age for hearing help.\n", " Evidence\n", "\n", "\n", @@ -11972,7 +17657,67 @@ "
\n", "\n", "\n", - " When I wrote about this topic in April, I was surprised at the pernicious and widespread effects of hearing loss. Roughly 38 million American adults report some degree of hearing loss, and only a minority of people who could benefit from hearing aids use them. Prescription hearing aids work well for many Americans, if they have access to medical care and can afford to pay an average of about $5,000. (Hearing aids are not typically covered by traditional Medicare. Coverage by private health insurance plans and Medicaid is spotty.) Some people also feel embarrassed about losing their hearing or are put off by tests and fittings for hearing aids. Untreated hearing loss can be serious. Struggling to understand what we hear stresses the brain and is associated with cognitive decline, dementia and social isolation. Research by Dr. Reed and other academics found that some nonprescription hearing devices on the market for $350 or less — they can’t legally be called hearing aids at the moment — were almost as good as prescription hearing aids for people with mild-to-moderate hearing loss. But hearing helpers in this category can be excellent or garbage, and it has been difficult to tell the difference. The best listening devices might win approval as official over-the-counter hearing aids under the new F.D.A. rules. Experts say that more companies are waiting in the wings to offer new hearing products. Bose announced in May a hearing device for $850, and the company told me that it wants to sell the product as an over-the-counter hearing aid when the F.D.A. finalizes its rules. The Wall Street Journal recently reported that Apple is studying ways to make its AirPods, which are wireless headphones, into a device to enhance hearing. More gadgets don’t necessarily mean that more people will be helped by them. But the new market opportunity that the government created may open the door to ideas we can’t yet imagine, wholesale changes in public awareness of hearing loss and choices for treating it. Dr. Reed tells me that he envisions that sleeker-looking and easier-to-use hearing aids can help erode the stigma of hearing loss and that new device manufacturers will offer more consumer education about the problem. He and other experts also imagine more pathways for hearing assistance in addition to devices. Maybe there will be the equivalent of Best Buy’s Geek Squad to help people fit hearing aids that they buy without a prescription. If many more people seek hearing help, that could also mean more opportunities for health specialists who might offer hearing tests and treatments, separate from the devices. People with more serious hearing loss may not be helped by an over-the-counter hearing aid. And even at a fraction of the cost of traditional hearing aids, many people still won’t be able to afford them. Some drafts of the domestic policy plan being batted around Congress propose an expansion of Medicare coverage to include hearing aids. Health care in the United States costs more than it does in many rich countries and produces worse health outcomes. But at least in this one corner of health care, people may soon get more innovation and lower costs. Not bad. Facebook is going to change its name. Okaaaay. The Verge reports that Facebook plans to reveal a new name for the company next week to incorporate its interest in the “metaverse,” a term for a broad vision that virtual human interactions will be as complex as the real thing. Shifting from Hollywood tabloid to conspiracy theories: BuzzFeed News traced the evolution of Crazy Days and Nights from a celebrity gossip blog to a hub for QAnon conspiracy theories. “Gossip fans and QAnoners share a core belief: that behind closed doors, celebrities are doing unspeakable things,” BuzzFeed writes.\n", + " When I wrote about this topic in April, I was surprised at the pernicious and widespread effects of hearing loss. Roughly 38 million American adults report some degree of hearing loss, and only a minority of people who could benefit from hearing aids use them.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Prescription hearing aids work well for many Americans, if they have access to medical care and can afford to pay an average of about $5,000. (Hearing aids are not typically covered by traditional Medicare. Coverage by private health insurance plans and Medicaid is spotty.) Some people also feel embarrassed about losing their hearing or are put off by tests and fittings for hearing aids.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Untreated hearing loss can be serious. Struggling to understand what we hear stresses the brain and is associated with cognitive decline, dementia and social isolation.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Research by Dr. Reed and other academics found that some nonprescription hearing devices on the market for $350 or less — they can’t legally be called hearing aids at the moment — were almost as good as prescription hearing aids for people with mild-to-moderate hearing loss. But hearing helpers in this category can be excellent or garbage, and it has been difficult to tell the difference.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The best listening devices might win approval as official over-the-counter hearing aids under the new F.D.A. rules. Experts say that more companies are waiting in the wings to offer new hearing products.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Bose announced in May a hearing device for $850, and the company told me that it wants to sell the product as an over-the-counter hearing aid when the F.D.A. finalizes its rules. The Wall Street Journal recently reported that Apple is studying ways to make its AirPods, which are wireless headphones, into a device to enhance hearing.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " More gadgets don’t necessarily mean that more people will be helped by them. But the new market opportunity that the government created may open the door to ideas we can’t yet imagine, wholesale changes in public awareness of hearing loss and choices for treating it.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Dr. Reed tells me that he envisions that sleeker-looking and easier-to-use hearing aids can help erode the stigma of hearing loss and that new device manufacturers will offer more consumer education about the problem.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " He and other experts also imagine more pathways for hearing assistance in addition to devices. Maybe there will be the equivalent of Best Buy’s Geek Squad to help people fit hearing aids that they buy without a prescription. If many more people seek hearing help, that could also mean more opportunities for health specialists who might offer hearing tests and treatments, separate from the devices.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " People with more serious hearing loss may not be helped by an over-the-counter hearing aid. And even at a fraction of the cost of traditional hearing aids, many people still won’t be able to afford them. Some drafts of the domestic policy plan being batted around Congress propose an expansion of Medicare coverage to include hearing aids.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Health care in the United States costs more than it does in many rich countries and produces worse health outcomes. But at least in this one corner of health care, people may soon get more innovation and lower costs. Not bad.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Facebook is going to change its name. Okaaaay. The Verge reports that Facebook plans to reveal a new name for the company next week to incorporate its interest in the “metaverse,” a term for a broad vision that virtual human interactions will be as complex as the real thing.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Shifting from Hollywood tabloid to conspiracy theories: BuzzFeed News traced the evolution of Crazy Days and Nights from a celebrity gossip blog to a hub for QAnon conspiracy theories. “Gossip fans and QAnoners share a core belief: that behind closed doors, celebrities are doing unspeakable things,” BuzzFeed writes.\n", " Evidence\n", "\n", "\n", @@ -11982,7 +17727,12 @@ "\n", "\n", "\n", - " I love Gritty, the oddball mascot for the Philadelphia Flyers hockey team. Here is Gritty playing with a VERY EXCITED dog friend. We want to hear from you. Tell us what you think of this newsletter and what else you’d like us to explore. You can reach us at ontech@nytimes.com.\n", + " I love Gritty, the oddball mascot for the Philadelphia Flyers hockey team. Here is Gritty playing with a VERY EXCITED dog friend.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " We want to hear from you. Tell us what you think of this newsletter and what else you’d like us to explore. You can reach us at ontech@nytimes.com.\n", " Evidence\n", "\n", "\n", @@ -12011,7 +17761,7 @@ { "data": { "text/html": [ - "

nytimes\\help-friend-support.txt

" + "

help-friend-support.txt

" ], "text/plain": [ "" @@ -12024,20 +17774,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-71936c54c6489131\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-71936c54c6489131\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-71936c54c6489131\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-71936c54c6489131\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "f901d37f285f4141be9d057f72c4ca30", + "model_id": "720b38028adf419992aea5060c766731", "version_major": 2, "version_minor": 0 }, @@ -12049,63 +17793,21 @@ "output_type": "display_data" }, { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "4746f08946134000b6d75bfcb67229f2", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00\n", "\n", "\n", - " Do: Think twice before you call. I was surprised how often my father’s cellphone rang and how exhausting it was for him (and me). Often, the calls woke him from much-needed sleep. It made me realize that phone calls during a crisis, although well intentioned, can feel intrusive and tiring. Obviously, phone calls are appropriate in certain situations, but my advice is to avoid calling at the height of the illness or crisis if you can. Don’t: Text for updates. Try to avoid sending a text that requires an answer. How are you holding up? How are you feeling? What’s the latest? If your text ends with a question mark, it puts the burden on the patient or caregiver to respond. Do: Send a text of support. Texts are less intrusive than phone calls and can be read on our own time. The best texts have been those that shared thoughts of support, offers of help or links to an interesting article, a photo memory or funny video — and then ended with, “Just thinking of you. No need to reply.” Don’t: Ask people what they need. Many friends have kindly called or texted with the question: “What can I do to help?” But in the fog of illness and loss, it’s really hard to know what you might need, so most of the time we just said, “Thanks. We’ll let you know.” Do: Make a specific offer to help. Instead of asking what you can do to help, try making a specific, standing offer describing how you might be able to help. My colleague Karen Barrow, whose mother died recently, put it this way: “Don’t ask how to help — just help. Just send a meal or help with a chore.” Here are some examples of how to help when someone dies or is sick:\n", + " Do: Think twice before you call. I was surprised how often my father’s cellphone rang and how exhausting it was for him (and me). Often, the calls woke him from much-needed sleep. It made me realize that phone calls during a crisis, although well intentioned, can feel intrusive and tiring. Obviously, phone calls are appropriate in certain situations, but my advice is to avoid calling at the height of the illness or crisis if you can.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Don’t: Text for updates. Try to avoid sending a text that requires an answer. How are you holding up? How are you feeling? What’s the latest? If your text ends with a question mark, it puts the burden on the patient or caregiver to respond.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Do: Send a text of support. Texts are less intrusive than phone calls and can be read on our own time. The best texts have been those that shared thoughts of support, offers of help or links to an interesting article, a photo memory or funny video — and then ended with, “Just thinking of you. No need to reply.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Don’t: Ask people what they need. Many friends have kindly called or texted with the question: “What can I do to help?” But in the fog of illness and loss, it’s really hard to know what you might need, so most of the time we just said, “Thanks. We’ll let you know.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Do: Make a specific offer to help. Instead of asking what you can do to help, try making a specific, standing offer describing how you might be able to help. My colleague Karen Barrow, whose mother died recently, put it this way: “Don’t ask how to help — just help. Just send a meal or help with a chore.” Here are some examples of how to help when someone dies or is sick:\n", " Evidence\n", "\n", "\n", "\n", - " I can help you write thank-you notes. I’m happy to pick up the kids from school.\n", + " I can help you write thank-you notes.\n", + " Claim\n", + "\n", + "\n", + "\n", + " I’m happy to pick up the kids from school.\n", " Claim\n", "\n", "\n", @@ -12199,7 +17993,32 @@ "\n", "\n", "\n", - " I can run errands, shop, drive you to appointments or pick up prescriptions. I made cabbage rolls (or stew, dumplings, lasagna or cookies). I’ll leave them on your porch. (Lots of food comes in the early days of a crisis; the meals a few weeks later often are a bigger help.) Do: Use the mail. When you are sick or grieving, finding a card in the mail is a bright spot in your day. For the caregiver, the walk to the mailbox is a welcome break. Surprise deliveries, like fruit or flowers, are nice, too, especially in the weeks after someone dies and the initial outpouring of support fades. Opening a package to discover a lemon cake shipped from Vermont was a true delight. Do: Share a story. Social media can be a great source of comfort to a sick or grieving person. My dad has appreciated reading the comments people posted on his Facebook page, and has particularly enjoyed hearing stories and memories about his late wife. Obviously, each person has his or her own needs and preferences. Phone calls may be unwelcome in a hospital room or during recovery at home, but much appreciated a month or two later. When I asked Well readers to share their insights about caregiving, the most common piece of advice was this: Let the patient lead. And that’s the biggest challenge for friends who want to show support — determining what each person or family needs for their specific situation. While there’s no one-size-fits-all solution, my best advice is that small gestures matter. A card in the mail, a funny story that makes you laugh or a surprise lemon cake left on the porch will always be a bright moment in someone’s day.\n", + " I can run errands, shop, drive you to appointments or pick up prescriptions.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " I made cabbage rolls (or stew, dumplings, lasagna or cookies). I’ll leave them on your porch. (Lots of food comes in the early days of a crisis; the meals a few weeks later often are a bigger help.)\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Do: Use the mail. When you are sick or grieving, finding a card in the mail is a bright spot in your day. For the caregiver, the walk to the mailbox is a welcome break. Surprise deliveries, like fruit or flowers, are nice, too, especially in the weeks after someone dies and the initial outpouring of support fades. Opening a package to discover a lemon cake shipped from Vermont was a true delight.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Do: Share a story. Social media can be a great source of comfort to a sick or grieving person. My dad has appreciated reading the comments people posted on his Facebook page, and has particularly enjoyed hearing stories and memories about his late wife.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Obviously, each person has his or her own needs and preferences. Phone calls may be unwelcome in a hospital room or during recovery at home, but much appreciated a month or two later. When I asked Well readers to share their insights about caregiving, the most common piece of advice was this: Let the patient lead. And that’s the biggest challenge for friends who want to show support — determining what each person or family needs for their specific situation.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " While there’s no one-size-fits-all solution, my best advice is that small gestures matter. A card in the mail, a funny story that makes you laugh or a surprise lemon cake left on the porch will always be a bright moment in someone’s day.\n", " Evidence\n", "\n", "\n", @@ -12224,7 +18043,32 @@ "\n", "\n", "\n", - " Learn more:Fly High, Frog Princess! Well Done, Chen No. 3! Here are some stories you don’t want to miss: Knvul Sheikh has an update on Covid vaccines for young children. Lisa Sanders has a medical mystery about a man who lost the ability to walk. Jane Brody writes about the importance of accurate death certificates. And of course, we have the Weekly Health Quiz.\n", + " Learn more:Fly High, Frog Princess! Well Done, Chen No. 3!\n", + " Claim\n", + "\n", + "\n", + "\n", + " Here are some stories you don’t want to miss:\n", + " Claim\n", + "\n", + "\n", + "\n", + " Knvul Sheikh has an update on Covid vaccines for young children.\n", + " Claim\n", + "\n", + "\n", + "\n", + " Lisa Sanders has a medical mystery about a man who lost the ability to walk.\n", + " Claim\n", + "\n", + "\n", + "\n", + " Jane Brody writes about the importance of accurate death certificates.\n", + " Claim\n", + "\n", + "\n", + "\n", + " And of course, we have the Weekly Health Quiz.\n", " Claim\n", "\n", "\n", @@ -12258,7 +18102,7 @@ { "data": { "text/html": [ - "

nytimes\\high-risk-covid-immunocompromised.txt

" + "

high-risk-covid-immunocompromised.txt

" ], "text/plain": [ "" @@ -12271,34 +18115,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-b14259ecddd3793a\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-b14259ecddd3793a\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-b14259ecddd3793a\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-b14259ecddd3793a\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "bb6d2f23fc6649a89a36d0b1d5614dc4", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " Denisse Takes’s world is very small these days. She makes a living by producing songs from her living room, plays “Animal Crossing” online with friends and leaves her home in Burbank, Calif., only occasionally to walk her dog. Even as her social media feeds are flooded with friends and family members returning to their normal lives, she sees no one except for her husband, who donated his kidney in 2015 so that Ms. Takes, 37, could receive a compatible donor’s kidney in return. The medication that keeps her immune system from rejecting the organ also suppresses it from creating antibodies in response to a coronavirus vaccine. Her body is so bad at fighting off infection that she has gone to the emergency room with common colds, she said. She fears that Covid-19 would kill her.\n", + " Denisse Takes’s world is very small these days. She makes a living by producing songs from her living room, plays “Animal Crossing” online with friends and leaves her home in Burbank, Calif., only occasionally to walk her dog.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Even as her social media feeds are flooded with friends and family members returning to their normal lives, she sees no one except for her husband, who donated his kidney in 2015 so that Ms. Takes, 37, could receive a compatible donor’s kidney in return.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The medication that keeps her immune system from rejecting the organ also suppresses it from creating antibodies in response to a coronavirus vaccine. Her body is so bad at fighting off infection that she has gone to the emergency room with common colds, she said. She fears that Covid-19 would kill her.\n", " Evidence\n", "\n", "\n", @@ -12415,7 +18252,97 @@ "\n", "\n", "\n", - " Millions of Americans with weakened immune systems, disabilities or illnesses that make them especially vulnerable to the coronavirus have lived this way since March 2020, sequestering at home, keeping their children out of school and skipping medical care rather than risk exposure to the virus. And they have seethed over talk from politicians and public health experts that they perceive as minimizing the value of their lives. As Year 3 of the pandemic approaches, with public support for precautions plummeting and governors of even the most liberal states moving to shed mask mandates, they find themselves coping with exhaustion and grief, rooted in the sense that their neighbors and leaders are willing to accept them as collateral damage in a return to normalcy. “I can still see your world, but I live in a different world,” said Toby Cain, 31, of Decorah, Iowa, who has lymphatic cancer and went through six rounds of chemotherapy and radiation during the pandemic, making her especially vulnerable to Covid-19. She lives alone, eats almost every meal alone and scrolls through social media alone, lamenting the family weddings and friends’ babies she has missed — at least until she quietly gave up on social media altogether. “It’s like living behind a veil while the rest of the world moves forward,” she said. More than seven million adults in the United States, or about 3 percent, are characterized by health professionals as immunocompromised because of a disease, medication or other treatment that weakens their body’s immune response, meaning that diseases such as Covid-19 can be more deadly to them, and that vaccines offer less protection. Tens of millions more Americans have at least one medical condition, such as asthma or diabetes, that puts them at greater risk from Covid. How much greater can vary widely; many live with little worry, while others at higher risk have felt the need to isolate from society. That is not what Aaron Vaughn, now 12, of East Lynne, Mo., hoped for when he received a heart transplant in June 2020. Born with half a heart, he thought a transplant would give him more freedom after years of long hospital stays. But with the virus still circulating, he has not been to school or a restaurant — his last trip was to Pizza Hut, his favorite at the time — since early 2020, and sees no one but his family and doctors. “If I could go to school, that would be cool,” Aaron said, adding, “I can’t go anywhere except the hospital.” He is vaccinated, but because of the drugs he takes to stop his body from rejecting the heart, his doctors have told him to act like he is not. His siblings, also vaccinated, went back to school in person last month, but they wear masks, making them stand out in their conservative community, where roadside signs urge people not to get a coronavirus vaccine. His parents said they had received hate mail for asking neighbors to wear masks or get vaccinated — some of the same neighbors who rallied around and prayed for Aaron when he needed a transplant. “It’s hard when people have turned something political, you know, that could kill my son,” said his mother, Sarah Vaughn. The rollback of mask mandates in states such as New York, Illinois and California is the latest source of stress for vulnerable Americans, who fear that the rest of the country is shedding precautions without any consideration of how to keep them safe. The federal Centers for Disease Control and Prevention said last week that it was too soon to abandon masks, in part because of the potential impact on vulnerable people, but the agency indicated on Wednesday that it would soon issue new guidelines. “Having everyone mask indoors always is not a forever strategy,” said Dr. Megan Ranney, an emergency physician and academic dean at the School of Public Health at Brown University, noting that immunocompromised people and others with vulnerabilities have always faced risks. But, she added, “We need to make sure that we have more stringent protections in place in places where people don’t have a choice about whether or not they go there.” The best protection in the long term, Dr. Ranney said, is to keep overall infections low: The less the virus is circulating, the less likely someone will be exposed. Vaccinating almost everyone would help, she said, but millions of Americans refuse, and not enough funding has been forthcoming for improved ventilation systems in public places. The fear and anger felt by many high-risk Americans burst into public view last month in response to remarks from the C.D.C. director, Dr. Rochelle Walensky. Citing a study that said only 0.003 percent of vaccinated people had died of Covid-19, she told ABC News that 75 percent of those who had died despite vaccination had “at least four comorbidities, so, really, these are people who were unwell to begin with.” That drove Imani Barbarin, who has several conditions that put her at high risk, including cerebral palsy and diabetes, to create the hashtag #MyDisabledLifeIsWorthy on social media, generating an outpouring from other people angry over the government’s approach. “We just truly want to survive this,” Ms. Barbarin, 31, said, “and we have seen a complete disregard for our needs, for our community and for our voices throughout this entire pandemic.” After a flood of criticism, Dr. Walensky apologized to disability advocates in a meeting and promised that senior C.D.C. officials would meet with them regularly. But Julia Bascom, the executive director of the Autistic Self Advocacy Network, who was in the meeting, said the comment reflected a familiar attitude: “That people with disabilities are just inevitably going to die, and those deaths are more understandable and less tragic.” Dr. Cameron Webb, the senior policy adviser for equity on the White House Covid-19 Response Team, said the backlash had led the Biden administration to re-examine its approach to people with vulnerabilities. “There’s a lot of pain,” he acknowledged, adding, “We want to do better.” He pointed to recent guidance from the Department of Health and Human Services saying that patients cannot be deprioritized on the basis of disability, even when hospitals enact crisis standards of care. He said the administration would announce more actions this week, including a working group of advocates.\n", + " Millions of Americans with weakened immune systems, disabilities or illnesses that make them especially vulnerable to the coronavirus have lived this way since March 2020, sequestering at home, keeping their children out of school and skipping medical care rather than risk exposure to the virus. And they have seethed over talk from politicians and public health experts that they perceive as minimizing the value of their lives.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " As Year 3 of the pandemic approaches, with public support for precautions plummeting and governors of even the most liberal states moving to shed mask mandates, they find themselves coping with exhaustion and grief, rooted in the sense that their neighbors and leaders are willing to accept them as collateral damage in a return to normalcy.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “I can still see your world, but I live in a different world,” said Toby Cain, 31, of Decorah, Iowa, who has lymphatic cancer and went through six rounds of chemotherapy and radiation during the pandemic, making her especially vulnerable to Covid-19.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " She lives alone, eats almost every meal alone and scrolls through social media alone, lamenting the family weddings and friends’ babies she has missed — at least until she quietly gave up on social media altogether. “It’s like living behind a veil while the rest of the world moves forward,” she said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " More than seven million adults in the United States, or about 3 percent, are characterized by health professionals as immunocompromised because of a disease, medication or other treatment that weakens their body’s immune response, meaning that diseases such as Covid-19 can be more deadly to them, and that vaccines offer less protection.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Tens of millions more Americans have at least one medical condition, such as asthma or diabetes, that puts them at greater risk from Covid. How much greater can vary widely; many live with little worry, while others at higher risk have felt the need to isolate from society.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " That is not what Aaron Vaughn, now 12, of East Lynne, Mo., hoped for when he received a heart transplant in June 2020. Born with half a heart, he thought a transplant would give him more freedom after years of long hospital stays. But with the virus still circulating, he has not been to school or a restaurant — his last trip was to Pizza Hut, his favorite at the time — since early 2020, and sees no one but his family and doctors.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “If I could go to school, that would be cool,” Aaron said, adding, “I can’t go anywhere except the hospital.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " He is vaccinated, but because of the drugs he takes to stop his body from rejecting the heart, his doctors have told him to act like he is not. His siblings, also vaccinated, went back to school in person last month, but they wear masks, making them stand out in their conservative community, where roadside signs urge people not to get a coronavirus vaccine.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " His parents said they had received hate mail for asking neighbors to wear masks or get vaccinated — some of the same neighbors who rallied around and prayed for Aaron when he needed a transplant. “It’s hard when people have turned something political, you know, that could kill my son,” said his mother, Sarah Vaughn.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The rollback of mask mandates in states such as New York, Illinois and California is the latest source of stress for vulnerable Americans, who fear that the rest of the country is shedding precautions without any consideration of how to keep them safe. The federal Centers for Disease Control and Prevention said last week that it was too soon to abandon masks, in part because of the potential impact on vulnerable people, but the agency indicated on Wednesday that it would soon issue new guidelines.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Having everyone mask indoors always is not a forever strategy,” said Dr. Megan Ranney, an emergency physician and academic dean at the School of Public Health at Brown University, noting that immunocompromised people and others with vulnerabilities have always faced risks. But, she added, “We need to make sure that we have more stringent protections in place in places where people don’t have a choice about whether or not they go there.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The best protection in the long term, Dr. Ranney said, is to keep overall infections low: The less the virus is circulating, the less likely someone will be exposed. Vaccinating almost everyone would help, she said, but millions of Americans refuse, and not enough funding has been forthcoming for improved ventilation systems in public places.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The fear and anger felt by many high-risk Americans burst into public view last month in response to remarks from the C.D.C. director, Dr. Rochelle Walensky. Citing a study that said only 0.003 percent of vaccinated people had died of Covid-19, she told ABC News that 75 percent of those who had died despite vaccination had “at least four comorbidities, so, really, these are people who were unwell to begin with.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " That drove Imani Barbarin, who has several conditions that put her at high risk, including cerebral palsy and diabetes, to create the hashtag #MyDisabledLifeIsWorthy on social media, generating an outpouring from other people angry over the government’s approach.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “We just truly want to survive this,” Ms. Barbarin, 31, said, “and we have seen a complete disregard for our needs, for our community and for our voices throughout this entire pandemic.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " After a flood of criticism, Dr. Walensky apologized to disability advocates in a meeting and promised that senior C.D.C. officials would meet with them regularly. But Julia Bascom, the executive director of the Autistic Self Advocacy Network, who was in the meeting, said the comment reflected a familiar attitude: “That people with disabilities are just inevitably going to die, and those deaths are more understandable and less tragic.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Dr. Cameron Webb, the senior policy adviser for equity on the White House Covid-19 Response Team, said the backlash had led the Biden administration to re-examine its approach to people with vulnerabilities. “There’s a lot of pain,” he acknowledged, adding, “We want to do better.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " He pointed to recent guidance from the Department of Health and Human Services saying that patients cannot be deprioritized on the basis of disability, even when hospitals enact crisis standards of care. He said the administration would announce more actions this week, including a working group of advocates.\n", " Evidence\n", "\n", "\n", @@ -12425,7 +18352,17 @@ "\n", "\n", "\n", - " Govind Persad, an assistant professor of health law at the University of Denver’s Sturm College of Law, suggested using federal pandemic relief money to upgrade ventilation in businesses and schools, making prophylactic antibody treatments such as Evusheld widely available to immunocompromised people, and managing the distribution of scarce antiviral medications so that they go to the highest-risk people, rather than those with the most resources to find them. “It would be frustrating to have states fail to protect people at higher risk, and then try to frame things as an individual-individual trade-off between people who want to maintain mask requirements versus removing them,” Dr. Persad said. Ms. Cain, the cancer patient in Iowa, said the prophylactic antibodies seemed like her only chance to regain a semblance of normalcy, but supplies are very limited, even after Health Secretary Xavier Becerra announced on Monday that the United States would double its latest order.\n", + " Govind Persad, an assistant professor of health law at the University of Denver’s Sturm College of Law, suggested using federal pandemic relief money to upgrade ventilation in businesses and schools, making prophylactic antibody treatments such as Evusheld widely available to immunocompromised people, and managing the distribution of scarce antiviral medications so that they go to the highest-risk people, rather than those with the most resources to find them.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “It would be frustrating to have states fail to protect people at higher risk, and then try to frame things as an individual-individual trade-off between people who want to maintain mask requirements versus removing them,” Dr. Persad said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Ms. Cain, the cancer patient in Iowa, said the prophylactic antibodies seemed like her only chance to regain a semblance of normalcy, but supplies are very limited, even after Health Secretary Xavier Becerra announced on Monday that the United States would double its latest order.\n", " Evidence\n", "\n", "\n", @@ -12435,7 +18372,12 @@ "\n", "\n", "\n", - " In rural Missouri, 12-year-old Aaron spends his time in online classes, playing Minecraft or Call of Duty with friends, and making YouTube videos of himself trying spicy foods. His friends keep asking when he will come back to school, but he knows it will not be anytime soon. For his parents, the loss of support from those around them continues to sting. “People say, ‘You’re living in fear,’” said Chad Vaughn, his father. “And I’m like, ‘You’re damn right I’m living in fear, and I’m tired of it.’”\n", + " In rural Missouri, 12-year-old Aaron spends his time in online classes, playing Minecraft or Call of Duty with friends, and making YouTube videos of himself trying spicy foods. His friends keep asking when he will come back to school, but he knows it will not be anytime soon.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " For his parents, the loss of support from those around them continues to sting. “People say, ‘You’re living in fear,’” said Chad Vaughn, his father. “And I’m like, ‘You’re damn right I’m living in fear, and I’m tired of it.’”\n", " Evidence\n", "\n", "
" @@ -12459,7 +18401,7 @@ { "data": { "text/html": [ - "

nytimes\\home-buyer-risks-bad-credit-savings.txt

" + "

home-buyer-risks-bad-credit-savings.txt

" ], "text/plain": [ "" @@ -12472,34 +18414,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-53e06ab7f0edc2df\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-53e06ab7f0edc2df\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-53e06ab7f0edc2df\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-53e06ab7f0edc2df\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "c9223456d52a4d5e8ff7db4bc73ca1c1", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00\n", "\n", "\n", - " A wide mix of partnership models offer potential home buyers deals that lie somewhere between ownership and renting. One or more parties (besides the mortgage company) has a stake in your home. For the person buying a home under these agreements, the end goal is the same — full ownership — but the paths vary, and can come with a number of trade-offs and risks. The models include shared appreciation agreements, in which you borrow part of the down payment in exchange for a share of the home’s future value; rent-to-own leases, in which the tenant makes payments toward ownership; and limited-equity co-ops, a nonprofit approach for lower-income buyers with limits on the resale price of the home. While they represent perhaps just 1 or 2 percent of the market, both private investors and nonprofits say they could soon become far more common as a means for first-time buyers to overcome their biggest obstacles: costly down payments, tight credit and bidding wars.\n", + " A wide mix of partnership models offer potential home buyers deals that lie somewhere between ownership and renting. One or more parties (besides the mortgage company) has a stake in your home. For the person buying a home under these agreements, the end goal is the same — full ownership — but the paths vary, and can come with a number of trade-offs and risks.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The models include shared appreciation agreements, in which you borrow part of the down payment in exchange for a share of the home’s future value; rent-to-own leases, in which the tenant makes payments toward ownership; and limited-equity co-ops, a nonprofit approach for lower-income buyers with limits on the resale price of the home.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " While they represent perhaps just 1 or 2 percent of the market, both private investors and nonprofits say they could soon become far more common as a means for first-time buyers to overcome their biggest obstacles: costly down payments, tight credit and bidding wars.\n", " Evidence\n", "\n", "\n", @@ -12667,7 +18591,47 @@ "\n", "\n", "\n", - " For buyers who can’t afford to plunk down a 20 percent down payment — the threshold at which buyers avoid costly mortgage insurance — a shared appreciation agreement might be an option. Companies like Unison and Landed, both headquartered in San Francisco, will pay a portion of your down payment in exchange for a part of the home’s appreciation in value, either when you sell or refinance the home. If the property value has depreciated at the end of the contract, they share in the loss, reducing your total repayment. Unlike a mortgage, there is no monthly fee or fixed interest. Dy Nguyen, a teacher, and her wife, Jen Foxworth, a police officer, both 38, bought a two-bedroom townhouse in the Mission district of San Francisco for $975,000 in 2018, with an equity contract from Landed. The couple, who have two children and were renting a nearby one-bedroom apartment, tucked away savings for about five years and paid 10 percent of the down payment, $97,500. Landed matched their down payment, and the couple financed the rest of the purchase with an adjustable-rate loan. In exchange, the couple agreed to pay back Landed’s investment, plus 25 percent of the home value appreciation when they sell, refinance, or buy them out. The contract must be paid within 30 years. Most home buyers will buy out the company’s stake in the property within three to seven years, and 90 percent of them have chosen to refinance, rather than sell the home, said Alex Lofton, a founder of Landed. The company has entered about 1,000 of these contracts with buyers in 300 cities, with many in the Bay Area and Denver. Landed also operates in the five boroughs of New York City, Westchester County, and parts of Long Island, among other areas. Landed currently offers the program to people in medical, education and civil service positions — essential workers who could keep up with mortgage payments, if they could just save up for a down payment, he said. Other companies, like Unison, have no restrictions on profession. Last year, Mx. Nguyen and Mx. Foxworth refinanced their home and used the proceeds to pay back Landed’s initial investment of $97,500, plus about $6,000, because the home’s value had risen to $1 million, based on a third-party appraisal. “I basically got a free down-payment loan,” Mx. Nguyen said, because they bought out the company’s share before the home’s value could balloon. “You want to take 25 percent of my appreciation? Great — I just wanted to get in the game.”\n", + " For buyers who can’t afford to plunk down a 20 percent down payment — the threshold at which buyers avoid costly mortgage insurance — a shared appreciation agreement might be an option.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Companies like Unison and Landed, both headquartered in San Francisco, will pay a portion of your down payment in exchange for a part of the home’s appreciation in value, either when you sell or refinance the home. If the property value has depreciated at the end of the contract, they share in the loss, reducing your total repayment. Unlike a mortgage, there is no monthly fee or fixed interest.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Dy Nguyen, a teacher, and her wife, Jen Foxworth, a police officer, both 38, bought a two-bedroom townhouse in the Mission district of San Francisco for $975,000 in 2018, with an equity contract from Landed.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The couple, who have two children and were renting a nearby one-bedroom apartment, tucked away savings for about five years and paid 10 percent of the down payment, $97,500. Landed matched their down payment, and the couple financed the rest of the purchase with an adjustable-rate loan.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In exchange, the couple agreed to pay back Landed’s investment, plus 25 percent of the home value appreciation when they sell, refinance, or buy them out. The contract must be paid within 30 years.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Most home buyers will buy out the company’s stake in the property within three to seven years, and 90 percent of them have chosen to refinance, rather than sell the home, said Alex Lofton, a founder of Landed. The company has entered about 1,000 of these contracts with buyers in 300 cities, with many in the Bay Area and Denver. Landed also operates in the five boroughs of New York City, Westchester County, and parts of Long Island, among other areas.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Landed currently offers the program to people in medical, education and civil service positions — essential workers who could keep up with mortgage payments, if they could just save up for a down payment, he said. Other companies, like Unison, have no restrictions on profession. \n", + " Evidence\n", + "\n", + "\n", + "\n", + " Last year, Mx. Nguyen and Mx. Foxworth refinanced their home and used the proceeds to pay back Landed’s initial investment of $97,500, plus about $6,000, because the home’s value had risen to $1 million, based on a third-party appraisal. \n", + " Evidence\n", + "\n", + "\n", + "\n", + " “I basically got a free down-payment loan,” Mx. Nguyen said, because they bought out the company’s share before the home’s value could balloon. “You want to take 25 percent of my appreciation? Great — I just wanted to get in the game.”\n", " Evidence\n", "\n", "\n", @@ -12677,7 +18641,52 @@ "\n", "\n", "\n", - " In terms of what the consumer will one day have to pay the lender, “it’s almost impossible to put a number on it,” he said, noting that the companies can seek anywhere from a few percentage points to most of the home’s appreciation, depending on the contract, and typically there is no dollar limit on their return. But since the companies operate in markets where prices are expected to continue to rise, it’s very unlikely that the homeowner will owe less than the initial amount borrowed, he said. In the event of default, some of the companies might move to sell the property, a process in which the resident may lose many of the rights afforded to someone entering foreclosure, like the opportunity for mediation and a minimum time frame for eviction, Mr. Pizor said. There can also be limitations on how much the homeowner can borrow against the property, and which renovations the companies deem valuable, when assessing your share of the appreciation, said Chris Mayer, a real estate professor at Columbia Business School. “Some of this is really all about the math,” he said, adding that the calculation can vary greatly, but can be beneficial in the right circumstances. “You’ve got to read the fine print.” Rent-to-own programs have been around for decades, with a long history of predatory practices. But a new batch of companies say they’ve corrected the industry’s worst tendencies. One of the biggest players in the rent-to-own niche is Home Partners of America, which has purchased about 25,000 single-family homes since 2012, the company said. Last year, the investment firm Blackstone bought the company for $6 billion. Divvy Homes, based in San Francisco, was founded in 2017, with funding from large venture capital firms like Andreessen Horowitz. In 2018, Landis, a New York-based company with a focus on lower-income renters, was founded; last year, it secured high-profile investments from Will Smith’s Dreamers VC and a company backed by Jay-Z’s Roc Nation. Designed for buyers who may not qualify for traditional lending, the companies buy a home on the client’s behalf, and then rent it back to them for a period of time, typically two or more years, until the tenant can qualify for a mortgage and buy the investor out. In 2020, Janese Scott, 29, who works for a telecom company and is also a part-time mortgage loan officer, had a credit score of 560, too low for most lenders. So she entered a lease contract with Divvy, in which the company bought her a two-bedroom townhouse in Lithonia, Ga., for $129,000, and she became their tenant. She was given three years to qualify for a mortgage to buy the house back, at a premium — $138,000 if she bought after the first 18 months. \n", + " In terms of what the consumer will one day have to pay the lender, “it’s almost impossible to put a number on it,” he said, noting that the companies can seek anywhere from a few percentage points to most of the home’s appreciation, depending on the contract, and typically there is no dollar limit on their return. But since the companies operate in markets where prices are expected to continue to rise, it’s very unlikely that the homeowner will owe less than the initial amount borrowed, he said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In the event of default, some of the companies might move to sell the property, a process in which the resident may lose many of the rights afforded to someone entering foreclosure, like the opportunity for mediation and a minimum time frame for eviction, Mr. Pizor said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " There can also be limitations on how much the homeowner can borrow against the property, and which renovations the companies deem valuable, when assessing your share of the appreciation, said Chris Mayer, a real estate professor at Columbia Business School.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Some of this is really all about the math,” he said, adding that the calculation can vary greatly, but can be beneficial in the right circumstances. “You’ve got to read the fine print.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Rent-to-own programs have been around for decades, with a long history of predatory practices. But a new batch of companies say they’ve corrected the industry’s worst tendencies. \n", + " Evidence\n", + "\n", + "\n", + "\n", + " One of the biggest players in the rent-to-own niche is Home Partners of America, which has purchased about 25,000 single-family homes since 2012, the company said. Last year, the investment firm Blackstone bought the company for $6 billion. \n", + " Evidence\n", + "\n", + "\n", + "\n", + " Divvy Homes, based in San Francisco, was founded in 2017, with funding from large venture capital firms like Andreessen Horowitz. In 2018, Landis, a New York-based company with a focus on lower-income renters, was founded; last year, it secured high-profile investments from Will Smith’s Dreamers VC and a company backed by Jay-Z’s Roc Nation.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Designed for buyers who may not qualify for traditional lending, the companies buy a home on the client’s behalf, and then rent it back to them for a period of time, typically two or more years, until the tenant can qualify for a mortgage and buy the investor out.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In 2020, Janese Scott, 29, who works for a telecom company and is also a part-time mortgage loan officer, had a credit score of 560, too low for most lenders. \n", + " Evidence\n", + "\n", + "\n", + "\n", + " So she entered a lease contract with Divvy, in which the company bought her a two-bedroom townhouse in Lithonia, Ga., for $129,000, and she became their tenant. She was given three years to qualify for a mortgage to buy the house back, at a premium — $138,000 if she bought after the first 18 months. \n", " Evidence\n", "\n", "\n", @@ -12687,7 +18696,17 @@ "\n", "\n", "\n", - " To qualify for the rent-to-own contract, she paid a 2 percent down payment to move into the home, and also paid an above-market rent of $1,520, which included $255 toward home equity. Working with financial coaches through Divvy, Ms. Scott said she paid down her debt, which mostly came from her previous marriage. After saving about $11,000, including the cash put toward the equity, she financed the home with a conventional 30-year loan. The mortgage for the two-story home was $850 a month, cheaper than the apartment Ms. Scott had been renting for $1,200 a month in the Atlanta area for her and her 7-year-old daughter, Gabrielle. “It feels like a dream,” she said. \n", + " To qualify for the rent-to-own contract, she paid a 2 percent down payment to move into the home, and also paid an above-market rent of $1,520, which included $255 toward home equity. \n", + " Evidence\n", + "\n", + "\n", + "\n", + " Working with financial coaches through Divvy, Ms. Scott said she paid down her debt, which mostly came from her previous marriage. After saving about $11,000, including the cash put toward the equity, she financed the home with a conventional 30-year loan.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The mortgage for the two-story home was $850 a month, cheaper than the apartment Ms. Scott had been renting for $1,200 a month in the Atlanta area for her and her 7-year-old daughter, Gabrielle. “It feels like a dream,” she said. \n", " Evidence\n", "\n", "\n", @@ -12697,7 +18716,17 @@ "\n", "\n", "\n", - " “They think they’re investing long term in something that ends in homeownership, but it often ends up as tenancy,” she said, if the renter cannot qualify for a mortgage at the end of the contract. Adena Hefets, a co-founder and chief executive of Divvy, said that about 47 percent of clients become homeowners at the end of the contract, while another 30 to 35 percent extend their lease. She would not say how many homes they have purchased, but said they have “helped thousands” of potential homeowners. They operate in nine states: Arizona, Colorado, Florida, Georgia, Minnesota, Missouri, Ohio, Tennessee and Texas. In the event that a tenant does not buy the home at the end of the contract, Divvy returns the extra payments made toward the equity, minus a fee equal to 2 percent of the purchase price — a significant change from older models, where tenants could stand to lose most or all of their investment.\n", + " “They think they’re investing long term in something that ends in homeownership, but it often ends up as tenancy,” she said, if the renter cannot qualify for a mortgage at the end of the contract.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Adena Hefets, a co-founder and chief executive of Divvy, said that about 47 percent of clients become homeowners at the end of the contract, while another 30 to 35 percent extend their lease. She would not say how many homes they have purchased, but said they have “helped thousands” of potential homeowners. They operate in nine states: Arizona, Colorado, Florida, Georgia, Minnesota, Missouri, Ohio, Tennessee and Texas. \n", + " Evidence\n", + "\n", + "\n", + "\n", + " In the event that a tenant does not buy the home at the end of the contract, Divvy returns the extra payments made toward the equity, minus a fee equal to 2 percent of the purchase price — a significant change from older models, where tenants could stand to lose most or all of their investment.\n", " Evidence\n", "\n", "\n", @@ -12707,7 +18736,12 @@ "\n", "\n", "\n", - " Landis, a competitor, said that 80 percent of their clients become homeowners, but declined to provide sales data. The companies emphasize free financial coaching for clients, to help them qualify for homeownership, which has rarely been the case in past models.\n", + " Landis, a competitor, said that 80 percent of their clients become homeowners, but declined to provide sales data.\n", + " Claim\n", + "\n", + "\n", + "\n", + " The companies emphasize free financial coaching for clients, to help them qualify for homeownership, which has rarely been the case in past models.\n", " Claim\n", "\n", "\n", @@ -12717,17 +18751,52 @@ "\n", "\n", "\n", - " “It’s a population that’s primed for exploitation,” said Reed Colfax, a partner at Relman Colfax, which is representing the plaintiffs in a class-action lawsuit against Rainbow Realty Group, a real estate company in Indianapolis. In a separate case, James Hotka, the head of Rainbow Realty, said in 2013 that 70 percent of customers in their rent-to-own program “fail in the first six months.”\n", + " “It’s a population that’s primed for exploitation,” said Reed Colfax, a partner at Relman Colfax, which is representing the plaintiffs in a class-action lawsuit against Rainbow Realty Group, a real estate company in Indianapolis.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In a separate case, James Hotka, the head of Rainbow Realty, said in 2013 that 70 percent of customers in their rent-to-own program “fail in the first six months.”\n", " Evidence\n", "\n", "\n", "\n", - " All rent-to-own models are not the same, but consumers need to consider negative outcomes, said Sarah Bolling Mancini, a lawyer with the National Consumer Law Center. “The question is, if you can’t get a mortgage now,” she said, “how can you be sure you can qualify in two or three years?”\n", + " All rent-to-own models are not the same, but consumers need to consider negative outcomes, said Sarah Bolling Mancini, a lawyer with the National Consumer Law Center.\n", + " Claim\n", + "\n", + "\n", + "\n", + " “The question is, if you can’t get a mortgage now,” she said, “how can you be sure you can qualify in two or three years?”\n", " Claim\n", "\n", "\n", "\n", - " Shared equity refers to a number of lower-income homeownership models designed to keep a property affordable not just for the current owner, but also future buyers. (To the chagrin of nonprofit housing groups, the term is also used to market for-profit models, like shared appreciation contracts.) In one version, limited-equity cooperatives, buyers purchase homes at deeply below-market prices, and pay monthly fees to maintain and improve the property. In exchange, the resale price of the unit is restricted — based on inflation or other measures. New York City has a version of this called Housing Development Fund Corporation, or H.D.F.C. co-ops. Nery Peña, 27, a first-grade English teacher, bought a two-bedroom apartment in Washington, D.C., overlooking the Washington Monument, for $50,000 in 2021. Similar apartments nearby start at $350,000. The building is part of the Douglass Community Land Trust, a portfolio of properties purchased by former tenants and nonprofit groups, where qualifying buyers typically make between 30 and 70 percent of the area median income. In D.C., that could mean a family of three making roughly $35,000 to $81,000 a year. The land trust also includes rental apartments. Ms. Peña, whose family rented in the building before it converted to a co-op in the 1990s, cobbled together $15,000 from her savings and a gift from her mother, and financed another $35,000 through a credit union. She pays $1,420 a month, including co-op fees; similar units nearby rent for twice that amount. If she decides to sell the home, the sales price will be restricted to her purchase price, $50,000, plus 3 percent for every year she stays. \n", + " Shared equity refers to a number of lower-income homeownership models designed to keep a property affordable not just for the current owner, but also future buyers. (To the chagrin of nonprofit housing groups, the term is also used to market for-profit models, like shared appreciation contracts.)\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In one version, limited-equity cooperatives, buyers purchase homes at deeply below-market prices, and pay monthly fees to maintain and improve the property. In exchange, the resale price of the unit is restricted — based on inflation or other measures. New York City has a version of this called Housing Development Fund Corporation, or H.D.F.C. co-ops. \n", + " Evidence\n", + "\n", + "\n", + "\n", + " Nery Peña, 27, a first-grade English teacher, bought a two-bedroom apartment in Washington, D.C., overlooking the Washington Monument, for $50,000 in 2021. Similar apartments nearby start at $350,000. \n", + " Evidence\n", + "\n", + "\n", + "\n", + " The building is part of the Douglass Community Land Trust, a portfolio of properties purchased by former tenants and nonprofit groups, where qualifying buyers typically make between 30 and 70 percent of the area median income. In D.C., that could mean a family of three making roughly $35,000 to $81,000 a year. The land trust also includes rental apartments.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Ms. Peña, whose family rented in the building before it converted to a co-op in the 1990s, cobbled together $15,000 from her savings and a gift from her mother, and financed another $35,000 through a credit union. \n", + " Evidence\n", + "\n", + "\n", + "\n", + " She pays $1,420 a month, including co-op fees; similar units nearby rent for twice that amount. If she decides to sell the home, the sales price will be restricted to her purchase price, $50,000, plus 3 percent for every year she stays. \n", " Evidence\n", "\n", "\n", @@ -12772,7 +18841,17 @@ "\n", "\n", "\n", - " Silvia Salazar, who works in research at the National Cancer Institute, has been a resident of another co-op in the Douglass Community Land Trust since 2001, when it was still a rental. Since the building converted to a limited-equity co-op in 2011, she says management of the 83-unit building has improved, and units have remained affordable to a largely Latino buyer pool, many of whom work in restaurants and service jobs. Even after a surge in prices in the region fueled by the pandemic, sales at the building start at just $1,500 for a studio apartment, with monthly fees of around $1,100. “It’s the permanent affordability that means everything,” she said about the shared equity model. “No matter how much our community gentrifies, we don’t have to worry about displacement.” \n", + " Silvia Salazar, who works in research at the National Cancer Institute, has been a resident of another co-op in the Douglass Community Land Trust since 2001, when it was still a rental. \n", + " Evidence\n", + "\n", + "\n", + "\n", + " Since the building converted to a limited-equity co-op in 2011, she says management of the 83-unit building has improved, and units have remained affordable to a largely Latino buyer pool, many of whom work in restaurants and service jobs. Even after a surge in prices in the region fueled by the pandemic, sales at the building start at just $1,500 for a studio apartment, with monthly fees of around $1,100. \n", + " Evidence\n", + "\n", + "\n", + "\n", + " “It’s the permanent affordability that means everything,” she said about the shared equity model. “No matter how much our community gentrifies, we don’t have to worry about displacement.” \n", " Evidence\n", "\n", "
" @@ -12796,7 +18875,7 @@ { "data": { "text/html": [ - "

nytimes\\homeless-people-subway-trains-mta.txt

" + "

homeless-people-subway-trains-mta.txt

" ], "text/plain": [ "" @@ -12809,34 +18888,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-bfbb26b2e1acb1a7\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-bfbb26b2e1acb1a7\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-bfbb26b2e1acb1a7\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-bfbb26b2e1acb1a7\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "e7492ff209ae4545aa1668064c3864b5", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " Mayor Eric Adams and Gov. Kathy Hochul announced on Friday an aggressive plan to deploy police officers and mental-health workers into New York City’s subway, pledging to remove more than 1,000 homeless people who shelter there regularly, some of whom have contributed to escalating violence and harassment in the system. Starting Monday, the officials said, there will be a zero-tolerance policy — enforced by the hundreds of officers who already patrol the system — for people sleeping sprawled across train seats or in stations, or for other violations of the subway’s often flouted rules of conduct, including littering, unruly behavior and lingering in a station for over an hour. \n", + " Mayor Eric Adams and Gov. Kathy Hochul announced on Friday an aggressive plan to deploy police officers and mental-health workers into New York City’s subway, pledging to remove more than 1,000 homeless people who shelter there regularly, some of whom have contributed to escalating violence and harassment in the system.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Starting Monday, the officials said, there will be a zero-tolerance policy — enforced by the hundreds of officers who already patrol the system — for people sleeping sprawled across train seats or in stations, or for other violations of the subway’s often flouted rules of conduct, including littering, unruly behavior and lingering in a station for over an hour. \n", " Evidence\n", "\n", "\n", @@ -12960,17 +19034,52 @@ "\n", "\n", "\n", - " “No more just doing whatever you want,” Mr. Adams said at a news conference at a Lower Manhattan subway station. “Those days are over. Swipe your MetroCard, ride the system, get off at your destination. That’s what this administration is saying.” The plan, which is aimed at ending the decades-old practice of people using the nation’s busiest transit system for shelter, comes as a spike in violent crime in the system, including several high-profile shoving incidents, has made public safety a paramount concern for many riders, with some saying it has caused them to avoid the subway. Since plummeting at the onset of the pandemic, ridership been slow to rebound, recently reaching just over half of its prepandemic levels, and the system faces a perilous financial future. The subway’s long-term viability depends on more commuters returning. The plan also comes in the wake of a horrific crime at the Times Square subway station last month, when a 40-year-old woman, Michelle Alyssa Go, was pushed in front of a train and a homeless man with a history of schizophrenia was charged with her murder.\n", + " “No more just doing whatever you want,” Mr. Adams said at a news conference at a Lower Manhattan subway station. “Those days are over. Swipe your MetroCard, ride the system, get off at your destination. That’s what this administration is saying.” \n", + " Evidence\n", + "\n", + "\n", + "\n", + " The plan, which is aimed at ending the decades-old practice of people using the nation’s busiest transit system for shelter, comes as a spike in violent crime in the system, including several high-profile shoving incidents, has made public safety a paramount concern for many riders, with some saying it has caused them to avoid the subway.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Since plummeting at the onset of the pandemic, ridership been slow to rebound, recently reaching just over half of its prepandemic levels, and the system faces a perilous financial future. The subway’s long-term viability depends on more commuters returning.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The plan also comes in the wake of a horrific crime at the Times Square subway station last month, when a 40-year-old woman, Michelle Alyssa Go, was pushed in front of a train and a homeless man with a history of schizophrenia was charged with her murder.\n", " Evidence\n", "\n", "\n", "\n", - " Even as Mr. Adams acknowledged that “the vast majority of the unhoused and the mentally ill are not dangerous” to subway riders, his plan to evict those people from the transit system does not make such a distinction. In addition to the enforcement measures, which drew immediate criticism from advocates for homeless people, the plan also includes changes that are meant to more effectively connect homeless people, many of whom have mentally illness, substance abuse problems or both, to mental-health services and permanent housing.\n", + " Even as Mr. Adams acknowledged that “the vast majority of the unhoused and the mentally ill are not dangerous” to subway riders, his plan to evict those people from the transit system does not make such a distinction.\n", + " Claim\n", + "\n", + "\n", + "\n", + " In addition to the enforcement measures, which drew immediate criticism from advocates for homeless people, the plan also includes changes that are meant to more effectively connect homeless people, many of whom have mentally illness, substance abuse problems or both, to mental-health services and permanent housing.\n", " Claim\n", "\n", "\n", "\n", - " In 2021, the rates of violent crime in the subway per million weekday passengers were up almost across the board compared with 2019. Felony assaults in the system were up nearly 25 percent, despite the pandemic-fueled drop in ridership. Thirty people were pushed onto the tracks in 2021, up from 20 in 2019 and nine in 2017, the police said. “People tell me about their fear of using the system,” Mr. Adams said on Friday. “And we’re going to ensure that fear is not New York’s reality.” The announcement came from not only the mayor and governor, but also the transit agency’s leader, the police commissioner and city and state mental-health officials, underscoring the seriousness of the issue and the central role that officials believe the subway will play in reviving the city’s economy.\n", + " In 2021, the rates of violent crime in the subway per million weekday passengers were up almost across the board compared with 2019. Felony assaults in the system were up nearly 25 percent, despite the pandemic-fueled drop in ridership.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Thirty people were pushed onto the tracks in 2021, up from 20 in 2019 and nine in 2017, the police said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “People tell me about their fear of using the system,” Mr. Adams said on Friday. “And we’re going to ensure that fear is not New York’s reality.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The announcement came from not only the mayor and governor, but also the transit agency’s leader, the police commissioner and city and state mental-health officials, underscoring the seriousness of the issue and the central role that officials believe the subway will play in reviving the city’s economy.\n", " Evidence\n", "\n", "\n", @@ -13030,41 +19139,70 @@ "\n", "\n", "\n", - " The precise number of people who live in the subway is unknown, but an annual survey in January 2021 estimated the figure at about 1,300 — and that was during the time when the system closed down for four hours every night for disinfecting. The number of homeless people in the system is believed to have increased since then. It was estimated at about 1,700 in January 2020, before the pandemic. The city had already increased the police presence in the subway this year, deploying 1,000 additional officers to the system in early January. A week later, two officers were on the opposite end of the platform when Ms. Go was pushed to her death. The mayor’s directive that officers enforce the code of conduct was an implicit acknowledgment that the Police Department had not been doing so rigorously. Mr. Adams said officers had been getting mixed messages on the subject: encouragement to enforce the rules, and condemnation when their efforts were captured on video and circulated on social media. “I got your backs,” Mr. Adams, who was a transit officer himself. “Do your jobs. This is what you’re supposed to do.” The plan tries to address a frequent complaint from homeless people and their advocates that mere “outreach,” in which a homeless person is typically offered a room in a barrackslike group shelter — an offer that is usually declined — is insufficient. The plan calls for the creation of about 500 new beds in private rooms. Police officers will form teams with outreach workers and clinicians that will canvass stations and trains to steer homeless and mentally ill people out of the transit system and toward help, bringing people to hospitals when warranted. The teams — there will be up to 30 — will focus on high-priority stations and train lines where either ridership or reported crime have increased, Keechant Sewell, the police commissioner, said.\n", + " The precise number of people who live in the subway is unknown, but an annual survey in January 2021 estimated the figure at about 1,300 — and that was during the time when the system closed down for four hours every night for disinfecting. The number of homeless people in the system is believed to have increased since then. It was estimated at about 1,700 in January 2020, before the pandemic.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The city had already increased the police presence in the subway this year, deploying 1,000 additional officers to the system in early January. A week later, two officers were on the opposite end of the platform when Ms. Go was pushed to her death.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The mayor’s directive that officers enforce the code of conduct was an implicit acknowledgment that the Police Department had not been doing so rigorously. Mr. Adams said officers had been getting mixed messages on the subject: encouragement to enforce the rules, and condemnation when their efforts were captured on video and circulated on social media.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “I got your backs,” Mr. Adams, who was a transit officer himself. “Do your jobs. This is what you’re supposed to do.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The plan tries to address a frequent complaint from homeless people and their advocates that mere “outreach,” in which a homeless person is typically offered a room in a barrackslike group shelter — an offer that is usually declined — is insufficient. The plan calls for the creation of about 500 new beds in private rooms.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Police officers will form teams with outreach workers and clinicians that will canvass stations and trains to steer homeless and mentally ill people out of the transit system and toward help, bringing people to hospitals when warranted. \n", + " Evidence\n", + "\n", + "\n", + "\n", + " The teams — there will be up to 30 — will focus on high-priority stations and train lines where either ridership or reported crime have increased, Keechant Sewell, the police commissioner, said.\n", " Evidence\n", "\n", "\n", "\n", - " The measures build on a state plan announced by Ms. Hochul last month to create similar “Safe Options Support” teams. Taking broader aim at the problem of untreated mental illness, the plan calls for expanding the use of Kendra’s Law, which enables a judge to order someone into outpatient treatment.\n", + " The measures build on a state plan announced by Ms. Hochul last month to create similar “Safe Options Support” teams.\n", + " Claim\n", + "\n", + "\n", + "\n", + " Taking broader aim at the problem of untreated mental illness, the plan calls for expanding the use of Kendra’s Law, which enables a judge to order someone into outpatient treatment.\n", " Claim\n", "\n", "\n", "\n", - " The plan also calls on hospitals to reverse what has been a significant decrease in inpatient psychiatric beds over the past decade, which some experts say has contributed to the number of people with severe mental illness in the streets and the subway. Ms. Hochul said the state would increase Medicaid payments to hospitals for psychiatric beds. And the plan addresses complaints from some organizations that serve homeless people that hospital emergency rooms refuse to admit some psychiatric patients they find too disruptive, or release them before they are stable or without adequate planning that would keep them from relapsing after being discharged. Dr. Ann Marie T. Sullivan, the state mental health commissioner, said her agency would issue guidance to hospitals to ensure that the most severely ill patients — “a very small percentage of people” — are committed for longer stays. “There are many rivers that feed the sea of homelessness,” Mr. Adams said, “and we have to dam every river if we are going to address this issue.”\n", + " The plan also calls on hospitals to reverse what has been a significant decrease in inpatient psychiatric beds over the past decade, which some experts say has contributed to the number of people with severe mental illness in the streets and the subway. Ms. Hochul said the state would increase Medicaid payments to hospitals for psychiatric beds.\n", " Evidence\n", "\n", - "
" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "\n", - "\n" - ] - }, - { - "data": { - "text/html": [ - "

nytimes\\how-excited-are-you-about-the-metaverse.txt

" + "\n", + "\n", + " And the plan addresses complaints from some organizations that serve homeless people that hospital emergency rooms refuse to admit some psychiatric patients they find too disruptive, or release them before they are stable or without adequate planning that would keep them from relapsing after being discharged.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Dr. Ann Marie T. Sullivan, the state mental health commissioner, said her agency would issue guidance to hospitals to ensure that the most severely ill patients — “a very small percentage of people” — are committed for longer stays.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “There are many rivers that feed the sea of homelessness,” Mr. Adams said, “and we have to dam every river if we are going to address this issue.”\n", + " Evidence\n", + "\n", + "
" ], "text/plain": [ "" @@ -13073,59 +19211,39 @@ "metadata": {}, "output_type": "display_data" }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Using custom data configuration default-ceaba373eb99fcb9\n" - ] - }, { "name": "stdout", "output_type": "stream", "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-ceaba373eb99fcb9\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "\n", + "\n", + "\n" ] }, { "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "ae5841caadc74417901e33d1ad1d17d9", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00how-excited-are-you-about-the-metaverse.txt" + ], "text/plain": [ - " 0%| | 0/1 [00:00" ] }, "metadata": {}, "output_type": "display_data" }, { - "name": "stdout", + "name": "stderr", "output_type": "stream", "text": [ - "Dataset text downloaded and prepared to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-ceaba373eb99fcb9\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4. Subsequent calls will reuse this data.\n" + "Using custom data configuration default-ceaba373eb99fcb9\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-ceaba373eb99fcb9\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "d910a9b888334ee8a4db77a374bc23f5", + "model_id": "49f9a5f3ceb24af6a2e77e8738ad3221", "version_major": 2, "version_minor": 0 }, @@ -13137,23 +19255,16 @@ "output_type": "display_data" }, { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "ccc7b215cd34497d8ceb684385579caa", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00\n", "\n", "\n", - " In “What’s All the Hype About the Metaverse?,” Brian X. Chen writes: The term “metaverse” is everywhere.\n", + " In “What’s All the Hype About the Metaverse?,” Brian X. Chen writes:\n", + " Claim\n", + "\n", + "\n", + "\n", + " The term “metaverse” is everywhere.\n", " Claim\n", "\n", "\n", @@ -13238,7 +19413,12 @@ "\n", "\n", "\n", - " What is the metaverse, anyway? The metaverse is the convergence of two ideas that have been around for many years: virtual reality and a digital second life.\n", + " What is the metaverse, anyway?\n", + " Claim\n", + "\n", + "\n", + "\n", + " The metaverse is the convergence of two ideas that have been around for many years: virtual reality and a digital second life.\n", " Claim\n", "\n", "\n", @@ -13248,7 +19428,17 @@ "\n", "\n", "\n", - " In what techies like Mr. Zuckerberg call the metaverse, virtual reality serves as a computing platform for living a second life online. In virtual reality, you wear a headset that immerses you in a 3-D environment. You carry motion-sensing controllers to interact with virtual objects and use a microphone to communicate with others. Matthew Ball, a venture capitalist who has written extensively about the topic, said the metaverse represented the fourth wave to computers, following mainframe computing, personal computing and mobile computing. “It’s moving into what people call ambient computing,” he said about the metaverse. “It’s about being within the computer rather than accessing the computer. It’s about being always online rather than always having access to an online world.”\n", + " In what techies like Mr. Zuckerberg call the metaverse, virtual reality serves as a computing platform for living a second life online. In virtual reality, you wear a headset that immerses you in a 3-D environment. You carry motion-sensing controllers to interact with virtual objects and use a microphone to communicate with others.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Matthew Ball, a venture capitalist who has written extensively about the topic, said the metaverse represented the fourth wave to computers, following mainframe computing, personal computing and mobile computing.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “It’s moving into what people call ambient computing,” he said about the metaverse. “It’s about being within the computer rather than accessing the computer. It’s about being always online rather than always having access to an online world.”\n", " Evidence\n", "\n", "\n", @@ -13293,7 +19483,17 @@ "\n", "\n", "\n", - " Does the article change your understanding of, or interest in, the metaverse? What aspect described in the article was most fascinating, intriguing or enticing? Do you think Microsoft’s acquisition of Activision Blizzard will hasten the arrival of the metaverse? How much time do you currently spend in digital or virtual spaces? What kinds of things do you do there? Have you played video games like Roblox and Fortnite that might be described as metaverse adjacent, since players can build their own worlds and spend real money to customize their virtual avatars? If so, do your experiences make you more optimistic about a full-blown future metaverse reality? What concerns do you have about the metaverse? In “The Metaverse’s Dark Side: Here Come Harassment and Assaults,” Sheera Frenkel and Kellen Browning write:\n", + " Does the article change your understanding of, or interest in, the metaverse? What aspect described in the article was most fascinating, intriguing or enticing? Do you think Microsoft’s acquisition of Activision Blizzard will hasten the arrival of the metaverse?\n", + " Lead\n", + "\n", + "\n", + "\n", + " How much time do you currently spend in digital or virtual spaces? What kinds of things do you do there? Have you played video games like Roblox and Fortnite that might be described as metaverse adjacent, since players can build their own worlds and spend real money to customize their virtual avatars? If so, do your experiences make you more optimistic about a full-blown future metaverse reality?\n", + " Lead\n", + "\n", + "\n", + "\n", + " What concerns do you have about the metaverse? In “The Metaverse’s Dark Side: Here Come Harassment and Assaults,” Sheera Frenkel and Kellen Browning write:\n", " Lead\n", "\n", "\n", @@ -13303,7 +19503,12 @@ "\n", "\n", "\n", - " How concerned should we be about negative behaviors like harassment and hate speech in the metaverse? Does any of what Ms. Frenkel and Mr. Browning describe resonate with your own experiences in digital and virtual spaces? What do you think could or should be done to prevent them? Make a prediction: Will the metaverse ever become a reality? If so, when do you think it may arrive? In 10, 50 or 100 years? Or should we be skeptical of all the hype — at least for now?\n", + " How concerned should we be about negative behaviors like harassment and hate speech in the metaverse? Does any of what Ms. Frenkel and Mr. Browning describe resonate with your own experiences in digital and virtual spaces? What do you think could or should be done to prevent them?\n", + " Lead\n", + "\n", + "\n", + "\n", + " Make a prediction: Will the metaverse ever become a reality? If so, when do you think it may arrive? In 10, 50 or 100 years? Or should we be skeptical of all the hype — at least for now?\n", " Lead\n", "\n", "" @@ -13327,7 +19532,7 @@ { "data": { "text/html": [ - "

nytimes\\inflation-supply-chain.txt

" + "

inflation-supply-chain.txt

" ], "text/plain": [ "" @@ -13340,34 +19545,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-c58ad9715136184c\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-c58ad9715136184c\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-c58ad9715136184c\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-c58ad9715136184c\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "4a1eb5e428664d07a38ae6259b95d42b", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00\n", "\n", "\n", - " For starters, the supply chains have not been “cut off,” just stretched. And supply issues are by no means the root cause of our inflation. Blaming inflation on supply lines is like complaining about your sweater keeping you too warm after you’ve added several logs to the fireplace. The bulk of our supply problems are the product of an overstimulated economy, not the cause of it. Sure, there have been some Covid-related challenges, such as health-related worker shortages in factories and among transportation workers. But most of our supply problems have been homegrown: Americans have resumed spending freely, and along the way, they have been creating shortages akin to those in a shopping mall on Black Friday. All that consumption has resulted from vast amounts of government rescue aid (including three rounds of stimulus checks) and substantial underspending by consumers during the lockdown phase of the Covid crisis. There has also been an unforeseen shift in what consumers are buying: With travel still sluggish and many people still wary of returning to entertainment venues, a hunk of purchasing has moved to goods — particularly “durables” like cars, electronics and building materials for housing — for which production and distribution capacity is limited. It’s a classic economic case of “too much money chasing too few goods,” resulting in both higher prices and, given the extreme surge in demand, shortages. A spending increase of the magnitude we’re seeing — 25 percent on durable goods in 2021 over 2020, according to the Bureau of Economic Analysis — would have challenged the capabilities of manufacturers under the best of circumstances. Much has been made, for example, about the very real shortage of semiconductors. But that gap has occurred despite manufacturers delivering a staggering 1.15 trillion chips in 2021, handily eclipsing the previous annual record. That looks to me like a demand problem creating a supply problem. And yes, when chips are in short supply, auto companies must curtail production and prices rise. I just ordered a new car and had to pay well above the sticker price (and face an indefinite wait). Among the ripple effects: a surge in used car prices, which are up 55 percent over January 2020 levels. Cars are not alone. Over that same period, furniture and bedding prices rose 19 percent and laundry equipment became 33 percent more expensive. In this environment, shipping delays are hardly surprising. The Commerce Department reported last week that imports into the United States surged by almost 21 percent last year. No wonder that the volume of goods arriving at the port of Los Angeles hit record levels in 2021 — as did delays in unloading all the additional ships. This is not to say that the current situation was easily foreseeable. While some economists warned of looming inflation, few anticipated the shift in spending and its effects. Also unexpected was the “Great Resignation,” the rise in people voluntarily leaving their jobs, as well as the decision by several million Americans to return to the labor force slowly or not at all as the pandemic waned. The Great Resignation has created shortages of a different kind — labor shortages — in the service sector, both for businesses for which demand remains mixed (like restaurants) and those for which demand has increased during the pandemic (just try to get a plumber or an electrician to show up at your house). As a result, inflation in service prices, while more moderate than those in goods, remains higher than the Federal Reserve’s target of 2 percent.\n", + " For starters, the supply chains have not been “cut off,” just stretched. And supply issues are by no means the root cause of our inflation. Blaming inflation on supply lines is like complaining about your sweater keeping you too warm after you’ve added several logs to the fireplace.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The bulk of our supply problems are the product of an overstimulated economy, not the cause of it. Sure, there have been some Covid-related challenges, such as health-related worker shortages in factories and among transportation workers. But most of our supply problems have been homegrown: Americans have resumed spending freely, and along the way, they have been creating shortages akin to those in a shopping mall on Black Friday.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " All that consumption has resulted from vast amounts of government rescue aid (including three rounds of stimulus checks) and substantial underspending by consumers during the lockdown phase of the Covid crisis. There has also been an unforeseen shift in what consumers are buying: With travel still sluggish and many people still wary of returning to entertainment venues, a hunk of purchasing has moved to goods — particularly “durables” like cars, electronics and building materials for housing — for which production and distribution capacity is limited.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " It’s a classic economic case of “too much money chasing too few goods,” resulting in both higher prices and, given the extreme surge in demand, shortages. A spending increase of the magnitude we’re seeing — 25 percent on durable goods in 2021 over 2020, according to the Bureau of Economic Analysis — would have challenged the capabilities of manufacturers under the best of circumstances.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Much has been made, for example, about the very real shortage of semiconductors. But that gap has occurred despite manufacturers delivering a staggering 1.15 trillion chips in 2021, handily eclipsing the previous annual record. That looks to me like a demand problem creating a supply problem.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " And yes, when chips are in short supply, auto companies must curtail production and prices rise. I just ordered a new car and had to pay well above the sticker price (and face an indefinite wait).\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Among the ripple effects: a surge in used car prices, which are up 55 percent over January 2020 levels. Cars are not alone. Over that same period, furniture and bedding prices rose 19 percent and laundry equipment became 33 percent more expensive.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In this environment, shipping delays are hardly surprising. The Commerce Department reported last week that imports into the United States surged by almost 21 percent last year. No wonder that the volume of goods arriving at the port of Los Angeles hit record levels in 2021 — as did delays in unloading all the additional ships.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " This is not to say that the current situation was easily foreseeable. While some economists warned of looming inflation, few anticipated the shift in spending and its effects. Also unexpected was the “Great Resignation,” the rise in people voluntarily leaving their jobs, as well as the decision by several million Americans to return to the labor force slowly or not at all as the pandemic waned.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The Great Resignation has created shortages of a different kind — labor shortages — in the service sector, both for businesses for which demand remains mixed (like restaurants) and those for which demand has increased during the pandemic (just try to get a plumber or an electrician to show up at your house). As a result, inflation in service prices, while more moderate than those in goods, remains higher than the Federal Reserve’s target of 2 percent.\n", " Evidence\n", "\n", "\n", @@ -13488,7 +19711,17 @@ "\n", "\n", "\n", - " The real solution is more complicated. Some shortages will ebb naturally on their own, as consumers, having sated their thirst for adding that extra room on their house, return to more normal spending patterns. Other shortages will take longer to moderate and will require robust action, particularly by the Federal Reserve. For its part, the White House needs to be more honest as it rolls out initiatives. It has promised robust antitrust enforcement, but while that is long overdue, it will have no discernible impact on competition or prices for years. And the high prices of meat and hearing aids, both of which Mr. Biden has vowed to address, are not at the heart of the current problem. The Biden administration needs to shift its approach. In particular, with the economy steaming along, it should make deficit reduction as important as its other initiatives. (Smaller deficits reduce net spending by government, thus helping offset demand by consumers.)\n", + " The real solution is more complicated. Some shortages will ebb naturally on their own, as consumers, having sated their thirst for adding that extra room on their house, return to more normal spending patterns. Other shortages will take longer to moderate and will require robust action, particularly by the Federal Reserve.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " For its part, the White House needs to be more honest as it rolls out initiatives. It has promised robust antitrust enforcement, but while that is long overdue, it will have no discernible impact on competition or prices for years. And the high prices of meat and hearing aids, both of which Mr. Biden has vowed to address, are not at the heart of the current problem.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The Biden administration needs to shift its approach. In particular, with the economy steaming along, it should make deficit reduction as important as its other initiatives. (Smaller deficits reduce net spending by government, thus helping offset demand by consumers.)\n", " Evidence\n", "\n", "\n", @@ -13522,7 +19755,7 @@ { "data": { "text/html": [ - "

nytimes\\inflation-us-consumer-surveys.txt

" + "

inflation-us-consumer-surveys.txt

" ], "text/plain": [ "" @@ -13535,34 +19768,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-56fa749de6cedfad\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-56fa749de6cedfad\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-56fa749de6cedfad\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-56fa749de6cedfad\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "c9cc9f5867f44ca48769c7a9b82ff863", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " Good news on inflation has been hard to come by lately. But this week we got two encouraging reports from the Federal Reserve Bank of New York — results from its latest Survey of Consumer Expectations, and an analysis of the recent behavior of inflation expectations by New York Fed economists. Neither report had any bearing on the inflation we’re actually seeing, which continues (so far) to run hotter than it has for decades. Instead, they were all about the hypothetical future. Consumers, it turns out, don’t expect inflation to stay hot. Rather, they appear to believe it will continue for a while, then fade away. In fact, expected inflation over the medium term has actually come down over the past couple of months.\n", + " Good news on inflation has been hard to come by lately. But this week we got two encouraging reports from the Federal Reserve Bank of New York — results from its latest Survey of Consumer Expectations, and an analysis of the recent behavior of inflation expectations by New York Fed economists.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Neither report had any bearing on the inflation we’re actually seeing, which continues (so far) to run hotter than it has for decades. Instead, they were all about the hypothetical future. Consumers, it turns out, don’t expect inflation to stay hot. Rather, they appear to believe it will continue for a while, then fade away. In fact, expected inflation over the medium term has actually come down over the past couple of months.\n", " Evidence\n", "\n", "\n", @@ -13663,7 +19896,17 @@ "\n", "\n", "\n", - " Why do we care? It’s not because consumers have some special wisdom, but because expected inflation can feed actual inflation. Actually, it can do that in two ways — although only one is relevant to our current situation. And the apparent fact that medium-term expectations of inflation aren’t rising greatly improves our chance of getting past this difficult episode without a lot of pain. The irrelevant way expected inflation can matter, by the way, is through demand. When inflation is running high, consumers may rush to spend money before it loses its value. According to legend, when Germany experienced hyperinflation in the 1920s, patrons at beer halls would buy two beers at a time, because they expected the price of the second to rise while they were still drinking the first. When a government can’t stop inflationary money-printing, this urge to spend can lead to even higher inflation. As I said, this isn’t relevant to the current U.S. situation; no, we don’t need to print money to pay our bills. But we do need to keep an eye out for the possibility that inflation will become entrenched in the economy. What do we mean by that?\n", + " Why do we care? It’s not because consumers have some special wisdom, but because expected inflation can feed actual inflation. Actually, it can do that in two ways — although only one is relevant to our current situation. And the apparent fact that medium-term expectations of inflation aren’t rising greatly improves our chance of getting past this difficult episode without a lot of pain.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The irrelevant way expected inflation can matter, by the way, is through demand. When inflation is running high, consumers may rush to spend money before it loses its value. According to legend, when Germany experienced hyperinflation in the 1920s, patrons at beer halls would buy two beers at a time, because they expected the price of the second to rise while they were still drinking the first. When a government can’t stop inflationary money-printing, this urge to spend can lead to even higher inflation.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " As I said, this isn’t relevant to the current U.S. situation; no, we don’t need to print money to pay our bills. But we do need to keep an eye out for the possibility that inflation will become entrenched in the economy. What do we mean by that?\n", " Evidence\n", "\n", "\n", @@ -13678,19 +19921,39 @@ "\n", "\n", "\n", - " Why is expected inflation in there? Because in an economy in which everyone expects persistent inflation, companies setting prices or deciding what wages to offer will engage in a process of leapfrogging, raising their prices in the belief that other companies will also be raising their prices. I wrote more about that process here. And this in turn means that once people have come to expect persistent inflation, getting back to sustainably low inflation typically requires going through an extended period of high unemployment during which people keep seeing inflation lower than they expected, and gradually revise their expectations down. For the past two decades or so, this hasn’t really been a concern, because expectations of inflation have become “anchored”: the public has come to expect low inflation as normal, and doesn’t react much to temporary ups and downs due to things like oil price fluctuations. The big concern about the inflation spike between 2021 and 2022 has been that inflation expectations might lose their anchor, making it much harder to get inflation back down once supply chains and all that are back to normal. So is that happening? Not according to the New York Fed. Its survey of consumer expectations asks respondents what inflation rate they expect over both the short term — one year — and the medium term — three years. Here’s what that looks like: Medium-term expected inflation has come down recently, but the larger point is that it never rose nearly as much as short-term expectations. This tells us that consumers do expect higher inflation in the months ahead, but don’t expect it to persist — that is, expectations are still anchored. The analysis by the New York Fed’s economists took things a step further, asking how short-term movements in actual inflation seemed to be affecting medium-term expectations. They found that expectations are much less sensitive to inflation data than they used to be — in effect, that consumers aren’t quick to revise their views about future inflation in response to recent news. This further supports the idea that expectations are still anchored.\n", + " Why is expected inflation in there? Because in an economy in which everyone expects persistent inflation, companies setting prices or deciding what wages to offer will engage in a process of leapfrogging, raising their prices in the belief that other companies will also be raising their prices. I wrote more about that process here. And this in turn means that once people have come to expect persistent inflation, getting back to sustainably low inflation typically requires going through an extended period of high unemployment during which people keep seeing inflation lower than they expected, and gradually revise their expectations down.\n", " Evidence\n", "\n", "\n", - "\n", - " All of this suggests that we should be optimistic about the possibility of a relatively painless end to our current inflation episode. But mightn’t we have said this about past inflations? Actually, no.\n", - " Concluding Statement\n", + "\n", + " For the past two decades or so, this hasn’t really been a concern, because expectations of inflation have become “anchored”: the public has come to expect low inflation as normal, and doesn’t react much to temporary ups and downs due to things like oil price fluctuations. The big concern about the inflation spike between 2021 and 2022 has been that inflation expectations might lose their anchor, making it much harder to get inflation back down once supply chains and all that are back to normal.\n", + " Evidence\n", "\n", "\n", - "\n", - " U.S. inflation took two big steps down from its heights at the end of the 1970s:\n", - " Claim\n", - "\n", + "\n", + " So is that happening? Not according to the New York Fed. Its survey of consumer expectations asks respondents what inflation rate they expect over both the short term — one year — and the medium term — three years. Here’s what that looks like:\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Medium-term expected inflation has come down recently, but the larger point is that it never rose nearly as much as short-term expectations. This tells us that consumers do expect higher inflation in the months ahead, but don’t expect it to persist — that is, expectations are still anchored.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The analysis by the New York Fed’s economists took things a step further, asking how short-term movements in actual inflation seemed to be affecting medium-term expectations. They found that expectations are much less sensitive to inflation data than they used to be — in effect, that consumers aren’t quick to revise their views about future inflation in response to recent news. This further supports the idea that expectations are still anchored.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " All of this suggests that we should be optimistic about the possibility of a relatively painless end to our current inflation episode. But mightn’t we have said this about past inflations? Actually, no.\n", + " Concluding Statement\n", + "\n", + "\n", + "\n", + " U.S. inflation took two big steps down from its heights at the end of the 1970s:\n", + " Claim\n", + "\n", "\n", "\n", " First came the Great Disinflation of the 1980s, which brought inflation down from around 10 to around 4 percent. This was a painful process, which involved a very severe double-dip recession. Then came a second disinflation in the early 1990s, which brought inflation down roughly from 4 percent to 2 percent. This involved a milder recession, but recovery from that recession was sluggish and unemployment stayed high for a long time — remember “It’s the economy, stupid”?\n", @@ -13703,7 +19966,12 @@ "\n", "\n", "\n", - " The message from this comparison is that expectations at the end of 2021 don’t look at all like 1980 or even 1990. Back then, inflation was entrenched in the sense that the public expected it to remain high over the medium term, and had to be convinced otherwise with years of high unemployment. This time, the public already expects inflation to subside to low levels within a year or so. That doesn’t mean that policymakers can just stand by and rely on inflation to solve itself. An overheated economy could keep inflation high and un-anchor those expectations. So I believe that the Fed is right to be signaling plans to gradually raise interest rates, with the goal of cooling things off.\n", + " The message from this comparison is that expectations at the end of 2021 don’t look at all like 1980 or even 1990. Back then, inflation was entrenched in the sense that the public expected it to remain high over the medium term, and had to be convinced otherwise with years of high unemployment. This time, the public already expects inflation to subside to low levels within a year or so.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " That doesn’t mean that policymakers can just stand by and rely on inflation to solve itself. An overheated economy could keep inflation high and un-anchor those expectations. So I believe that the Fed is right to be signaling plans to gradually raise interest rates, with the goal of cooling things off.\n", " Evidence\n", "\n", "\n", @@ -13732,7 +20000,7 @@ { "data": { "text/html": [ - "

nytimes\\jeff-koons-bmw.txt

" + "

jeff-koons-bmw.txt

" ], "text/plain": [ "" @@ -13745,34 +20013,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-30ea9c8a7ea4d9a8\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-30ea9c8a7ea4d9a8\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-30ea9c8a7ea4d9a8\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-30ea9c8a7ea4d9a8\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "d06d11d6336d4dbc890c3800ab60c85e", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00\n", "\n", "\n", - " Since its establishment in 1975, the Art Car program has commissioned blue-chip artists — including Andy Warhol, Jenny Holzer, Robert Rauschenberg and Cao Fei — to create one-off iterations of a BMW vehicle, museum-quality pieces that are displayed or raced. The racecar that Mr. Koons unveiled in 2010 featured a windswept riot of brightly colored streaks. This design, he said, was Plan B. Plan C did not maintain Mr. Koons’s interest, so he discarded it. But Plan A remained with him. “I wanted to make a car that, when it drove by, would go pop-pop-pop,” he said. Now, a dozen years later, he has brought that vision to life with the 8 by Jeff Koons, a limited edition of 99 specially designed and outfitted versions of BMW’s swoopy, four-door, 8-Series Gran Coupe sports sedan. This car was unveiled, virtually, on Wednesday in connection with the Frieze Los Angeles art fair, for which BMW is an official partner. In the United States, each example will cost $350,000. BMW has had success with similar limited editions, including an intended (pandemic-interrupted) run of 500 M2 sports coupes designed by the artist Lenny McGurr, who is known as Futura, and a series of 150 M4 Competition sports coupes created with Ronnie Fieg of the streetwear brand Kith. As one of the world’s best-known living artists, Mr. Koons lends cachet to the offering. “It’s good marketing for the company,” said Linda Yablonsky, an art critic and author of a coming biography of Mr. Koons. “But Jeff himself is really an evangelist for art. He wants to see art in everyone’s life. It doesn’t have to be his own, but he wants everybody to connect to art in some way because he believes it will do for them what it does for him — enhance their lives.”\n", + " Since its establishment in 1975, the Art Car program has commissioned blue-chip artists — including Andy Warhol, Jenny Holzer, Robert Rauschenberg and Cao Fei — to create one-off iterations of a BMW vehicle, museum-quality pieces that are displayed or raced. The racecar that Mr. Koons unveiled in 2010 featured a windswept riot of brightly colored streaks. This design, he said, was Plan B.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Plan C did not maintain Mr. Koons’s interest, so he discarded it. But Plan A remained with him. “I wanted to make a car that, when it drove by, would go pop-pop-pop,” he said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Now, a dozen years later, he has brought that vision to life with the 8 by Jeff Koons, a limited edition of 99 specially designed and outfitted versions of BMW’s swoopy, four-door, 8-Series Gran Coupe sports sedan. This car was unveiled, virtually, on Wednesday in connection with the Frieze Los Angeles art fair, for which BMW is an official partner. In the United States, each example will cost $350,000.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " BMW has had success with similar limited editions, including an intended (pandemic-interrupted) run of 500 M2 sports coupes designed by the artist Lenny McGurr, who is known as Futura, and a series of 150 M4 Competition sports coupes created with Ronnie Fieg of the streetwear brand Kith.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " As one of the world’s best-known living artists, Mr. Koons lends cachet to the offering. “It’s good marketing for the company,” said Linda Yablonsky, an art critic and author of a coming biography of Mr. Koons. “But Jeff himself is really an evangelist for art. He wants to see art in everyone’s life. It doesn’t have to be his own, but he wants everybody to connect to art in some way because he believes it will do for them what it does for him — enhance their lives.”\n", " Evidence\n", "\n", "\n", @@ -13880,7 +20167,12 @@ "
\n", "\n", "\n", - " “I thought it was going to be one of these balloon dog-colored cars — bright yellow, bright red, bright blue,” said Thomas Girst, BMW’s head of cultural engagement, referring to the artist’s signature high-gloss sculptures, executed in gleaming polished stainless steel. Mr. Koons had a different idea in mind. “I started by working with kind of a rectangular design that became this kind of whoosh of air that I’ve incorporated, this emphasis of power. And I use other visual ways of communicating energy and velocity, and that excitement of movement,” he said.\n", + " “I thought it was going to be one of these balloon dog-colored cars — bright yellow, bright red, bright blue,” said Thomas Girst, BMW’s head of cultural engagement, referring to the artist’s signature high-gloss sculptures, executed in gleaming polished stainless steel.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mr. Koons had a different idea in mind. “I started by working with kind of a rectangular design that became this kind of whoosh of air that I’ve incorporated, this emphasis of power. And I use other visual ways of communicating energy and velocity, and that excitement of movement,” he said.\n", " Evidence\n", "\n", "\n", @@ -13890,7 +20182,32 @@ "\n", "\n", "\n", - " The design conveys a sense of vibrant emotionality, a fascination rooted in delight and joy. This sensibility carries over into the interior, with its harlequin-like arrangement of contrasting colors and textures, all chosen by Mr. Koons. The finishes are labor intensive. The paint on each car requires an 11-step process, including hand-painting. According to BMW, it is the most complex paint job ever rendered on one of its series production road cars, taking 300 hours to execute for each vehicle. (During one of Mr. Koons’s supervisory visits to the factory, according to Mr. Girst, the paint shop workers asked him to sign their atomizer. “And he did,” Mr. Girst said.) Mr. Koons has experimented with similar concepts, on a very different vehicle. “It’s a bit like the paint job he gave the Guilty, a yacht he designed for the Greek collector Dakis Joannou,” Ms. Yablonsky said. “Jeff based it on World War I, razzle-dazzle ship camouflage and combined that with a kind of homage to Roy Lichtenstein, one of his artistic heroes,” she continued. “So the bright colors of this car, and the exploding, cartoonlike Pop graphics, are very much in keeping with his art,” she said. “And certainly, like Jeff himself, it’s very optimistic.” She added, “I’d be curious to see how it looks in motion.” Soon, Ms. Yablonsky, and other New Yorkers, will have this wish granted. In late March, Mr. Koons is scheduled to drive an 8 by Jeff Koons through Manhattan, dropping the car off at Rockefeller Center, where it will be on display from March 31 until April 4. At the end of the exhibition, this car will be auctioned off by Christie’s, with the proceeds donated to the International Center for Missing and Exploited Children, a charity Mr. Koons has frequently supported. As a means of introducing the car to collectors around the world, further premieres are planned this spring and summer (without Mr. Koons) in the United Arab Emirates, Switzerland, Belgium, China, France and England.\n", + " The design conveys a sense of vibrant emotionality, a fascination rooted in delight and joy. This sensibility carries over into the interior, with its harlequin-like arrangement of contrasting colors and textures, all chosen by Mr. Koons.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The finishes are labor intensive. The paint on each car requires an 11-step process, including hand-painting. According to BMW, it is the most complex paint job ever rendered on one of its series production road cars, taking 300 hours to execute for each vehicle. (During one of Mr. Koons’s supervisory visits to the factory, according to Mr. Girst, the paint shop workers asked him to sign their atomizer. “And he did,” Mr. Girst said.)\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mr. Koons has experimented with similar concepts, on a very different vehicle. “It’s a bit like the paint job he gave the Guilty, a yacht he designed for the Greek collector Dakis Joannou,” Ms. Yablonsky said. “Jeff based it on World War I, razzle-dazzle ship camouflage and combined that with a kind of homage to Roy Lichtenstein, one of his artistic heroes,” she continued.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “So the bright colors of this car, and the exploding, cartoonlike Pop graphics, are very much in keeping with his art,” she said. “And certainly, like Jeff himself, it’s very optimistic.” She added, “I’d be curious to see how it looks in motion.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Soon, Ms. Yablonsky, and other New Yorkers, will have this wish granted. In late March, Mr. Koons is scheduled to drive an 8 by Jeff Koons through Manhattan, dropping the car off at Rockefeller Center, where it will be on display from March 31 until April 4. At the end of the exhibition, this car will be auctioned off by Christie’s, with the proceeds donated to the International Center for Missing and Exploited Children, a charity Mr. Koons has frequently supported.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " As a means of introducing the car to collectors around the world, further premieres are planned this spring and summer (without Mr. Koons) in the United Arab Emirates, Switzerland, Belgium, China, France and England.\n", " Evidence\n", "\n", "\n", @@ -13900,7 +20217,17 @@ "\n", "\n", "\n", - " Mr. Koons will also receive his own 8 by Jeff Koons. He said he looked forward to driving the car “in New York, and from New York to Pennsylvania,” where he maintains a weekend house — his grandfather’s farm. This will be a significant change from his usual ride. Because Mr. Koons has eight children, and often travels with them, their friends, his wife and a nanny, he typically drives a 13-passenger Mercedes van. “My kids say, ‘Dad, you should get yourself a sports car,’” he said. “But I like to be with my family. I have joy being with them.” As the 8-Series Gran Coupe has four seats, it will lend itself to such togetherness. “So I’ve ended up with the sports car that I can see myself driving,” he said.\n", + " Mr. Koons will also receive his own 8 by Jeff Koons. He said he looked forward to driving the car “in New York, and from New York to Pennsylvania,” where he maintains a weekend house — his grandfather’s farm.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " This will be a significant change from his usual ride. Because Mr. Koons has eight children, and often travels with them, their friends, his wife and a nanny, he typically drives a 13-passenger Mercedes van.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “My kids say, ‘Dad, you should get yourself a sports car,’” he said. “But I like to be with my family. I have joy being with them.” As the 8-Series Gran Coupe has four seats, it will lend itself to such togetherness. “So I’ve ended up with the sports car that I can see myself driving,” he said.\n", " Evidence\n", "\n", "\n", @@ -13934,7 +20261,7 @@ { "data": { "text/html": [ - "

nytimes\\jim-hagedorn-dead.txt

" + "

jim-hagedorn-dead.txt

" ], "text/plain": [ "" @@ -13947,34 +20274,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-b7c090a5aa6903f6\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-b7c090a5aa6903f6\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-b7c090a5aa6903f6\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-b7c090a5aa6903f6\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "d748a85bb2234492a3636951a2843d42", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " Representative Jim Hagedorn, a second-term Minnesota Republican who was a staunch ally of former President Donald J. Trump and who joined with other members of his party in seeking to overturn the election of Joseph R. Biden Jr., died on Thursday. He was 59. His wife, Jennifer Carnahan Hagedorn, the former chair of the Minnesota Republican Party, announced the death on Facebook. She did not specify the cause or say where he died. He had long been public about his three-year struggle with cancer and announced in January that he had tested positive for Covid-19. Mr. Hagedorn was diagnosed with stage IV kidney cancer in 2019, shortly after he was sworn in as a first-term member of the House of Representatives. He underwent immunotherapy treatment at the Mayo Clinic, and doctors removed the affected kidney in December 2020. He said at the time that 99 percent of the cancer was gone, but he announced in July that it had returned. Mr. Hagedorn had run for a House seat three times without success, in 2010, 2014 and 2016, when he lost by a hair to the incumbent, the Democrat Tim Walz. In 2018, after Mr. Walz left to run successfully for governor, Mr. Hagedorn narrowly won his seat in a race against the Democrat Dan Feehan. In a rematch against Mr. Feehan in 2020, Mr. Hagedorn won by a slightly larger margin, despite his health issues, and was raising money in anticipation of a re-election campaign in November. “He’ll forever be known as a common sense conservative who championed fair tax policy, American energy independence, peace through strength foreign policy and southern Minnesota’s way of life and values,” his campaign said in a statement. Throughout his short tenure in office, Republicans were in the minority in the House. All the while, Mr. Hagedorn remained a strong conservative, worked on behalf of small businesses and rural entrepreneurs, and stood as an ally of Mr. Trump, who won Mr. Hagedorn’s district in 2016 by 15 percentage points. “I’ve said repeatedly since 2016 that of course I support Donald Trump,” Mr. Hagedorn told the Minnesota newspaper The Star Tribune in 2019, “because I felt like if he’d lost, we’d have lost the country.” In December 2020, Mr. Hagedorn was one of 126 Republican members of the House who filed an amicus brief urging the Supreme Court to overturn the election of Mr. Biden as president, a brief based on spurious and disproved allegations of widespread voter fraud. The court rejected the suit, which had sought to throw out the election results in four battleground states. Just hours after the deadly insurrection at the Capitol on Jan. 6, 2021, by a mob of Trump supporters, Mr. Hagedorn was among 147 Republicans who objected to certifying Mr. Biden’s election. “There was no stronger conservative in our state than my husband,” his wife wrote in her statement, “and it showed in how he voted, led and fought for our country.” James Lee Hagedorn was born on Aug. 4, 1962, in Blue Earth, Minn., near the Iowa border. His father, Tom Hagedorn, was a U.S. House member and represented some of the same southern Minnesota territory as his son later did. His mother, Kathleen (Mittlestadt) Hagedorn, was a homemaker. Jim was raised on the family farm near Truman, Minn., and in McLean, Va., while his father served in Congress, from 1975 to 1983. He graduated from George Mason University in Virginia with a bachelor’s degree in government and political science in 1993. While a student, he worked as a legislative aide to Representative Arlan Stangeland, another Minnesota Republican. He later worked as a congressional liaison at the Treasury Department and as the congressional affairs officer for the Bureau of Engraving and Printing until 2009. During the early 2000s, Mr. Hagedorn wrote a blog called “Mr. Conservative,” which has since been deleted. His posts took aim at Native Americans, gay people and women, among others. In 2005, when President George W. Bush nominated a woman, the White House counsel Harriet Miers, to the Supreme Court (she ultimately withdrew her name), Mr. Hagedorn described her nomination as an effort “to fill the bra of Supreme Court Justice Sandra Day O’Connor.” The blog posts resurfaced during Mr. Hagedorn’s unsuccessful run for the House in 2014; he told The Star Tribune that they were old and had been satirical in nature. They surfaced again in 2018, when he won the seat chiefly by proclaiming his loyalty to Mr. Trump.\n", + " Representative Jim Hagedorn, a second-term Minnesota Republican who was a staunch ally of former President Donald J. Trump and who joined with other members of his party in seeking to overturn the election of Joseph R. Biden Jr., died on Thursday. He was 59. \n", + " Evidence\n", + "\n", + "\n", + "\n", + " His wife, Jennifer Carnahan Hagedorn, the former chair of the Minnesota Republican Party, announced the death on Facebook. She did not specify the cause or say where he died. He had long been public about his three-year struggle with cancer and announced in January that he had tested positive for Covid-19.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mr. Hagedorn was diagnosed with stage IV kidney cancer in 2019, shortly after he was sworn in as a first-term member of the House of Representatives. He underwent immunotherapy treatment at the Mayo Clinic, and doctors removed the affected kidney in December 2020. He said at the time that 99 percent of the cancer was gone, but he announced in July that it had returned.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mr. Hagedorn had run for a House seat three times without success, in 2010, 2014 and 2016, when he lost by a hair to the incumbent, the Democrat Tim Walz. In 2018, after Mr. Walz left to run successfully for governor, Mr. Hagedorn narrowly won his seat in a race against the Democrat Dan Feehan.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In a rematch against Mr. Feehan in 2020, Mr. Hagedorn won by a slightly larger margin, despite his health issues, and was raising money in anticipation of a re-election campaign in November.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “He’ll forever be known as a common sense conservative who championed fair tax policy, American energy independence, peace through strength foreign policy and southern Minnesota’s way of life and values,” his campaign said in a statement.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Throughout his short tenure in office, Republicans were in the minority in the House. All the while, Mr. Hagedorn remained a strong conservative, worked on behalf of small businesses and rural entrepreneurs, and stood as an ally of Mr. Trump, who won Mr. Hagedorn’s district in 2016 by 15 percentage points.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “I’ve said repeatedly since 2016 that of course I support Donald Trump,” Mr. Hagedorn told the Minnesota newspaper The Star Tribune in 2019, “because I felt like if he’d lost, we’d have lost the country.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In December 2020, Mr. Hagedorn was one of 126 Republican members of the House who filed an amicus brief urging the Supreme Court to overturn the election of Mr. Biden as president, a brief based on spurious and disproved allegations of widespread voter fraud. The court rejected the suit, which had sought to throw out the election results in four battleground states.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Just hours after the deadly insurrection at the Capitol on Jan. 6, 2021, by a mob of Trump supporters, Mr. Hagedorn was among 147 Republicans who objected to certifying Mr. Biden’s election.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “There was no stronger conservative in our state than my husband,” his wife wrote in her statement, “and it showed in how he voted, led and fought for our country.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " James Lee Hagedorn was born on Aug. 4, 1962, in Blue Earth, Minn., near the Iowa border. His father, Tom Hagedorn, was a U.S. House member and represented some of the same southern Minnesota territory as his son later did. His mother, Kathleen (Mittlestadt) Hagedorn, was a homemaker.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Jim was raised on the family farm near Truman, Minn., and in McLean, Va., while his father served in Congress, from 1975 to 1983.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " He graduated from George Mason University in Virginia with a bachelor’s degree in government and political science in 1993. While a student, he worked as a legislative aide to Representative Arlan Stangeland, another Minnesota Republican. He later worked as a congressional liaison at the Treasury Department and as the congressional affairs officer for the Bureau of Engraving and Printing until 2009.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " During the early 2000s, Mr. Hagedorn wrote a blog called “Mr. Conservative,” which has since been deleted. His posts took aim at Native Americans, gay people and women, among others.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In 2005, when President George W. Bush nominated a woman, the White House counsel Harriet Miers, to the Supreme Court (she ultimately withdrew her name), Mr. Hagedorn described her nomination as an effort “to fill the bra of Supreme Court Justice Sandra Day O’Connor.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The blog posts resurfaced during Mr. Hagedorn’s unsuccessful run for the House in 2014; he told The Star Tribune that they were old and had been satirical in nature. They surfaced again in 2018, when he won the seat chiefly by proclaiming his loyalty to Mr. Trump.\n", " Evidence\n", "\n", "\n", "\n", - " Complete information on his survivors was not available. The final piece of legislation that Mr. Hagedorn introduced, on Feb. 9, was a resolution to place a national debt clock in the House chamber.\n", + " Complete information on his survivors was not available.\n", + " Claim\n", + "\n", + "\n", + "\n", + " The final piece of legislation that Mr. Hagedorn introduced, on Feb. 9, was a resolution to place a national debt clock in the House chamber.\n", " Claim\n", "\n", "\n", @@ -14099,7 +20484,7 @@ { "data": { "text/html": [ - "

nytimes\\jobs-hiring-fraud.txt

" + "

jobs-hiring-fraud.txt

" ], "text/plain": [ "" @@ -14112,34 +20497,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-9e87bb1d878ff68a\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-9e87bb1d878ff68a\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-9e87bb1d878ff68a\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-9e87bb1d878ff68a\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "20d3f248b48f46c7a951b59bdd70ca96", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00\n", "\n", "\n", - " Ms. Zawatski’s colleague had recognized the voice coming from the screen and realized it was an acquaintance who was answering the technical questions while the job candidate moved his lips onscreen — something the candidate’s friend had just confessed to over text message. “What did he think was going to happen when he moved across the country and realized he couldn’t do the job?” Ms. Zawatski later wondered aloud. Job interviews have always demanded a pair of somewhat incongruous qualities: authenticity and polish. Interview guides urge candidates to put their best foot forward. Recruiters encourage people to be genuine, even have fun with the process. (“The surprising secret to interview success — be yourself,” goes the typical advice.) It can be a psychologically taxing combination of tips, compelling job seekers to wonder how they can simultaneously convey a real sense of their flawed, leave-dishes-in-the-sink personalities while also boasting of their abilities as a math whiz, polyglot, team leader, calendaring virtuoso or whatever. “It’s very easy to present yourself as you would like to be, as opposed to the way you really are,” said Robert Feldman, a psychologist at University of Massachusetts Amherst and the author of “The Liar in Your Life.” People, he added, tend to learn from a young age the advantages conferred by fibbing. Children are taught that when Grandma comes over with the gift of an impossibly ugly sweater, they should act as if they had gotten a PlayStation, Dr. Feldman said. As they get older, the stakes of lying are raised — most notably in a job interview, when there’s money on the table. Remote hiring processes have given some job seekers the impression that they can get away with extreme forms of dishonesty. Virtual interviews leave open the possibility that candidates can ask a friend to feed them answers. Telephone calls can create a psychological distance between the interviewer and interviewee, Dr. Feldman noted, which may make it easier for people to justify presenting themselves in an inaccurate way. At the same time, people are doing far more interviews than before, with about one in five employees voluntarily switching jobs in 2020. Still, recruiters know to expect some gloss in the hiring process. It’s even acknowledged in pop culture. “Fluent in Finnish?” Isla Fisher’s character is asked in “Confessions of a Shopaholic,” by a friend who is scanning her job qualifications. Ms. Fisher’s character responds: “Everyone has fudged their résumé a little.” Often, it’s as benign as someone forcing undue perkiness. Like Logan Levey, 32, now an office coordinator in San Francisco, who recalled how he had maintained a sunny expression while interviewing for hospitality roles. “I always tried to keep the energy super high,” Mr. Levey said. “Even if I wasn’t feeling it that day.” Psychologists who study interviews note that a wide range of inauthentic behaviors can be in play. Most job seekers use what’s called “impression management” in the interview process, which means they’re thinking about how to present the best version of themselves, according to Joshua Bourdage, an organizational psychologist at the University of Calgary, and Nicolas Roulin, an organizational psychologist at Saint Mary’s University.\n", + " Ms. Zawatski’s colleague had recognized the voice coming from the screen and realized it was an acquaintance who was answering the technical questions while the job candidate moved his lips onscreen — something the candidate’s friend had just confessed to over text message.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “What did he think was going to happen when he moved across the country and realized he couldn’t do the job?” Ms. Zawatski later wondered aloud.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Job interviews have always demanded a pair of somewhat incongruous qualities: authenticity and polish. Interview guides urge candidates to put their best foot forward. Recruiters encourage people to be genuine, even have fun with the process. (“The surprising secret to interview success — be yourself,” goes the typical advice.) It can be a psychologically taxing combination of tips, compelling job seekers to wonder how they can simultaneously convey a real sense of their flawed, leave-dishes-in-the-sink personalities while also boasting of their abilities as a math whiz, polyglot, team leader, calendaring virtuoso or whatever.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “It’s very easy to present yourself as you would like to be, as opposed to the way you really are,” said Robert Feldman, a psychologist at University of Massachusetts Amherst and the author of “The Liar in Your Life.” People, he added, tend to learn from a young age the advantages conferred by fibbing.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Children are taught that when Grandma comes over with the gift of an impossibly ugly sweater, they should act as if they had gotten a PlayStation, Dr. Feldman said. As they get older, the stakes of lying are raised — most notably in a job interview, when there’s money on the table.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Remote hiring processes have given some job seekers the impression that they can get away with extreme forms of dishonesty. Virtual interviews leave open the possibility that candidates can ask a friend to feed them answers. Telephone calls can create a psychological distance between the interviewer and interviewee, Dr. Feldman noted, which may make it easier for people to justify presenting themselves in an inaccurate way. At the same time, people are doing far more interviews than before, with about one in five employees voluntarily switching jobs in 2020.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Still, recruiters know to expect some gloss in the hiring process. It’s even acknowledged in pop culture. “Fluent in Finnish?” Isla Fisher’s character is asked in “Confessions of a Shopaholic,” by a friend who is scanning her job qualifications. Ms. Fisher’s character responds: “Everyone has fudged their résumé a little.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Often, it’s as benign as someone forcing undue perkiness. Like Logan Levey, 32, now an office coordinator in San Francisco, who recalled how he had maintained a sunny expression while interviewing for hospitality roles.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “I always tried to keep the energy super high,” Mr. Levey said. “Even if I wasn’t feeling it that day.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Psychologists who study interviews note that a wide range of inauthentic behaviors can be in play. Most job seekers use what’s called “impression management” in the interview process, which means they’re thinking about how to present the best version of themselves, according to Joshua Bourdage, an organizational psychologist at the University of Calgary, and Nicolas Roulin, an organizational psychologist at Saint Mary’s University.\n", " Evidence\n", "\n", "\n", @@ -14268,7 +20678,47 @@ "\n", "\n", "\n", - " How likely people are to fall back on these practices depends on how much they want the job, as well as how easily they think they can get away with the ruse. Research has shown that Americans are more likely to consider using deceptive interview tactics than Western Europeans, and deception is more commonly considered in some parts of the Northeast and California than in other areas of the United States. Whether employers pick up on fishy behaviors can depend on their level of desperation. Right now, with job openings high and unemployment low, many companies are scrambling to find talent. “There’s a lot of demand out there for relatively few people,” said Ben Zhao, a computer science professor at the University of Chicago who studies online marketplaces, adding that the imbalance in the labor market might push companies toward risky hires. “That makes them more susceptible to misrepresentation or fraud.” Employers are also facing a moment in which collective angst is driving all kinds of unusual misbehavior. That’s something Tamara Sylvestre, 32, said she realized last year when she was working as a recruiter at a staffing firm based in Michigan and interviewed someone for an engineering position. She did an initial phone screening with the candidate, in which she noted that he had a high-pitched voice. When she conducted a follow-up technical interview by video, his voice seemed to have deepened. Ms. Sylvestre later asked why his vocal pitch had changed, and he confessed that he had asked a friend to do the video interview for him. “What were you going to do if you ended up getting the role?” Ms. Sylvestre recalled asking the candidate, bewildered. “He was like: ‘I was really nervous. I thought no one would notice.’ The role was 100 percent remote, so maybe he thought it wouldn’t make a difference.” Mark Bradbourne, 46, who works as an engineer in Ohio, recalled a trickster who got even further in the hiring process several years ago. Mr. Bradbourne asked a new employee during his first week to do a data visualization exercise identical to one he had completed in his technical interview. The new hire didn’t know how to proceed. When Mr. Bradbourne reminded the employee that he had done the same task in his hiring process, the man jumped up and ran out of the room, then immediately resigned. Persuading a friend to pinch-hit during a technical screening is an extreme variety of interview fake-out. But organizational psychologists observe that interviewers tend to reward honesty. They recognize when people speak genuinely to the aspects of a company that resonate with their interests, Dr. Bourdage said. Interviewers are also getting savvier at detecting dishonesty. Meta, formerly Facebook, has in-house psychologists who devise probing questions that would be hard for interviewees to fake. Scott Gregory, chief executive of the personality testing company Hogan Assessment Systems, encourages employers to scrap classic interview questions — “What are your greatest strengths?” — in favor of situational and behavioral ones, in which candidates narrate experiences they’ve had or explore hypothetical scenarios. Meta’s head recruiter said the company expected candidates to turn on their camera for video interviews, though it can accommodate any circumstances that make it hard to do so.\n", + " How likely people are to fall back on these practices depends on how much they want the job, as well as how easily they think they can get away with the ruse. Research has shown that Americans are more likely to consider using deceptive interview tactics than Western Europeans, and deception is more commonly considered in some parts of the Northeast and California than in other areas of the United States.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Whether employers pick up on fishy behaviors can depend on their level of desperation. Right now, with job openings high and unemployment low, many companies are scrambling to find talent.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “There’s a lot of demand out there for relatively few people,” said Ben Zhao, a computer science professor at the University of Chicago who studies online marketplaces, adding that the imbalance in the labor market might push companies toward risky hires. “That makes them more susceptible to misrepresentation or fraud.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Employers are also facing a moment in which collective angst is driving all kinds of unusual misbehavior. That’s something Tamara Sylvestre, 32, said she realized last year when she was working as a recruiter at a staffing firm based in Michigan and interviewed someone for an engineering position. She did an initial phone screening with the candidate, in which she noted that he had a high-pitched voice. When she conducted a follow-up technical interview by video, his voice seemed to have deepened.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Ms. Sylvestre later asked why his vocal pitch had changed, and he confessed that he had asked a friend to do the video interview for him.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “What were you going to do if you ended up getting the role?” Ms. Sylvestre recalled asking the candidate, bewildered. “He was like: ‘I was really nervous. I thought no one would notice.’ The role was 100 percent remote, so maybe he thought it wouldn’t make a difference.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mark Bradbourne, 46, who works as an engineer in Ohio, recalled a trickster who got even further in the hiring process several years ago. Mr. Bradbourne asked a new employee during his first week to do a data visualization exercise identical to one he had completed in his technical interview. The new hire didn’t know how to proceed. When Mr. Bradbourne reminded the employee that he had done the same task in his hiring process, the man jumped up and ran out of the room, then immediately resigned.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Persuading a friend to pinch-hit during a technical screening is an extreme variety of interview fake-out. But organizational psychologists observe that interviewers tend to reward honesty. They recognize when people speak genuinely to the aspects of a company that resonate with their interests, Dr. Bourdage said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Interviewers are also getting savvier at detecting dishonesty. Meta, formerly Facebook, has in-house psychologists who devise probing questions that would be hard for interviewees to fake. Scott Gregory, chief executive of the personality testing company Hogan Assessment Systems, encourages employers to scrap classic interview questions — “What are your greatest strengths?” — in favor of situational and behavioral ones, in which candidates narrate experiences they’ve had or explore hypothetical scenarios. Meta’s head recruiter said the company expected candidates to turn on their camera for video interviews, though it can accommodate any circumstances that make it hard to do so.\n", " Evidence\n", "\n", "\n", @@ -14278,7 +20728,17 @@ "\n", "\n", "\n", - " “It is a fine line between being unprofessional, too casual, too familiar, and being your authentic self,” said Miranda Kalinowski, Meta’s global head of recruiting. Kelsey Klausing, 32, a manager at Hogan, recalled years ago interviewing for a position that was slightly outside her realm of experience. Buckling under the pressure, Ms. Klausing found herself emphasizing skills that she had only really “dabbled in.” Weeks later, when she found out she was out of the running because the company had decided not to hire for the role, she felt a wave of relief. “It probably wasn’t the best match for me anyway,” Ms. Klausing said. “Fake it till you make it can only last for so long.”\n", + " “It is a fine line between being unprofessional, too casual, too familiar, and being your authentic self,” said Miranda Kalinowski, Meta’s global head of recruiting.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Kelsey Klausing, 32, a manager at Hogan, recalled years ago interviewing for a position that was slightly outside her realm of experience. Buckling under the pressure, Ms. Klausing found herself emphasizing skills that she had only really “dabbled in.” Weeks later, when she found out she was out of the running because the company had decided not to hire for the role, she felt a wave of relief.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “It probably wasn’t the best match for me anyway,” Ms. Klausing said. “Fake it till you make it can only last for so long.”\n", " Evidence\n", "\n", "
" @@ -14302,7 +20762,7 @@ { "data": { "text/html": [ - "

nytimes\\justice-department-cybersecurity.txt

" + "

justice-department-cybersecurity.txt

" ], "text/plain": [ "" @@ -14315,34 +20775,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-a8e2e167413396e1\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-a8e2e167413396e1\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-a8e2e167413396e1\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-a8e2e167413396e1\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "99cd066b1558498cb10bd06c8c88a692", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " WASHINGTON — A top Justice Department official said on Thursday that the agency was bolstering its efforts to address cybercrime, as cryptocurrencies have increasingly become part of the global economy and cyberthreats become more and more common. Lisa O. Monaco, the No. 2 official at the department, said in a virtual speech at the annual Munich cybersecurity conference that the agency had established a team at the F.B.I. dedicated to cryptocurrency; added a dozen federal prosecutors to a unit investigating and prosecuting criminal misuses of cryptocurrency; and tapped a director to lead it. “We continue to confront cybercriminals who enjoy safe haven in authoritarian countries and who wreak havoc in both the digital and physical worlds,” Ms. Monaco said, adding that the changes were the result of a monthslong review scrutinizing a threat inextricably tied to hostile nations and criminal gangs. The announcement by Ms. Monaco came a week after the Justice Department made its largest financial seizure ever, confiscating over $3.6 billion worth of Bitcoin stolen in a 2016 hacking. The newly formed unit at the F.B.I., the Virtual Asset Exploitation Unit, is meant to provide expertise, equipment and training to help agents trace the flow of funds on the blockchain, the digital ledger that permanently stores records of cryptocurrency trades. It is expected to work closely with the prosecutors on the National Cryptocurrency Enforcement Team, established in the fall. That team will be led by Eun Young Choi, a longtime computer crimes prosecutor.\n", + " WASHINGTON — A top Justice Department official said on Thursday that the agency was bolstering its efforts to address cybercrime, as cryptocurrencies have increasingly become part of the global economy and cyberthreats become more and more common.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Lisa O. Monaco, the No. 2 official at the department, said in a virtual speech at the annual Munich cybersecurity conference that the agency had established a team at the F.B.I. dedicated to cryptocurrency; added a dozen federal prosecutors to a unit investigating and prosecuting criminal misuses of cryptocurrency; and tapped a director to lead it.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “We continue to confront cybercriminals who enjoy safe haven in authoritarian countries and who wreak havoc in both the digital and physical worlds,” Ms. Monaco said, adding that the changes were the result of a monthslong review scrutinizing a threat inextricably tied to hostile nations and criminal gangs.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The announcement by Ms. Monaco came a week after the Justice Department made its largest financial seizure ever, confiscating over $3.6 billion worth of Bitcoin stolen in a 2016 hacking.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The newly formed unit at the F.B.I., the Virtual Asset Exploitation Unit, is meant to provide expertise, equipment and training to help agents trace the flow of funds on the blockchain, the digital ledger that permanently stores records of cryptocurrency trades. It is expected to work closely with the prosecutors on the National Cryptocurrency Enforcement Team, established in the fall. That team will be led by Eun Young Choi, a longtime computer crimes prosecutor.\n", " Evidence\n", "\n", "\n", @@ -14446,7 +20892,17 @@ "\n", "\n", "\n", - " “Even in cyberspace, the Department of Justice is able to use a tried and true investigative technique, following the money,” Ms. Monaco said. “It’s what led us to Al Capone in the ’30s. It helped us destroy La Cosa Nostra in the ’60s. And it took down terrorist financing networks in the early 2000s. The currency might be virtual, but the message to companies is concrete.” Ms. Monaco said that there had been an “explosion” of cryptocurrency abuse and the use of ransomware, malicious code that prevents users from gaining access to their computers until they pay a ransom. The F.B.I. is investigating more than 100 ransomware variants, and investigators are scrutinizing dozens of ransomware groups estimated to have demanded billions of dollars in payment.\n", + " “Even in cyberspace, the Department of Justice is able to use a tried and true investigative technique, following the money,” Ms. Monaco said. “It’s what led us to Al Capone in the ’30s. It helped us destroy La Cosa Nostra in the ’60s. And it took down terrorist financing networks in the early 2000s. The currency might be virtual, but the message to companies is concrete.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Ms. Monaco said that there had been an “explosion” of cryptocurrency abuse and the use of ransomware, malicious code that prevents users from gaining access to their computers until they pay a ransom.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The F.B.I. is investigating more than 100 ransomware variants, and investigators are scrutinizing dozens of ransomware groups estimated to have demanded billions of dollars in payment.\n", " Evidence\n", "\n", "\n", @@ -14480,7 +20936,7 @@ { "data": { "text/html": [ - "

nytimes\\kamila-valieva-falls-fourth-figure-skating.txt

" + "

kamila-valieva-falls-fourth-figure-skating.txt

" ], "text/plain": [ "" @@ -14493,34 +20949,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-c7847bbe19b0b184\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-c7847bbe19b0b184\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-c7847bbe19b0b184\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-c7847bbe19b0b184\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "b54d2d45c1d3440588c003c6d003129d", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " BEIJING — Kamila Valieva, the Russian figure skating star at the center of a doping scandal, showed up at the Olympic rink on Thursday night facing a single, heavy expectation, especially heavy for a 15-year-old who has soared to the top of her sport in a quick four months, only to fall from it while the world was watching. Her job was to win, for Russia. Continuing the country’s streak of two consecutive Olympic gold medals in the women’s event was at stake.\n", + " BEIJING — Kamila Valieva, the Russian figure skating star at the center of a doping scandal, showed up at the Olympic rink on Thursday night facing a single, heavy expectation, especially heavy for a 15-year-old who has soared to the top of her sport in a quick four months, only to fall from it while the world was watching.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Her job was to win, for Russia. Continuing the country’s streak of two consecutive Olympic gold medals in the women’s event was at stake.\n", " Evidence\n", "\n", "\n", @@ -14661,7 +21114,12 @@ "\n", "\n", "\n", - " The Russians were expected to sweep the medals, with Valieva finishing first and living up to her reputation as one of the best skaters in history. But a Russian teammate, Anna Shcherbakova, won gold. Yet another Russian teenager, Alexandra Trusova, won the silver. Valieva, who just 11 days ago was deemed unbeatable because of her difficult jumps, textbook technique and prima ballerina’s artistry, was fourth. Shcherbakova, the reigning world champion, won the gold with a smooth and poignant performance that included two quadruple jumps, scoring 255.95 points. Trusova won silver with 251.73 points. Kaori Sakamoto of Japan took the bronze with 233.13 points, saying she was both surprised and ecstatic about winning the medal.\n", + " The Russians were expected to sweep the medals, with Valieva finishing first and living up to her reputation as one of the best skaters in history. But a Russian teammate, Anna Shcherbakova, won gold. Yet another Russian teenager, Alexandra Trusova, won the silver. Valieva, who just 11 days ago was deemed unbeatable because of her difficult jumps, textbook technique and prima ballerina’s artistry, was fourth.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Shcherbakova, the reigning world champion, won the gold with a smooth and poignant performance that included two quadruple jumps, scoring 255.95 points. Trusova won silver with 251.73 points. Kaori Sakamoto of Japan took the bronze with 233.13 points, saying she was both surprised and ecstatic about winning the medal.\n", " Evidence\n", "\n", "\n", @@ -14676,7 +21134,12 @@ "\n", "\n", "\n", - " “I was feeling a lot of pleasure because I happened to be in the right time and the right place and did the right things,” Shcherbakova said. But she quickly added, obliquely referring to Valieva’s situation, “On the other hand, I feel this emptiness inside.” Trusova, 17, was less thrilled about the finishing order. With five quadruple jumps, including three clean ones, she had climbed to second place after finishing fourth in the short program. She had been sure that her icy, rocker’s performance to the “Cruella” soundtrack was good enough to win.\n", + " “I was feeling a lot of pleasure because I happened to be in the right time and the right place and did the right things,” Shcherbakova said. But she quickly added, obliquely referring to Valieva’s situation, “On the other hand, I feel this emptiness inside.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Trusova, 17, was less thrilled about the finishing order. With five quadruple jumps, including three clean ones, she had climbed to second place after finishing fourth in the short program. She had been sure that her icy, rocker’s performance to the “Cruella” soundtrack was good enough to win.\n", " Evidence\n", "\n", "\n", @@ -14686,58 +21149,118 @@ "\n", "\n", "\n", - " “I hate it!” Trusova, who had been swept up in the week of controversy along with Valieva and her teammates, said while on camera near Valieva at the side of the rink. “I don’t want to do anything in figure skating ever in my life! Everyone has a gold medal, and I don’t!” Later, she told reporters, with her eyes rimmed with red from crying, “I am not happy with the result. There is no happiness.” She said she had been alone at the Olympics and had cried because she missed her mother and her dogs. With Valieva off the podium, the awards ceremony was held after all. If she had finished in the top three, Olympics officials had said that there would be no medals awarded until her doping case’s resolution, which could take months. The awarding of medals for the team event remains on hold. Powered by Valieva’s remarkable performance that included the first quadruple jump by a woman in the Olympics, the Russian team won gold and the Americans and the Japanese wait for silver and bronze. At the center of this chaos is Valieva’s positive test weeks before the Olympics for a banned drug called trimetazidine. The test was made public last week, and according to documents from an urgent hearing with arbitrators in Beijing, it was found that Valieva had two other drugs in her system. They were not banned substances, but antidoping officials say the combination of the three drugs seems to be used by athletes in an attempt to increase endurance. Hours after the competition had ended on Thursday, the panel released a report that said the arbitrators chose to allow Valieva to continue at the Olympics because they felt a suspension would risk “irreparable harm” to her. “None of this is the fault of the athlete, and it has put her in a remarkably difficult position where she faces a lifetime of work being taken from her within days of the biggest event of her short career,” the panel wrote in a 41-page judgment. Valieva’s entourage, including her coaches and team officials, are under investigation by doping officials. That includes Tutberidze, who ended the day with another success for her program run out of a rink in Moscow. With Shcherbakova and Trusova finishing one-two, it is the second straight Olympics that Tutberidze’s skaters have won the gold and silver.\n", + " “I hate it!” Trusova, who had been swept up in the week of controversy along with Valieva and her teammates, said while on camera near Valieva at the side of the rink. “I don’t want to do anything in figure skating ever in my life! Everyone has a gold medal, and I don’t!”\n", " Evidence\n", "\n", "\n", - "\n", - " But in Beijing, Valieva was expected to be her star student, and the Games did start out that way.\n", - " Rebuttal\n", + "\n", + " Later, she told reporters, with her eyes rimmed with red from crying, “I am not happy with the result. There is no happiness.” She said she had been alone at the Olympics and had cried because she missed her mother and her dogs.\n", + " Evidence\n", "\n", "\n", "\n", - " In the team event, Valieva dazzled with her exquisite artistry and jumps so good that she could teach a master class in body positioning and speed. But on Thursday, when Russia expected her to win convincingly, Valieva, often so elegant, made mistakes. Again and again and again. Her cold determination melted into despair. The crowd gasped in unison. Although Valieva landed her first jump, a quad salchow, she fell on two other jumps, looking disoriented as she struggled to right herself. In a perplexing performance that shocked even herself, she had errors on nearly every single jump, including her normally high-soaring quadruple jumps that she usually lands with barely a sound. The audience felt so sorry for her that it started encouraging her with cheers. Her coaches, looking on from the side of the rink, did not join in. Tutberidze shook her head and, at one point, stared at the ceiling as her prodigy flailed on the ice. After finishing their programs, Shcherbakova and Trusova both gave jubilant fist pumps. At the end of hers, Valieva slapped the air in frustration. For a prolonged moment, she skated around the ice with a look of disbelief as if trying to figure out what had just happened. She had come into the Olympics as the favorite to win — by far — and she had failed. Some fans began chanting, “Ka-mi-la!” Once the final standings were decided, Shcherbakova celebrated in her sparkly burgundy dress and posed for photos with the Russian Olympic Committee flag behind her (Russia’s national flag and anthem are not allowed at the Games because of a sweeping doping scandal).\n", + " With Valieva off the podium, the awards ceremony was held after all. If she had finished in the top three, Olympics officials had said that there would be no medals awarded until her doping case’s resolution, which could take months.\n", " Evidence\n", "\n", "\n", - "\n", - " Valieva was nowhere to be found. It has been a rough week and a half.\n", - " Claim\n", + "\n", + " The awarding of medals for the team event remains on hold. Powered by Valieva’s remarkable performance that included the first quadruple jump by a woman in the Olympics, the Russian team won gold and the Americans and the Japanese wait for silver and bronze.\n", + " Evidence\n", "\n", "\n", "\n", - " In an interview after being cleared to compete in the individual event, Valieva told Russia’s Channel One, the state-run TV station, that she had not slept at all on Sunday night after spending seven hours in a hearing with arbitrators who were considering her participation. “I’m happy but emotionally I’m tired, so this is tears of happiness, I think, mixed with a bit of sorrow,” she told Channel One. “But I’m surely happy to be at the Olympic Games and to try to represent our country, and I hope I will fully focus and demonstrate my results.”\n", + " At the center of this chaos is Valieva’s positive test weeks before the Olympics for a banned drug called trimetazidine. The test was made public last week, and according to documents from an urgent hearing with arbitrators in Beijing, it was found that Valieva had two other drugs in her system. They were not banned substances, but antidoping officials say the combination of the three drugs seems to be used by athletes in an attempt to increase endurance.\n", " Evidence\n", "\n", "\n", - "\n", - " With her doping case looming, focusing had proved impossible. It took years for her to get to this point, on the cusp of her life’s goal.\n", - " Claim\n", + "\n", + " Hours after the competition had ended on Thursday, the panel released a report that said the arbitrators chose to allow Valieva to continue at the Olympics because they felt a suspension would risk “irreparable harm” to her.\n", + " Evidence\n", "\n", "\n", "\n", - " Winning an Olympic gold medal had been her aim since she was just a young girl growing up in Kazan, a city about 450 miles east of Moscow. In those early years of skating, she rose quickly in the sport, pegged as a natural.\n", + " “None of this is the fault of the athlete, and it has put her in a remarkably difficult position where she faces a lifetime of work being taken from her within days of the biggest event of her short career,” the panel wrote in a 41-page judgment.\n", " Evidence\n", "\n", "\n", - "\n", - " Years ago, a tiny Valieva dressed in a tiny white costume straight out of “Swan Lake” glided across the rink doing her tiny jumps and moving her body with a dancer’s soft arm positions and elastic legs. Even at that age, she moved so gracefully to the music that the notes seemed programmed into her DNA.\n", - " Lead\n", + "\n", + " Valieva’s entourage, including her coaches and team officials, are under investigation by doping officials. That includes Tutberidze, who ended the day with another success for her program run out of a rink in Moscow. With Shcherbakova and Trusova finishing one-two, it is the second straight Olympics that Tutberidze’s skaters have won the gold and silver.\n", + " Evidence\n", "\n", "\n", "\n", - " But on Thursday, she was a different Kamila Valieva, one whose name will forever be synonymous with one of the biggest doping controversies in Olympic history — the exact opposite of a little girl’s dream.\n", + " But in Beijing, Valieva was expected to be her star student, and the Games did start out that way.\n", " Rebuttal\n", "\n", "\n", "\n", - " Clutching her trusty worn stuffed toy rabbit in the area where skaters wait for their scores, the reality of her finish continued to sink in. She sat, and sat some more, frozen, as her coaches flanked her.\n", + " In the team event, Valieva dazzled with her exquisite artistry and jumps so good that she could teach a master class in body positioning and speed. But on Thursday, when Russia expected her to win convincingly, Valieva, often so elegant, made mistakes. Again and again and again. Her cold determination melted into despair. The crowd gasped in unison.\n", " Evidence\n", "\n", "\n", - "\n", - " After several minutes, she rose and disappeared behind a curtain to an area beneath the stands, with one coach — not Tutberidze — draping an arm over her shoulder. With her head down, Valieva walked past reporters waiting to speak with her.\n", - " Lead\n", + "\n", + " Although Valieva landed her first jump, a quad salchow, she fell on two other jumps, looking disoriented as she struggled to right herself. In a perplexing performance that shocked even herself, she had errors on nearly every single jump, including her normally high-soaring quadruple jumps that she usually lands with barely a sound.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The audience felt so sorry for her that it started encouraging her with cheers. Her coaches, looking on from the side of the rink, did not join in. Tutberidze shook her head and, at one point, stared at the ceiling as her prodigy flailed on the ice.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " After finishing their programs, Shcherbakova and Trusova both gave jubilant fist pumps. At the end of hers, Valieva slapped the air in frustration. For a prolonged moment, she skated around the ice with a look of disbelief as if trying to figure out what had just happened. She had come into the Olympics as the favorite to win — by far — and she had failed. Some fans began chanting, “Ka-mi-la!”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Once the final standings were decided, Shcherbakova celebrated in her sparkly burgundy dress and posed for photos with the Russian Olympic Committee flag behind her (Russia’s national flag and anthem are not allowed at the Games because of a sweeping doping scandal).\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Valieva was nowhere to be found. It has been a rough week and a half.\n", + " Claim\n", + "\n", + "\n", + "\n", + " In an interview after being cleared to compete in the individual event, Valieva told Russia’s Channel One, the state-run TV station, that she had not slept at all on Sunday night after spending seven hours in a hearing with arbitrators who were considering her participation.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “I’m happy but emotionally I’m tired, so this is tears of happiness, I think, mixed with a bit of sorrow,” she told Channel One. “But I’m surely happy to be at the Olympic Games and to try to represent our country, and I hope I will fully focus and demonstrate my results.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " With her doping case looming, focusing had proved impossible. It took years for her to get to this point, on the cusp of her life’s goal.\n", + " Claim\n", + "\n", + "\n", + "\n", + " Winning an Olympic gold medal had been her aim since she was just a young girl growing up in Kazan, a city about 450 miles east of Moscow. In those early years of skating, she rose quickly in the sport, pegged as a natural.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Years ago, a tiny Valieva dressed in a tiny white costume straight out of “Swan Lake” glided across the rink doing her tiny jumps and moving her body with a dancer’s soft arm positions and elastic legs. Even at that age, she moved so gracefully to the music that the notes seemed programmed into her DNA.\n", + " Lead\n", + "\n", + "\n", + "\n", + " But on Thursday, she was a different Kamila Valieva, one whose name will forever be synonymous with one of the biggest doping controversies in Olympic history — the exact opposite of a little girl’s dream.\n", + " Rebuttal\n", + "\n", + "\n", + "\n", + " Clutching her trusty worn stuffed toy rabbit in the area where skaters wait for their scores, the reality of her finish continued to sink in. She sat, and sat some more, frozen, as her coaches flanked her.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " After several minutes, she rose and disappeared behind a curtain to an area beneath the stands, with one coach — not Tutberidze — draping an arm over her shoulder. With her head down, Valieva walked past reporters waiting to speak with her.\n", + " Lead\n", "\n", "\n", "\n", @@ -14775,7 +21298,7 @@ { "data": { "text/html": [ - "

nytimes\\kanye-west-jeen-yuhs-documentary.txt

" + "

kanye-west-jeen-yuhs-documentary.txt

" ], "text/plain": [ "" @@ -14788,34 +21311,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-8de04c90a164578c\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-8de04c90a164578c\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-8de04c90a164578c\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-8de04c90a164578c\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "e10be28d164b4178921417221be02378", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " No one could quite understand why the young producer was being followed by a cameraman. Almost everywhere Kanye West went beginning in the early 2000s — before “Through the Wire,” before “The College Dropout,” before anything, really — he was trailed by Clarence Simmons, known as Coodie, a comedian and public-access TV host from Chicago who had decided to document West’s attempts to become a successful musician. In “Jeen-yuhs: A Kanye Trilogy,” the three-part Netflix documentary that draws heavily on that footage, the camera serves two functions: It captures West at a vulnerable moment in his nascent career, when the future was anything but guaranteed. And it is also a kind of marker of success on its own. The camera’s presence forces the people West encounters to treat him just a tad more seriously, or at least to wonder if they should. In almost every encounter captured, there is a slight hiccup at the beginning, in which the other person wonders, what exactly are we doing here? West, one of the defining figures of the last 20 years, has been a consistent innovator in music and style. But he has also long had a preternatural grasp of the mechanisms of celebrity, how success is only truly impactful if it is imprinted onto others. West believed in himself, but wouldn’t stop until he’d convinced those around him, too. “Jeen-yuhs” is something like the demo tape of that phenomenon. It is both fascinating and obvious, eerie in the way that it foretells who West eventually would become by showing who he always has been. West, as we understand him now, is in early bloom during the first two of the docuseries’s three parts. Driving down lower Broadway in Manhattan, he tells a journalist sitting in the back seat how he feels when others tell him he’s thriving: “I might be living your American dream but I’m nowhere near where my dream is, dog. I got aspirations.” At one point, he says, “I’m trying to get to the point where I can drop the last name off my name.” (Indeed, he is now known solely as Ye.) Granting Simmons access was a combination of marketing savvy and also deep ego — “A little narcissistic or whatever,” West says. Nowadays, most pop superstars (and nowhere-near stars) are documented constantly for social media, but West understood the value of that labor early. The result is a prehistory of one of the most transfixing and agonizing celebrities of the 21st century. The footage could explain to aliens what creativity on Earth looks like. We see West recovering from his 2002 car crash, going through several dental procedures, and then getting back to work and emerging with “Through the Wire,” his debut single, which would finally catapult him toward the stratosphere. The camera captures a vivid, undimmable mind at constant, stubborn work. He asks to save the wires that held his jaw together, still bloody, for his mother, Donda. She appears throughout the film, often as a corrective force; even as West becomes more famous, he is never something other than his mother’s son. She doesn’t flinch from the lens, perhaps because the camera’s eye and that of a loving, knowing parent aren’t all that different. West also encourages the new people he meets to live out their relationship to him on camera. When he plays Pharrell Williams “Through the Wire,” Williams becomes a willing actor, walking out of the room and down the hall, overcome with thrill. After a recording session with Jay-Z in which West talks his way onto a song, Simmons prompts Jay-Z for a quote, asking him to literalize his co-sign of West for the camera. Not everyone plays along with West’s schemes. It’s odd to watch Scarface, one of rap music’s great philosophers, effectively pass on “Jesus Walks,” maybe the most meaningful and popular spiritual hip-hop song of all time. He also chides West for leaving his orthodontic retainers out on the countertop, a light spank from elder to child. (The retainers appear on several occasions, a symbolic embodiment of West’s still unformed persona.) There is, perhaps surprisingly, ample footage like this — this was an era in which West was almost always the less successful person in any interaction. Note the hangdog way in which he skulks out of the Roc-A-Fella Records office after going door to door and playing music for various executives, who seem to regard him as a lovable nuisance. Given how West moves through the world now, it’s disorienting to see him, time and again, as a supplicant. This is footage that most hagiographers would omit, but Simmons and his directing partner Chike Ozah — professionally, they’re known as Coodie & Chike — understand their subject differently. Simmons was inspired, he says in the film, by the Chicago basketball documentary “Hoop Dreams,” a film that cuts its melancholy with bolts of hope. And much about West in the early 2000s, before Roc-A-Fella Records relented and signed him as a recording artist (rather than just a producer), is lightly tragic. When West is at an industry event with far more famous people, in search of a little validation, Simmons films him from a distance, emphasizing his relative smallness. But even this footage doesn’t feel directed so much as captured, tiny moments that in the rear view appear huge. Cameras are not neutral — they change their subject. But while everyone lies for the camera, some people live in the camera. Throughout the film, West often appears most mindful of how history might regard him, driven by a sense that in a room full of people, the most important connection he could make was with Simmons’s lens. (See the scene in which he and Mos Def rap “Two Words,” and West appears to be staring through the camera’s aperture somewhere into the future.) Simmons offers largely space-filling voice-over throughout the film, not an unreliable narrator so much as an uncertain one. There is either far too much or not nearly enough of him, more likely the former: The segments where he links West’s story to his own feel particularly ill-placed, a distraction that doesn’t offer context on the main subject. And some narrative choices are contrived: Too much time is given over to West’s desire to be featured in an MTV News segment spotlighting new artists. (It so happens that MTV was where Simmons and Ozah met.) The success that Simmons had hoped to capture ended up being his termination notice — once West’s career was finally operating under its own steam, he left Simmons (and his footage) behind. That alone would have made for a compelling film. But the third segment, which is far more scattershot, consists largely of scraps that Simmons accrues over the next couple of decades, an era in which West becomes something unfamiliar to him: a world-building superstar. This episode is less narratively satisfying and coherent than the first two, but Simmons’s indiscriminate eye and his pre-existing comfort with West end up as assets. Where in the early 2000s, Simmons had an aspirant as his subject, now he has someone who exists between superhero and autocrat, a figure who isn’t performing simply for one camera but for a world of cameras and observers. There is a grim scene in which West is speaking with potential real estate partners, a gaggle of older white men, and tells them, “I took bipolar medication last night to have a normal conversation and turn alien to English.” He likens his treatment by the public to being drawn and quartered. Simmons lingers for a while — this is who his subject has become, and it is as important to see as any of the clips from when he was simply an up-and-comer. But real as it is, this isn’t the West that Simmons knows, or can stomach. There’s something itchy in the camerawork, and eventually Simmons does something that doesn’t seem to come naturally: He turns the camera off.\n", + " No one could quite understand why the young producer was being followed by a cameraman. Almost everywhere Kanye West went beginning in the early 2000s — before “Through the Wire,” before “The College Dropout,” before anything, really — he was trailed by Clarence Simmons, known as Coodie, a comedian and public-access TV host from Chicago who had decided to document West’s attempts to become a successful musician.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In “Jeen-yuhs: A Kanye Trilogy,” the three-part Netflix documentary that draws heavily on that footage, the camera serves two functions: It captures West at a vulnerable moment in his nascent career, when the future was anything but guaranteed. And it is also a kind of marker of success on its own. The camera’s presence forces the people West encounters to treat him just a tad more seriously, or at least to wonder if they should. In almost every encounter captured, there is a slight hiccup at the beginning, in which the other person wonders, what exactly are we doing here?\n", + " Evidence\n", + "\n", + "\n", + "\n", + " West, one of the defining figures of the last 20 years, has been a consistent innovator in music and style. But he has also long had a preternatural grasp of the mechanisms of celebrity, how success is only truly impactful if it is imprinted onto others. West believed in himself, but wouldn’t stop until he’d convinced those around him, too.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Jeen-yuhs” is something like the demo tape of that phenomenon. It is both fascinating and obvious, eerie in the way that it foretells who West eventually would become by showing who he always has been.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " West, as we understand him now, is in early bloom during the first two of the docuseries’s three parts. Driving down lower Broadway in Manhattan, he tells a journalist sitting in the back seat how he feels when others tell him he’s thriving: “I might be living your American dream but I’m nowhere near where my dream is, dog. I got aspirations.” At one point, he says, “I’m trying to get to the point where I can drop the last name off my name.” (Indeed, he is now known solely as Ye.)\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Granting Simmons access was a combination of marketing savvy and also deep ego — “A little narcissistic or whatever,” West says. Nowadays, most pop superstars (and nowhere-near stars) are documented constantly for social media, but West understood the value of that labor early.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The result is a prehistory of one of the most transfixing and agonizing celebrities of the 21st century. The footage could explain to aliens what creativity on Earth looks like. We see West recovering from his 2002 car crash, going through several dental procedures, and then getting back to work and emerging with “Through the Wire,” his debut single, which would finally catapult him toward the stratosphere. The camera captures a vivid, undimmable mind at constant, stubborn work.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " He asks to save the wires that held his jaw together, still bloody, for his mother, Donda. She appears throughout the film, often as a corrective force; even as West becomes more famous, he is never something other than his mother’s son. She doesn’t flinch from the lens, perhaps because the camera’s eye and that of a loving, knowing parent aren’t all that different.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " West also encourages the new people he meets to live out their relationship to him on camera. When he plays Pharrell Williams “Through the Wire,” Williams becomes a willing actor, walking out of the room and down the hall, overcome with thrill. After a recording session with Jay-Z in which West talks his way onto a song, Simmons prompts Jay-Z for a quote, asking him to literalize his co-sign of West for the camera.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Not everyone plays along with West’s schemes. It’s odd to watch Scarface, one of rap music’s great philosophers, effectively pass on “Jesus Walks,” maybe the most meaningful and popular spiritual hip-hop song of all time. He also chides West for leaving his orthodontic retainers out on the countertop, a light spank from elder to child. (The retainers appear on several occasions, a symbolic embodiment of West’s still unformed persona.)\n", + " Evidence\n", + "\n", + "\n", + "\n", + " There is, perhaps surprisingly, ample footage like this — this was an era in which West was almost always the less successful person in any interaction. Note the hangdog way in which he skulks out of the Roc-A-Fella Records office after going door to door and playing music for various executives, who seem to regard him as a lovable nuisance. Given how West moves through the world now, it’s disorienting to see him, time and again, as a supplicant.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " This is footage that most hagiographers would omit, but Simmons and his directing partner Chike Ozah — professionally, they’re known as Coodie & Chike — understand their subject differently. Simmons was inspired, he says in the film, by the Chicago basketball documentary “Hoop Dreams,” a film that cuts its melancholy with bolts of hope.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " And much about West in the early 2000s, before Roc-A-Fella Records relented and signed him as a recording artist (rather than just a producer), is lightly tragic. When West is at an industry event with far more famous people, in search of a little validation, Simmons films him from a distance, emphasizing his relative smallness. But even this footage doesn’t feel directed so much as captured, tiny moments that in the rear view appear huge.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Cameras are not neutral — they change their subject. But while everyone lies for the camera, some people live in the camera. Throughout the film, West often appears most mindful of how history might regard him, driven by a sense that in a room full of people, the most important connection he could make was with Simmons’s lens. (See the scene in which he and Mos Def rap “Two Words,” and West appears to be staring through the camera’s aperture somewhere into the future.)\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Simmons offers largely space-filling voice-over throughout the film, not an unreliable narrator so much as an uncertain one. There is either far too much or not nearly enough of him, more likely the former: The segments where he links West’s story to his own feel particularly ill-placed, a distraction that doesn’t offer context on the main subject. And some narrative choices are contrived: Too much time is given over to West’s desire to be featured in an MTV News segment spotlighting new artists. (It so happens that MTV was where Simmons and Ozah met.)\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The success that Simmons had hoped to capture ended up being his termination notice — once West’s career was finally operating under its own steam, he left Simmons (and his footage) behind. That alone would have made for a compelling film. But the third segment, which is far more scattershot, consists largely of scraps that Simmons accrues over the next couple of decades, an era in which West becomes something unfamiliar to him: a world-building superstar.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " This episode is less narratively satisfying and coherent than the first two, but Simmons’s indiscriminate eye and his pre-existing comfort with West end up as assets. Where in the early 2000s, Simmons had an aspirant as his subject, now he has someone who exists between superhero and autocrat, a figure who isn’t performing simply for one camera but for a world of cameras and observers.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " There is a grim scene in which West is speaking with potential real estate partners, a gaggle of older white men, and tells them, “I took bipolar medication last night to have a normal conversation and turn alien to English.” He likens his treatment by the public to being drawn and quartered.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Simmons lingers for a while — this is who his subject has become, and it is as important to see as any of the clips from when he was simply an up-and-comer. But real as it is, this isn’t the West that Simmons knows, or can stomach. There’s something itchy in the camerawork, and eventually Simmons does something that doesn’t seem to come naturally: He turns the camera off.\n", " Evidence\n", "\n", "
" @@ -14935,7 +21514,7 @@ { "data": { "text/html": [ - "

nytimes\\kevin-mccarthy-harriet-hageman-liz-cheney.txt

" + "

kevin-mccarthy-harriet-hageman-liz-cheney.txt

" ], "text/plain": [ "" @@ -14948,34 +21527,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-3dea1923c836dca9\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-3dea1923c836dca9\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-3dea1923c836dca9\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-3dea1923c836dca9\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "fadf01d461084213bfd4259557667872", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " WASHINGTON — Representative Kevin McCarthy, the House Republican leader, on Thursday endorsed Representative Liz Cheney’s G.O.P. rival for Wyoming’s sole congressional seat, taking the unusual step of intervening in a party primary to oust a onetime ally who has become the prime political target of former President Donald J. Trump. Mr. McCarthy said he was backing Harriet Hageman, a pro-Trump candidate who has repeated the former president’s false claims that the 2020 presidential election was stolen, in a race that has become a prominent test for the Republican Party. “I look forward to welcoming Harriet to a Republican majority next Congress, where together, we will hold the Biden administration accountable and deliver much-needed solutions for the American people,” Mr. McCarthy said in a statement. “The most successful representatives in Congress focus on the needs of their constituents.” It was an extraordinary move for a leader who is aiming to become speaker of the House if his party wins control of Congress in November’s midterm congressional elections, and has worked to toe a fine line between his far right flank and more mainstream conservatives. Congressional leaders rarely involve themselves in primary races against sitting members, but Mr. McCarthy’s move was the latest escalation of the Republican Party effort to exile Ms. Cheney for speaking out forcefully against Mr. Trump and participating in a House investigation of the Jan. 6 attack on the Capitol. After initially defending her, Mr. McCarthy last year led a push to strip Ms. Cheney of her No. 3 position in House Republican leadership. In a statement, Jeremy Adler, a spokesman for Ms. Cheney, provided the verbal equivalent of an eyeroll, suggesting that Mr. McCarthy’s statement of support for Ms. Hageman was a reflection of her weakness.\n", + " WASHINGTON — Representative Kevin McCarthy, the House Republican leader, on Thursday endorsed Representative Liz Cheney’s G.O.P. rival for Wyoming’s sole congressional seat, taking the unusual step of intervening in a party primary to oust a onetime ally who has become the prime political target of former President Donald J. Trump.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mr. McCarthy said he was backing Harriet Hageman, a pro-Trump candidate who has repeated the former president’s false claims that the 2020 presidential election was stolen, in a race that has become a prominent test for the Republican Party.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “I look forward to welcoming Harriet to a Republican majority next Congress, where together, we will hold the Biden administration accountable and deliver much-needed solutions for the American people,” Mr. McCarthy said in a statement. “The most successful representatives in Congress focus on the needs of their constituents.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " It was an extraordinary move for a leader who is aiming to become speaker of the House if his party wins control of Congress in November’s midterm congressional elections, and has worked to toe a fine line between his far right flank and more mainstream conservatives.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Congressional leaders rarely involve themselves in primary races against sitting members, but Mr. McCarthy’s move was the latest escalation of the Republican Party effort to exile Ms. Cheney for speaking out forcefully against Mr. Trump and participating in a House investigation of the Jan. 6 attack on the Capitol. After initially defending her, Mr. McCarthy last year led a push to strip Ms. Cheney of her No. 3 position in House Republican leadership.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In a statement, Jeremy Adler, a spokesman for Ms. Cheney, provided the verbal equivalent of an eyeroll, suggesting that Mr. McCarthy’s statement of support for Ms. Hageman was a reflection of her weakness.\n", " Evidence\n", "\n", "\n", @@ -15092,7 +21665,12 @@ "\n", "\n", "\n", - " Ms. Hageman has already been endorsed by Mr. Trump and Senator Rand Paul, Republican of Kentucky. But Ms. Cheney, who has represented her state since 2017, still vastly out-raised her challenger despite being all but exiled by her party. Ms. Cheney brought in $2 million during the last quarter, entering 2022 with nearly $5 million in cash on hand. Ms. Hageman raised $443,000 last quarter and has about $380,000 cash on hand, despite the vocal backing of Mr. Trump and his family members.\n", + " Ms. Hageman has already been endorsed by Mr. Trump and Senator Rand Paul, Republican of Kentucky. But Ms. Cheney, who has represented her state since 2017, still vastly out-raised her challenger despite being all but exiled by her party.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Ms. Cheney brought in $2 million during the last quarter, entering 2022 with nearly $5 million in cash on hand. Ms. Hageman raised $443,000 last quarter and has about $380,000 cash on hand, despite the vocal backing of Mr. Trump and his family members.\n", " Evidence\n", "\n", "\n", @@ -15102,7 +21680,12 @@ "\n", "\n", "\n", - " Mr. McCarthy, who maintains a cordial working relationship with the former president and has tried to help shape his endorsements of House candidates ahead of the midterm elections, cannot risk alienating him if he wants to maintain the support of his diverse caucus, where fealty to Mr. Trump is critical to many members. Mr. Trump on Thursday endorsed an effort to change Wyoming’s election laws to forbid voters from changing their party affiliation to vote in primaries after the filing deadline. The proposal is an effort to block Democrats from switching parties to vote for Ms. Cheney in the primary.\n", + " Mr. McCarthy, who maintains a cordial working relationship with the former president and has tried to help shape his endorsements of House candidates ahead of the midterm elections, cannot risk alienating him if he wants to maintain the support of his diverse caucus, where fealty to Mr. Trump is critical to many members.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mr. Trump on Thursday endorsed an effort to change Wyoming’s election laws to forbid voters from changing their party affiliation to vote in primaries after the filing deadline. The proposal is an effort to block Democrats from switching parties to vote for Ms. Cheney in the primary.\n", " Evidence\n", "\n", "
" @@ -15126,7 +21709,7 @@ { "data": { "text/html": [ - "

nytimes\\kim-potter-sentence-manslaughter.txt

" + "

kim-potter-sentence-manslaughter.txt

" ], "text/plain": [ "" @@ -15139,34 +21722,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-9d1540392c18cd40\n" + "Using custom data configuration default-9d1540392c18cd40\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-9d1540392c18cd40\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-9d1540392c18cd40\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" - ] - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "e124cc6983174fa894a1fcb674dc1c0d", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " The former police officer who fatally shot Daunte Wright during a traffic stop was sentenced to two years in prison on Friday, far less than the standard of about seven years for manslaughter, after a judge said leniency was warranted because the officer had meant to fire her Taser and not her gun. Jurors convicted the former officer, Kimberly Potter, on two counts of manslaughter in December. They found that she had acted recklessly when she fired a bullet into Mr. Wright’s chest after warning that she was going to stun him and yelling: “Taser! Taser! Taser!” Ms. Potter, a 49-year-old white woman who served on the police force in Brooklyn Center, Minn., resigned two days after the shooting in April, during a time of chaotic protests over the killing of Mr. Wright, a 20-year-old Black man. She has been imprisoned since the guilty verdict on Dec. 23. Judge Regina M. Chu sentenced Ms. Potter on only the most serious count, first-degree manslaughter, in accordance with Minnesota law. The state’s sentencing guidelines list the felony count as having a presumptive punishment of a little more than seven years in prison, though the maximum penalty is 15 years. Judge Chu said the case was far different from most manslaughter cases, as well as from other high-profile police killings. “This is not a cop found guilty of murder for using his knee to pin down a person for nine and a half minutes as he gasped for air,” the judge said, referring to Derek Chauvin, the Minneapolis officer who was convicted of murdering George Floyd. She added: “This is a cop who made a tragic mistake. She drew her firearm, thinking it was a Taser, and ended up killing a young man.” Judge Chu handed down the sentence shortly after Ms. Potter sobbed while apologizing to Mr. Wright’s family in court on Friday. “I am so sorry that I brought the death of your son,” Ms. Potter said. Speaking directly to Mr. Wright’s mother, she said: “Katie, I understand a mother’s love and I am sorry I broke your heart. My heart is broken for all of you.” Mr. Wright’s relatives said they were outraged by the leniency of the two-year sentence Ms. Potter received. Daunte Wright’s father, Arbuey Wright, fought back tears as he described feeling cheated and hurt. He said the judge had seemed to care more about Ms. Potter than about Mr. Wright and his family. “They were so tied up into her feelings and what’s going on with her that they forgot about my son being killed,” he said. “We actually thought we were going to get a little justice.” Ben Crump, a lawyer representing Mr. Wright’s family, said many people have been sentenced to longer terms in prison for selling marijuana. One of Ms. Potter’s lawyers, Paul Engh, said he was grateful that Ms. Potter was “shown mercy.” It is rare that police officers are convicted and sentenced to prison for killing people. And prosecutions are unusual in the few situations in which officers have claimed they thought they were firing their Tasers. In 15 previous cases over the past two decades in which officers said they confused their weapons, three were convicted of a crime, including two officers who fired fatal shots. Johannes Mehserle, a transit officer who shot and killed Oscar Grant III at a train station in Oakland, Calif., in 2009, was sentenced to two years in prison. Robert Bates, a volunteer sheriff’s deputy in Tulsa, Okla., was sentenced to four years in prison after he shot and killed a man while meaning to fire his Taser. Prosecutors in the office of Keith Ellison, the Minnesota attorney general, had suggested that they would ask Judge Chu to sentence Ms. Potter to a prison term beyond the standard sentencing range of 6.2 to 8.6 years, but in a new court filing this week they instead said that a sentence within that range would be appropriate. Ms. Potter’s lawyers asked the judge to sentence Ms. Potter to probation, arguing that she would be a “walking target” in prison and that the prosecution’s sentencing request was “a political statement.” Mr. Engh said at the sentencing hearing on Friday that Ms. Potter had suffered a “decline in mental and physical health” in the nearly two months that she has been imprisoned in solitary confinement because of fears that she would be attacked. Mr. Wright’s parents and siblings had asked Judge Chu to sentence Ms. Potter to the maximum possible prison term. “Daunte meant the world to me,” Arbuey Wright said in court before the sentence. “He was handsome, he was my son, he was my prince. Daunte was my reason. He was my reason to do better.” Chyna Whitaker, the mother of Daunte Wright’s 2-year-old son, Daunte Jr., said she had become a single mother “not by choice, but by force,” and that Ms. Potter had taken Daunte Jr.’s “best friend away from him.” It is quite likely that Ms. Potter will be released from prison after about 14 months, in April 2023. Under Minnesota law, prisoners are generally freed on a supervised release term after they serve two-thirds of their sentence, and Ms. Potter will be credited for the 58 days she has spent in custody since she was convicted. Prosecutors in Ms. Potter’s case conceded that the shooting on April 11 was a mistake, and in the moments after she fired, body camera videos showed her shouting that she had grabbed the wrong weapon and falling to the ground in tears. Mr. Wright had been driving with a friend to a carwash in a Minneapolis suburb when Officer Anthony Luckey, who was being trained by Ms. Potter, noticed that Mr. Wright had used the wrong turn signal. Officer Luckey followed Mr. Wright’s white Buick and noticed that the car had an air freshener dangling from the rearview mirror, which is against the law in many states, and that his license plate had an expired registration sticker. Officers ran Mr. Wright’s name through a police database and determined that a judge had recently issued a warrant for his arrest because he had missed a court date on charges that he had illegally possessed a gun and had run away from police officers. He stepped out of the car at Officer Luckey’s request, but when the officer went to handcuff him, Mr. Wright twisted away from his grip and got back into the driver’s seat. As Officer Luckey struggled with Mr. Wright, trying to keep him from driving away, Ms. Potter shouted “I’ll Tase you!” while drawing her department-issued Glock instead. Moments later, she fatally shot Mr. Wright, whose car traveled shortly down the street before crashing into an oncoming car. Daunte Demetrius Wright had played basketball in high school and later worked at Taco Bell and a shoe store with his father. His mother testified at Ms. Potter’s trial that Mr. Wright had recently enrolled in a vocational school and was considering becoming a carpenter.\n", + " The former police officer who fatally shot Daunte Wright during a traffic stop was sentenced to two years in prison on Friday, far less than the standard of about seven years for manslaughter, after a judge said leniency was warranted because the officer had meant to fire her Taser and not her gun.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Jurors convicted the former officer, Kimberly Potter, on two counts of manslaughter in December. They found that she had acted recklessly when she fired a bullet into Mr. Wright’s chest after warning that she was going to stun him and yelling: “Taser! Taser! Taser!”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Ms. Potter, a 49-year-old white woman who served on the police force in Brooklyn Center, Minn., resigned two days after the shooting in April, during a time of chaotic protests over the killing of Mr. Wright, a 20-year-old Black man. She has been imprisoned since the guilty verdict on Dec. 23.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Judge Regina M. Chu sentenced Ms. Potter on only the most serious count, first-degree manslaughter, in accordance with Minnesota law. The state’s sentencing guidelines list the felony count as having a presumptive punishment of a little more than seven years in prison, though the maximum penalty is 15 years. Judge Chu said the case was far different from most manslaughter cases, as well as from other high-profile police killings.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “This is not a cop found guilty of murder for using his knee to pin down a person for nine and a half minutes as he gasped for air,” the judge said, referring to Derek Chauvin, the Minneapolis officer who was convicted of murdering George Floyd. She added: “This is a cop who made a tragic mistake. She drew her firearm, thinking it was a Taser, and ended up killing a young man.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Judge Chu handed down the sentence shortly after Ms. Potter sobbed while apologizing to Mr. Wright’s family in court on Friday.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “I am so sorry that I brought the death of your son,” Ms. Potter said. Speaking directly to Mr. Wright’s mother, she said: “Katie, I understand a mother’s love and I am sorry I broke your heart. My heart is broken for all of you.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mr. Wright’s relatives said they were outraged by the leniency of the two-year sentence Ms. Potter received.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Daunte Wright’s father, Arbuey Wright, fought back tears as he described feeling cheated and hurt. He said the judge had seemed to care more about Ms. Potter than about Mr. Wright and his family.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “They were so tied up into her feelings and what’s going on with her that they forgot about my son being killed,” he said. “We actually thought we were going to get a little justice.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Ben Crump, a lawyer representing Mr. Wright’s family, said many people have been sentenced to longer terms in prison for selling marijuana.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " One of Ms. Potter’s lawyers, Paul Engh, said he was grateful that Ms. Potter was “shown mercy.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " It is rare that police officers are convicted and sentenced to prison for killing people. And prosecutions are unusual in the few situations in which officers have claimed they thought they were firing their Tasers.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In 15 previous cases over the past two decades in which officers said they confused their weapons, three were convicted of a crime, including two officers who fired fatal shots. Johannes Mehserle, a transit officer who shot and killed Oscar Grant III at a train station in Oakland, Calif., in 2009, was sentenced to two years in prison. Robert Bates, a volunteer sheriff’s deputy in Tulsa, Okla., was sentenced to four years in prison after he shot and killed a man while meaning to fire his Taser.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Prosecutors in the office of Keith Ellison, the Minnesota attorney general, had suggested that they would ask Judge Chu to sentence Ms. Potter to a prison term beyond the standard sentencing range of 6.2 to 8.6 years, but in a new court filing this week they instead said that a sentence within that range would be appropriate.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Ms. Potter’s lawyers asked the judge to sentence Ms. Potter to probation, arguing that she would be a “walking target” in prison and that the prosecution’s sentencing request was “a political statement.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mr. Engh said at the sentencing hearing on Friday that Ms. Potter had suffered a “decline in mental and physical health” in the nearly two months that she has been imprisoned in solitary confinement because of fears that she would be attacked.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mr. Wright’s parents and siblings had asked Judge Chu to sentence Ms. Potter to the maximum possible prison term.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Daunte meant the world to me,” Arbuey Wright said in court before the sentence. “He was handsome, he was my son, he was my prince. Daunte was my reason. He was my reason to do better.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Chyna Whitaker, the mother of Daunte Wright’s 2-year-old son, Daunte Jr., said she had become a single mother “not by choice, but by force,” and that Ms. Potter had taken Daunte Jr.’s “best friend away from him.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " It is quite likely that Ms. Potter will be released from prison after about 14 months, in April 2023. Under Minnesota law, prisoners are generally freed on a supervised release term after they serve two-thirds of their sentence, and Ms. Potter will be credited for the 58 days she has spent in custody since she was convicted.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Prosecutors in Ms. Potter’s case conceded that the shooting on April 11 was a mistake, and in the moments after she fired, body camera videos showed her shouting that she had grabbed the wrong weapon and falling to the ground in tears.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mr. Wright had been driving with a friend to a carwash in a Minneapolis suburb when Officer Anthony Luckey, who was being trained by Ms. Potter, noticed that Mr. Wright had used the wrong turn signal. Officer Luckey followed Mr. Wright’s white Buick and noticed that the car had an air freshener dangling from the rearview mirror, which is against the law in many states, and that his license plate had an expired registration sticker.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Officers ran Mr. Wright’s name through a police database and determined that a judge had recently issued a warrant for his arrest because he had missed a court date on charges that he had illegally possessed a gun and had run away from police officers. He stepped out of the car at Officer Luckey’s request, but when the officer went to handcuff him, Mr. Wright twisted away from his grip and got back into the driver’s seat.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " As Officer Luckey struggled with Mr. Wright, trying to keep him from driving away, Ms. Potter shouted “I’ll Tase you!” while drawing her department-issued Glock instead. Moments later, she fatally shot Mr. Wright, whose car traveled shortly down the street before crashing into an oncoming car.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Daunte Demetrius Wright had played basketball in high school and later worked at Taco Bell and a shoe store with his father. His mother testified at Ms. Potter’s trial that Mr. Wright had recently enrolled in a vocational school and was considering becoming a carpenter.\n", " Evidence\n", "\n", "
" @@ -15287,7 +21974,7 @@ { "data": { "text/html": [ - "

nytimes\\lab-grown-meat-sleep-airtags.txt

" + "

lab-grown-meat-sleep-airtags.txt

" ], "text/plain": [ "" @@ -15300,34 +21987,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-dd811714e3fb7e42\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-dd811714e3fb7e42\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-dd811714e3fb7e42\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-dd811714e3fb7e42\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "5dee8f615f404b91a85d33eaf231b3d8", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " This weekend, listen to a collection of narrated articles from around The New York Times, read aloud by the reporters who wrote them. Tissue engineers and scientists in several countries are trying to find a commercially viable way to transform animal stem cells into a marbled Wagyu steak, briny oysters or sushi-grade salmon.\n", + " This weekend, listen to a collection of narrated articles from around The New York Times, read aloud by the reporters who wrote them.\n", + " Claim\n", + "\n", + "\n", + "\n", + " Tissue engineers and scientists in several countries are trying to find a commercially viable way to transform animal stem cells into a marbled Wagyu steak, briny oysters or sushi-grade salmon.\n", " Claim\n", "\n", "\n", "\n", - " The global market for what is most commonly known as cell-based or cultivated meat could reach $25 billion by 2030, according to the consultants McKinsey & Company. That would be a tiny slice of the projected $1.4 trillion meat market, but one that food companies see as a key player in the fast-growing category called alternative meat. Growing cells into meat remains the Wild West of food production. Although companies are racing to file for patents, and guard breakthroughs in cell technology like gold, almost a decade after the first cell-grown hamburger was introduced at a packed media event, the notion of buying an engineered steak at the grocery store remains an expensive theory. The combination of next-day delivery, Ring surveillance footage and TikTok has put a spotlight on Amazon drivers. But it’s also created a new main character: the package itself. Some Amazon customers, as Gita Jackson reported recently in Vice News, are now explicitly asking the company’s drivers to deliver a performance along with the package. They are posting signs to their front doors or tapping unusual delivery instructions into the Amazon app in the hopes of capturing a spectacle on their surveillance feeds. One TikTok user sets a driver’s obligatory shimmy to Justin Timberlake’s “SexyBack”; another soundtracks it with “Teach Me How to Dougie.” “How did we get here?,” asks Amanda Hess. “It all feels like an inevitable outgrowth of Amazon’s ever-expanding product suite. Install its motion-activated Ring doorbell and your stoop becomes a stage; enroll in its Amazon Prime service, and you’ll summon an endless stream of players.”\n", + " The global market for what is most commonly known as cell-based or cultivated meat could reach $25 billion by 2030, according to the consultants McKinsey & Company. That would be a tiny slice of the projected $1.4 trillion meat market, but one that food companies see as a key player in the fast-growing category called alternative meat.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Growing cells into meat remains the Wild West of food production. Although companies are racing to file for patents, and guard breakthroughs in cell technology like gold, almost a decade after the first cell-grown hamburger was introduced at a packed media event, the notion of buying an engineered steak at the grocery store remains an expensive theory.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The combination of next-day delivery, Ring surveillance footage and TikTok has put a spotlight on Amazon drivers. But it’s also created a new main character: the package itself.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Some Amazon customers, as Gita Jackson reported recently in Vice News, are now explicitly asking the company’s drivers to deliver a performance along with the package. They are posting signs to their front doors or tapping unusual delivery instructions into the Amazon app in the hopes of capturing a spectacle on their surveillance feeds. One TikTok user sets a driver’s obligatory shimmy to Justin Timberlake’s “SexyBack”; another soundtracks it with “Teach Me How to Dougie.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “How did we get here?,” asks Amanda Hess. “It all feels like an inevitable outgrowth of Amazon’s ever-expanding product suite. Install its motion-activated Ring doorbell and your stoop becomes a stage; enroll in its Amazon Prime service, and you’ll summon an endless stream of players.”\n", " Evidence\n", "\n", "\n", @@ -15431,7 +22114,17 @@ "\n", "\n", "\n", - " She would creep out of bed and tiptoe into the living room, where she would meditate, try a few yoga poses and open the window to hear the leaves rustle, the cars rush by and the dogs bark. Then, at 6 a.m., she crawled back into bed and would sleep again until her youngest child woke her for the day at 7 a.m. Unbeknown to Ms. Rafea, she had naturally reverted back to a sleep cycle that was believed to be standard in multiple cultures beginning in ancient civilization through the early 19th century. Now that many people are making their own schedules, working from home and focusing more on self-care, there has been a return for some to the idea of a segmented sleep cycle — voluntary and, given the stress levels of the last two years, not.\n", + " She would creep out of bed and tiptoe into the living room, where she would meditate, try a few yoga poses and open the window to hear the leaves rustle, the cars rush by and the dogs bark.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Then, at 6 a.m., she crawled back into bed and would sleep again until her youngest child woke her for the day at 7 a.m.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Unbeknown to Ms. Rafea, she had naturally reverted back to a sleep cycle that was believed to be standard in multiple cultures beginning in ancient civilization through the early 19th century. Now that many people are making their own schedules, working from home and focusing more on self-care, there has been a return for some to the idea of a segmented sleep cycle — voluntary and, given the stress levels of the last two years, not.\n", " Evidence\n", "\n", "\n", @@ -15441,7 +22134,32 @@ "\n", "\n", "\n", - " Apple released chic, sleek AirTags early last year as a way to keep track of keys and purses. But every new convenience comes with a price: In recent months, people have freaked out after finding AirTags hidden in their bags and on their cars. A Sports Illustrated model, Brooks Nader, said she found one in her coat pocket after visiting a Manhattan bar. All these people received warnings on their iPhones, a feature Apple had built into the AirTag system to help prevent unwanted tracking. When Kashmir Hill and Ryan Mac reported on this, experts were of two minds about Apple’s attempts to prevent nefarious use, with some saying the alerts were inadequate and others praising the company for unearthing a larger problem: widespread surreptitious tracking, usually done with devices that don’t notify a person of their presence. Kashmir decided to examine both claims by planting three AirTags, three Tiles and a GPS tracker on her husband and his belongings to see how precisely they revealed his movements and which ones he discovered. Even in deep red East Texas, even on a Tuesday afternoon, even after a failed bid for the Senate followed by a failed bid for president, Beto O’Rourke still draws a crowd. More than 100 supporters gathered last week in a park in the city of Tyler, southeast of Dallas in the Piney Woods region. Among the friendly crowd, however, there was concern and even skepticism as Mr. O’Rourke tries to become the first Democratic governor of Texas in nearly 30 years. The Texas primary is fast approaching but his real challenge is the general election in November, when he is expected to face the Republican incumbent, Gov. Greg Abbott. Some of Mr. O’Rourke’s comments aimed at wooing national Democratic voters in the 2020 presidential primary — such as “Hell yes, we’re going to take your AR-15” — may have already weakened if not doomed his chances in November.\n", + " Apple released chic, sleek AirTags early last year as a way to keep track of keys and purses. But every new convenience comes with a price: In recent months, people have freaked out after finding AirTags hidden in their bags and on their cars. A Sports Illustrated model, Brooks Nader, said she found one in her coat pocket after visiting a Manhattan bar. All these people received warnings on their iPhones, a feature Apple had built into the AirTag system to help prevent unwanted tracking.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " When Kashmir Hill and Ryan Mac reported on this, experts were of two minds about Apple’s attempts to prevent nefarious use, with some saying the alerts were inadequate and others praising the company for unearthing a larger problem: widespread surreptitious tracking, usually done with devices that don’t notify a person of their presence.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Kashmir decided to examine both claims by planting three AirTags, three Tiles and a GPS tracker on her husband and his belongings to see how precisely they revealed his movements and which ones he discovered.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Even in deep red East Texas, even on a Tuesday afternoon, even after a failed bid for the Senate followed by a failed bid for president, Beto O’Rourke still draws a crowd.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " More than 100 supporters gathered last week in a park in the city of Tyler, southeast of Dallas in the Piney Woods region. Among the friendly crowd, however, there was concern and even skepticism as Mr. O’Rourke tries to become the first Democratic governor of Texas in nearly 30 years.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The Texas primary is fast approaching but his real challenge is the general election in November, when he is expected to face the Republican incumbent, Gov. Greg Abbott. Some of Mr. O’Rourke’s comments aimed at wooing national Democratic voters in the 2020 presidential primary — such as “Hell yes, we’re going to take your AR-15” — may have already weakened if not doomed his chances in November.\n", " Evidence\n", "\n", "
" @@ -15465,7 +22183,7 @@ { "data": { "text/html": [ - "

nytimes\\law-order-svu-organized-crime.txt

" + "

law-order-svu-organized-crime.txt

" ], "text/plain": [ "" @@ -15478,20 +22196,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-82da186f7e7f414d\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-82da186f7e7f414d\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-82da186f7e7f414d\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-82da186f7e7f414d\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "97458d3d0f0848ac99fbf6fea9c71d7c", + "model_id": "05f0a26ae973442b921edc38bddd1826", "version_major": 2, "version_minor": 0 }, @@ -15502,64 +22214,22 @@ "metadata": {}, "output_type": "display_data" }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Loading cached processed dataset at C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-82da186f7e7f414d\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4\\cache-3645b74edeccf906.arrow\n" + ] + }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "2b62b0111b04435bb80c02af60ac178f", + "model_id": "98837ea07c644a9f96ea48f603a26cd7", "version_major": 2, "version_minor": 0 }, "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " If you were going to watch a police procedural — which, for the record, I don’t particularly recommend — you could do worse than NBC’s “Law & Order” franchise. Across 32 years and more than 1,200 episodes, the original series and its six American spinoffs have offered a gentle critique of law enforcement, presenting a parade of flawed individuals navigating a byzantine justice system. Detectives are stymied by bureaucrats and squabble with lunkhead patrol officers, who reliably contaminate crime scenes. Idealistic prosecutors grow disillusioned and leave for nonprofit work. And yet the franchise still hinges on a lesser-of-two-evils logic: The institutions may be imperfect, and the cops imperfect, but their vocation is, by definition, good. There are always more victims to avenge, and none better equipped to do it than the New York Police Department. This cautiously optimistic view of policing was once embodied by Elliot Stabler, the detective played by Chris Meloni since the 1999 premiere of “Law & Order: Special Victims Unit.” A hotheaded ex-Marine, Stabler initially clashed with authority and struggled to adapt to married life, receiving reprimands from his captain and consulting a shrink. But paired with his compassionate partner, Olivia Benson (Mariska Hargitay), he proved an exemplary cop and father. He was dogged and intuitive, a man who gave more than he took, rough around the edges but heroic nonetheless. And yet the franchise’s latest spinoff, “Law & Order: Organized Crime,” has done away with all that fortitude. In the pilot, Stabler’s wife is killed by a car bomb, leading him to contemplate violent retribution. He grows a goatee. He goes undercover. He has a rockin’ good time. In a scene from the second season, airing now, we find him training in a boxing gym, where he’s approached by a sultry mob wife — a suspect in a sex-trafficking sting — who presents him with a pair of carnation-pink panties and invites him to her home. Once there, Stabler spikes her drink with an incapacitating agent, and they kiss until she passes out. Stabler hustles into her bedroom and riffles for evidence, escaping through a back door when her husband arrives. Never mind how implausible this sequence feels, especially given Stabler’s background as a sex-crimes detective. The tone is sleazy, owing more to 1980s action flicks than the trademark “Law & Order” grit. It’s a far cry from the franchise’s origins: middle-aged cops and attorneys plagued with lousy diets and troubled families, a dour but lively metropolis teeming with nosy neighbors and wisecracking witnesses. Instead, “Organized Crime” depicts a backlot version of New York, its desolate cityscapes almost devoid of pedestrians. Stabler’s task force targets deep-pocketed warlords and ethnic outfits, armed traffickers who hijack shipping containers and vaccine supplies. Officers meet informants on abandoned waterfronts, and everybody drives around in a giant black S.U.V. Cruising gang-controlled neighborhoods, Stabler is anxious, adrift and thirsty for vengeance. Whatever happened to America’s dad? While Stabler busies himself with mobsters and madams, the long-running “Special Victims Unit,” whose fictional plots often riff on real-world headlines, has become a lugubrious public-service announcement on modern policing. Now a captain, Benson has been elevated to virtual sainthood, leading an understaffed unit and deflecting misogyny from her superiors. In the aftermath of George Floyd, even her pristine character is tested by institutional bias and dysfunction — and her commanding officer, a Harvard-educated Black man, is replaced by a chauvinistic white man prone to victim-blaming. Benson’s relentless drive for justice remains. An arc in the 22nd season recalls the 2020 Central Park bird-watching incident, in which a white woman filed a false report against a Black man. (The charge against her was later dismissed.) The show’s stand-in for the bird-watcher is arrested; after he’s exonerated, Benson apologizes. “We both want the department to own up to their mistakes and to make changes moving forward,” she tells him. “We can get rid of the worst cops.” Her promise echoes Mayor Eric Adams’s campaign claim that he once worked to “reform the police” from the inside, and it’s a stretch even by “Law & Order” standards. The franchise once focused on good work done by flawed people, but now even “S.V.U.” takes a more evangelistic stance. Police departments may abuse their power, it concedes, but they are redeemed by the likes of Olivia Benson. What’s jarring about the way “Organized Crime” and “S.V.U.” have diverged is how thoroughly both shows sacrifice realism to preserve optimistic attitudes toward policing. The original “Law & Order,” which aired from 1990 to 2010 (a revival begins this month), took pains to establish its characters as public servants, not superheroes. On the job, the detectives and attorneys wore drab, rumpled suits and worked desk phones from cramped offices. Off the job, they drank and avoided their families, because dealing with predators makes for a harrowing day. For some of them — Sam Waterston’s Jack McCoy, S.Epatha Merkerson’s Anita Van Buren — the lack of glamour suggested selflessness: Clearly they could’ve made more money elsewhere.\n", + " If you were going to watch a police procedural — which, for the record, I don’t particularly recommend — you could do worse than NBC’s “Law & Order” franchise. Across 32 years and more than 1,200 episodes, the original series and its six American spinoffs have offered a gentle critique of law enforcement, presenting a parade of flawed individuals navigating a byzantine justice system. Detectives are stymied by bureaucrats and squabble with lunkhead patrol officers, who reliably contaminate crime scenes. Idealistic prosecutors grow disillusioned and leave for nonprofit work. And yet the franchise still hinges on a lesser-of-two-evils logic: The institutions may be imperfect, and the cops imperfect, but their vocation is, by definition, good. There are always more victims to avenge, and none better equipped to do it than the New York Police Department.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " This cautiously optimistic view of policing was once embodied by Elliot Stabler, the detective played by Chris Meloni since the 1999 premiere of “Law & Order: Special Victims Unit.” A hotheaded ex-Marine, Stabler initially clashed with authority and struggled to adapt to married life, receiving reprimands from his captain and consulting a shrink. But paired with his compassionate partner, Olivia Benson (Mariska Hargitay), he proved an exemplary cop and father. He was dogged and intuitive, a man who gave more than he took, rough around the edges but heroic nonetheless.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " And yet the franchise’s latest spinoff, “Law & Order: Organized Crime,” has done away with all that fortitude. In the pilot, Stabler’s wife is killed by a car bomb, leading him to contemplate violent retribution. He grows a goatee. He goes undercover. He has a rockin’ good time. In a scene from the second season, airing now, we find him training in a boxing gym, where he’s approached by a sultry mob wife — a suspect in a sex-trafficking sting — who presents him with a pair of carnation-pink panties and invites him to her home. Once there, Stabler spikes her drink with an incapacitating agent, and they kiss until she passes out. Stabler hustles into her bedroom and riffles for evidence, escaping through a back door when her husband arrives.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Never mind how implausible this sequence feels, especially given Stabler’s background as a sex-crimes detective. The tone is sleazy, owing more to 1980s action flicks than the trademark “Law & Order” grit. It’s a far cry from the franchise’s origins: middle-aged cops and attorneys plagued with lousy diets and troubled families, a dour but lively metropolis teeming with nosy neighbors and wisecracking witnesses. Instead, “Organized Crime” depicts a backlot version of New York, its desolate cityscapes almost devoid of pedestrians. Stabler’s task force targets deep-pocketed warlords and ethnic outfits, armed traffickers who hijack shipping containers and vaccine supplies. Officers meet informants on abandoned waterfronts, and everybody drives around in a giant black S.U.V. Cruising gang-controlled neighborhoods, Stabler is anxious, adrift and thirsty for vengeance. Whatever happened to America’s dad?\n", + " Evidence\n", + "\n", + "\n", + "\n", + " While Stabler busies himself with mobsters and madams, the long-running “Special Victims Unit,” whose fictional plots often riff on real-world headlines, has become a lugubrious public-service announcement on modern policing. Now a captain, Benson has been elevated to virtual sainthood, leading an understaffed unit and deflecting misogyny from her superiors. In the aftermath of George Floyd, even her pristine character is tested by institutional bias and dysfunction — and her commanding officer, a Harvard-educated Black man, is replaced by a chauvinistic white man prone to victim-blaming.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Benson’s relentless drive for justice remains. An arc in the 22nd season recalls the 2020 Central Park bird-watching incident, in which a white woman filed a false report against a Black man. (The charge against her was later dismissed.) The show’s stand-in for the bird-watcher is arrested; after he’s exonerated, Benson apologizes. “We both want the department to own up to their mistakes and to make changes moving forward,” she tells him. “We can get rid of the worst cops.” Her promise echoes Mayor Eric Adams’s campaign claim that he once worked to “reform the police” from the inside, and it’s a stretch even by “Law & Order” standards. The franchise once focused on good work done by flawed people, but now even “S.V.U.” takes a more evangelistic stance. Police departments may abuse their power, it concedes, but they are redeemed by the likes of Olivia Benson.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " What’s jarring about the way “Organized Crime” and “S.V.U.” have diverged is how thoroughly both shows sacrifice realism to preserve optimistic attitudes toward policing. The original “Law & Order,” which aired from 1990 to 2010 (a revival begins this month), took pains to establish its characters as public servants, not superheroes. On the job, the detectives and attorneys wore drab, rumpled suits and worked desk phones from cramped offices. Off the job, they drank and avoided their families, because dealing with predators makes for a harrowing day. For some of them — Sam Waterston’s Jack McCoy, S.Epatha Merkerson’s Anita Van Buren — the lack of glamour suggested selflessness: Clearly they could’ve made more money elsewhere.\n", " Evidence\n", "\n", "\n", @@ -15625,7 +22348,7 @@ { "data": { "text/html": [ - "

nytimes\\letitia-james-ny-attorney-general.txt

" + "

letitia-james-ny-attorney-general.txt

" ], "text/plain": [ "" @@ -15638,34 +22361,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-18e35013b63a3487\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-18e35013b63a3487\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-18e35013b63a3487\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-18e35013b63a3487\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "8dcadde41ffd4e51acbd97a4422a0ac6", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " Letitia James took the convention stage just before lunch, hours before the Democratic State Convention’s main attractions were to appear, to accept a nomination for re-election as New York attorney general. She delivered an impassioned speech on Thursday, focusing on her broad efforts to pursue justice on behalf of New Yorkers, especially in her investigations revolving around former President Donald J. Trump and former Gov. Andrew M. Cuomo. She scarcely mentioned Mr. Trump or Mr. Cuomo by name. Nor did she discuss her brief, abandoned bid for governor, a decision that she said was based on her desire to continue her unfinished work as attorney general, which includes her office’s inquiry into Mr. Trump and his family. The impact of that choice was hammered home just hours after Ms. James spoke on Thursday, as a judge ruled that her office would be allowed to interview Mr. Trump and two of his children in her civil investigation into the family’s business practices. “When I was elected attorney general, I vowed to act without fear or favor to hold the powerful accountable, whether Republican or Democrat, in the public or private sector,” Ms. James said. “To be unbought, to be unbossed and unrelenting in the pursuit of justice and to stand up and speak up for the interests of everyday New Yorkers.” Ms. James, a Democrat from Brooklyn, jumped into the race for governor in late October following Mr. Cuomo’s resignation. She was initially seen as the most formidable challenger against Gov. Kathy Hochul, who had been unexpectedly elevated from lieutenant governor. Ms. James’s campaign hoped to garner national support by highlighting the potential for her to make history as the first Black woman to become governor in the country. But she dropped out in December, crowded out from the race by Ms. Hochul, who consistently led in early public polls and amassed an overwhelming fund-raising edge. Ms. James has not officially endorsed Ms. Hochul in the governor’s race, and mentioned her only in passing in her speech on Thursday. Ms. Hochul, for her part, praised Ms. James as “a national leader in fighting for justice, in fighting against Donald Trump-ism every place it rears its ugly head.” She added, “She’s been out there for us and I’m so proud of her.” The race for attorney general was once expected to be a highly contested one, with as many as five candidates mounting campaigns after Ms. James announced her candidacy for governor. But they all dropped out in swift succession as soon as Ms. James abandoned that bid, clearing the field for her re-election. Even with no major opponent, Ms. James gained a torrent of not-so-surprising endorsements over the past few weeks, from organized labor, from lawmakers on Long Island and from most of the state’s Democratic congressional delegation.\n", + " Letitia James took the convention stage just before lunch, hours before the Democratic State Convention’s main attractions were to appear, to accept a nomination for re-election as New York attorney general.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " She delivered an impassioned speech on Thursday, focusing on her broad efforts to pursue justice on behalf of New Yorkers, especially in her investigations revolving around former President Donald J. Trump and former Gov. Andrew M. Cuomo.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " She scarcely mentioned Mr. Trump or Mr. Cuomo by name. Nor did she discuss her brief, abandoned bid for governor, a decision that she said was based on her desire to continue her unfinished work as attorney general, which includes her office’s inquiry into Mr. Trump and his family.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The impact of that choice was hammered home just hours after Ms. James spoke on Thursday, as a judge ruled that her office would be allowed to interview Mr. Trump and two of his children in her civil investigation into the family’s business practices.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “When I was elected attorney general, I vowed to act without fear or favor to hold the powerful accountable, whether Republican or Democrat, in the public or private sector,” Ms. James said. “To be unbought, to be unbossed and unrelenting in the pursuit of justice and to stand up and speak up for the interests of everyday New Yorkers.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Ms. James, a Democrat from Brooklyn, jumped into the race for governor in late October following Mr. Cuomo’s resignation. She was initially seen as the most formidable challenger against Gov. Kathy Hochul, who had been unexpectedly elevated from lieutenant governor.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Ms. James’s campaign hoped to garner national support by highlighting the potential for her to make history as the first Black woman to become governor in the country. But she dropped out in December, crowded out from the race by Ms. Hochul, who consistently led in early public polls and amassed an overwhelming fund-raising edge.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Ms. James has not officially endorsed Ms. Hochul in the governor’s race, and mentioned her only in passing in her speech on Thursday.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Ms. Hochul, for her part, praised Ms. James as “a national leader in fighting for justice, in fighting against Donald Trump-ism every place it rears its ugly head.” She added, “She’s been out there for us and I’m so proud of her.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The race for attorney general was once expected to be a highly contested one, with as many as five candidates mounting campaigns after Ms. James announced her candidacy for governor. But they all dropped out in swift succession as soon as Ms. James abandoned that bid, clearing the field for her re-election.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Even with no major opponent, Ms. James gained a torrent of not-so-surprising endorsements over the past few weeks, from organized labor, from lawmakers on Long Island and from most of the state’s Democratic congressional delegation.\n", " Evidence\n", "\n", "\n", @@ -15771,7 +22522,17 @@ "\n", "\n", "\n", - " Ms. James’s office oversaw an investigation that found that a slew of sexual harassment allegations against Mr. Cuomo were credible; he has denied the accusations. Their feud briefly spilled over onto the convention floor on Thursday, with the crowd applauding after Ms. James offered a passionate defense of the investigation. “It has become clear the former governor will never accept any version of these events other than his own,” Ms. James said during an 18-minute speech in a Midtown Manhattan hotel. “And to achieve that he is now claiming the mantle of victim, disgracefully attacking anyone in his path, pushing others down in order to prop himself up, but I will not bow. I will not break.” She sought to directly link Mr. Cuomo to the former president, whom Ms. James has repeatedly challenged in court as attorney general: “I will not be bullied by him or Donald Trump.”\n", + " Ms. James’s office oversaw an investigation that found that a slew of sexual harassment allegations against Mr. Cuomo were credible; he has denied the accusations. Their feud briefly spilled over onto the convention floor on Thursday, with the crowd applauding after Ms. James offered a passionate defense of the investigation.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “It has become clear the former governor will never accept any version of these events other than his own,” Ms. James said during an 18-minute speech in a Midtown Manhattan hotel. “And to achieve that he is now claiming the mantle of victim, disgracefully attacking anyone in his path, pushing others down in order to prop himself up, but I will not bow. I will not break.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " She sought to directly link Mr. Cuomo to the former president, whom Ms. James has repeatedly challenged in court as attorney general: “I will not be bullied by him or Donald Trump.”\n", " Evidence\n", "\n", "\n", @@ -15801,7 +22562,27 @@ "\n", "\n", "\n", - " “I haven’t heard anyone say his name and I think people are looking forward,” Pat Ryan, a Democrat and the executive of Ulster County, said shortly before Ms. James’s speech. “People don’t want us dwelling in the past.” Mr. Cuomo’s absence would have gone largely unacknowledged at the convention on Thursday had it not been for Ms. James’s speech, in which she also accused the Cuomo administration of lying to obfuscate the true extent of pandemic-related deaths in nursing homes. Her comments appeared to be the culmination of pent-up resentment following weeks of escalating attacks from the Cuomo camp, which has repeatedly denounced the investigation — which he authorized — as unfair and politically motivated just as Mr. Cuomo weighs how to re-enter public life. Indeed, after Ms. James’s speech, Richard Azzopardi, a spokesman for Mr. Cuomo, released a statement that accused her of being “a serial liar who continues to dodge answering a single substantive question about her sham report.” Mr. Cuomo’s lawyer said last week that he intended to file a professional misconduct complaint against Ms. James. On Thursday, Ms. James described herself as “the people’s lawyer,” thanking the delegates “for giving me the opportunity to carry your flag and to be your candidate to continue this work.”\n", + " “I haven’t heard anyone say his name and I think people are looking forward,” Pat Ryan, a Democrat and the executive of Ulster County, said shortly before Ms. James’s speech. “People don’t want us dwelling in the past.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mr. Cuomo’s absence would have gone largely unacknowledged at the convention on Thursday had it not been for Ms. James’s speech, in which she also accused the Cuomo administration of lying to obfuscate the true extent of pandemic-related deaths in nursing homes.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Her comments appeared to be the culmination of pent-up resentment following weeks of escalating attacks from the Cuomo camp, which has repeatedly denounced the investigation — which he authorized — as unfair and politically motivated just as Mr. Cuomo weighs how to re-enter public life.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Indeed, after Ms. James’s speech, Richard Azzopardi, a spokesman for Mr. Cuomo, released a statement that accused her of being “a serial liar who continues to dodge answering a single substantive question about her sham report.” Mr. Cuomo’s lawyer said last week that he intended to file a professional misconduct complaint against Ms. James.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " On Thursday, Ms. James described herself as “the people’s lawyer,” thanking the delegates “for giving me the opportunity to carry your flag and to be your candidate to continue this work.”\n", " Evidence\n", "\n", "
" @@ -15825,7 +22606,7 @@ { "data": { "text/html": [ - "

nytimes\\liberalism-democracy-russia-ukraine.txt

" + "

liberalism-democracy-russia-ukraine.txt

" ], "text/plain": [ "" @@ -15838,34 +22619,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-bc9291a808ec2565\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-bc9291a808ec2565\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-bc9291a808ec2565\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-bc9291a808ec2565\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "17007e5a005f4393a483994c05b8d44c", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " In the early 1990s I was a roving correspondent for The Wall Street Journal, based in Europe. Some years it felt as if all I did was cover good news: the end of the Soviet Union, Ukrainians voting for independence, German reunification, the spread of democracy across Eastern Europe, Mandela coming out of prison and the end of apartheid, the Oslo peace process that seemed to bring stability to the Middle East. I obsess about those years now. I obsess about them because the good times did not last. History is reverting toward barbarism. We have an authoritarian strongman in Russia threatening to invade his neighbor, an increasingly authoritarian China waging genocide on its people and threatening Taiwan, cyberattacks undermining the world order, democracy in retreat worldwide, thuggish populists across the West undermining nations from within.\n", + " In the early 1990s I was a roving correspondent for The Wall Street Journal, based in Europe. Some years it felt as if all I did was cover good news: the end of the Soviet Union, Ukrainians voting for independence, German reunification, the spread of democracy across Eastern Europe, Mandela coming out of prison and the end of apartheid, the Oslo peace process that seemed to bring stability to the Middle East.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " I obsess about those years now. I obsess about them because the good times did not last. History is reverting toward barbarism. We have an authoritarian strongman in Russia threatening to invade his neighbor, an increasingly authoritarian China waging genocide on its people and threatening Taiwan, cyberattacks undermining the world order, democracy in retreat worldwide, thuggish populists across the West undermining nations from within.\n", " Evidence\n", "\n", "\n", @@ -15981,7 +22780,17 @@ "\n", "\n", "\n", - " The normal thing to say is that the liberal world order is in crisis. But just saying that doesn’t explain why. Why are people rejecting liberalism? What weakness in liberalism are its enemies exploiting? What is at the root of this dark century? Let me offer one explanation. Liberalism is a way of life built on respect for the dignity of each individual. A liberal order, John Stuart Mill suggested, is one in which people are free to conduct “experiments in living” so you wind up with “a large variety in types of character.” There’s no one best way to live, so liberals celebrate freedom, personal growth and diversity. Many of America’s founders were fervent believers in liberal democracy — up to a point. They had a profound respect for individual virtue, but also individual frailty. Samuel Adams said, “Ambitions and lust for power … are predominant passions in the breasts of most men.” Patrick Henry admitted to feelings of dread when he contemplated the “depravity of human nature.” One delegate to the constitutional convention said that the people “lack information and are constantly liable to be misled.”\n", + " The normal thing to say is that the liberal world order is in crisis. But just saying that doesn’t explain why. Why are people rejecting liberalism? What weakness in liberalism are its enemies exploiting? What is at the root of this dark century? Let me offer one explanation.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Liberalism is a way of life built on respect for the dignity of each individual. A liberal order, John Stuart Mill suggested, is one in which people are free to conduct “experiments in living” so you wind up with “a large variety in types of character.” There’s no one best way to live, so liberals celebrate freedom, personal growth and diversity.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Many of America’s founders were fervent believers in liberal democracy — up to a point. They had a profound respect for individual virtue, but also individual frailty. Samuel Adams said, “Ambitions and lust for power … are predominant passions in the breasts of most men.” Patrick Henry admitted to feelings of dread when he contemplated the “depravity of human nature.” One delegate to the constitutional convention said that the people “lack information and are constantly liable to be misled.”\n", " Evidence\n", "\n", "\n", @@ -15991,51 +22800,115 @@ "\n", "\n", "\n", - " So our founders built a system that respected popular opinion and majority rule while trying to build guardrails to check popular passion and prejudice. The crimes of the constitutional order are by now well known. It acquiesced to the existence of slavery and prolonged that institution for nearly another century. Early democratic systems enfranchised only a small share of adult Americans. But the genius of the Constitution was in its attempt to move toward democracy while trying to prevent undue concentrations of power. The founders divided power among the branches. They built in a whole series of republican checks, so that demagogues and populist crazes would not sweep over the land. “They designed a constitution for fallen people,” the historian Robert Tracy McKenzie writes in his book “We the Fallen People.” “Its genius lay in how it held in tension two seemingly incompatible beliefs: first, that the majority must generally prevail; and second, that the majority is predisposed to seek personal advantage above the common good.” While the Constitution guarded against abuses of power, the founders recognized that a much more important set of civic practices would mold people to be capable of being self-governing citizens: Churches were meant to teach virtue; leaders were to receive classical education, so they might understand human virtue and vice and the fragility of democracy; everyday citizens were to lead their lives as yeoman farmers so they might learn to live simply and work hard; civic associations and local government were to instill the habits of public service; patriotic rituals were observed to instill shared love of country; newspapers and magazines were there (more in theory than in fact) to create a well-informed citizenry; etiquette rules and democratic manners were adopted to encourage social equality and mutual respect. Think of it like farming. Planting the seeds is like establishing a democracy. But for democracy to function you have to till and fertilize the soil, erect fences, pull up weeds, prune the early growth. The founders knew that democracy is not natural. It takes a lot of cultivation to make democracy work. American foreign policy had a second founding after World War II. For much of our history Americans were content to prosper behind the safety of the oceans. But after having been dragged into two world wars, a generation of Americans realized the old attitude wasn’t working any more and America, following the leadership of Franklin Roosevelt and Harry Truman, would have to help build a liberal world order if it was to remain secure. The postwar generation was a bit like the founding generation. Its leaders — from Truman to George F. Kennan to Reinhold Niebuhr — championed democracy, but they had no illusions about the depravity of human beings. They’d read their history and understood that stretching back thousands of years, war, authoritarianism, exploitation, great powers crushing little ones — these were just the natural state of human societies. If America was to be secure, Americans would have to plant the seeds of democracy, but also do all the work of cultivation so those seeds could flourish. Americans oversaw the creation of peaceful democracies from the ruins of military dictatorships in Germany and Japan. They funded the Marshall Plan. They helped build multinational institutions like NATO, the World Bank, the International Monetary Fund. American military might stood ready to push back against the wolves who threatened the world order — sometimes effectively, as in Europe, but oftentimes, as in Vietnam and Iraq, recklessly and self-destructively. America championed democracy and human rights, at least when the Communists were violating them (not so much when our dictator allies across, say, Latin America were).\n", + " So our founders built a system that respected popular opinion and majority rule while trying to build guardrails to check popular passion and prejudice. The crimes of the constitutional order are by now well known. It acquiesced to the existence of slavery and prolonged that institution for nearly another century. Early democratic systems enfranchised only a small share of adult Americans. But the genius of the Constitution was in its attempt to move toward democracy while trying to prevent undue concentrations of power. The founders divided power among the branches. They built in a whole series of republican checks, so that demagogues and populist crazes would not sweep over the land.\n", " Evidence\n", "\n", "\n", - "\n", - " Just as America’s founders understood that democracy is not natural, the postwar generation understood that peace is not natural — it has to be tended and cultivated from the frailties of human passion and greed.\n", - " Claim\n", + "\n", + " “They designed a constitution for fallen people,” the historian Robert Tracy McKenzie writes in his book “We the Fallen People.” “Its genius lay in how it held in tension two seemingly incompatible beliefs: first, that the majority must generally prevail; and second, that the majority is predisposed to seek personal advantage above the common good.”\n", + " Evidence\n", "\n", "\n", "\n", - " Over the past few generations that hopeful but sober view of human nature has faded. What’s been called the Culture of Narcissism took hold, with the view that human beings should be unshackled from restraint. You can trust yourself to be unselfish! Democracy and world peace were taken for granted. As Robert Kagan put it in his book “The Jungle Grows Back”: “We have lived so long inside the bubble of the liberal order that we can imagine no other kind of world. We think it is natural and normal, even inevitable.” If people are naturally good, we no longer have to do the hard agricultural work of cultivating virtuous citizens or fighting against human frailty. The Western advisers I covered in Russia in the early 1990s thought a lot about privatization and market reforms and very little about how to prevent greedy monsters from stealing the whole country. They had a naïve view of human nature. Even in America, over the past decades, the institutions that earlier generations thought were essential to molding a democratic citizenry have withered or malfunctioned. Many churches and media outlets have gone partisan. Civics education has receded. Neighborhood organizations have shrunk. Patriotic rituals are out of fashion. What happens when you don’t tend the seedbeds of democracy? Chaos? War? No, you return to normal. The 15th, 16th, 17th and 18th centuries were normal. Big countries like China, Russia and Turkey are ruled by fierce leaders with massive power. That’s normal. Small aristocracies in many nations hog gigantic shares of their nations’ wealth. That’s normal. Many people come to despise cultural outsiders, like immigrants. Normal. Global affairs resembles the law of the jungle, with big countries threatening small ones. This is the way it’s been for most of human history. In normal times, people crave order and leaders like Vladimir Putin arise to give it to them. Putin and Xi Jinping have arisen to be the 21st century’s paradigmatic men. Putin has established political order in Russia by reviving the Russian strong state tradition and by concentrating power in the hands of one man. He has established economic order through a grand bargain with oligarch-led firms, with him as the ultimate C.E.O. As Fiona Hill and Clifford G. Gaddy write in their book, “Mr. Putin,” corruption is the glue that holds the system together. Everybody’s wealth is deliberately tainted, so Putin has the power to accuse anyone of corruption and remove anyone at any time. He offers cultural order. He embraces the Russian Orthodox Church and rails against the postmodern godlessness of the West. He scorns homosexuality and transgenderism. Putin has redefined global conservatism and made himself its global leader. Many conservatives around the world see Putin’s strong, manly authority, his defense of traditional values and his enthusiastic embrace of orthodox faith, and they see their aspirations in human form. Right-wing leaders from Donald Trump in the United States to Marine Le Pen in France to Rodrigo Duterte in the Philippines speak of Putin admiringly. The 21st century has become a dark century because the seedbeds of democracy have been neglected and normal historical authoritarianism is on the march. Putin and Xi seem confident that the winds of history are at their back. Writing in The Times a few weeks ago, Hill said that Putin believes the United States is in the same predicament Russia was in during the 1990s — “weakened at home and in retreat abroad.” Putin, Xi and the other global conservatives make comprehensive critiques of liberalism and the failings of liberal society. Unlike past authoritarians they have the massive power of modern surveillance technology to control their citizens. Russian troops are on the border of Ukraine because Putin needs to create the kind of disordered world that people like him thrive in. “The problem Russia has faced since the end of the Cold War is that the greatness Putin and many Russians seek cannot be achieved in a world that is secure and stable,” Kagan writes in “The Jungle Grows Back.” “To achieve greatness on the world stage, Russia must bring the world back to a past when neither Russians nor anyone else enjoyed security.”\n", + " While the Constitution guarded against abuses of power, the founders recognized that a much more important set of civic practices would mold people to be capable of being self-governing citizens: Churches were meant to teach virtue; leaders were to receive classical education, so they might understand human virtue and vice and the fragility of democracy; everyday citizens were to lead their lives as yeoman farmers so they might learn to live simply and work hard; civic associations and local government were to instill the habits of public service; patriotic rituals were observed to instill shared love of country; newspapers and magazines were there (more in theory than in fact) to create a well-informed citizenry; etiquette rules and democratic manners were adopted to encourage social equality and mutual respect.\n", " Evidence\n", "\n", "\n", - "\n", - " Will the liberals of the world be able to hold off the wolves? Strengthen democracy and preserve the rules-based world order? The events of the past few weeks have been fortifying. Joe Biden and the other world leaders have done an impressive job of rallying their collective resolve and pushing to keep Putin within his borders. But the problems of democracy and the liberal order can’t be solved from the top down. Today, across left and right, millions of Americans see U.S. efforts abroad as little more than imperialism, “endless wars” and domination. They don’t believe in the postwar project and refuse to provide popular support for it.\n", - " Concluding Statement\n", + "\n", + " Think of it like farming. Planting the seeds is like establishing a democracy. But for democracy to function you have to till and fertilize the soil, erect fences, pull up weeds, prune the early growth. The founders knew that democracy is not natural. It takes a lot of cultivation to make democracy work.\n", + " Evidence\n", "\n", "\n", "\n", - " The real problem is in the seedbeds of democracy, the institutions that are supposed to mold a citizenry and make us qualified to practice democracy. To restore those seedbeds, we first have to relearn the wisdom of the founders: We are not as virtuous as we think we are. Americans are no better than anyone else. Democracy is not natural; it is an artificial accomplishment that takes enormous work. Then we need to fortify the institutions that are supposed to teach the democratic skills: how to weigh evidence and commit to truth; how to correct for your own partisan blinders and learn to doubt your own opinions; how to respect people you disagree with; how to avoid catastrophism, conspiracy and apocalyptic thinking; how to avoid supporting demagogues; how to craft complex compromises. Democrats are not born; they are made. If the 21st century is to get brighter as it goes along, we have to get a lot better at making them. We don’t only have to worry about the people tearing down democracy. We have to worry about who is building it up.\n", + " American foreign policy had a second founding after World War II. For much of our history Americans were content to prosper behind the safety of the oceans. But after having been dragged into two world wars, a generation of Americans realized the old attitude wasn’t working any more and America, following the leadership of Franklin Roosevelt and Harry Truman, would have to help build a liberal world order if it was to remain secure.\n", " Evidence\n", "\n", - "
" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "\n", - "\n" - ] - }, - { - "data": { - "text/html": [ - "

nytimes\\london-highgate-cemetery-dispatch.txt

" + "\n", + "\n", + " The postwar generation was a bit like the founding generation. Its leaders — from Truman to George F. Kennan to Reinhold Niebuhr — championed democracy, but they had no illusions about the depravity of human beings. They’d read their history and understood that stretching back thousands of years, war, authoritarianism, exploitation, great powers crushing little ones — these were just the natural state of human societies.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " If America was to be secure, Americans would have to plant the seeds of democracy, but also do all the work of cultivation so those seeds could flourish. Americans oversaw the creation of peaceful democracies from the ruins of military dictatorships in Germany and Japan. They funded the Marshall Plan. They helped build multinational institutions like NATO, the World Bank, the International Monetary Fund. American military might stood ready to push back against the wolves who threatened the world order — sometimes effectively, as in Europe, but oftentimes, as in Vietnam and Iraq, recklessly and self-destructively. America championed democracy and human rights, at least when the Communists were violating them (not so much when our dictator allies across, say, Latin America were).\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Just as America’s founders understood that democracy is not natural, the postwar generation understood that peace is not natural — it has to be tended and cultivated from the frailties of human passion and greed.\n", + " Claim\n", + "\n", + "\n", + "\n", + " Over the past few generations that hopeful but sober view of human nature has faded. What’s been called the Culture of Narcissism took hold, with the view that human beings should be unshackled from restraint. You can trust yourself to be unselfish! Democracy and world peace were taken for granted. As Robert Kagan put it in his book “The Jungle Grows Back”: “We have lived so long inside the bubble of the liberal order that we can imagine no other kind of world. We think it is natural and normal, even inevitable.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " If people are naturally good, we no longer have to do the hard agricultural work of cultivating virtuous citizens or fighting against human frailty. The Western advisers I covered in Russia in the early 1990s thought a lot about privatization and market reforms and very little about how to prevent greedy monsters from stealing the whole country. They had a naïve view of human nature.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Even in America, over the past decades, the institutions that earlier generations thought were essential to molding a democratic citizenry have withered or malfunctioned. Many churches and media outlets have gone partisan. Civics education has receded. Neighborhood organizations have shrunk. Patriotic rituals are out of fashion.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " What happens when you don’t tend the seedbeds of democracy? Chaos? War? No, you return to normal. The 15th, 16th, 17th and 18th centuries were normal. Big countries like China, Russia and Turkey are ruled by fierce leaders with massive power. That’s normal. Small aristocracies in many nations hog gigantic shares of their nations’ wealth. That’s normal. Many people come to despise cultural outsiders, like immigrants. Normal. Global affairs resembles the law of the jungle, with big countries threatening small ones. This is the way it’s been for most of human history.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In normal times, people crave order and leaders like Vladimir Putin arise to give it to them. Putin and Xi Jinping have arisen to be the 21st century’s paradigmatic men.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Putin has established political order in Russia by reviving the Russian strong state tradition and by concentrating power in the hands of one man. He has established economic order through a grand bargain with oligarch-led firms, with him as the ultimate C.E.O. As Fiona Hill and Clifford G. Gaddy write in their book, “Mr. Putin,” corruption is the glue that holds the system together. Everybody’s wealth is deliberately tainted, so Putin has the power to accuse anyone of corruption and remove anyone at any time.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " He offers cultural order. He embraces the Russian Orthodox Church and rails against the postmodern godlessness of the West. He scorns homosexuality and transgenderism.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Putin has redefined global conservatism and made himself its global leader. Many conservatives around the world see Putin’s strong, manly authority, his defense of traditional values and his enthusiastic embrace of orthodox faith, and they see their aspirations in human form. Right-wing leaders from Donald Trump in the United States to Marine Le Pen in France to Rodrigo Duterte in the Philippines speak of Putin admiringly.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The 21st century has become a dark century because the seedbeds of democracy have been neglected and normal historical authoritarianism is on the march. Putin and Xi seem confident that the winds of history are at their back. Writing in The Times a few weeks ago, Hill said that Putin believes the United States is in the same predicament Russia was in during the 1990s — “weakened at home and in retreat abroad.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Putin, Xi and the other global conservatives make comprehensive critiques of liberalism and the failings of liberal society. Unlike past authoritarians they have the massive power of modern surveillance technology to control their citizens. Russian troops are on the border of Ukraine because Putin needs to create the kind of disordered world that people like him thrive in. “The problem Russia has faced since the end of the Cold War is that the greatness Putin and many Russians seek cannot be achieved in a world that is secure and stable,” Kagan writes in “The Jungle Grows Back.” “To achieve greatness on the world stage, Russia must bring the world back to a past when neither Russians nor anyone else enjoyed security.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Will the liberals of the world be able to hold off the wolves? Strengthen democracy and preserve the rules-based world order? The events of the past few weeks have been fortifying. Joe Biden and the other world leaders have done an impressive job of rallying their collective resolve and pushing to keep Putin within his borders. But the problems of democracy and the liberal order can’t be solved from the top down. Today, across left and right, millions of Americans see U.S. efforts abroad as little more than imperialism, “endless wars” and domination. They don’t believe in the postwar project and refuse to provide popular support for it.\n", + " Concluding Statement\n", + "\n", + "\n", + "\n", + " The real problem is in the seedbeds of democracy, the institutions that are supposed to mold a citizenry and make us qualified to practice democracy. To restore those seedbeds, we first have to relearn the wisdom of the founders: We are not as virtuous as we think we are. Americans are no better than anyone else. Democracy is not natural; it is an artificial accomplishment that takes enormous work.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Then we need to fortify the institutions that are supposed to teach the democratic skills: how to weigh evidence and commit to truth; how to correct for your own partisan blinders and learn to doubt your own opinions; how to respect people you disagree with; how to avoid catastrophism, conspiracy and apocalyptic thinking; how to avoid supporting demagogues; how to craft complex compromises.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Democrats are not born; they are made. If the 21st century is to get brighter as it goes along, we have to get a lot better at making them. We don’t only have to worry about the people tearing down democracy. We have to worry about who is building it up.\n", + " Evidence\n", + "\n", + "
" ], "text/plain": [ "" @@ -16044,59 +22917,39 @@ "metadata": {}, "output_type": "display_data" }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Using custom data configuration default-9f700c1ef061df5e\n" - ] - }, { "name": "stdout", "output_type": "stream", "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-9f700c1ef061df5e\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "\n", + "\n", + "\n" ] }, { "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "34030f7a180146b59de2d2b32ec9f45c", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00london-highgate-cemetery-dispatch.txt" + ], "text/plain": [ - " 0%| | 0/1 [00:00" ] }, "metadata": {}, "output_type": "display_data" }, { - "name": "stdout", + "name": "stderr", "output_type": "stream", "text": [ - "Dataset text downloaded and prepared to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-9f700c1ef061df5e\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4. Subsequent calls will reuse this data.\n" + "Using custom data configuration default-9f700c1ef061df5e\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-9f700c1ef061df5e\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "39e4a45f2a714573a4cc1dee3dbf58e4", + "model_id": "d36adc3259de412a968679a0ec657119", "version_major": 2, "version_minor": 0 }, @@ -16108,23 +22961,16 @@ "output_type": "display_data" }, { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "969a083c3a204f26bd610f346e4d57a0", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " LONDON — Vines crawl up headstones, tipping them on their side. Roots overtake tombs as if reclaiming them for the earth. On one toppled cross, a message: “Peace, Perfect Peace.” This is the final resting place for about 170,000 Londoners, among them George Eliot, Karl Marx and Henry Moore.\n", + " LONDON — Vines crawl up headstones, tipping them on their side. Roots overtake tombs as if reclaiming them for the earth. On one toppled cross, a message: “Peace, Perfect Peace.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " This is the final resting place for about 170,000 Londoners, among them George Eliot, Karl Marx and Henry Moore.\n", " Evidence\n", "\n", "\n", @@ -16212,7 +23104,22 @@ "\n", "\n", "\n", - " “It’s this tranquil city of the dead, in contrast to the city of the living below,” said Ian Dungavell, the chief executive of the Friends of Highgate Cemetery Trust, a group that saved the site from even greater dereliction in the 1980s and now manages it. During Britain’s first lockdown, when people were allowed to leave their homes for only necessities and exercise, the cemetery began to see a surge in visitors as Londoners looked for secluded outside spaces to escape — and to evade the virus. The site also took on a new resonance, Dr. Dungavell said, as so many people’s lives have been touched by illness and death during the pandemic. Britain has recorded about 160,000 deaths since it began in early 2020. “A phenomenal number of people have died throughout the course of the pandemic, in this country and, obviously, around the world,” he said. “I think very few people have been able to go through the pandemic and not think about their own mortality.”\n", + " “It’s this tranquil city of the dead, in contrast to the city of the living below,” said Ian Dungavell, the chief executive of the Friends of Highgate Cemetery Trust, a group that saved the site from even greater dereliction in the 1980s and now manages it.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " During Britain’s first lockdown, when people were allowed to leave their homes for only necessities and exercise, the cemetery began to see a surge in visitors as Londoners looked for secluded outside spaces to escape — and to evade the virus.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The site also took on a new resonance, Dr. Dungavell said, as so many people’s lives have been touched by illness and death during the pandemic. Britain has recorded about 160,000 deaths since it began in early 2020.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “A phenomenal number of people have died throughout the course of the pandemic, in this country and, obviously, around the world,” he said. “I think very few people have been able to go through the pandemic and not think about their own mortality.”\n", " Evidence\n", "\n", "\n", @@ -16232,7 +23139,37 @@ "\n", "\n", "\n", - " In the 1980s, a group that came to be known as the Friends of Highgate Trust rescued the site. The group maintains the site and welcomes visitors, for a nominal fee, and tries to ensure access for the families of those buried there. The west side of the cemetery opened first and includes the most elaborate tombs, those designed to vault their occupants into the afterlife, while the east side has more contemporary graves. The centerpiece of the west side is “Egyptian Avenue,” which features a row of vaults with iron doors that mimic the tombs of pharaohs. The mortar now falls from the brick underneath. Among them are the resting places of Radclyffe Hall, a famed poet and novelist known for the semi-autobiographical book “The Well of Loneliness,” about a lesbian love story, and her partner, Mabel Veronica Batten, a famous singer — all of this at a time when laws criminalizing homosexuality were often brutally enforced. Many of the tombs provide clues to the lives of those now lying there: A sleeping lion atop the grave of a famed owner of a Victorian traveling menagerie, a mourning dog at the foot of his owner’s headstone. “It’s a whole field of graves — it’s a whole field of loss — and you can’t but reflect on where you fit into that and know it will happen to you, and life goes on,” Dr. Dungavell said. At the grave of Alexander V. Litvinenko, a former K.G.B. officer turned enemy of the Kremlin, who was buried in Highgate in 2006 after being poisoned at a London hotel (most likely at the command of President Vladimir V. Putin of Russia, a 2016 British inquiry report said), a cutoff column symbolizes a life cut short.\n", + " In the 1980s, a group that came to be known as the Friends of Highgate Trust rescued the site. The group maintains the site and welcomes visitors, for a nominal fee, and tries to ensure access for the families of those buried there.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The west side of the cemetery opened first and includes the most elaborate tombs, those designed to vault their occupants into the afterlife, while the east side has more contemporary graves.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The centerpiece of the west side is “Egyptian Avenue,” which features a row of vaults with iron doors that mimic the tombs of pharaohs. The mortar now falls from the brick underneath.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Among them are the resting places of Radclyffe Hall, a famed poet and novelist known for the semi-autobiographical book “The Well of Loneliness,” about a lesbian love story, and her partner, Mabel Veronica Batten, a famous singer — all of this at a time when laws criminalizing homosexuality were often brutally enforced. \n", + " Evidence\n", + "\n", + "\n", + "\n", + " Many of the tombs provide clues to the lives of those now lying there: A sleeping lion atop the grave of a famed owner of a Victorian traveling menagerie, a mourning dog at the foot of his owner’s headstone.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “It’s a whole field of graves — it’s a whole field of loss — and you can’t but reflect on where you fit into that and know it will happen to you, and life goes on,” Dr. Dungavell said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " At the grave of Alexander V. Litvinenko, a former K.G.B. officer turned enemy of the Kremlin, who was buried in Highgate in 2006 after being poisoned at a London hotel (most likely at the command of President Vladimir V. Putin of Russia, a 2016 British inquiry report said), a cutoff column symbolizes a life cut short.\n", " Evidence\n", "\n", "\n", @@ -16267,7 +23204,42 @@ "\n", "\n", "\n", - " Mandy Wootton and Lynn Cook, who visited Highgate that same day, said that the cemetery had prompted conversations about end-of-life decisions — whether they wanted to be buried or cremated, and how they wanted to be remembered. But it had also been a life-affirming experience, they said. “It’s about that — live now, carpe diem, the age old saying,” Ms. Cook said. Perhaps the most famous person buried in Highgate is Marx, whose impressive tomb on the east side of the cemetery features a giant bronze bust that is not universally admired. Set amid a sprinkling of graves of other noted socialist figures, it draws visitors from around the world. It has also been the site of a number of acts of vandalism in recent years. Alex Keros, 32, and his partner, Irene Pappa, 30, both Greek and living in London, had a particular interest in visiting Marx’s tomb recently. “We are more or less politically aligned — we are left-minded,” Mr. Keros said. “But also, there are a lot of poets and literary figures buried here.” The east cemetery is also filled with many newer graves, their headstones jutting up from the hillside like crooked teeth. And the epitaphs are more personal: Gone are the Victorian odes to piety that dominate the older section of the cemetery. In their place are snippets of a life. For Patrick Caulfield, a famed British painter most often associated with Pop Art and who died in 2005, the message he left behind was a direct one. Spelled out on his granite step-design headstone in bold cut letters was one simple word: “D E A D.” Nearby is the grave of Jeremy Beadle, who died in 2008. “Writer, presenter, curator of oddities. Ask my friends,” his headstone reads.\n", + " Mandy Wootton and Lynn Cook, who visited Highgate that same day, said that the cemetery had prompted conversations about end-of-life decisions — whether they wanted to be buried or cremated, and how they wanted to be remembered. But it had also been a life-affirming experience, they said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “It’s about that — live now, carpe diem, the age old saying,” Ms. Cook said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Perhaps the most famous person buried in Highgate is Marx, whose impressive tomb on the east side of the cemetery features a giant bronze bust that is not universally admired. Set amid a sprinkling of graves of other noted socialist figures, it draws visitors from around the world. It has also been the site of a number of acts of vandalism in recent years.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Alex Keros, 32, and his partner, Irene Pappa, 30, both Greek and living in London, had a particular interest in visiting Marx’s tomb recently. \n", + " Evidence\n", + "\n", + "\n", + "\n", + " “We are more or less politically aligned — we are left-minded,” Mr. Keros said. “But also, there are a lot of poets and literary figures buried here.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The east cemetery is also filled with many newer graves, their headstones jutting up from the hillside like crooked teeth. And the epitaphs are more personal: Gone are the Victorian odes to piety that dominate the older section of the cemetery. In their place are snippets of a life.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " For Patrick Caulfield, a famed British painter most often associated with Pop Art and who died in 2005, the message he left behind was a direct one. Spelled out on his granite step-design headstone in bold cut letters was one simple word: “D E A D.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Nearby is the grave of Jeremy Beadle, who died in 2008. “Writer, presenter, curator of oddities. Ask my friends,” his headstone reads.\n", " Evidence\n", "\n", "\n", @@ -16277,7 +23249,17 @@ "\n", "\n", "\n", - " Two friends puzzling over a map of the cemetery’s winding trails, Kristin Brooks-Dowsett, 33, and Claudia Kowalczyk, 32, who had set aside the day for some outdoor exploring together, said they enjoyed learning about the lives lived. “I think it tells these amazing stories,” Ms. Brooks-Dowsett said. “I don’t think we tell stories enough these days.” She said that she had visited Highgate before, and that she was comfortable with the idea of death. It helps that her mother is a funeral director in her native Australia.\n", + " Two friends puzzling over a map of the cemetery’s winding trails, Kristin Brooks-Dowsett, 33, and Claudia Kowalczyk, 32, who had set aside the day for some outdoor exploring together, said they enjoyed learning about the lives lived.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “I think it tells these amazing stories,” Ms. Brooks-Dowsett said. “I don’t think we tell stories enough these days.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " She said that she had visited Highgate before, and that she was comfortable with the idea of death. It helps that her mother is a funeral director in her native Australia.\n", " Evidence\n", "\n", "\n", @@ -16316,7 +23298,7 @@ { "data": { "text/html": [ - "

nytimes\\mall-fight-bridgewater-commons-nj.txt

" + "

mall-fight-bridgewater-commons-nj.txt

" ], "text/plain": [ "" @@ -16329,34 +23311,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-86d3ca202336d66a\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-86d3ca202336d66a\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-86d3ca202336d66a\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-86d3ca202336d66a\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "28b89f36b145432ab90deacc49a44e3e", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00\n", "\n", "\n", - " The fight, which took place at the Bridgewater Commons mall on Saturday, was captured in a video that has been viewed more than 1.8 million times on Twitter. “The appearance of what is racially disparate treatment,” Gov. Philip D. Murphy of New Jersey said at a news conference on Wednesday, “is deeply, deeply disturbing.” On Monday, the Bridgewater Police Department wrote on Facebook, “We recognize that this video has made members of our community upset and are calling for an internal affairs investigation.” In a letter to residents on Tuesday, the mayor of Bridgewater said that the township’s police chief had asked the Somerset County Prosecutor’s Office to look into the matter. The New Jersey State Conference of the NAACP is calling for the officers involved in the episode to be immediately removed from the force pending an investigation. The family of the Black teenager, Z’Kye Husain, 14, is working with Benjamin Crump, the civil rights lawyer who represented the families of George Floyd, Breonna Taylor and other high-profile victims of police brutality against Black people. In a brief telephone interview on Thursday, Z’Kye’s mother, who asked that she be identified only by her first name, Eboné, said her son remained in handcuffs for about 20 to 30 minutes. The white teenager, who Mr. Crump said was in the 11th grade, was not handcuffed, Eboné said. No charges were filed against either teenager, she said. “The cops said it was just protocol for a situation like that for them to put the kids in handcuffs,” she said. “It just so happens my son was the only one with the handcuffs on.” A spokesman for the Bridgewater Police Department referred questions to the Somerset County Prosecutor’s Office, which did not respond to requests for comment. Z’Kye’s mother said her son was at the mall with friends around 7:30 p.m. on Saturday when the white teenager started harassing one of Z’Kye’s friends, who is in the seventh grade. Z’Kye defended his friend, she said, as other teenagers at the mall began recording the encounter with their phones. In the video, the white teenager, who is wearing a dark sweatshirt, jabs a finger near Z’Kye’s face. Z’Kye pushes his hand away. Then the white teenager shoves Z’Kye in the chest with both hands. Z’Kye stumbles back. Then, both teens start throwing punches as the crowd around them backs away. The older teenager tackles Z’Kye onto a couch. More punches are thrown. The white teenager tackles Z’Kye and is above him when two uniformed officers, who appear to be white, arrive. The officers throw the white teenager toward the couch and one briefly stays with him as the other officer tackles Z’Kye to the floor and begins to handcuff him. The officer who was with the white teenager on the couch leaves him there to help restrain Z’Kye, both officers placing their knees on his back. The white teenager stands up and appears to take a few small steps toward the officers and Z’Kye. The video ends as one officer picks Z’Kye off the ground and the other walks over to the white teenager and puts a hand on his chest as if to guide him back to the couch. “Yo, it’s because he’s Black,” one bystander says before the video ends. “Racially motivated.” A Bridgewater Commons spokeswoman said both teenagers had been banned from the mall for three years. She declined further comment, citing the developing investigation. Mr. Crump said other videos of the fight could surface showing more of the encounter and the officers’ response to it. He also said the episode was important because “too many of us do get killed when we’re wrongfully accused and falsely accused.” Mayor Matthew Moench of Bridgewater Township, which is about 30 miles north of Trenton, told residents in his letter that it was “not appropriate for me or any other Township official to comment any further” because an investigation was underway. Mr. Moench did not respond to telephone calls and email messages seeking comment. Township officials also canceled a previously scheduled town hall meeting on Wednesday, citing “the volume and nature of communications that have been received by our Township staff and Police Department,” according to a letter posted on the township’s website.\n", + " The fight, which took place at the Bridgewater Commons mall on Saturday, was captured in a video that has been viewed more than 1.8 million times on Twitter.\n", " Evidence\n", "\n", - "
" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, + "\n", + "\n", + " “The appearance of what is racially disparate treatment,” Gov. Philip D. Murphy of New Jersey said at a news conference on Wednesday, “is deeply, deeply disturbing.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " On Monday, the Bridgewater Police Department wrote on Facebook, “We recognize that this video has made members of our community upset and are calling for an internal affairs investigation.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In a letter to residents on Tuesday, the mayor of Bridgewater said that the township’s police chief had asked the Somerset County Prosecutor’s Office to look into the matter. The New Jersey State Conference of the NAACP is calling for the officers involved in the episode to be immediately removed from the force pending an investigation.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The family of the Black teenager, Z’Kye Husain, 14, is working with Benjamin Crump, the civil rights lawyer who represented the families of George Floyd, Breonna Taylor and other high-profile victims of police brutality against Black people.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In a brief telephone interview on Thursday, Z’Kye’s mother, who asked that she be identified only by her first name, Eboné, said her son remained in handcuffs for about 20 to 30 minutes. The white teenager, who Mr. Crump said was in the 11th grade, was not handcuffed, Eboné said. No charges were filed against either teenager, she said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “The cops said it was just protocol for a situation like that for them to put the kids in handcuffs,” she said. “It just so happens my son was the only one with the handcuffs on.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " A spokesman for the Bridgewater Police Department referred questions to the Somerset County Prosecutor’s Office, which did not respond to requests for comment.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Z’Kye’s mother said her son was at the mall with friends around 7:30 p.m. on Saturday when the white teenager started harassing one of Z’Kye’s friends, who is in the seventh grade. Z’Kye defended his friend, she said, as other teenagers at the mall began recording the encounter with their phones.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In the video, the white teenager, who is wearing a dark sweatshirt, jabs a finger near Z’Kye’s face. Z’Kye pushes his hand away. Then the white teenager shoves Z’Kye in the chest with both hands. Z’Kye stumbles back. Then, both teens start throwing punches as the crowd around them backs away.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The older teenager tackles Z’Kye onto a couch. More punches are thrown. The white teenager tackles Z’Kye and is above him when two uniformed officers, who appear to be white, arrive.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The officers throw the white teenager toward the couch and one briefly stays with him as the other officer tackles Z’Kye to the floor and begins to handcuff him.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The officer who was with the white teenager on the couch leaves him there to help restrain Z’Kye, both officers placing their knees on his back.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The white teenager stands up and appears to take a few small steps toward the officers and Z’Kye.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The video ends as one officer picks Z’Kye off the ground and the other walks over to the white teenager and puts a hand on his chest as if to guide him back to the couch.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Yo, it’s because he’s Black,” one bystander says before the video ends. “Racially motivated.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " A Bridgewater Commons spokeswoman said both teenagers had been banned from the mall for three years. She declined further comment, citing the developing investigation.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mr. Crump said other videos of the fight could surface showing more of the encounter and the officers’ response to it. He also said the episode was important because “too many of us do get killed when we’re wrongfully accused and falsely accused.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mayor Matthew Moench of Bridgewater Township, which is about 30 miles north of Trenton, told residents in his letter that it was “not appropriate for me or any other Township official to comment any further” because an investigation was underway. Mr. Moench did not respond to telephone calls and email messages seeking comment.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Township officials also canceled a previously scheduled town hall meeting on Wednesday, citing “the volume and nature of communications that have been received by our Township staff and Police Department,” according to a letter posted on the township’s website.\n", + " Evidence\n", + "\n", + "
" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, "output_type": "display_data" }, { @@ -16483,7 +23535,7 @@ { "data": { "text/html": [ - "

nytimes\\melania-trump-charity-donation.txt

" + "

melania-trump-charity-donation.txt

" ], "text/plain": [ "" @@ -16496,34 +23548,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-4dd37ccae19565a6\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-4dd37ccae19565a6\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-4dd37ccae19565a6\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-4dd37ccae19565a6\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "192de03d8e284cceb0e570b150256968", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " WASHINGTON — An Oklahoma school that specializes in teaching advanced computer science skills has rejected an offered donation by Melania Trump, who said on Friday that “politics got in the way of my mission to support children.” Mrs. Trump disclosed the clash with the school in a statement defending her charitable fund-raising efforts since she left the White House, which she has said are focused on supporting foster children. Mrs. Trump did not name the school that she said rejected her donation, noting only that it was “a computer science school founded in Silicon Valley with a campus in Oklahoma.” That fits the description of an organization known as Holberton School, a San Francisco-based education company that has more than 30 schools around the world that specialize in computer science training as an alternative to traditional college for students who want to become software engineers. It opened a location in Tulsa, Okla., in 2020. Julien Barbier, the chief executive of Holberton, confirmed on Friday that Mrs. Trump had tried to donate money to the Tulsa school. “We were approached about a scholarship by her team but never reached an agreement on the logistics of the scholarship,” he said, declining to discuss the matter further. Mrs. Trump said that she had offered to make the donation anonymously, with the money intended to support scholarships. She said she had signed an agreement detailing the planned contribution when the school moved to reject it, which she said was part of an effort to “cancel me.” “It was made clear to me that the school’s board of directors organized a politically motivated decision,” Mrs. Trump said in her statement, which was posted on her website on Friday. “Obviously, I was disappointed but not surprised. This is not the first time where politics got in the way of my mission to support children.” She added that it was at least the second time her efforts to support a charitable cause had been rejected, asserting that a “corporate partner refused an opportunity to further our shared philanthropic goals surrounding my visit to Africa,” which took place in 2018. She provided no other details. Since December, Mrs. Trump has accelerated her efforts to raise or make money — for herself and for charitable causes — holding an online auction last month to sell a white hat she had worn at the White House during a visit by the French president in 2018, as part of what she called the Head of State Collection. She also recently announced plans to host what she called an “exclusive high tea” that she is calling Tulips & Topiaries, selling tickets for as much as $50,000 for “V.I.P. table sponsors.” The money raised from the event, scheduled to be held in Naples, Fla., in April, would be at least partly donated to a cause that supports children in or emerging from foster care, Mrs. Trump has said. The money, she told The New York Times in a statement this month, would be used “to provide children within the foster community the ability to secure entry-level jobs within the technology sector,” resembling the mission of the Holberton School.\n", + " WASHINGTON — An Oklahoma school that specializes in teaching advanced computer science skills has rejected an offered donation by Melania Trump, who said on Friday that “politics got in the way of my mission to support children.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mrs. Trump disclosed the clash with the school in a statement defending her charitable fund-raising efforts since she left the White House, which she has said are focused on supporting foster children.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mrs. Trump did not name the school that she said rejected her donation, noting only that it was “a computer science school founded in Silicon Valley with a campus in Oklahoma.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " That fits the description of an organization known as Holberton School, a San Francisco-based education company that has more than 30 schools around the world that specialize in computer science training as an alternative to traditional college for students who want to become software engineers. It opened a location in Tulsa, Okla., in 2020.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Julien Barbier, the chief executive of Holberton, confirmed on Friday that Mrs. Trump had tried to donate money to the Tulsa school.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “We were approached about a scholarship by her team but never reached an agreement on the logistics of the scholarship,” he said, declining to discuss the matter further.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mrs. Trump said that she had offered to make the donation anonymously, with the money intended to support scholarships. She said she had signed an agreement detailing the planned contribution when the school moved to reject it, which she said was part of an effort to “cancel me.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “It was made clear to me that the school’s board of directors organized a politically motivated decision,” Mrs. Trump said in her statement, which was posted on her website on Friday. “Obviously, I was disappointed but not surprised. This is not the first time where politics got in the way of my mission to support children.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " She added that it was at least the second time her efforts to support a charitable cause had been rejected, asserting that a “corporate partner refused an opportunity to further our shared philanthropic goals surrounding my visit to Africa,” which took place in 2018. She provided no other details.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Since December, Mrs. Trump has accelerated her efforts to raise or make money — for herself and for charitable causes — holding an online auction last month to sell a white hat she had worn at the White House during a visit by the French president in 2018, as part of what she called the Head of State Collection.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " She also recently announced plans to host what she called an “exclusive high tea” that she is calling Tulips & Topiaries, selling tickets for as much as $50,000 for “V.I.P. table sponsors.” The money raised from the event, scheduled to be held in Naples, Fla., in April, would be at least partly donated to a cause that supports children in or emerging from foster care, Mrs. Trump has said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The money, she told The New York Times in a statement this month, would be used “to provide children within the foster community the ability to secure entry-level jobs within the technology sector,” resembling the mission of the Holberton School.\n", " Evidence\n", "\n", "\n", @@ -16631,7 +23718,22 @@ "\n", "\n", "\n", - " In the statement on Friday, Mrs. Trump said that she did not intend to create her own formal nonprofit organization, registered with Florida or the federal government. Instead, she said, the money raised at the April event would go to Gen Justice, an existing nonprofit also known as Generation Justice that uses legal action to try to improve the foster care system in the United States. Mrs. Trump also said she was working with a conservative nonprofit called the Bradley Impact Fund that had selected the foster-care related charities she intended to support. Both organizations are registered in Florida to raise charitable donations. A spokeswoman for the Florida Department of Agriculture and Consumer Services, which oversees charitable giving in the state, declined to comment on Friday about the inquiry. “With the investigation still ongoing, we are not able to comment further at this time,” Erin M. Moffet, the agency spokeswoman, said in an email on Friday.\n", + " In the statement on Friday, Mrs. Trump said that she did not intend to create her own formal nonprofit organization, registered with Florida or the federal government.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Instead, she said, the money raised at the April event would go to Gen Justice, an existing nonprofit also known as Generation Justice that uses legal action to try to improve the foster care system in the United States. Mrs. Trump also said she was working with a conservative nonprofit called the Bradley Impact Fund that had selected the foster-care related charities she intended to support. Both organizations are registered in Florida to raise charitable donations.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " A spokeswoman for the Florida Department of Agriculture and Consumer Services, which oversees charitable giving in the state, declined to comment on Friday about the inquiry.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “With the investigation still ongoing, we are not able to comment further at this time,” Erin M. Moffet, the agency spokeswoman, said in an email on Friday.\n", " Evidence\n", "\n", "\n", @@ -16641,7 +23743,22 @@ "\n", "\n", "\n", - " “The media has created a narrative whereby I am trying to act in an illegal or unethical manner,” her statement on Friday said. “That portrayal is simply untrue and adversely affects the children I hope to support. Those who attack my initiatives and create the appearance of impropriety are quite literally dream killers. They have canceled the hopes and dreams of children by trying to cancel me.” Mrs. Trump’s moneymaking efforts have only intensified in recent weeks, as she announced a partnership with Parler, the conservative social media site, to use the platform to promote her online sales. She disclosed on Parler this week a plan to sell what she is calling the POTUS TRUMP NFT Collection, which features virtual artwork known as a nonfungible token, or NFT, on USAmemorabilia.com, a website she is creating. A total of 10,000 NFTs will be sold for $50 apiece or possibly more, and will feature “iconic moments from President Trump’s administration, such as the Fourth of July visit to Mount Rushmore and Christmas at the White House.” The sales will take place with cryptocurrency, Mrs. Trump said, as with the earlier auction.\n", + " “The media has created a narrative whereby I am trying to act in an illegal or unethical manner,” her statement on Friday said. “That portrayal is simply untrue and adversely affects the children I hope to support. Those who attack my initiatives and create the appearance of impropriety are quite literally dream killers. They have canceled the hopes and dreams of children by trying to cancel me.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mrs. Trump’s moneymaking efforts have only intensified in recent weeks, as she announced a partnership with Parler, the conservative social media site, to use the platform to promote her online sales.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " She disclosed on Parler this week a plan to sell what she is calling the POTUS TRUMP NFT Collection, which features virtual artwork known as a nonfungible token, or NFT, on USAmemorabilia.com, a website she is creating.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " A total of 10,000 NFTs will be sold for $50 apiece or possibly more, and will feature “iconic moments from President Trump’s administration, such as the Fourth of July visit to Mount Rushmore and Christmas at the White House.” The sales will take place with cryptocurrency, Mrs. Trump said, as with the earlier auction.\n", " Evidence\n", "\n", "\n", @@ -16656,7 +23773,17 @@ "\n", "\n", "\n", - " Asked if the NFT images Mrs. Trump will be selling are based on photographs taken by federal government employees, Mrs. Trump’s office said in a statement that “all images are copyright-free and fall within the purview of the public domain.” That is an apparent reference to a longstanding federal policy that government “creative works” are not protected by copyright law, suggesting she believes that she is entitled to use and profit from them. Her statement made no mention of whether any of the money raised from the sales would support her charitable efforts or simply be collected by Mrs. Trump and her business partners. Mrs. Trump also indicated that images of the virtual artwork she is selling — with names like Air Force One Platinum, First Lady Platinum and Mount Rushmore Platinum — would not be publicly disclosed before they were sold. “Collectors will enjoy an element of surprise, as the artwork of each NFT is revealed only after purchase,” the announcement said. “Of course, collectors can make multiple purchases to own the entire POTUS Trump Collection.”\n", + " Asked if the NFT images Mrs. Trump will be selling are based on photographs taken by federal government employees, Mrs. Trump’s office said in a statement that “all images are copyright-free and fall within the purview of the public domain.” That is an apparent reference to a longstanding federal policy that government “creative works” are not protected by copyright law, suggesting she believes that she is entitled to use and profit from them.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Her statement made no mention of whether any of the money raised from the sales would support her charitable efforts or simply be collected by Mrs. Trump and her business partners. Mrs. Trump also indicated that images of the virtual artwork she is selling — with names like Air Force One Platinum, First Lady Platinum and Mount Rushmore Platinum — would not be publicly disclosed before they were sold.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Collectors will enjoy an element of surprise, as the artwork of each NFT is revealed only after purchase,” the announcement said. “Of course, collectors can make multiple purchases to own the entire POTUS Trump Collection.”\n", " Evidence\n", "\n", "
" @@ -16680,7 +23807,7 @@ { "data": { "text/html": [ - "

nytimes\\merkel-cell-carcinoma.txt

" + "

merkel-cell-carcinoma.txt

" ], "text/plain": [ "" @@ -16693,34 +23820,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-280c8ab59135a75e\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-280c8ab59135a75e\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-280c8ab59135a75e\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-280c8ab59135a75e\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "3729a649e0a84179befa76fb04043023", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " “OK, I give up,” said the 74-year-old man. “I’ll go to the hospital.” His wife of 46 years gave an inner sigh of relief. Her husband was stubborn, a seventh-​generation Mainer, not given to complaining. But a few weeks earlier, she noticed that he was parking his tractor next to the back porch so he could get on it without pulling himself up. Then he needed help getting out of his big chair. Now he could barely walk. It happened so suddenly it scared her. She eased the car right next to the porch. He needed both hands on the railing to get down, grunting with each step. His legs moved awkwardly, as if they had somehow forgotten what to do. At the LincolnHealth-Miles Campus Hospital in nearby Damariscotta, it was clear to the E.R. doctors that the patient wasn’t weak but ataxic, lacking not strength but coordination. Virtually every movement the body makes requires several muscles working together — a collaboration that occurs in the cerebellum. The uncertain and awkward way the patient moved made doctors at LincolnHealth worry that something — maybe a stroke, maybe a tumor — had injured that part of the brain. But two CT scans and an M.R.I. were unrevealing. When his doctors weren’t sure what to do next, the patient decided it was time to go home. His wife was supportive but worried. How could she help him get around? He was a big guy and outweighed her by 50 pounds. And they still needed to figure out what was wrong with him. Couldn’t they try another hospital? Maybe, he said, but first he wanted to go home. So that’s where she took him. Once there, it took only a day for the man to recognize, again, that he couldn’t just tough it out at home. There was another hospital, a larger one a couple of towns over in Brunswick: Mid Coast Hospital. His wife was happy to take him there. Those few steps he took from porch to car, supported by his wife, were the last he would take for weeks. He couldn’t walk, the older man told Dr. Roople Unia, the neurologist on call that day. He could barely stand up, he continued. And that wasn’t the only thing: He was seeing double. And he had a terrible cough. Of course, at 74, he had a bunch of medical problems — diabetes, high blood pressure, some heart disease, even gout. But nothing had laid him this low before. His tanned round face reddened as he surrendered to a violent cough. Unia suspected that his swallow was as uncoordinated as his walk. The esophagus (the swallowing tube) is right next to the trachea (the breathing tube). Normally the epiglottis, a leaf-shaped flap located at the base of the throat, folds over the trachea as we swallow to prevent the food meant for the esophagus from going down the wrong tube. The cough, she suspected, was his body’s last-ditch effort to keep food, liquids and his own saliva out of his lungs. Unia knew from the records from the first hospital visit that this wasn’t a brain tumor or stroke. Could it be a vitamin B12 deficiency? Loss of this key nutrient can cause a wide variety of neurological symptoms — usually difficulty walking and a loss of feeling in the hands and feet, sometimes double vision and trouble swallowing as well. And it’s common — seen in up to 15 percent of those over 60. Vitamin B1 and E deficiencies, while less common, can also cause these kinds of neurological symptoms. Something else that can affect the brain and nerves are autoimmune diseases. These disorders occur when the immune system gears up to take on some kind of invader, and the antibodies generated to protect the body attack it instead. Some of these autoimmune diseases are associated with cancers. These paraneoplastic syndromes, as they are called, are a rare consequence of the immune system’s attacking cancer but can cause devastating injuries to the nervous system as well as other parts of the body. But highest on Unia’s list of suspects was an unusual version of Guillain-Barré syndrome (G.B.S.) known as the Miller Fisher variant. G.B.S. is also an autoimmune disorder, usually triggered by an infection. Antibodies created to fight the infection mistakenly attack the nerves that control movement, usually starting with the legs and ascending up the body. In the Miller Fisher variant of G.B.S., the disease attacks the nerves controlling the muscles of the head and neck as well as those of the feet and legs, causing double vision and difficulty swallowing. Unia ordered the blood test that looks for this version of G.B.S. But the results could take weeks. In the meantime, the neurologist decided to treat him even without this proof. Treatment involves suppressing the wayward immune system — first with steroids and then, if needed, with intravenous immunoglobulin (IVIg), an infusion of antibodies that block the destructive ones of G.B.S. The patient had just finished his last day of treatment when the hospitalist Dmitry Opolinsky took over his care. Opolinsky asked him how he was feeling. Much better, the patient exclaimed, but then exploded into a paroxysm of coughing. Unia had warned Opolinsky that the patient was eager to feel better but that his exam had not really changed since his arrival. Still, it often takes a week or two for any improvement following the IVIg. They needed to give him time. As he waited for his patient to start to get better, Opolinsky kept his eye on the results that were still trickling in. His vitamin B12 was normal. So were the other vitamin deficiencies he was tested for. The biggest disappointment came from the Mayo Clinic, where the neuroimmunology lab looks for evidence of any of a dozen paraneoplastic syndromes. They were all negative. This probably was G.B.S., though nearly a week after treatment, the patient was no better. The next day Opolinsky got a text to call a number he didn’t recognize. The voice, deep with a hint of an Irish accent, identified himself as Dr. Andrew Mc​Keon, co-director of the Mayo Clinic lab. “Oh, yes, we got those results yesterday,” Opolinsky told him. “All negative.” Actually, McKeon interjected, that result was wrong — or rather, incomplete. There was a newly discovered antibody identified a couple of years earlier by McKeon’s lab, still so new that it had not yet made it onto the automated result form used in testing. This patient had a very strong positive result for this antibody, which attacks something known as neuronal intermediate filaments in the brain. “If he’s a smoker,” McKeon predicted, “then he has small-cell lung cancer. If he’s not, he probably has Merkel cell skin cancer.” The patient had never smoked, so Opolinsky focused on the possibility that he had this rare type of skin cancer. What Opolinsky remembered from his training was that Merkel cell carcinoma was an aggressive form of skin cancer caused by sun damage and had a much higher rate of spreading than most other forms of skin cancer. He looked at the images on the internet, which showed a bluish red nodule, usually found on the head or face. He didn’t find any of these odd growths, but he ordered a CT scan to look for metastases. There, deep in the patient’s left underarm, was an enlarged lymph node — about the size of a lime. Opolinsky hurried to the patient to feel for the mass, yet even knowing it was there, he couldn’t locate it. But the surgeons could, and removed a mass that tested positive for Merkel cell carcinoma. After his surgery, a PET scan showed that he was free of cancer. It took some time, and an immune-​suppressing medication, but slowly the patient began to recover. That was this past summer. These days he can walk, but only with a walker. And he still coughs a lot. But he’s hopeful that, come spring, he’ll be back on his tractor, even if he has to get onto it from the porch.\n", + " “OK, I give up,” said the 74-year-old man. “I’ll go to the hospital.” His wife of 46 years gave an inner sigh of relief. Her husband was stubborn, a seventh-​generation Mainer, not given to complaining. But a few weeks earlier, she noticed that he was parking his tractor next to the back porch so he could get on it without pulling himself up. Then he needed help getting out of his big chair. Now he could barely walk. It happened so suddenly it scared her.\n", " Evidence\n", "\n", - "
" - ], - "text/plain": [ - "" - ] + "\n", + "\n", + " She eased the car right next to the porch. He needed both hands on the railing to get down, grunting with each step. His legs moved awkwardly, as if they had somehow forgotten what to do.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " At the LincolnHealth-Miles Campus Hospital in nearby Damariscotta, it was clear to the E.R. doctors that the patient wasn’t weak but ataxic, lacking not strength but coordination. Virtually every movement the body makes requires several muscles working together — a collaboration that occurs in the cerebellum. The uncertain and awkward way the patient moved made doctors at LincolnHealth worry that something — maybe a stroke, maybe a tumor — had injured that part of the brain. But two CT scans and an M.R.I. were unrevealing.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " When his doctors weren’t sure what to do next, the patient decided it was time to go home. His wife was supportive but worried. How could she help him get around? He was a big guy and outweighed her by 50 pounds. And they still needed to figure out what was wrong with him. Couldn’t they try another hospital? Maybe, he said, but first he wanted to go home. So that’s where she took him. Once there, it took only a day for the man to recognize, again, that he couldn’t just tough it out at home. There was another hospital, a larger one a couple of towns over in Brunswick: Mid Coast Hospital. His wife was happy to take him there. Those few steps he took from porch to car, supported by his wife, were the last he would take for weeks.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " He couldn’t walk, the older man told Dr. Roople Unia, the neurologist on call that day. He could barely stand up, he continued. And that wasn’t the only thing: He was seeing double. And he had a terrible cough. Of course, at 74, he had a bunch of medical problems — diabetes, high blood pressure, some heart disease, even gout. But nothing had laid him this low before. His tanned round face reddened as he surrendered to a violent cough.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Unia suspected that his swallow was as uncoordinated as his walk. The esophagus (the swallowing tube) is right next to the trachea (the breathing tube). Normally the epiglottis, a leaf-shaped flap located at the base of the throat, folds over the trachea as we swallow to prevent the food meant for the esophagus from going down the wrong tube. The cough, she suspected, was his body’s last-ditch effort to keep food, liquids and his own saliva out of his lungs.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Unia knew from the records from the first hospital visit that this wasn’t a brain tumor or stroke. Could it be a vitamin B12 deficiency? Loss of this key nutrient can cause a wide variety of neurological symptoms — usually difficulty walking and a loss of feeling in the hands and feet, sometimes double vision and trouble swallowing as well. And it’s common — seen in up to 15 percent of those over 60. Vitamin B1 and E deficiencies, while less common, can also cause these kinds of neurological symptoms.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Something else that can affect the brain and nerves are autoimmune diseases. These disorders occur when the immune system gears up to take on some kind of invader, and the antibodies generated to protect the body attack it instead. Some of these autoimmune diseases are associated with cancers. These paraneoplastic syndromes, as they are called, are a rare consequence of the immune system’s attacking cancer but can cause devastating injuries to the nervous system as well as other parts of the body.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " But highest on Unia’s list of suspects was an unusual version of Guillain-Barré syndrome (G.B.S.) known as the Miller Fisher variant. G.B.S. is also an autoimmune disorder, usually triggered by an infection. Antibodies created to fight the infection mistakenly attack the nerves that control movement, usually starting with the legs and ascending up the body. In the Miller Fisher variant of G.B.S., the disease attacks the nerves controlling the muscles of the head and neck as well as those of the feet and legs, causing double vision and difficulty swallowing.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Unia ordered the blood test that looks for this version of G.B.S. But the results could take weeks. In the meantime, the neurologist decided to treat him even without this proof. Treatment involves suppressing the wayward immune system — first with steroids and then, if needed, with intravenous immunoglobulin (IVIg), an infusion of antibodies that block the destructive ones of G.B.S.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The patient had just finished his last day of treatment when the hospitalist Dmitry Opolinsky took over his care. Opolinsky asked him how he was feeling. Much better, the patient exclaimed, but then exploded into a paroxysm of coughing. Unia had warned Opolinsky that the patient was eager to feel better but that his exam had not really changed since his arrival. Still, it often takes a week or two for any improvement following the IVIg. They needed to give him time.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " As he waited for his patient to start to get better, Opolinsky kept his eye on the results that were still trickling in. His vitamin B12 was normal. So were the other vitamin deficiencies he was tested for. The biggest disappointment came from the Mayo Clinic, where the neuroimmunology lab looks for evidence of any of a dozen paraneoplastic syndromes. They were all negative. This probably was G.B.S., though nearly a week after treatment, the patient was no better.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The next day Opolinsky got a text to call a number he didn’t recognize. The voice, deep with a hint of an Irish accent, identified himself as Dr. Andrew Mc​Keon, co-director of the Mayo Clinic lab. “Oh, yes, we got those results yesterday,” Opolinsky told him. “All negative.” Actually, McKeon interjected, that result was wrong — or rather, incomplete. There was a newly discovered antibody identified a couple of years earlier by McKeon’s lab, still so new that it had not yet made it onto the automated result form used in testing. This patient had a very strong positive result for this antibody, which attacks something known as neuronal intermediate filaments in the brain. “If he’s a smoker,” McKeon predicted, “then he has small-cell lung cancer. If he’s not, he probably has Merkel cell skin cancer.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The patient had never smoked, so Opolinsky focused on the possibility that he had this rare type of skin cancer. What Opolinsky remembered from his training was that Merkel cell carcinoma was an aggressive form of skin cancer caused by sun damage and had a much higher rate of spreading than most other forms of skin cancer. He looked at the images on the internet, which showed a bluish red nodule, usually found on the head or face. He didn’t find any of these odd growths, but he ordered a CT scan to look for metastases. There, deep in the patient’s left underarm, was an enlarged lymph node — about the size of a lime. Opolinsky hurried to the patient to feel for the mass, yet even knowing it was there, he couldn’t locate it. But the surgeons could, and removed a mass that tested positive for Merkel cell carcinoma. After his surgery, a PET scan showed that he was free of cancer.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " It took some time, and an immune-​suppressing medication, but slowly the patient began to recover. That was this past summer. These days he can walk, but only with a walker. And he still coughs a lot. But he’s hopeful that, come spring, he’ll be back on his tractor, even if he has to get onto it from the porch.\n", + " Evidence\n", + "\n", + "
" + ], + "text/plain": [ + "" + ] }, "metadata": {}, "output_type": "display_data" @@ -16830,7 +23995,7 @@ { "data": { "text/html": [ - "

nytimes\\metamates-googlers.txt

" + "

metamates-googlers.txt

" ], "text/plain": [ "" @@ -16843,34 +24008,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-78c87ffcb0c3deec\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-78c87ffcb0c3deec\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-78c87ffcb0c3deec\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-78c87ffcb0c3deec\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "cc868dedf367440086a8f33d38af9711", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00\n", "\n", "\n", - " The issue is not that Facebook/Meta/whatever picked an awkward name to refer to its employees. The issue is that companies in technology love to use proper nouns for their workers. This is not normal. The thing is, technology is normal now. There was a time when the tech industry was novel and different, and its corporate cultures were, too. But technology is so ingrained in our lives now that many of the company quirks that felt adorable in 2000 now seem like artifice. \n", + " The issue is not that Facebook/Meta/whatever picked an awkward name to refer to its employees. The issue is that companies in technology love to use proper nouns for their workers. This is not normal.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The thing is, technology is normal now. There was a time when the tech industry was novel and different, and its corporate cultures were, too. But technology is so ingrained in our lives now that many of the company quirks that felt adorable in 2000 now seem like artifice. \n", " Evidence\n", "\n", "\n", @@ -16989,7 +24160,27 @@ "\n", "\n", "\n", - " Google employees are called Googlers. New hire Googlers are Nooglers. Former Googlers are Xooglers. There are Pinployees at Pinterest. Twilions work for Twilio. Dashers deliver burritos for DoorDash. Toasters toil for a company that makes newfangled cash registers. Boxers are in the corner at the software company called Box, and Dropboxers at the similarly named Dropbox. Splunk calls its workers Splunkers. It’s a shame. The cave explorer term Spelunkers was right there. HubSpot’s HubSpotters and Amazon’s Amazonians sound like rival teams in the Canadian Football League. Silicon Valley also has Puritans (Pure Storage employees), Palantirians (Palantir) and … wait for it … Coinbaes at the Bitcoin bank Coinbase. (“Bae” is a term of endearment for someone special.) Maybe you find this corny or cute. It is both! And if copious bread puns make people feel more connected to their colleagues, then carb me in. OK, that was bad. Sorry. Naming employees is not exclusively but mostly a tech thing. As far as I know, JPMorgan Chase bank tellers are not regularly called “Chasers.” New York Times employees are not called “Gray Ladies” like the newspaper’s old nickname — and if you call me a Gray Lady, I will whack you on the nose with a thick Sunday paper. (Or I would, if I hadn’t gone all digital.)\n", + " Google employees are called Googlers. New hire Googlers are Nooglers. Former Googlers are Xooglers. There are Pinployees at Pinterest. Twilions work for Twilio. Dashers deliver burritos for DoorDash. Toasters toil for a company that makes newfangled cash registers.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Boxers are in the corner at the software company called Box, and Dropboxers at the similarly named Dropbox. Splunk calls its workers Splunkers. It’s a shame. The cave explorer term Spelunkers was right there. HubSpot’s HubSpotters and Amazon’s Amazonians sound like rival teams in the Canadian Football League.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Silicon Valley also has Puritans (Pure Storage employees), Palantirians (Palantir) and … wait for it … Coinbaes at the Bitcoin bank Coinbase. (“Bae” is a term of endearment for someone special.)\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Maybe you find this corny or cute. It is both! And if copious bread puns make people feel more connected to their colleagues, then carb me in. OK, that was bad. Sorry.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Naming employees is not exclusively but mostly a tech thing. As far as I know, JPMorgan Chase bank tellers are not regularly called “Chasers.” New York Times employees are not called “Gray Ladies” like the newspaper’s old nickname — and if you call me a Gray Lady, I will whack you on the nose with a thick Sunday paper. (Or I would, if I hadn’t gone all digital.)\n", " Evidence\n", "\n", "\n", @@ -16999,7 +24190,12 @@ "\n", "\n", "\n", - " Believe it or not, there was a time when technology was a fringe industry that was desperate for attention. Steve Jobs used to call reporters at home to persuade them to care more about stuff that Apple was doing. Technology companies embraced their outsider and underdog status. It was cool to be different and unwanted. That’s not reality anymore. Technology won, and it’s everything and everywhere. Human communications are inseparable from tech, and so are money, entertainment, agriculture, transportation, our interactions with government and the ways we learn and work. Tech companies and executives are among the wealthiest and most powerful forces on the planet. Elon Musk can move stock markets with tweets from the toilet.\n", + " Believe it or not, there was a time when technology was a fringe industry that was desperate for attention. Steve Jobs used to call reporters at home to persuade them to care more about stuff that Apple was doing. Technology companies embraced their outsider and underdog status. It was cool to be different and unwanted.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " That’s not reality anymore. Technology won, and it’s everything and everywhere. Human communications are inseparable from tech, and so are money, entertainment, agriculture, transportation, our interactions with government and the ways we learn and work. Tech companies and executives are among the wealthiest and most powerful forces on the planet. Elon Musk can move stock markets with tweets from the toilet.\n", " Evidence\n", "\n", "\n", @@ -17009,7 +24205,22 @@ "\n", "\n", "\n", - " Some tech quirks are pretty good. Who can argue with free sundaes for employees and desk chairs that double as works of art? And tech people don’t have to be soulless drones. But there must be a happy medium between boring corporate chief executives and the billionaire co-founder of Palantir who pitched his company’s stock while on roller skis and wearing exercise clothing and goggles. As with many things about tech, those proper nouns for corporate workers might need a rethink. Coinbase can keep Coinbaes, though. Truly A+. Tech employees are the new toilet paper, I guess. With the unemployment rate for tech workers nearing zero, potential new hires are growing weary of being pursued all the time. “They think we’re like used-car salesmen,” one recruiter for tech companies told Susan Dominus for The New York Times Magazine. Tech can do only so much about climbing gas and electricity bills. My colleague Brian X. Chen writes about the benefits and limits of energy-saving technologies like the Nest internet-connected thermostat. Brian learned that no gadget can save you from a poorly insulated home.\n", + " Some tech quirks are pretty good. Who can argue with free sundaes for employees and desk chairs that double as works of art? And tech people don’t have to be soulless drones. But there must be a happy medium between boring corporate chief executives and the billionaire co-founder of Palantir who pitched his company’s stock while on roller skis and wearing exercise clothing and goggles.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " As with many things about tech, those proper nouns for corporate workers might need a rethink. Coinbase can keep Coinbaes, though. Truly A+. \n", + " Evidence\n", + "\n", + "\n", + "\n", + " Tech employees are the new toilet paper, I guess. With the unemployment rate for tech workers nearing zero, potential new hires are growing weary of being pursued all the time. “They think we’re like used-car salesmen,” one recruiter for tech companies told Susan Dominus for The New York Times Magazine.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Tech can do only so much about climbing gas and electricity bills. My colleague Brian X. Chen writes about the benefits and limits of energy-saving technologies like the Nest internet-connected thermostat. Brian learned that no gadget can save you from a poorly insulated home.\n", " Evidence\n", "\n", "\n", @@ -17019,7 +24230,12 @@ "\n", "\n", "\n", - " This kitty towers over an elaborate model train set. (The video is from last year, but it always cheers me up.) We want to hear from you. Tell us what you think of this newsletter and what else you’d like us to explore. You can reach us at ontech@nytimes.com.\n", + " This kitty towers over an elaborate model train set. (The video is from last year, but it always cheers me up.)\n", + " Evidence\n", + "\n", + "\n", + "\n", + " We want to hear from you. Tell us what you think of this newsletter and what else you’d like us to explore. You can reach us at ontech@nytimes.com.\n", " Evidence\n", "\n", "\n", @@ -17048,7 +24264,7 @@ { "data": { "text/html": [ - "

nytimes\\metaverse-gaming-definition.txt

" + "

metaverse-gaming-definition.txt

" ], "text/plain": [ "" @@ -17061,34 +24277,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-6c8c4bcd76bba24e\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-6c8c4bcd76bba24e\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-6c8c4bcd76bba24e\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-6c8c4bcd76bba24e\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "62a425b664e44da38103950398a94fe6", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00\n", "\n", "\n", - " In what techies like Mr. Zuckerberg call the metaverse, virtual reality serves as a computing platform for living a second life online. In virtual reality, you wear a headset that immerses you in a 3-D environment. You carry motion-sensing controllers to interact with virtual objects and use a microphone to communicate with others. Matthew Ball, a venture capitalist who has written extensively about the topic, said the metaverse represented the fourth wave to computers, following mainframe computing, personal computing and mobile computing. “It’s moving into what people call ambient computing,” he said about the metaverse. “It’s about being within the computer rather than accessing the computer. It’s about being always online rather than always having access to an online world.”\n", + " In what techies like Mr. Zuckerberg call the metaverse, virtual reality serves as a computing platform for living a second life online. In virtual reality, you wear a headset that immerses you in a 3-D environment. You carry motion-sensing controllers to interact with virtual objects and use a microphone to communicate with others.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Matthew Ball, a venture capitalist who has written extensively about the topic, said the metaverse represented the fourth wave to computers, following mainframe computing, personal computing and mobile computing.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “It’s moving into what people call ambient computing,” he said about the metaverse. “It’s about being within the computer rather than accessing the computer. It’s about being always online rather than always having access to an online world.”\n", " Evidence\n", "\n", "\n", @@ -17220,7 +24420,17 @@ "\n", "\n", "\n", - " Some social elements of the metaverse can already be found in video games. Consider Fortnite, an online shooter game played on computers, game consoles and mobile devices. The average Fortnite player spends hundreds of hours in the game with a personal avatar, fighting with and interacting with the avatars of other players. Players also accrue virtual currency that unlocks outfits and other goodies to customize their avatars. A precursor to the metaverse could also be found in Second Life, an online social platform developed by Linden Lab nearly two decades ago, where people created digital representations of themselves to socialize with others. In the virtual space, users could shop and build property to enrich their virtual lives. Virtual reality is also somewhat advanced in video games. In 2016, Sony released the $400 PlayStation VR, a virtual reality headset that plugged into its PlayStation 4 console to play virtual reality games. This month, Sony said a second-generation headset was coming for the PlayStation 5, though it did not share a release date.\n", + " Some social elements of the metaverse can already be found in video games. Consider Fortnite, an online shooter game played on computers, game consoles and mobile devices. The average Fortnite player spends hundreds of hours in the game with a personal avatar, fighting with and interacting with the avatars of other players. Players also accrue virtual currency that unlocks outfits and other goodies to customize their avatars.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " A precursor to the metaverse could also be found in Second Life, an online social platform developed by Linden Lab nearly two decades ago, where people created digital representations of themselves to socialize with others. In the virtual space, users could shop and build property to enrich their virtual lives.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Virtual reality is also somewhat advanced in video games. In 2016, Sony released the $400 PlayStation VR, a virtual reality headset that plugged into its PlayStation 4 console to play virtual reality games. This month, Sony said a second-generation headset was coming for the PlayStation 5, though it did not share a release date.\n", " Evidence\n", "\n", "\n", @@ -17230,7 +24440,12 @@ "\n", "\n", "\n", - " “It’s only in the last few years that a critical mass of working pieces has come together,” Mr. Ball said. Truth be told, not too much.\n", + " “It’s only in the last few years that a critical mass of working pieces has come together,” Mr. Ball said.\n", + " Claim\n", + "\n", + "\n", + "\n", + " Truth be told, not too much.\n", " Claim\n", "\n", "\n", @@ -17250,7 +24465,12 @@ "\n", "\n", "\n", - " For several years, the software giant has developed the HoloLens, a $3,500 headset that shows digital holograms, with a focus on applications for businesses and government agencies. The device is related to augmented reality, which some technologists consider to be part of the future metaverse. Microsoft is also the developer of the Xbox, the second most popular game console after the Sony PlayStation. But unlike the PlayStation, the Xbox has been conspicuously absent from the virtual reality gaming space. \n", + " For several years, the software giant has developed the HoloLens, a $3,500 headset that shows digital holograms, with a focus on applications for businesses and government agencies. The device is related to augmented reality, which some technologists consider to be part of the future metaverse.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Microsoft is also the developer of the Xbox, the second most popular game console after the Sony PlayStation. But unlike the PlayStation, the Xbox has been conspicuously absent from the virtual reality gaming space. \n", " Evidence\n", "\n", "
" @@ -17274,7 +24494,7 @@ { "data": { "text/html": [ - "

nytimes\\metaverse-politics-disinformation-society.txt

" + "

metaverse-politics-disinformation-society.txt

" ], "text/plain": [ "" @@ -17294,7 +24514,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "b63bc6a7b25649058a986a9bd3c2e8e3", + "model_id": "e8cece985f3b475a9247fda6b652c272", "version_major": 2, "version_minor": 0 }, @@ -17315,7 +24535,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "2664062eff1a4c86ae71a43aa6f42cd2", + "model_id": "3b5e1762b67741c4b72a680bfe36c811", "version_major": 2, "version_minor": 0 }, @@ -17335,7 +24555,7 @@ "But while the metaverse could revolutionize work and play, it is essential to remain wary of the dangers that will emerge if it subsumes daily life. {'label': 'Rebuttal', 'score': 0.8579508066177368}\n", "Virtual environments will supercharge disinformation campaigns, espionage and surveillance. Struggles for control of the metaverse’s physical infrastructure could very well aggravate global conflicts. And the supranational nature of the metaverse — where real-world borders become far less relevant — could revolutionize the way that individuals perceive and interact with nation-states. {'label': 'Evidence', 'score': 0.7309265732765198}\n", "A failure to anticipate these possibilities may put the global world order at risk of being replaced by a virtual, and perhaps less virtuous, one. {'label': 'Claim', 'score': 0.48474985361099243}\n", - "Today, glimpses of the metaverse are everywhere. Virtual concerts attract record audiences; high-end designers sell virtual fashion; and gaming has become a livelihood for people around the world. Many of the closest corollaries to a full-fledged metaverse are immersive games like Fortnite, Minecraft and Roblox, where players can socialize, shop and attend events in a virtual world. {'label': 'Lead', 'score': 0.6995190382003784}\n", + "Today, glimpses of the metaverse are everywhere. Virtual concerts attract record audiences; high-end designers sell virtual fashion; and gaming has become a livelihood for people around the world. Many of the closest corollaries to a full-fledged metaverse are immersive games like Fortnite, Minecraft and Roblox, where players can socialize, shop and attend events in a virtual world. {'label': 'Lead', 'score': 0.6995189785957336}\n", "There’s already evidence that online multiplayer games can enable the spread of disinformation and conspiracy theories. Players can use in-game communication tools to disseminate rumors or “fake news,” targeting others in difficult-to-track ways. {'label': 'Evidence', 'score': 0.6133278608322144}\n", "The metaverse could allow motivated regimes or extremist groups to go a step farther. Immersive layers of text, voice and visuals in virtual environments would provide new, convincing ways to broadcast misleading or extremist content. {'label': 'Evidence', 'score': 0.6839314699172974}\n", "In environments where individuals can be represented by pseudonymous avatars, knowing whom to trust with sensitive information will become even more difficult. This could pave the way for a new era of espionage. {'label': 'Claim', 'score': 0.5496785640716553}\n", @@ -17346,11 +24566,33 @@ "A constellation of technologies, including hardware, computer networks and payment tools, will support the metaverse’s functionality. The countries that maintain control over those technologies will have significant international leverage, just as countries that command things like transport routes or oil supplies do today. {'label': 'Evidence', 'score': 0.8707076907157898}\n", "China could effectively control the metaverse’s backbone in many corners of the world, thanks to its Digital Silk Road initiative, which finances some countries’ telecommunications systems. Taiwan, which dominates the semiconductor industry that supports computing needs, will likely become even more of a linchpin on the global stage. {'label': 'Evidence', 'score': 0.8933605551719666}\n", "This kind of physical infrastructure will, in turn, be vulnerable to hacking and supply chain interruptions. If people own property, earn a living, and maintain communities in the metaverse, then hardware shortages or service outages could jeopardize livelihoods or undermine social stability. {'label': 'Evidence', 'score': 0.863372266292572}\n", - "Despite these threats, the metaverse also has the potential to change global affairs for the better. International diplomacy may just as easily be conducted in virtual embassies. Smaller, less powerful nations may find themselves on a more level playing field, better able to stay in the mix in global affairs or perhaps, to forge unlikely alliances. {'label': 'Rebuttal', 'score': 0.626261830329895}\n", + "Despite these threats, the metaverse also has the potential to change global affairs for the better. International diplomacy may just as easily be conducted in virtual embassies. Smaller, less powerful nations may find themselves on a more level playing field, better able to stay in the mix in global affairs or perhaps, to forge unlikely alliances. {'label': 'Rebuttal', 'score': 0.6262617707252502}\n", "Virtual environments have also shown promise for activists resisting digital authoritarianism. On Minecraft, Reporters Without Borders has sponsored an Uncensored Library where users could see content by dissident writers that had been censored in countries like Saudi Arabia, Russia and Vietnam. It’s possible that the metaverse may bring new promise for freedom and transparency across borders. {'label': 'Evidence', 'score': 0.9809460043907166}\n", "But the metaverse’s consequences may be even more radical. {'label': 'Rebuttal', 'score': 0.8597285747528076}\n", "If it becomes as all-encompassing as some predict, the metaverse may foster virtual communities, networks and economies that transcend borders and national identities. Individuals might one day identify primarily with metaverse-based decentralized autonomous organizations with their own quasi-foreign policies. Such a transition could mandate the reconceptualization of geopolitical affairs from the ground up. {'label': 'Evidence', 'score': 0.8217823505401611}\n", - "The metaverse may have been born in science fiction, but it’s up to us to write a future grounded in cleareyed reality. {'label': 'Position', 'score': 0.4609670341014862}\n" + "The metaverse may have been born in science fiction, but it’s up to us to write a future grounded in cleareyed reality. {'label': 'Position', 'score': 0.4609670341014862}\n", + " text label score\n", + "0 The metaverse is coming. It was once a science... Lead 0.913818\n", + "1 In the metaverse, a user might curate a digita... Evidence 0.457832\n", + "2 But while the metaverse could revolutionize wo... Rebuttal 0.857951\n", + "3 Virtual environments will supercharge disinfor... Evidence 0.730927\n", + "4 A failure to anticipate these possibilities ma... Claim 0.484750\n", + "5 Today, glimpses of the metaverse are everywher... Lead 0.699519\n", + "6 There’s already evidence that online multiplay... Evidence 0.613328\n", + "7 The metaverse could allow motivated regimes or... Evidence 0.683931\n", + "8 In environments where individuals can be repre... Claim 0.549679\n", + "9 Digital espionage has already been used by doz... Evidence 0.686262\n", + "10 Countries and corporations alike will likely a... Claim 0.816655\n", + "11 States have already used facial recognition te... Evidence 0.959065\n", + "12 Even the metaverse’s physical infrastructure w... Claim 0.963662\n", + "13 A constellation of technologies, including har... Evidence 0.870708\n", + "14 China could effectively control the metaverse’... Evidence 0.893361\n", + "15 This kind of physical infrastructure will, in ... Evidence 0.863372\n", + "16 Despite these threats, the metaverse also has ... Rebuttal 0.626262\n", + "17 Virtual environments have also shown promise f... Evidence 0.980946\n", + "18 But the metaverse’s consequences may be even m... Rebuttal 0.859729\n", + "19 If it becomes as all-encompassing as some pred... Evidence 0.821782\n", + "20 The metaverse may have been born in science fi... Position 0.460967\n" ] }, { @@ -17388,7 +24630,12 @@ "\n", "\n", "\n", - " There’s already evidence that online multiplayer games can enable the spread of disinformation and conspiracy theories. Players can use in-game communication tools to disseminate rumors or “fake news,” targeting others in difficult-to-track ways. The metaverse could allow motivated regimes or extremist groups to go a step farther. Immersive layers of text, voice and visuals in virtual environments would provide new, convincing ways to broadcast misleading or extremist content.\n", + " There’s already evidence that online multiplayer games can enable the spread of disinformation and conspiracy theories. Players can use in-game communication tools to disseminate rumors or “fake news,” targeting others in difficult-to-track ways.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The metaverse could allow motivated regimes or extremist groups to go a step farther. Immersive layers of text, voice and visuals in virtual environments would provide new, convincing ways to broadcast misleading or extremist content.\n", " Evidence\n", "\n", "\n", @@ -17418,7 +24665,17 @@ "\n", "\n", "\n", - " A constellation of technologies, including hardware, computer networks and payment tools, will support the metaverse’s functionality. The countries that maintain control over those technologies will have significant international leverage, just as countries that command things like transport routes or oil supplies do today. China could effectively control the metaverse’s backbone in many corners of the world, thanks to its Digital Silk Road initiative, which finances some countries’ telecommunications systems. Taiwan, which dominates the semiconductor industry that supports computing needs, will likely become even more of a linchpin on the global stage. This kind of physical infrastructure will, in turn, be vulnerable to hacking and supply chain interruptions. If people own property, earn a living, and maintain communities in the metaverse, then hardware shortages or service outages could jeopardize livelihoods or undermine social stability.\n", + " A constellation of technologies, including hardware, computer networks and payment tools, will support the metaverse’s functionality. The countries that maintain control over those technologies will have significant international leverage, just as countries that command things like transport routes or oil supplies do today.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " China could effectively control the metaverse’s backbone in many corners of the world, thanks to its Digital Silk Road initiative, which finances some countries’ telecommunications systems. Taiwan, which dominates the semiconductor industry that supports computing needs, will likely become even more of a linchpin on the global stage.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " This kind of physical infrastructure will, in turn, be vulnerable to hacking and supply chain interruptions. If people own property, earn a living, and maintain communities in the metaverse, then hardware shortages or service outages could jeopardize livelihoods or undermine social stability.\n", " Evidence\n", "\n", "\n", @@ -17467,7 +24724,7 @@ { "data": { "text/html": [ - "

nytimes\\microsoft-activision-metaverse.txt

" + "

microsoft-activision-metaverse.txt

" ], "text/plain": [ "" @@ -17480,34 +24737,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-aa026f4fd1d65feb\n" + "Using custom data configuration default-aa026f4fd1d65feb\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-aa026f4fd1d65feb\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-aa026f4fd1d65feb\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" - ] - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "459ca066a88f4008920dc4ba1952acf7", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00\n", "\n", "\n", - " The metaverse is hard to define. (We could just call it the next phase of the internet, but I guess that’s too boring.) Tech companies now believe that video games are a gateway to moving faster toward whatever that more immersive internet future will be, and they are dictating what it will look like, and who the winners and losers will be. Wanting to shape the future of the internet is one reason Facebook renamed itself Meta and has focused so much attention on its Oculus virtual reality goggles and video-game-like virtual business meetings. It’s also a reason Apple is designing face computers, and why Amazon and Google have used their cloud-computing services to make it easier for people to stream sophisticated video games over the internet. Video games for a long time have been a glimpse at what’s possible. Even before we camped out on Facebook and YouTube, game designers created worlds that didn’t exist but felt real. Video games were among the first consumer products that proved that people would pay for virtual things — for example, weapons, clothing or tractors in FarmVille. Gamers are already living in the metaverse, and tech companies essentially want to bring that sense of imagination to every aspect of life online, including friendships, shopping and live theater. I don’t know that any of these Big Tech companies know exactly what they want a more immersive internet to look like. I also don’t know that we want Mark Zuckerberg or Microsoft’s chief executive, Satya Nadella, to dictate the future of virtual human interactions.\n", + " The metaverse is hard to define. (We could just call it the next phase of the internet, but I guess that’s too boring.) Tech companies now believe that video games are a gateway to moving faster toward whatever that more immersive internet future will be, and they are dictating what it will look like, and who the winners and losers will be.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Wanting to shape the future of the internet is one reason Facebook renamed itself Meta and has focused so much attention on its Oculus virtual reality goggles and video-game-like virtual business meetings. It’s also a reason Apple is designing face computers, and why Amazon and Google have used their cloud-computing services to make it easier for people to stream sophisticated video games over the internet.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Video games for a long time have been a glimpse at what’s possible. Even before we camped out on Facebook and YouTube, game designers created worlds that didn’t exist but felt real. Video games were among the first consumer products that proved that people would pay for virtual things — for example, weapons, clothing or tractors in FarmVille. Gamers are already living in the metaverse, and tech companies essentially want to bring that sense of imagination to every aspect of life online, including friendships, shopping and live theater.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " I don’t know that any of these Big Tech companies know exactly what they want a more immersive internet to look like. I also don’t know that we want Mark Zuckerberg or Microsoft’s chief executive, Satya Nadella, to dictate the future of virtual human interactions.\n", " Evidence\n", "\n", "\n", @@ -17639,7 +24908,17 @@ "\n", "\n", "\n", - " Activision might not have been sold without the claims of workplace sexual misconduct and other mistreatment of employees that have roiled the company in the past year. A significant number of its workers, plus regulators and some of the company’s investors, have said that Activision let problems fester for far too long. Those claims have hit its stock price, making it a less expensive purchase for Microsoft than it would have been a year ago. As for money not making any sense — Microsoft and most other tech giants have oodles of cash and stock prices in the stratosphere, and they can borrow money practically for free. That makes even eye-popping business acquisitions like Activision less nutty than they might have seemed a couple of years ago. (Microsoft’s stock price did fall a bit Tuesday morning, a sign that investors are questioning the wisdom of the purchase or the high price.) Even absent imaginations of the metaverse, video games are a cultural force today and a huge business. Video games generate far more revenue than the global movie industry, and games are by far the most popular and lucrative smartphone apps in the world.\n", + " Activision might not have been sold without the claims of workplace sexual misconduct and other mistreatment of employees that have roiled the company in the past year. A significant number of its workers, plus regulators and some of the company’s investors, have said that Activision let problems fester for far too long. Those claims have hit its stock price, making it a less expensive purchase for Microsoft than it would have been a year ago.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " As for money not making any sense — Microsoft and most other tech giants have oodles of cash and stock prices in the stratosphere, and they can borrow money practically for free. That makes even eye-popping business acquisitions like Activision less nutty than they might have seemed a couple of years ago. (Microsoft’s stock price did fall a bit Tuesday morning, a sign that investors are questioning the wisdom of the purchase or the high price.)\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Even absent imaginations of the metaverse, video games are a cultural force today and a huge business. Video games generate far more revenue than the global movie industry, and games are by far the most popular and lucrative smartphone apps in the world.\n", " Evidence\n", "\n", "\n", @@ -17649,7 +24928,17 @@ "\n", "\n", "\n", - " Amazon wants more electric delivery vans. AND IT WANTS THEM NOW. My colleagues Karen Weise and Neal Boudette explain why the mostly young electric vehicle manufacturers cannot meet Amazon’s voracious needs. The local government app that is challenging Uber: The tech news publication Rest of World writes that more Rio de Janeiro residents are skipping Uber rides for traditional taxis. The local government has invested in developing a taxi dispatch app, and the authorities have kept cab prices mostly the same while Uber fares have gone up because of high fuel prices and a shortage of drivers. “Squid Game” was not an accident. Bloomberg News explores Netflix’s strategy to air more South Korean programming including last year’s hit “Squid Game” series. Netflix is picking up entertainment ideas that were too edgy for Korea’s TV industry, and it’s winning fans throughout the world. (A subscription may be required.)\n", + " Amazon wants more electric delivery vans. AND IT WANTS THEM NOW. My colleagues Karen Weise and Neal Boudette explain why the mostly young electric vehicle manufacturers cannot meet Amazon’s voracious needs.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The local government app that is challenging Uber: The tech news publication Rest of World writes that more Rio de Janeiro residents are skipping Uber rides for traditional taxis. The local government has invested in developing a taxi dispatch app, and the authorities have kept cab prices mostly the same while Uber fares have gone up because of high fuel prices and a shortage of drivers.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Squid Game” was not an accident. Bloomberg News explores Netflix’s strategy to air more South Korean programming including last year’s hit “Squid Game” series. Netflix is picking up entertainment ideas that were too edgy for Korea’s TV industry, and it’s winning fans throughout the world. (A subscription may be required.)\n", " Evidence\n", "\n", "\n", @@ -17688,7 +24977,7 @@ { "data": { "text/html": [ - "

nytimes\\modern-love-i-tried-so-hard-to-be-good.txt

" + "

modern-love-i-tried-so-hard-to-be-good.txt

" ], "text/plain": [ "" @@ -17701,34 +24990,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-71b2dc8352669aa3\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-71b2dc8352669aa3\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-71b2dc8352669aa3\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-71b2dc8352669aa3\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "efb6e38051d84ce08e6ea2211997cfd9", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " My husband and I married in a Presbyterian church in Watkins Glen, N.Y., on the banks of Seneca Lake. It was June 2006, three months before he started seminary and five-and-a-half years after I had quit the sex industry. I considered our wedding the marriage of the former stripper and the future minister. After the wedding, I followed the contours of his career with the flexibility and accord of a synchronized swimmer. I left my job at a Vermont newspaper and moved to Boston, where he had enrolled in theological school. While he studied, I read books that told me how to read The Book, how to live The Book. To cross the Jordan, I read, we must die, symbolically. We must give ourselves up, let go and be embodied by Christ. I let go of all my friends, gave up my Blues music (too sexy) and Celtic music (too many mentions of whiskey) and my tight iridescent clothes. My sex toys and handcuffs dropped straight into the garbage. The furniture I had owned was expunged from our lives, the wood buckling on the back porch before we tossed each piece into the trash. Purged of my former life, I started over, guided by this 22-year-old man, seven years younger than I, who was making Jesus his business.\n", + " My husband and I married in a Presbyterian church in Watkins Glen, N.Y., on the banks of Seneca Lake. It was June 2006, three months before he started seminary and five-and-a-half years after I had quit the sex industry. I considered our wedding the marriage of the former stripper and the future minister.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " After the wedding, I followed the contours of his career with the flexibility and accord of a synchronized swimmer. I left my job at a Vermont newspaper and moved to Boston, where he had enrolled in theological school. While he studied, I read books that told me how to read The Book, how to live The Book.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " To cross the Jordan, I read, we must die, symbolically. We must give ourselves up, let go and be embodied by Christ. I let go of all my friends, gave up my Blues music (too sexy) and Celtic music (too many mentions of whiskey) and my tight iridescent clothes.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " My sex toys and handcuffs dropped straight into the garbage. The furniture I had owned was expunged from our lives, the wood buckling on the back porch before we tossed each piece into the trash. Purged of my former life, I started over, guided by this 22-year-old man, seven years younger than I, who was making Jesus his business.\n", " Evidence\n", "\n", "\n", @@ -17848,7 +25138,27 @@ "\n", "\n", "\n", - " In my experience, sex work and Christianity were not incongruous. I only danced for a few months, in San Francisco and New York, to make my rent payments between college and my job as a web developer, but the shame and guilt I felt about stripping pivoted neatly to my role as a good Christian wife. In both cases, I relied on the perceptions of others to define my value. Our first baby was born in the winter, and the next summer we lived at a Baptist summer camp where my husband was employed as the waterfront director. Each day I traversed the camp with the baby in a jogging stroller, juddering down the rocky path to the lake where my husband stood on a dock all day watching the water. After dinner he jumped inside an octagonal pen and played gaga ball with 11-year-old boys while I retreated to our room to nurse the baby because I was not allowed to breastfeed in front of campers. In the evenings, staff gave testimonies of their Christian journeys and led singalongs, campfires and talent shows. By the time my husband came to bed, the baby and I were asleep. When we woke at 7 a.m., he was gone. I read the Bible that summer, Genesis to Revelation. I memorized scriptures. One night I came to the chapel where my husband was preaching to campers and heard him lecture from Leviticus Chapter 11. It is OK, he said, to eat crickets and grasshoppers, but not flies. Locusts are an acceptable snack, but shrimp are forbidden. If you pick up a dead pig, you must wash your clothes.\n", + " In my experience, sex work and Christianity were not incongruous. I only danced for a few months, in San Francisco and New York, to make my rent payments between college and my job as a web developer, but the shame and guilt I felt about stripping pivoted neatly to my role as a good Christian wife. In both cases, I relied on the perceptions of others to define my value.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Our first baby was born in the winter, and the next summer we lived at a Baptist summer camp where my husband was employed as the waterfront director.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Each day I traversed the camp with the baby in a jogging stroller, juddering down the rocky path to the lake where my husband stood on a dock all day watching the water. After dinner he jumped inside an octagonal pen and played gaga ball with 11-year-old boys while I retreated to our room to nurse the baby because I was not allowed to breastfeed in front of campers.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In the evenings, staff gave testimonies of their Christian journeys and led singalongs, campfires and talent shows. By the time my husband came to bed, the baby and I were asleep. When we woke at 7 a.m., he was gone.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " I read the Bible that summer, Genesis to Revelation. I memorized scriptures. One night I came to the chapel where my husband was preaching to campers and heard him lecture from Leviticus Chapter 11. It is OK, he said, to eat crickets and grasshoppers, but not flies. Locusts are an acceptable snack, but shrimp are forbidden. If you pick up a dead pig, you must wash your clothes.\n", " Evidence\n", "\n", "\n", @@ -17858,7 +25168,12 @@ "\n", "\n", "\n", - " I didn’t tell anyone I was terrified the Christian community would reject me if they knew I used to be a stripper. My husband told me his career depended on our collective reputation. The camp director’s wife ate meals at our table. She was stout with a round face and creases under her eyes, and she was accessible, meaning she acknowledged that I existed and greeted me in a grumpy but cheerful way.\n", + " I didn’t tell anyone I was terrified the Christian community would reject me if they knew I used to be a stripper. My husband told me his career depended on our collective reputation.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The camp director’s wife ate meals at our table. She was stout with a round face and creases under her eyes, and she was accessible, meaning she acknowledged that I existed and greeted me in a grumpy but cheerful way.\n", " Evidence\n", "\n", "\n", @@ -17873,7 +25188,32 @@ "\n", "\n", "\n", - " I was baptized as a baby and again with my husband, full immersion, fully clothed, a month after our daughter was born. I had given my life to Christ at the Mission Church in Somerville, Mass., two years earlier. Did the testimony also include the question: When did you conclude there must be a light to lead us out of this dense darkness? When did you feel so wrong you decided to turn around, to repent? Was it in the basement of the Paradise Club, when a man yanked you down and groped you? The camp director’s wife rolled her eyes and said, “Well, that’s up to you to decide.” My full testimony, I thought, might have a shock value similar to the story a man from the kitchen staff told to the new campers about putting a gun to his head and hearing a voice say, “I love you.” I wondered what kind of shocks they were willing to accept. Did they believe strippers could be saved? Some jobs are water, and some are wine. Some evaporate without a trace, and some leave a stain. The Bible studies were segregated by gender, so I went to the women’s Bible study and told them that I was lonely, that I needed a mentor or someone I could talk to about my spiritual path. They listened with wide eyes, then closed them and prayed that I would find someone. By “someone,” they meant someone else.\n", + " I was baptized as a baby and again with my husband, full immersion, fully clothed, a month after our daughter was born. I had given my life to Christ at the Mission Church in Somerville, Mass., two years earlier.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Did the testimony also include the question: When did you conclude there must be a light to lead us out of this dense darkness? When did you feel so wrong you decided to turn around, to repent? Was it in the basement of the Paradise Club, when a man yanked you down and groped you?\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The camp director’s wife rolled her eyes and said, “Well, that’s up to you to decide.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " My full testimony, I thought, might have a shock value similar to the story a man from the kitchen staff told to the new campers about putting a gun to his head and hearing a voice say, “I love you.” I wondered what kind of shocks they were willing to accept. Did they believe strippers could be saved?\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Some jobs are water, and some are wine. Some evaporate without a trace, and some leave a stain.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The Bible studies were segregated by gender, so I went to the women’s Bible study and told them that I was lonely, that I needed a mentor or someone I could talk to about my spiritual path. They listened with wide eyes, then closed them and prayed that I would find someone. By “someone,” they meant someone else.\n", " Evidence\n", "\n", "\n", @@ -17903,7 +25243,32 @@ "\n", "\n", "\n", - " I tried so hard to be good. Quieting the babies at night so he could sleep soundly before his exams. Smiling politely when a man would say, “Behind every great man is a great woman,” instead of asking why they stand right in front of us. I felt invisible. From the hyper exposure of bare skin on a spot-lit stage, I had repented and repackaged myself as a pastor’s wife. The pendulum had swung from one extreme to another, and neither felt authentic. I don’t know how the Christian community at the camp would have reacted to my brief stint as a stripper because I never gave a testimony. My fear of them pre-empted their judgment of me. I never allowed them the opportunity to accept me. Stripping is not inherently shameful; by thinking in polarities of good and bad, I ascribed it with shame. In both extremes, I felt incomplete, preferring to categorize my behavior as all bad or all good. I looked to my husband to be my “other half.” When I felt naughty, he seemed holy. When I thought of myself as virtuous, I only saw his faults. The marriage lasted 15 years. As a divorced mother, I have relaxed into my body and learned to see through my own eyes — to look, not to look like; to be, not to pose. I no longer adjust myself according to my reflection in others’ eyes. My body has changed since I danced in clubs more than two decades ago. Birthing four children has stretched my belly from a six-pack to a boule of unbaked bread. It is a mother’s body. It is my body, to embrace and be embraced with love.\n", + " I tried so hard to be good. Quieting the babies at night so he could sleep soundly before his exams. Smiling politely when a man would say, “Behind every great man is a great woman,” instead of asking why they stand right in front of us.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " I felt invisible. From the hyper exposure of bare skin on a spot-lit stage, I had repented and repackaged myself as a pastor’s wife. The pendulum had swung from one extreme to another, and neither felt authentic.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " I don’t know how the Christian community at the camp would have reacted to my brief stint as a stripper because I never gave a testimony. My fear of them pre-empted their judgment of me. I never allowed them the opportunity to accept me.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Stripping is not inherently shameful; by thinking in polarities of good and bad, I ascribed it with shame. In both extremes, I felt incomplete, preferring to categorize my behavior as all bad or all good. I looked to my husband to be my “other half.” When I felt naughty, he seemed holy. When I thought of myself as virtuous, I only saw his faults.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The marriage lasted 15 years. As a divorced mother, I have relaxed into my body and learned to see through my own eyes — to look, not to look like; to be, not to pose. I no longer adjust myself according to my reflection in others’ eyes.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " My body has changed since I danced in clubs more than two decades ago. Birthing four children has stretched my belly from a six-pack to a boule of unbaked bread. It is a mother’s body. It is my body, to embrace and be embraced with love.\n", " Evidence\n", "\n", "\n", @@ -17932,7 +25297,7 @@ { "data": { "text/html": [ - "

nytimes\\modern-love-podcast-ham-sandwich.txt

" + "

modern-love-podcast-ham-sandwich.txt

" ], "text/plain": [ "" @@ -17945,20 +25310,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-d3a0f74000f214bc\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-d3a0f74000f214bc\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-d3a0f74000f214bc\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-d3a0f74000f214bc\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "d5458447a304460eb6e680e3d94f3cae", + "model_id": "c18731d05a9840dda0a3610fe0af757b", "version_major": 2, "version_minor": 0 }, @@ -17970,58 +25329,16 @@ "output_type": "display_data" }, { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "58ff2f9eef55403cb3ea64f1639cc822", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " Before Andrew Limbong went off to college, his mother cautioned him about the dire consequences he would face if he hugged a girl. Andrew grew up in a strict Christian household, and his parents are Indonesian immigrants, so they never spoke about sex at home. When Andrew was 20, he met his first girlfriend, Sam. As they started dating, he felt his cultural and parental influences putting “pressure on my blood vessels, not allowing the blood to go where I oh so desperately wanted it to,” he wrote in his Modern Love essay in 2011. According to Andrew’s Muslim American friend, his fears were the result of the “ham sandwich” effect: the feeling of shame when you’re breaking family tradition. Today, we unpack this metaphor — and then we hear from Andrew. He gives us an update about him and Sam (it’s exciting), and he shares advice for others who are struggling to take a bite of their own ham sandwiches.\n", + " Before Andrew Limbong went off to college, his mother cautioned him about the dire consequences he would face if he hugged a girl. Andrew grew up in a strict Christian household, and his parents are Indonesian immigrants, so they never spoke about sex at home.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " When Andrew was 20, he met his first girlfriend, Sam. As they started dating, he felt his cultural and parental influences putting “pressure on my blood vessels, not allowing the blood to go where I oh so desperately wanted it to,” he wrote in his Modern Love essay in 2011.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " According to Andrew’s Muslim American friend, his fears were the result of the “ham sandwich” effect: the feeling of shame when you’re breaking family tradition. Today, we unpack this metaphor — and then we hear from Andrew. He gives us an update about him and Sam (it’s exciting), and he shares advice for others who are struggling to take a bite of their own ham sandwiches.\n", " Evidence\n", "\n", "
" @@ -18070,7 +25401,7 @@ { "data": { "text/html": [ - "

nytimes\\motivation-energy-advice.txt

" + "

motivation-energy-advice.txt

" ], "text/plain": [ "" @@ -18083,34 +25414,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-cbfe731fdc0e781b\n" + "Using custom data configuration default-cbfe731fdc0e781b\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-cbfe731fdc0e781b\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-cbfe731fdc0e781b\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" - ] - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "0e42a5ac2813469fa95b082e2ee6d0a8", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " This April, I was feeling good. I’d figured out the public pool’s lane-reservation system and swam several times a week. I couldn’t wait to write new stories once my kids went back to school. With vaccines on their way, I even made travel plans. Three months later, I’m in a slump. The pool stopped requiring reservations, but I haven’t been since June. Between Covid-19 variants and Western wildfires, I’m not fired up about a family road trip. And when my editor asked me to research a story about motivation, all I could think was: Ugh. Motivation is the energy that gets us to take action — and I’m not the only one finding it hard to come by. Some of us might have full-on burnout after a year-plus of loss, grief and pandemic challenges. Others could feel more like I do — nothing’s terribly wrong, but we can’t quite find our spark. Whatever situation we’re in, a closer look at motivation might give us more fuel to move forward, both day-to-day and into an uncertain future.\n", + " This April, I was feeling good. I’d figured out the public pool’s lane-reservation system and swam several times a week. I couldn’t wait to write new stories once my kids went back to school. With vaccines on their way, I even made travel plans.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Three months later, I’m in a slump. The pool stopped requiring reservations, but I haven’t been since June. Between Covid-19 variants and Western wildfires, I’m not fired up about a family road trip. And when my editor asked me to research a story about motivation, all I could think was: Ugh.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Motivation is the energy that gets us to take action — and I’m not the only one finding it hard to come by. Some of us might have full-on burnout after a year-plus of loss, grief and pandemic challenges. Others could feel more like I do — nothing’s terribly wrong, but we can’t quite find our spark. Whatever situation we’re in, a closer look at motivation might give us more fuel to move forward, both day-to-day and into an uncertain future.\n", " Evidence\n", "\n", "\n", @@ -18233,12 +25558,32 @@ "\n", "\n", "\n", - " The second kind, autonomous motivation, is what we’re seeking. This is when you feel like you’re self-directed, whether you have a natural affinity for the task at hand, or you’re doing something because you understand why it’s worthwhile. I wanted more of that feeling. But when it came to this story, I found that motivation touches so many parts of our lives — school, work, exercise, volunteering, health — that I didn’t know where to begin.\n", + " The second kind, autonomous motivation, is what we’re seeking. This is when you feel like you’re self-directed, whether you have a natural affinity for the task at hand, or you’re doing something because you understand why it’s worthwhile.\n", " Claim\n", "\n", "\n", + "\n", + " I wanted more of that feeling. But when it came to this story, I found that motivation touches so many parts of our lives — school, work, exercise, volunteering, health — that I didn’t know where to begin.\n", + " Claim\n", + "\n", + "\n", + "\n", + " I needed to start small. So I started with a cup of tea.\n", + " Evidence\n", + "\n", + "\n", "\n", - " I needed to start small. So I started with a cup of tea. Looking forward to a reward isn’t the best for long-term motivation. But several studies suggest that pairing small, immediate rewards to a task improves both motivation and fun. Lora Park, an associate professor of psychology at the University at Buffalo, ran marathons before kids but now finds it can be hard to find a workout window before dark. When she uses the treadmill for an evening workout, she pairs it with Netflix to make running inside more pleasant. I gave it a try. I found a favorite mug that I only use while writing and made a special tea or hot chocolate to sip in front of the computer.\n", + " Looking forward to a reward isn’t the best for long-term motivation. But several studies suggest that pairing small, immediate rewards to a task improves both motivation and fun.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Lora Park, an associate professor of psychology at the University at Buffalo, ran marathons before kids but now finds it can be hard to find a workout window before dark. When she uses the treadmill for an evening workout, she pairs it with Netflix to make running inside more pleasant.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " I gave it a try. I found a favorite mug that I only use while writing and made a special tea or hot chocolate to sip in front of the computer.\n", " Evidence\n", "\n", "\n", @@ -18248,7 +25593,12 @@ "\n", "\n", "\n", - " Dr. Ryan, a professor at Australian Catholic University in North Sydney, said that when you connect the things that are important to you to the things you need to do — even the drudgeries — you can feel more in control of your actions. What do you love about your work? What core value does it meet? Writing about your values can be a good start, said Tanaya Winder, an Albuquerque-based motivational speaker and poet. Ms. Winder, who teaches workshops on reconnecting to your sense of purpose, often has students free write about what makes them come alive.\n", + " Dr. Ryan, a professor at Australian Catholic University in North Sydney, said that when you connect the things that are important to you to the things you need to do — even the drudgeries — you can feel more in control of your actions. What do you love about your work? What core value does it meet?\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Writing about your values can be a good start, said Tanaya Winder, an Albuquerque-based motivational speaker and poet. Ms. Winder, who teaches workshops on reconnecting to your sense of purpose, often has students free write about what makes them come alive.\n", " Evidence\n", "\n", "\n", @@ -18258,7 +25608,12 @@ "\n", "\n", "\n", - " Ms. Winder said she draws her sense of purpose from her community — she is Duckwater Shoshone, Pyramid Lake Paiute and Southern Ute — and suggested considering how your motivation is tied to the people around you, whether that’s your family or your basketball team. Social connections like this are critical to rekindling motivation, Dr. Park said, especially following the pandemic’s forced isolation. “Without that fundamental connection, motivation just starts to wither.”\n", + " Ms. Winder said she draws her sense of purpose from her community — she is Duckwater Shoshone, Pyramid Lake Paiute and Southern Ute — and suggested considering how your motivation is tied to the people around you, whether that’s your family or your basketball team.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Social connections like this are critical to rekindling motivation, Dr. Park said, especially following the pandemic’s forced isolation. “Without that fundamental connection, motivation just starts to wither.”\n", " Evidence\n", "\n", "\n", @@ -18268,7 +25623,22 @@ "\n", "\n", "\n", - " Reaching out lifts others, too. “Letting someone know that you are thinking of them is enough to kick-start their motivation,” and reminds them that you care, Dr. Park said. Recently, she sent a spontaneous thank-you note to a former college professor, thanking her for teaching a challenging, inspiring class. The professor responded quickly, saying that Dr. Park’s email had raised her flagging spirits. People also motivate each other through competition. In a 2016 study, researchers grouped students in an 11-week exercise program into small, online social networks: some groups were competitive, others provided support. Students in competitive groups exercised much more often than those in supportive social networks, said Damon Centola, the senior author of the study and a professor at the University of Pennsylvania. People around us influence us more than we might like to believe — so harness that influence by seeking out a dose of competition when you need motivation to exercise, said Dr. Centola, whose book, “Change: How to Make Big Things Happen,” looks at how social networks fuel change.\n", + " Reaching out lifts others, too. “Letting someone know that you are thinking of them is enough to kick-start their motivation,” and reminds them that you care, Dr. Park said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Recently, she sent a spontaneous thank-you note to a former college professor, thanking her for teaching a challenging, inspiring class. The professor responded quickly, saying that Dr. Park’s email had raised her flagging spirits.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " People also motivate each other through competition. In a 2016 study, researchers grouped students in an 11-week exercise program into small, online social networks: some groups were competitive, others provided support. Students in competitive groups exercised much more often than those in supportive social networks, said Damon Centola, the senior author of the study and a professor at the University of Pennsylvania.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " People around us influence us more than we might like to believe — so harness that influence by seeking out a dose of competition when you need motivation to exercise, said Dr. Centola, whose book, “Change: How to Make Big Things Happen,” looks at how social networks fuel change.\n", " Evidence\n", "\n", "\n", @@ -18278,7 +25648,27 @@ "\n", "\n", "\n", - " I needed a little of both: I haven’t returned to the pool, but I heard about a friend’s half-marathon and got the urge to push myself, so I found a fall trail race and started training. When it comes to writing, though, competition just stresses me out. My internal monologue becomes a meanspirited aerobics instructor who says things like, “You’re lazy and ungrateful!” and “Finish this story, or you’ll never work again!” This doesn’t help. Treating ourselves with compassion works much more effectively than beating ourselves up, said Kristin Neff, an associate professor of educational psychology at the University of Texas at Austin. “People think they’re going to shame themselves into action,” yet self-compassion helps people stay focused on their goals, reduces fear of failure and improves self-confidence, which can also improve motivation, she said. To start, Dr. Neff suggested pausing to ask yourself what you need. Maybe you’ll find it’s time to refocus on your purpose, or notice you’re ready to ask for outside support. Sometimes simply acknowledging you’re going through a hard time, and that this is a normal part of life, is all it takes. Self-compassion doesn’t mean you’ll go soft or lose your drive, Dr. Neff said. Her new book, “Fierce Self-Compassion: How Women Can Harness Kindness to Speak Up, Claim Their Power, and Thrive,” highlights a study of university students who did poorly on a challenging vocabulary test. Students who were encouraged to be compassionate toward themselves after the test studied longer and performed better on a follow-up test, compared to students given either simple self-esteem-boosting comments or no instruction.\n", + " I needed a little of both: I haven’t returned to the pool, but I heard about a friend’s half-marathon and got the urge to push myself, so I found a fall trail race and started training.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " When it comes to writing, though, competition just stresses me out. My internal monologue becomes a meanspirited aerobics instructor who says things like, “You’re lazy and ungrateful!” and “Finish this story, or you’ll never work again!”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " This doesn’t help. Treating ourselves with compassion works much more effectively than beating ourselves up, said Kristin Neff, an associate professor of educational psychology at the University of Texas at Austin. “People think they’re going to shame themselves into action,” yet self-compassion helps people stay focused on their goals, reduces fear of failure and improves self-confidence, which can also improve motivation, she said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " To start, Dr. Neff suggested pausing to ask yourself what you need. Maybe you’ll find it’s time to refocus on your purpose, or notice you’re ready to ask for outside support. Sometimes simply acknowledging you’re going through a hard time, and that this is a normal part of life, is all it takes.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Self-compassion doesn’t mean you’ll go soft or lose your drive, Dr. Neff said. Her new book, “Fierce Self-Compassion: How Women Can Harness Kindness to Speak Up, Claim Their Power, and Thrive,” highlights a study of university students who did poorly on a challenging vocabulary test. Students who were encouraged to be compassionate toward themselves after the test studied longer and performed better on a follow-up test, compared to students given either simple self-esteem-boosting comments or no instruction.\n", " Evidence\n", "\n", "\n", @@ -18317,7 +25707,7 @@ { "data": { "text/html": [ - "

nytimes\\nashville-gerrymandering-republican-democrat.txt

" + "

nashville-gerrymandering-republican-democrat.txt

" ], "text/plain": [ "" @@ -18330,34 +25720,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-44b057146028e639\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-44b057146028e639\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-44b057146028e639\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-44b057146028e639\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "b4e616ec633b48a780d0b20bc87a6e43", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00\n", "\n", "\n", - " Nashville has been represented by a single seat in the House of Representatives for as long as Tennessee has been a state. The seat has been held by a Democrat for 147 years. All that was blown up this month when Gov. Bill Lee signed into law new political maps approved by fellow Republicans in the state legislature. The maps dismembered Nashville’s solidly Democratic House district and scattered its remains among three new districts that stretch deep into Republican rural areas. Almost certainly, each of the next House members representing parts of Nashville will be a conservative Republican. To Democrats, the Nashville gerrymander is an especially egregious twist of the political knife by a rural-dominated Republican legislature that regards the big city with a mixture of disdain and envy. “Dividing the capital city up three ways like Berlin is how you treat an enemy you’re trying to defeat, not a political rival,” said Jeff Yarbro, the State Senate’s Democratic leader. Republicans call that criticism overwrought. But the move hints at an epic tug of war about the city’s future — one that reflects the nation’s divisions and yet is unique to Nashville. Subplots abound, but perhaps the most intriguing may be that the rural conservatives carving up the city are the very people whom Nashville’s music has historically celebrated. Nashville has grown as a diverse, largely Democratic boomtown that is a mix of hometown bravado, sophisticated education and health care, a history of cultural and political moderation, and the many streams of American music flourishing in the city. President Biden carried 64.5 percent of the vote in Davidson County, whose government merged with Nashville in 1963.\n", + " Nashville has been represented by a single seat in the House of Representatives for as long as Tennessee has been a state. The seat has been held by a Democrat for 147 years.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " All that was blown up this month when Gov. Bill Lee signed into law new political maps approved by fellow Republicans in the state legislature. The maps dismembered Nashville’s solidly Democratic House district and scattered its remains among three new districts that stretch deep into Republican rural areas.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Almost certainly, each of the next House members representing parts of Nashville will be a conservative Republican. To Democrats, the Nashville gerrymander is an especially egregious twist of the political knife by a rural-dominated Republican legislature that regards the big city with a mixture of disdain and envy.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Dividing the capital city up three ways like Berlin is how you treat an enemy you’re trying to defeat, not a political rival,” said Jeff Yarbro, the State Senate’s Democratic leader.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Republicans call that criticism overwrought. But the move hints at an epic tug of war about the city’s future — one that reflects the nation’s divisions and yet is unique to Nashville. Subplots abound, but perhaps the most intriguing may be that the rural conservatives carving up the city are the very people whom Nashville’s music has historically celebrated.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Nashville has grown as a diverse, largely Democratic boomtown that is a mix of hometown bravado, sophisticated education and health care, a history of cultural and political moderation, and the many streams of American music flourishing in the city. President Biden carried 64.5 percent of the vote in Davidson County, whose government merged with Nashville in 1963.\n", " Evidence\n", "\n", "\n", @@ -18494,7 +25954,37 @@ "\n", "\n", "\n", - " The differing visions reflect a city that has emerged as a credible rival to Atlanta as a whiter, more conservative Southern cultural and political center. It also has become a leading contender to host the 2024 Republican National Convention. “Nashville is not on the Republican National Committee’s short list because of any doubt about Tennessee’s 11 electoral votes,” said Kent Syler, a professor and expert on state politics at Middle Tennessee State University in Murfreesboro. “It is there because Nashville’s image speaks to swing voters across Middle America.” For many, Nashville seems a charmed place these days, even if the honky-tonk Bourbon Street that downtown Broadway has become is giving some residents second thoughts about whether all this prosperity is such a good thing. Economically, the city is on a tear, constructing high-rises and corporate campuses for companies like Amazon and Oracle and luring throngs of young, often progressive-minded workers to fill them. A 30,000-seat Major League Soccer stadium is getting finishing touches south of downtown, civic leaders are angling for a Major League Baseball franchise, and the airport is expanding to accommodate a projected five million new passengers a year by 2023. The city and nearby counties already accounted for many of the 565,000 new residents the state added in the last decade. By 2027, the region is expected to welcome another 200,000. Much credit for that prosperity goes to the economic development efforts of old-school moderate politicians of both parties like the former governors Lamar Alexander, a Republican, and Phil Bredesen, a Democrat. But a state legislature ruled by a new generation of Trump-friendly rural conservatives is now in charge, focused on social issues and eager to rein liberal urban policies and mores. Last year alone, legislators passed laws focusing on transgender students over their choice of bathrooms and participation in sports, and requiring women to bury or cremate the remains of abortions. An alliance with a conservative Christian college to set up scores of charter schools in the state was a highlight of Governor Lee’s State of the State speech last month.\n", + " The differing visions reflect a city that has emerged as a credible rival to Atlanta as a whiter, more conservative Southern cultural and political center. It also has become a leading contender to host the 2024 Republican National Convention.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Nashville is not on the Republican National Committee’s short list because of any doubt about Tennessee’s 11 electoral votes,” said Kent Syler, a professor and expert on state politics at Middle Tennessee State University in Murfreesboro. “It is there because Nashville’s image speaks to swing voters across Middle America.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " For many, Nashville seems a charmed place these days, even if the honky-tonk Bourbon Street that downtown Broadway has become is giving some residents second thoughts about whether all this prosperity is such a good thing.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Economically, the city is on a tear, constructing high-rises and corporate campuses for companies like Amazon and Oracle and luring throngs of young, often progressive-minded workers to fill them. A 30,000-seat Major League Soccer stadium is getting finishing touches south of downtown, civic leaders are angling for a Major League Baseball franchise, and the airport is expanding to accommodate a projected five million new passengers a year by 2023.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The city and nearby counties already accounted for many of the 565,000 new residents the state added in the last decade. By 2027, the region is expected to welcome another 200,000.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Much credit for that prosperity goes to the economic development efforts of old-school moderate politicians of both parties like the former governors Lamar Alexander, a Republican, and Phil Bredesen, a Democrat. But a state legislature ruled by a new generation of Trump-friendly rural conservatives is now in charge, focused on social issues and eager to rein liberal urban policies and mores.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Last year alone, legislators passed laws focusing on transgender students over their choice of bathrooms and participation in sports, and requiring women to bury or cremate the remains of abortions. An alliance with a conservative Christian college to set up scores of charter schools in the state was a highlight of Governor Lee’s State of the State speech last month.\n", " Evidence\n", "\n", "\n", @@ -18539,7 +26029,12 @@ "\n", "\n", "\n", - " One in four Davidson County residents is Black, and about one in 10 is Hispanic; in 2020, Black candidates in the Democratic primary for U.S. Senate ran one-two in the city. One Black challenger to Mr. Cooper, who is white, dropped his bid after the redistricting occurred; a second is re-evaluating her candidacy. Charlane Oliver, a co-founder of the Equity Alliance, a voting rights advocacy group, said the new House seat boundaries were drawn “with surgical precision right through all the predominantly Black neighborhoods in Nashville.”\n", + " One in four Davidson County residents is Black, and about one in 10 is Hispanic; in 2020, Black candidates in the Democratic primary for U.S. Senate ran one-two in the city. One Black challenger to Mr. Cooper, who is white, dropped his bid after the redistricting occurred; a second is re-evaluating her candidacy.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Charlane Oliver, a co-founder of the Equity Alliance, a voting rights advocacy group, said the new House seat boundaries were drawn “with surgical precision right through all the predominantly Black neighborhoods in Nashville.”\n", " Evidence\n", "\n", "\n", @@ -18549,7 +26044,12 @@ "\n", "\n", "\n", - " Nashville’s boom is luring two distinctly different populations. Young progressives are coming in droves for high-paying tech and finance jobs. But older workers, retirees and plenty of conservatives are streaming in from both coasts, attracted by low taxes — there is no state income tax, though sales taxes are stiff — and the country-music evocation of homespun values, personal freedom and unfettered patriotism. The newcomers include luminaries from the conservative power structure, including a contingent of Fox News and Daily Wire commentators like Tomi Lahren, Matt Walsh and Candace Owens. The Daily Wire, a widely read conservative news and opinion outlet, moved to Nashville from Los Angeles in 2020.\n", + " Nashville’s boom is luring two distinctly different populations. Young progressives are coming in droves for high-paying tech and finance jobs. But older workers, retirees and plenty of conservatives are streaming in from both coasts, attracted by low taxes — there is no state income tax, though sales taxes are stiff — and the country-music evocation of homespun values, personal freedom and unfettered patriotism.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The newcomers include luminaries from the conservative power structure, including a contingent of Fox News and Daily Wire commentators like Tomi Lahren, Matt Walsh and Candace Owens. The Daily Wire, a widely read conservative news and opinion outlet, moved to Nashville from Los Angeles in 2020.\n", " Evidence\n", "\n", "\n", @@ -18559,7 +26059,22 @@ "\n", "\n", "\n", - " Most recently, Morgan Ortagus, the frequent Fox News guest and State Department spokeswoman during the Trump administration, moved to town — and was quickly endorsed by Mr. Trump for the new Fifth Congressional District, angering some prominent Republicans who preferred Robby Starbuck, a conservative filmmaker and another relative newcomer. “My husband and I moved to Nashville because we wanted to raise our daughter in a state that embraces conservative values,” Ms. Ortagus said in an email. Not all Republicans are welcoming the MAGA-certified would-be candidates. On Tuesday, a State Senate committee approved legislation that would bar anyone who had not lived in Tennessee for three years from running for either the U.S. House or Senate. That would apparently leave out both Ms. Ortagus and Mr. Starbuck. For once, Democrats and Republicans sort of agreed. The bill’s sponsor, State Senator Frank S. Niceley, said the bill would discourage wealthy “people flying over Tennessee and saying, ‘Look, there’s an open district.’” Mr. Yarbro, the Senate’s Democratic leader, said the conservative newcomers “couldn’t find a honky-tonk with a flashlight and a map of Broadway.”\n", + " Most recently, Morgan Ortagus, the frequent Fox News guest and State Department spokeswoman during the Trump administration, moved to town — and was quickly endorsed by Mr. Trump for the new Fifth Congressional District, angering some prominent Republicans who preferred Robby Starbuck, a conservative filmmaker and another relative newcomer.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “My husband and I moved to Nashville because we wanted to raise our daughter in a state that embraces conservative values,” Ms. Ortagus said in an email.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Not all Republicans are welcoming the MAGA-certified would-be candidates. On Tuesday, a State Senate committee approved legislation that would bar anyone who had not lived in Tennessee for three years from running for either the U.S. House or Senate. That would apparently leave out both Ms. Ortagus and Mr. Starbuck.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " For once, Democrats and Republicans sort of agreed. The bill’s sponsor, State Senator Frank S. Niceley, said the bill would discourage wealthy “people flying over Tennessee and saying, ‘Look, there’s an open district.’” Mr. Yarbro, the Senate’s Democratic leader, said the conservative newcomers “couldn’t find a honky-tonk with a flashlight and a map of Broadway.”\n", " Evidence\n", "\n", "\n", @@ -18604,12 +26119,22 @@ "\n", "\n", "\n", - " Cameron Sexton, the State House speaker from the eastern Tennessee town of Crossville, said concerns that the legislature could kill the golden goose were groundless. “Maybe if you’re more progressive, you might not want to come to Tennessee, but we’re still attracting a whole lot of new people here,” he told the Nashville public radio station WPLN last month.\n", + " Cameron Sexton, the State House speaker from the eastern Tennessee town of Crossville, said concerns that the legislature could kill the golden goose were groundless.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Maybe if you’re more progressive, you might not want to come to Tennessee, but we’re still attracting a whole lot of new people here,” he told the Nashville public radio station WPLN last month.\n", " Evidence\n", "\n", "\n", "\n", - " Mr. Meacham said he was not sure the goose was so safe. “This feels to me as though we’re beginning to play with culture-war fire,” he said.\n", + " Mr. Meacham said he was not sure the goose was so safe.\n", + " Claim\n", + "\n", + "\n", + "\n", + " “This feels to me as though we’re beginning to play with culture-war fire,” he said.\n", " Claim\n", "\n", "
" @@ -18633,7 +26158,7 @@ { "data": { "text/html": [ - "

nytimes\\natural-wines.txt

" + "

natural-wines.txt

" ], "text/plain": [ "" @@ -18646,34 +26171,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-6b57923f8f7bd2e7\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-6b57923f8f7bd2e7\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-6b57923f8f7bd2e7\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-6b57923f8f7bd2e7\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "1e9915fdceb6450b96bc2949becaf736", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00\n", "\n", "\n", - " Recently, I went shopping online for natural wines and found a dozen that are a pleasure to recommend. I might have included twice that many as I found bottles everywhere and from all over. The 12 I recommend are from New York, California, Australia, Chile, the Czech Republic, Spain, Germany, Austria, Italy and France. Among natural wine’s growing audience, some have surely been attracted because they think it’s fashionable. Others are curious about wines made outside the norm, wines that combine a respect for nature with traditional methods of production and that both taste and feel really good. Regardless of the initial allure, for many the appeal has lasted. Most striking is how popular natural wine seems to be among younger people, the demographic that the mainstream wine industry has the most difficulty reaching.\n", + " Recently, I went shopping online for natural wines and found a dozen that are a pleasure to recommend. I might have included twice that many as I found bottles everywhere and from all over. The 12 I recommend are from New York, California, Australia, Chile, the Czech Republic, Spain, Germany, Austria, Italy and France.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Among natural wine’s growing audience, some have surely been attracted because they think it’s fashionable. Others are curious about wines made outside the norm, wines that combine a respect for nature with traditional methods of production and that both taste and feel really good.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Regardless of the initial allure, for many the appeal has lasted. Most striking is how popular natural wine seems to be among younger people, the demographic that the mainstream wine industry has the most difficulty reaching.\n", " Evidence\n", "\n", "\n", @@ -18833,17 +26409,37 @@ "\n", "\n", "\n", - " This is not to say that people should drink only natural wine. An entire spectrum of methods and intentions exists between the poles of natural and industrial, and consumers have their reasons for selecting what they like, whether preference, convenience or budget. I’m drawn to natural wines because I love the unmediated flavors and expressions that come from grape to glass. I love the clear sense of place I often find and being able to sense the personalities of the producers in the glass. I’m moved by the respect for culture and tradition inherent in natural wine. This last point is important. Natural wine producers in historic regions are largely responsible for rediscovering and protecting local grapes and styles, which, if bureaucrats and powerful critics had their way, might have disappeared. Instead, we have the diversity of grapes and styles that is the joy of wine culture today. I’m not blindly devoted to natural wines. Certain flaws occur that I don’t see in more mainstream bottles, like mousiness, an odd quality reminiscent of cedar shavings in mouse cages that can only be sensed retronasally, after the wine has been in the mouth. I found a few mousy bottles in this batch and did not include them among the 12 bottles, just as I would not recommend unbalanced or insipid wines, flaws more typical of mainstream labels.\n", + " This is not to say that people should drink only natural wine. An entire spectrum of methods and intentions exists between the poles of natural and industrial, and consumers have their reasons for selecting what they like, whether preference, convenience or budget.\n", " Evidence\n", "\n", "\n", - "\n", - " Because it is so laborious and personal to produce, natural wine is hard to scale up. It is necessarily made in small quantities, so these wines may only be available in certain parts of the country.\n", - " Claim\n", + "\n", + " I’m drawn to natural wines because I love the unmediated flavors and expressions that come from grape to glass. I love the clear sense of place I often find and being able to sense the personalities of the producers in the glass. I’m moved by the respect for culture and tradition inherent in natural wine.\n", + " Evidence\n", "\n", "\n", "\n", - " One characteristic of natural wine culture is to question authority, including that of wine critics. So, even if you do find these bottles, feel free to experiment, to try other others. Good wine shops ought to at least have a small selection, so ask for suggestions and make your own discoveries.\n", + " This last point is important. Natural wine producers in historic regions are largely responsible for rediscovering and protecting local grapes and styles, which, if bureaucrats and powerful critics had their way, might have disappeared. Instead, we have the diversity of grapes and styles that is the joy of wine culture today.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " I’m not blindly devoted to natural wines. Certain flaws occur that I don’t see in more mainstream bottles, like mousiness, an odd quality reminiscent of cedar shavings in mouse cages that can only be sensed retronasally, after the wine has been in the mouth.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " I found a few mousy bottles in this batch and did not include them among the 12 bottles, just as I would not recommend unbalanced or insipid wines, flaws more typical of mainstream labels.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Because it is so laborious and personal to produce, natural wine is hard to scale up. It is necessarily made in small quantities, so these wines may only be available in certain parts of the country.\n", + " Claim\n", + "\n", + "\n", + "\n", + " One characteristic of natural wine culture is to question authority, including that of wine critics. So, even if you do find these bottles, feel free to experiment, to try other others. Good wine shops ought to at least have a small selection, so ask for suggestions and make your own discoveries.\n", " Evidence\n", "\n", "\n", @@ -18853,7 +26449,32 @@ "\n", "\n", "\n", - " Roberto Henríquez Secano Interior Itata Rivera del Notro Blanco 2020, 12 percent, $23 Roberto Henríquez Ascencio made wine in Canada, South Africa and the Loire Valley before settling in the Bío Bío region of Chile. He works with very old vines that have been farmed organically or biodynamically. This fresh orange wine is made of roughly equal parts sémillon, muscat of Alexandria and corinto, better known as Pedro Ximénez. It’s intensely floral, lightly textured and altogether delicious. (T. Edward Wine, New York) Absentee Winery California Red Wine 2019, 14.5 percent, $26 The minimalist label on this bottle tells you almost everything you need to know. The wine? It’s red. The ingredients? Grapes. That’s it. The proprietor, Avram Deixler, worked all over the world before setting up shop in Point Reyes Station in northern Marin County, where he grew up. This bottle, as I later learned, is made with carignan, syrah, zinfandel, petite sirah and abouriou, all grown organically in Mendocino County. The wine is fresh and alive, mildly tannic, direct and to the point. It’s potent, but wears its power lightly. Abouriou, by the way, is a grape from southwestern France that used to be popular in California, where it was known as “early burgundy” for its tendency to ripen quickly. Ca’ de Noci Emilia Rosso Bio Sottobosco 2020, 10 percent, $27 When I drank this earthy, savory, sparkling red wine from Emilia-Romagna I imagined I had gotten it directly from a farmhouse there. It’s not rustic, it’s simply wonderful — bone-dry, moderately tannic, fruity and stony, unaffected by commercial polish or marketing sensibilities. Not surprising, given Ca’ de Noci’s excellent track record of making superb wines without sulfur dioxide, this wine was perfectly stable. Drink it with pizza, Italian sausages or just for fun. (Louis/Dressner Selections, New York)\n", + " Roberto Henríquez Secano Interior Itata Rivera del Notro Blanco 2020, 12 percent, $23\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Roberto Henríquez Ascencio made wine in Canada, South Africa and the Loire Valley before settling in the Bío Bío region of Chile. He works with very old vines that have been farmed organically or biodynamically. This fresh orange wine is made of roughly equal parts sémillon, muscat of Alexandria and corinto, better known as Pedro Ximénez. It’s intensely floral, lightly textured and altogether delicious. (T. Edward Wine, New York)\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Absentee Winery California Red Wine 2019, 14.5 percent, $26\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The minimalist label on this bottle tells you almost everything you need to know. The wine? It’s red. The ingredients? Grapes. That’s it. The proprietor, Avram Deixler, worked all over the world before setting up shop in Point Reyes Station in northern Marin County, where he grew up. This bottle, as I later learned, is made with carignan, syrah, zinfandel, petite sirah and abouriou, all grown organically in Mendocino County. The wine is fresh and alive, mildly tannic, direct and to the point. It’s potent, but wears its power lightly. Abouriou, by the way, is a grape from southwestern France that used to be popular in California, where it was known as “early burgundy” for its tendency to ripen quickly.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Ca’ de Noci Emilia Rosso Bio Sottobosco 2020, 10 percent, $27\n", + " Evidence\n", + "\n", + "\n", + "\n", + " When I drank this earthy, savory, sparkling red wine from Emilia-Romagna I imagined I had gotten it directly from a farmhouse there. It’s not rustic, it’s simply wonderful — bone-dry, moderately tannic, fruity and stony, unaffected by commercial polish or marketing sensibilities. Not surprising, given Ca’ de Noci’s excellent track record of making superb wines without sulfur dioxide, this wine was perfectly stable. Drink it with pizza, Italian sausages or just for fun. (Louis/Dressner Selections, New York)\n", " Evidence\n", "\n", "\n", @@ -18863,7 +26484,92 @@ "\n", "\n", "\n", - " Ismael Gozalo is the founder and proprietor of MicroBio. He gets grapes from a variety of sources, but his home territory is the village of Nieva in Castilla y Léon, northwest of Madrid. This particular wine, Correcaminos, was made of old vines of verdejo, farmed organically, aged in steel vats and bottled without sulfur dioxide. It’s slightly cloudy, fresh and alive, with earthy, refreshing flavors of fruits, flowers and herbs. (Selections de la Viña/Fruit of the Vines, Long Island City, N.Y.) Wild Arc Farm New York State Blackbird 2020, 10.5 percent, $30 Wild Arc Farm in the Hudson Valley got its start in 2016 and already is in the vanguard of young, imaginative producers working with hybrid grapes. It is best known for its revival of piquette, a lowly beverage given by preindustrial landowners to their agricultural workers, which historically was made by refermenting grape pomace with water. Wild Arc turned it into a delicious, sparkling, low-alcohol beverage that has been widely embraced. Blackbird is not piquette. Rather, it’s a blend of riesling and noiret, a red hybrid, which are fermented together. The result is a thirst quenching, deliciously refreshing, spicy wine that goes down easy. Milan Nestarec Czech Republic OKR 2020, 12.5 percent, $30, 1 liter Milan Nestarec makes natural wines using grapes from his family vineyards in the Moravia region of the Czech Republic, which is closer to Vienna than to Prague. Over the last decade his wines have gotten better and better. This easy-drinking white blend of chardonnay, grüner veltliner, sauvignon blanc and savagnin is macerated with the skins briefly for a touch of texture and a hint of tannins. With its lively acidity, OKR is like a bolt of energy, dry and thoroughly refreshing. (Jenny & François Selections, New York) 2Naturkinder Black Betty Landwein 2019 11.5 percent, $30 Michael Völker and Melanie Drese, the proprietors of 2Naturkinder (meaning two children of nature in German), make luminous wines from sometimes unlikely combinations of grapes. This one is made mostly of domina, a cross between blauer portugieser, a once popular German grape, with pinot meunier and a little bit of pinot noir. It’s pale garnet, and though domina has the reputation of making tannic wines, this is delicate, almost fragile in its purity and loveliness. The wine is named Betty after the first lamb born in their domina vineyard. (Jenny & François Selections) Florèz Wines Santa Clara Valley Free Solo Old Vine Heritage Blend Red Wine 2020, 13.4 percent, $32 James Jelks works with dry-farmed, organic and sustainable vineyards in the Santa Cruz area. Free Solo is made with a half dozen different grapes including zinfandel, mourvèdre, carignan, alicante bouschet, petite sirah and black muscat. Made without additives, it is lively and fragrant, with aromas and flavors of flowers, herbs and red fruits. Partida Creus Catalonia BB 2020, 13 percent, $33 Massimo Marchiori and Antonella Gerosa, the proprietors of Partida Creus, are originally from Italy but settled in Catalonia, about an hour southwest of Barcelona. They make wines largely from little-known indigenous varieties. This red wine, made with bobal, is a bit of an oddity in that bobal is more typically found down the Mediterranean coast in Valencia. In their hands the wine is fresh and pure, full of energy and tasting deeply of spices, herbs and red fruits. (Selections de la Viña/Fruit of the Vines) Lucy M Adelaide Hills Stupefacente Sangiovese 2020, 12.5 percent, $35 The Basket Range region in the Adelaide Hills of South Australia is home to a thriving natural wine community. Anton van Klopper, the proprietor of Lucy M, works resolutely without additions and is one of its leading lights. When I took my first taste of Stupefacente, it seemed bright, brashly angular and vibrant, but nothing like sangiovese in my experience. After giving it time in the glass, though, the sharp edges receded and the wine settled into an earthy, dusty, lightly tannic deliciousness. By the way, those who read Rachel Signer’s recent memoir “You Had Me at Pét-Nat” might recognize Mr. van Klopper as the character she called Wildman and later married. (Terrell Wines, San Francisco) Christian Tschida Austria Himmel auf Erden Weiss 2020, 11.5 percent, $40 Christian Tschida is an uncompromising grower and producer. He farms organically and biodynamically and uses no sulfur dioxide in his winemaking except a little bit in a few reds. This white wine is made from old vines of weissburgunder (or pinot blanc), and scheurebe, both grapes that have not been held in particularly high esteem. Himmel auf Erden Weiss is a dry, refreshing wine of depth and beautiful texture. In the mouth it seems opaque and mysterious, with each swallow inviting another sip in an effort to get to the center of the riddle. (Jenny & François Selections) Matassa Vin de France Tattouine Rouge 2020, 10 percent, $42 Tom Lubbe, the proprietor of Domaine Matassa, was born in New Zealand. He came to Roussillon in the south of France 20 years ago from South Africa, where he was working. He bought land and started Matassa, where he practices regenerative farming and makes wine with minimal additions. This pale, unfiltered red represents the union of carignan and grenache gris. It’s spicy, earthy and floral and though only 10 percent alcohol, it’s tannic enough to make itself felt on the lips and insides of the cheeks. (Louis/Dressner Selections) Follow NYT Food on Twitter and NYT Cooking on Instagram, Facebook, YouTube and Pinterest. Get regular updates from NYT Cooking, with recipe suggestions, cooking tips and shopping advice.\n", + " Ismael Gozalo is the founder and proprietor of MicroBio. He gets grapes from a variety of sources, but his home territory is the village of Nieva in Castilla y Léon, northwest of Madrid. This particular wine, Correcaminos, was made of old vines of verdejo, farmed organically, aged in steel vats and bottled without sulfur dioxide. It’s slightly cloudy, fresh and alive, with earthy, refreshing flavors of fruits, flowers and herbs. (Selections de la Viña/Fruit of the Vines, Long Island City, N.Y.)\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Wild Arc Farm New York State Blackbird 2020, 10.5 percent, $30\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Wild Arc Farm in the Hudson Valley got its start in 2016 and already is in the vanguard of young, imaginative producers working with hybrid grapes. It is best known for its revival of piquette, a lowly beverage given by preindustrial landowners to their agricultural workers, which historically was made by refermenting grape pomace with water. Wild Arc turned it into a delicious, sparkling, low-alcohol beverage that has been widely embraced. Blackbird is not piquette. Rather, it’s a blend of riesling and noiret, a red hybrid, which are fermented together. The result is a thirst quenching, deliciously refreshing, spicy wine that goes down easy.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Milan Nestarec Czech Republic OKR 2020, 12.5 percent, $30, 1 liter\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Milan Nestarec makes natural wines using grapes from his family vineyards in the Moravia region of the Czech Republic, which is closer to Vienna than to Prague. Over the last decade his wines have gotten better and better. This easy-drinking white blend of chardonnay, grüner veltliner, sauvignon blanc and savagnin is macerated with the skins briefly for a touch of texture and a hint of tannins. With its lively acidity, OKR is like a bolt of energy, dry and thoroughly refreshing. (Jenny & François Selections, New York)\n", + " Evidence\n", + "\n", + "\n", + "\n", + " 2Naturkinder Black Betty Landwein 2019 11.5 percent, $30\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Michael Völker and Melanie Drese, the proprietors of 2Naturkinder (meaning two children of nature in German), make luminous wines from sometimes unlikely combinations of grapes. This one is made mostly of domina, a cross between blauer portugieser, a once popular German grape, with pinot meunier and a little bit of pinot noir. It’s pale garnet, and though domina has the reputation of making tannic wines, this is delicate, almost fragile in its purity and loveliness. The wine is named Betty after the first lamb born in their domina vineyard. (Jenny & François Selections)\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Florèz Wines Santa Clara Valley Free Solo Old Vine Heritage Blend Red Wine 2020, 13.4 percent, $32\n", + " Evidence\n", + "\n", + "\n", + "\n", + " James Jelks works with dry-farmed, organic and sustainable vineyards in the Santa Cruz area. Free Solo is made with a half dozen different grapes including zinfandel, mourvèdre, carignan, alicante bouschet, petite sirah and black muscat. Made without additives, it is lively and fragrant, with aromas and flavors of flowers, herbs and red fruits.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Partida Creus Catalonia BB 2020, 13 percent, $33\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Massimo Marchiori and Antonella Gerosa, the proprietors of Partida Creus, are originally from Italy but settled in Catalonia, about an hour southwest of Barcelona. They make wines largely from little-known indigenous varieties. This red wine, made with bobal, is a bit of an oddity in that bobal is more typically found down the Mediterranean coast in Valencia. In their hands the wine is fresh and pure, full of energy and tasting deeply of spices, herbs and red fruits. (Selections de la Viña/Fruit of the Vines)\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Lucy M Adelaide Hills Stupefacente Sangiovese 2020, 12.5 percent, $35\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The Basket Range region in the Adelaide Hills of South Australia is home to a thriving natural wine community. Anton van Klopper, the proprietor of Lucy M, works resolutely without additions and is one of its leading lights. When I took my first taste of Stupefacente, it seemed bright, brashly angular and vibrant, but nothing like sangiovese in my experience. After giving it time in the glass, though, the sharp edges receded and the wine settled into an earthy, dusty, lightly tannic deliciousness. By the way, those who read Rachel Signer’s recent memoir “You Had Me at Pét-Nat” might recognize Mr. van Klopper as the character she called Wildman and later married. (Terrell Wines, San Francisco)\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Christian Tschida Austria Himmel auf Erden Weiss 2020, 11.5 percent, $40\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Christian Tschida is an uncompromising grower and producer. He farms organically and biodynamically and uses no sulfur dioxide in his winemaking except a little bit in a few reds. This white wine is made from old vines of weissburgunder (or pinot blanc), and scheurebe, both grapes that have not been held in particularly high esteem. Himmel auf Erden Weiss is a dry, refreshing wine of depth and beautiful texture. In the mouth it seems opaque and mysterious, with each swallow inviting another sip in an effort to get to the center of the riddle. (Jenny & François Selections)\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Matassa Vin de France Tattouine Rouge 2020, 10 percent, $42\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Tom Lubbe, the proprietor of Domaine Matassa, was born in New Zealand. He came to Roussillon in the south of France 20 years ago from South Africa, where he was working. He bought land and started Matassa, where he practices regenerative farming and makes wine with minimal additions. This pale, unfiltered red represents the union of carignan and grenache gris. It’s spicy, earthy and floral and though only 10 percent alcohol, it’s tannic enough to make itself felt on the lips and insides of the cheeks. (Louis/Dressner Selections)\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Follow NYT Food on Twitter and NYT Cooking on Instagram, Facebook, YouTube and Pinterest. Get regular updates from NYT Cooking, with recipe suggestions, cooking tips and shopping advice.\n", " Evidence\n", "\n", "
" @@ -18887,7 +26593,7 @@ { "data": { "text/html": [ - "

nytimes\\norway-medals-winter-olympics.txt

" + "

norway-medals-winter-olympics.txt

" ], "text/plain": [ "" @@ -18900,20 +26606,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-d288b555a57403a3\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-d288b555a57403a3\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-d288b555a57403a3\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-d288b555a57403a3\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "e0d38783840f4b408a0ff5ca6d6ce55b", + "model_id": "d72ca80ab1ea4a949785a0b39fac3eae", "version_major": 2, "version_minor": 0 }, @@ -18925,58 +26625,16 @@ "output_type": "display_data" }, { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "9d7bffb0764141e89db8e33f685c335f", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " BEIJING — They’re doing it again. Norway, with a population of just five million, is executing its quadrennial triumph over the rest of the world.\n", + " BEIJING — They’re doing it again.\n", + " Claim\n", + "\n", + "\n", + "\n", + " Norway, with a population of just five million, is executing its quadrennial triumph over the rest of the world.\n", " Claim\n", "\n", "\n", @@ -19045,7 +26747,37 @@ "\n", "\n", "\n", - " Norway won its 15th gold medal of the Beijing Games on Friday, a record for a single country at a Winter Olympics, a total that put it seven ahead of Russia (population 144 million) in the overall medals table and five ahead of Germany (population 83 million) in the race for the most golds. Its most recent triumph came in men’s biathlon, but Norway also has medals in ski jumping, Nordic combined, speedskating and cross-country and freestyle skiing. “We have a strong team,” said Kjetil Jansrud, the champion Alpine skier. “We always do.” More than strong. Norway is now so successful it has become the winter sports beacon. American skiers, both Alpine and cross-country, have trained with Norwegian athletes on the same mountains and glaciers for years. Every year, the country brings 150 of the top international junior cross country skiers to a camp to learn technique and train with the sport’s top coaches. Norway has had a partnership with Britain to develop and share wax technology for Nordic skiing. During the last four years though, several countries have sent their top sports leaders to study the country’s methods — well, the ones its specialists will share — highlighting the latest step in Norway’s elite winter sports hospitality. “After watching what Norway did in Pyeongchang, I just told my team we are going over there, and we are going to figure out what the hell is going on and what they are doing,” said Luke Bodensteiner, then the director of sport for the U.S. Ski and Snowboard Association, the national governing body for skiing. And so, that spring, Bodensteiner and top executives went to visit their competition.\n", + " Norway won its 15th gold medal of the Beijing Games on Friday, a record for a single country at a Winter Olympics, a total that put it seven ahead of Russia (population 144 million) in the overall medals table and five ahead of Germany (population 83 million) in the race for the most golds.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Its most recent triumph came in men’s biathlon, but Norway also has medals in ski jumping, Nordic combined, speedskating and cross-country and freestyle skiing.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “We have a strong team,” said Kjetil Jansrud, the champion Alpine skier. “We always do.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " More than strong. Norway is now so successful it has become the winter sports beacon. American skiers, both Alpine and cross-country, have trained with Norwegian athletes on the same mountains and glaciers for years. Every year, the country brings 150 of the top international junior cross country skiers to a camp to learn technique and train with the sport’s top coaches. Norway has had a partnership with Britain to develop and share wax technology for Nordic skiing.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " During the last four years though, several countries have sent their top sports leaders to study the country’s methods — well, the ones its specialists will share — highlighting the latest step in Norway’s elite winter sports hospitality.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “After watching what Norway did in Pyeongchang, I just told my team we are going over there, and we are going to figure out what the hell is going on and what they are doing,” said Luke Bodensteiner, then the director of sport for the U.S. Ski and Snowboard Association, the national governing body for skiing.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " And so, that spring, Bodensteiner and top executives went to visit their competition.\n", " Evidence\n", "\n", "\n", @@ -19065,7 +26797,32 @@ "\n", "\n", "\n", - " Norway, for instance, was far ahead of competitors in developing the most aerodynamic suits for skiing. It pioneered the use of GPS sensors to help Alpine skiers find the fastest line down the mountain. Its cross-country skis are reliably the fastest, the result of endless testing and retesting. While the rest of the world trained Alpine skiers like sprinters, focusing on building explosiveness, Norwegian coaches and trainers discovered that Alpine racing was more like a 3,000-meter run. So Alpine skiers started training more like distance runners, taking long bike rides and doing creative aerobic training circuits in the gym. The country’s research is now starting to pay off in summer sports as well. In Tokyo, Norway’s men won gold medals in track in the 400-meter hurdles and the 1,500. For Norway, everything changed after the 1988 Calgary Games, where it won just five medals, none of them gold. That was an unacceptable outcome for a country where children begin to ski and walk around the same age. Norway, which had quickly transformed from a middling economy built around fishing and farming into a petroleum-rich nation, started plowing money into Olympiatoppen, the organization that oversees elite Olympic sports. It also doubled down on its commitments under its Children’s Right in Sports document, which guarantees and encourages every child in the country access to high-quality opportunities in athletics, with a focus on participation and socialization rather than hard-core competition.\n", + " Norway, for instance, was far ahead of competitors in developing the most aerodynamic suits for skiing. It pioneered the use of GPS sensors to help Alpine skiers find the fastest line down the mountain. Its cross-country skis are reliably the fastest, the result of endless testing and retesting.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " While the rest of the world trained Alpine skiers like sprinters, focusing on building explosiveness, Norwegian coaches and trainers discovered that Alpine racing was more like a 3,000-meter run. So Alpine skiers started training more like distance runners, taking long bike rides and doing creative aerobic training circuits in the gym.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The country’s research is now starting to pay off in summer sports as well. In Tokyo, Norway’s men won gold medals in track in the 400-meter hurdles and the 1,500.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " For Norway, everything changed after the 1988 Calgary Games, where it won just five medals, none of them gold. That was an unacceptable outcome for a country where children begin to ski and walk around the same age.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Norway, which had quickly transformed from a middling economy built around fishing and farming into a petroleum-rich nation, started plowing money into Olympiatoppen, the organization that oversees elite Olympic sports.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " It also doubled down on its commitments under its Children’s Right in Sports document, which guarantees and encourages every child in the country access to high-quality opportunities in athletics, with a focus on participation and socialization rather than hard-core competition.\n", " Evidence\n", "\n", "\n", @@ -19075,7 +26832,27 @@ "\n", "\n", "\n", - " Its largest national skiing event, the Holmenkollen Ski Festival, which began in 1892, includes a race for elite adult skiers but not youngsters. Children join the course when they want and there is no official time keeping for them. The coaches, both the professionals and parent volunteers, have to undergo formal training. “There just seems to be a lot more emphasis on including everybody,” said Atle McGrath, a 21-year-old Norwegian Alpine skier whose father, Felix, competed in Alpine for the United States at the 1988 Olympics. “Whether or not you are really good or not, it’s pretty much the same experience for everyone.” Jim Stray-Gundersen, a former surgeon and physiologist who is the sports science adviser to the U.S. Ski and Snowboard Association, lived in Norway, where his father grew up, for five years while working as a scientist with Norway’s Olympic athletes. He said a priority of the country is to build a culture of health and regular exercise, and its competitive prowess flows from that. “It’s how you produce psychological satisfaction, healthy life habits, and stellar athletes over time, and it’s very much in contrast to how we do it and don’t do it in the U.S.,” he said. Youngsters who do not exhibit special talent stay involved, and some of them bloom as teenagers, long after children in more competition-driven countries might have moved on to the cello. McGrath, for example, did not excel until he was 17.\n", + " Its largest national skiing event, the Holmenkollen Ski Festival, which began in 1892, includes a race for elite adult skiers but not youngsters. Children join the course when they want and there is no official time keeping for them. The coaches, both the professionals and parent volunteers, have to undergo formal training.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “There just seems to be a lot more emphasis on including everybody,” said Atle McGrath, a 21-year-old Norwegian Alpine skier whose father, Felix, competed in Alpine for the United States at the 1988 Olympics. “Whether or not you are really good or not, it’s pretty much the same experience for everyone.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Jim Stray-Gundersen, a former surgeon and physiologist who is the sports science adviser to the U.S. Ski and Snowboard Association, lived in Norway, where his father grew up, for five years while working as a scientist with Norway’s Olympic athletes. He said a priority of the country is to build a culture of health and regular exercise, and its competitive prowess flows from that.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “It’s how you produce psychological satisfaction, healthy life habits, and stellar athletes over time, and it’s very much in contrast to how we do it and don’t do it in the U.S.,” he said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Youngsters who do not exhibit special talent stay involved, and some of them bloom as teenagers, long after children in more competition-driven countries might have moved on to the cello. McGrath, for example, did not excel until he was 17.\n", " Evidence\n", "\n", "\n", @@ -19085,7 +26862,22 @@ "\n", "\n", "\n", - " Felix McGrath, who grew up in Vermont, said his son first showed an affinity for skiing when he was 8 or 9 years old and would spend hours going off homemade ski jumps in the front yard, though he continued to play soccer and baseball and cross-country skied. At 14, he got serious about Alpine skiing but people barely paid attention to his results at races until he was at least 16 and attending a special, public school for aspiring Alpine skiers. “Atle was always pretty good but he was never winning consistently,” McGrath said. “He was sort of that guy that was always hovering a teeny bit behind the best kids and always showing up and working hard and getting better.” Atle McGrath did not win a medal in these Games, but he did display some Norwegian spirit. On Wednesday he skidded past a gate in his second slalom run and came to a dead stop. But instead of skiing off the course, he took two steps up the hill, went back around the gate and continued down the slope. He crossed the finish line 12 seconds behind the leader but still raised his arms in triumph.\n", + " Felix McGrath, who grew up in Vermont, said his son first showed an affinity for skiing when he was 8 or 9 years old and would spend hours going off homemade ski jumps in the front yard, though he continued to play soccer and baseball and cross-country skied.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " At 14, he got serious about Alpine skiing but people barely paid attention to his results at races until he was at least 16 and attending a special, public school for aspiring Alpine skiers.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Atle was always pretty good but he was never winning consistently,” McGrath said. “He was sort of that guy that was always hovering a teeny bit behind the best kids and always showing up and working hard and getting better.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Atle McGrath did not win a medal in these Games, but he did display some Norwegian spirit. On Wednesday he skidded past a gate in his second slalom run and came to a dead stop. But instead of skiing off the course, he took two steps up the hill, went back around the gate and continued down the slope. He crossed the finish line 12 seconds behind the leader but still raised his arms in triumph.\n", " Evidence\n", "\n", "\n", @@ -19114,7 +26906,7 @@ { "data": { "text/html": [ - "

nytimes\\nyc-budget-composting-adams.txt

" + "

nyc-budget-composting-adams.txt

" ], "text/plain": [ "" @@ -19127,20 +26919,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-5fc332a8531a11f8\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-5fc332a8531a11f8\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-5fc332a8531a11f8\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-5fc332a8531a11f8\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "119cf8d9c6454e51a6d723d6f702d7a9", + "model_id": "74e9f1c2d7bc4a79bf99274aef67cac6", "version_major": 2, "version_minor": 0 }, @@ -19151,64 +26937,22 @@ "metadata": {}, "output_type": "display_data" }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Loading cached processed dataset at C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-5fc332a8531a11f8\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4\\cache-e16fcf4ce287df3d.arrow\n" + ] + }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "eb991fd06ff945ba97c9972547b451ed", + "model_id": "6d9096992e994bcbb62e6afe016fc6bc", "version_major": 2, "version_minor": 0 }, "text/plain": [ - " 0%| | 0/1 [00:00\n", "\n", "\n", - " In his last months as mayor, Mr. de Blasio had restarted the program after a pandemic pause, but it was rolling out slowly. So far, the service has resumed in just seven community-board districts: four in Brooklyn, one in the Bronx and two in Manhattan. Under Mr. Adams’s proposal, service there will continue, but only there, for now. The move is the latest snag for a program that climate experts say is one of the easiest ways to reduce New York’s planet-warming emissions, in an area where successive mayors have sought to position the city as a leader. It comes just weeks after Rohit Aggarwala, Mr. Adams’s new chief climate officer, pledged that climate impact would be taken into account in every city decision. Organic waste makes up 34 percent of the city’s residential garbage. Composting keeps it out of landfills, where it emits methane, a greenhouse gas that is far more potent than carbon. And just as important for a city with a growing rat problem, advocates say, separating food scraps and other organic waste into plastic bins reduces the attractiveness of the city’s garbage to rodents. “The consequences of not equitably expanding the organics program are more rats ripping open our trash bags and thus more litter on our streets,” Sandy Nurse, a City Council member from Brooklyn who heads the sanitation committee, said in a statement. She called the cuts “a missed opportunity to address the climate crisis” that would cost the city more in the long run.\n", + " In his last months as mayor, Mr. de Blasio had restarted the program after a pandemic pause, but it was rolling out slowly. So far, the service has resumed in just seven community-board districts: four in Brooklyn, one in the Bronx and two in Manhattan. Under Mr. Adams’s proposal, service there will continue, but only there, for now.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The move is the latest snag for a program that climate experts say is one of the easiest ways to reduce New York’s planet-warming emissions, in an area where successive mayors have sought to position the city as a leader. It comes just weeks after Rohit Aggarwala, Mr. Adams’s new chief climate officer, pledged that climate impact would be taken into account in every city decision.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Organic waste makes up 34 percent of the city’s residential garbage. Composting keeps it out of landfills, where it emits methane, a greenhouse gas that is far more potent than carbon. And just as important for a city with a growing rat problem, advocates say, separating food scraps and other organic waste into plastic bins reduces the attractiveness of the city’s garbage to rodents.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “The consequences of not equitably expanding the organics program are more rats ripping open our trash bags and thus more litter on our streets,” Sandy Nurse, a City Council member from Brooklyn who heads the sanitation committee, said in a statement. She called the cuts “a missed opportunity to address the climate crisis” that would cost the city more in the long run.\n", " Evidence\n", "\n", "\n", @@ -19276,7 +27052,32 @@ "\n", "\n", "\n", - " A mandated citywide program is the best way to increase participation, advocates say, with a requirement that residents and businesses separate food scraps and yard waste from trash. New York’s recycling mandate, which began in 1989, spurred widespread separation of plastic, glass, metal and paper waste. Estimates place the cost of mandated citywide composting, a distant goal for now, between $40 million and $251 million annually. On Thursday, State Senator Brad Hoylman sought to counter the mayor’s move, introducing a bill requiring the city to collect food scraps from every residence. During the mayoral campaign Mr. Adams told The City in a campaign questionnaire that he would enact such a mandate. Even before the pandemic, the city was way behind on Mr. de Blasio’s plan to enact citywide composting by 2018, despite officials acknowledging that New York could not meet its zero-waste goals without it. The lag is part of why, of the 3.1 million tons of garbage that New Yorkers produce each year, the city recycles less than 20 percent, well below other major cities like Seattle and San Francisco that have mandatory compost separation. By 2020, before the pandemic and seven years after curbside compost pickup began in some neighborhoods, less than half of the city’s population had the option to request brown compost bins for pickup by the Sanitation Department. In the neighborhoods where bins were available, just 10 percent of residents used them. When Mr. de Blasio suspended the program, Kathryn Garcia stepped down as sanitation commissioner, citing her disagreement over the cuts in her resignation letter (she later ran for mayor). Various private groups helped fill in the gaps in some neighborhoods. But they say they cannot replace the scale of a city program.\n", + " A mandated citywide program is the best way to increase participation, advocates say, with a requirement that residents and businesses separate food scraps and yard waste from trash. New York’s recycling mandate, which began in 1989, spurred widespread separation of plastic, glass, metal and paper waste. Estimates place the cost of mandated citywide composting, a distant goal for now, between $40 million and $251 million annually.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " On Thursday, State Senator Brad Hoylman sought to counter the mayor’s move, introducing a bill requiring the city to collect food scraps from every residence. During the mayoral campaign Mr. Adams told The City in a campaign questionnaire that he would enact such a mandate.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Even before the pandemic, the city was way behind on Mr. de Blasio’s plan to enact citywide composting by 2018, despite officials acknowledging that New York could not meet its zero-waste goals without it.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The lag is part of why, of the 3.1 million tons of garbage that New Yorkers produce each year, the city recycles less than 20 percent, well below other major cities like Seattle and San Francisco that have mandatory compost separation.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " By 2020, before the pandemic and seven years after curbside compost pickup began in some neighborhoods, less than half of the city’s population had the option to request brown compost bins for pickup by the Sanitation Department. In the neighborhoods where bins were available, just 10 percent of residents used them.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " When Mr. de Blasio suspended the program, Kathryn Garcia stepped down as sanitation commissioner, citing her disagreement over the cuts in her resignation letter (she later ran for mayor). Various private groups helped fill in the gaps in some neighborhoods. But they say they cannot replace the scale of a city program.\n", " Evidence\n", "\n", "
" @@ -19300,7 +27101,7 @@ { "data": { "text/html": [ - "

nytimes\\oakland-hills-country-club-fire.txt

" + "

oakland-hills-country-club-fire.txt

" ], "text/plain": [ "" @@ -19313,34 +27114,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-f2d5a05f686005fe\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-f2d5a05f686005fe\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-f2d5a05f686005fe\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-f2d5a05f686005fe\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "7bb1c1e40269475f91686cf10cd0d820", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " An extensive fire on Thursday caused major damage to the clubhouse at the historic Oakland Hills Country Club in Bloomfield Township, Mich., the site of several U.S. Open golf tournaments, officials said. John LeRoy, the fire chief in Bloomfield Township, said in an interview on Thursday night that firefighters were dispatched about 9:17 a.m. on Thursday to a report of the smell of smoke in the clubhouse. Using thermal imaging cameras and inspection holes, Chief LeRoy said, they were able to find flames in the attic of the clubhouse. “It was just taking multiple people to narrow down that location,” Chief LeRoy told reporters on Thursday. “Unfortunately, the smell of smoke was in a large area. In large buildings, trying to figure out exactly where it’s coming from is very difficult.” Firefighters also found heavy fire inside the walls and between floors of the building, officials said in a statement late Thursday. No one was hurt in the fire, whose cause was under investigation, according to fire officials. The clubhouse contained a rich collection of golf memorabilia, and it was unclear how much of that was saved, though firefighters and club staff members were able to recover some. “There were people standing at the front door and they were handing items off,” Chief LeRoy said. “It was a pretty time-consuming process, but they did get out what they could.” By 10 p.m., the fire had not been completely extinguished, and Chief LeRoy said that firefighters were still working to put it out. “It’s extensive damage throughout the entire building,” he said. “It’s very destroyed. I don’t know how else to say it.” Complicating efforts, a snowstorm blew through the area, producing ice and dumping about six inches of snow as firefighters worked the fire, Chief LeRoy said. Rick Palmer, the club’s president, said in a statement on Thursday that it was a “gut-wrenching day.” “We have lost our iconic clubhouse,” he said, adding that he was grateful to the firefighters who helped save some memorabilia. “It hurts to see this, but we are comforted to know that the heart and soul and legacy of the club resides in our membership and staff. Only time will tell what is next, but we will move forward with a purpose to honor all those who made this grand building come to life with their golf and their work.” The club, which was founded in 1916, has hosted six U.S. Open tournaments and numerous star golfers, including Jack Nicklaus and Tiger Woods. The clubhouse was designed by C. Howard Crane, an architect who worked on several Detroit theaters, and it was completed in August 1922, according to the club. The club was host to Arnold Palmer’s first national tournament competition, when he competed in the 1946 Hearst National Junior Championship, in which he was runner-up to MacGregor Hunter, according to club history. The club has also hosted heads of state, including former President George H.W. Bush and John Major, the former British prime minister, during the 2004 Ryder Cup. Former President George W. Bush visited in 2014. David Coulter, the Oakland County executive, said on Twitter that the fire was a “tragic loss.” “I’m thankful that no one was hurt in the blaze and hope for a speedy recovery and rebuild for the club that has brought such a rich golfing heritage to Oakland County,” he said.\n", + " An extensive fire on Thursday caused major damage to the clubhouse at the historic Oakland Hills Country Club in Bloomfield Township, Mich., the site of several U.S. Open golf tournaments, officials said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " John LeRoy, the fire chief in Bloomfield Township, said in an interview on Thursday night that firefighters were dispatched about 9:17 a.m. on Thursday to a report of the smell of smoke in the clubhouse. Using thermal imaging cameras and inspection holes, Chief LeRoy said, they were able to find flames in the attic of the clubhouse.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “It was just taking multiple people to narrow down that location,” Chief LeRoy told reporters on Thursday. “Unfortunately, the smell of smoke was in a large area. In large buildings, trying to figure out exactly where it’s coming from is very difficult.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Firefighters also found heavy fire inside the walls and between floors of the building, officials said in a statement late Thursday. \n", + " Evidence\n", + "\n", + "\n", + "\n", + " No one was hurt in the fire, whose cause was under investigation, according to fire officials. The clubhouse contained a rich collection of golf memorabilia, and it was unclear how much of that was saved, though firefighters and club staff members were able to recover some.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “There were people standing at the front door and they were handing items off,” Chief LeRoy said. “It was a pretty time-consuming process, but they did get out what they could.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " By 10 p.m., the fire had not been completely extinguished, and Chief LeRoy said that firefighters were still working to put it out.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “It’s extensive damage throughout the entire building,” he said. “It’s very destroyed. I don’t know how else to say it.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Complicating efforts, a snowstorm blew through the area, producing ice and dumping about six inches of snow as firefighters worked the fire, Chief LeRoy said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Rick Palmer, the club’s president, said in a statement on Thursday that it was a “gut-wrenching day.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “We have lost our iconic clubhouse,” he said, adding that he was grateful to the firefighters who helped save some memorabilia. “It hurts to see this, but we are comforted to know that the heart and soul and legacy of the club resides in our membership and staff. Only time will tell what is next, but we will move forward with a purpose to honor all those who made this grand building come to life with their golf and their work.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The club, which was founded in 1916, has hosted six U.S. Open tournaments and numerous star golfers, including Jack Nicklaus and Tiger Woods.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The clubhouse was designed by C. Howard Crane, an architect who worked on several Detroit theaters, and it was completed in August 1922, according to the club.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The club was host to Arnold Palmer’s first national tournament competition, when he competed in the 1946 Hearst National Junior Championship, in which he was runner-up to MacGregor Hunter, according to club history.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The club has also hosted heads of state, including former President George H.W. Bush and John Major, the former British prime minister, during the 2004 Ryder Cup. Former President George W. Bush visited in 2014.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " David Coulter, the Oakland County executive, said on Twitter that the fire was a “tragic loss.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “I’m thankful that no one was hurt in the blaze and hope for a speedy recovery and rebuild for the club that has brought such a rich golfing heritage to Oakland County,” he said.\n", " Evidence\n", "\n", "\n", @@ -19470,7 +27324,7 @@ { "data": { "text/html": [ - "

nytimes\\oddity-ceramics-surrealism-art.txt

" + "

oddity-ceramics-surrealism-art.txt

" ], "text/plain": [ "" @@ -19483,34 +27337,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-e0470b655cfb5b80\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-e0470b655cfb5b80\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-e0470b655cfb5b80\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-e0470b655cfb5b80\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "45fcc8ab0a27447e8f1d04365ed3995a", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " IN HIS 1869 poetic novel, “Les Chants de Maldoror,” the French writer Isidore Lucien Ducasse, known pseudonymously as the Comte de Lautréamont, describes a young boy who is as “beautiful as the chance encounter of a sewing machine and an umbrella on an operating table.” Lautréamont’s book was rediscovered and championed by the Surrealists after World War I, and this particular simile became a kind of foundational mantra for the movement. Its juxtaposition of mundane objects in an unexpected setting conveyed the Surrealists’ cheekiness, their love of the incongruous and irrational and their overriding fascination with found curiosities. The Surrealists were, as we would put it today, obsessed with the totemic power of the object and its ability to re-enchant humdrum reality: Marcel Duchamp’s punning readymades and Hans Bellmer’s fetishistic dolls, Salvador Dalí’s winkingly evocative lobster phone and Méret Oppenheim’s more overtly suggestive furry teacup. Members of the movement roamed flea markets in search of treasures and documented the bizarre wonders that floated into their subconscious while they slept. On the occasion of the landmark “Surrealist Exhibition of Objects,” held in Paris in May 1936, André Breton, the godfather of the movement, wrote an essay in which he called for the “total revolution of the object” — a goal the Surrealists arguably achieved, as numerous artists, from Louise Bourgeois to Sarah Lucas, have been influenced by their sensibility, images and ideas. Nowadays, a group of contemporary artists are making what one might call oddity ceramics: playful, imaginative, funny but often slightly menacing objets d’art. Genesis Belanger, Rose Eken, Alma Berrow and Katy Stubbs are all working in a similar vein (as are a handful of notable others, such as Lindsey Mendick, Jessica Stoller and Woody De Othello). These four artists — all of them, not incidentally, women — take the notion of the readymade and subvert it, refashioning quotidian artifacts (cigarettes, sandwiches, shoes, lipstick, beer cans, sweaty plates of meat or eggs) in ceramics, a medium that was once considered a lowly craft but, in recent years, has been welcomed to the loftier echelon of fine art. Although their humorous, sometimes dark sculptures all share a spiritual DNA, each artist treats the object in her own highly specific, idiosyncratic way, which is perhaps not surprising, given the strange, often diminutive but eerily compelling works they’re creating. THE BROOKLYN-BASED artist Belanger, 43, who sculpts pastel-colored ceramics out of porcelain and stoneware, calls her work “Pop Bauhaus with a Surrealist bent.” Belanger worked for several years as a prop stylist’s assistant on campaigns for major brands like Tiffany & Co., Chanel and Victoria’s Secret, and finds inspiration in vintage advertisements — particularly in their use of beauty to induce desire: “It’s borderline offensive to actually offensive when you look at it now with our contemporary eye,” she says. Her unglazed matte clay objects, which she tints with powdered pigments in nostalgic confectionary hues the colors of Jordan almonds, tend to anthropomorphize everyday household articles. A thick, pink tongue extends from a tape dispenser. A foot-long hot dog is tucked into a platform sandal (get it?). Lamps have lips or breasts or arms and wear jewelry. These pieces are beautiful on the surface but rather disquieting beneath, recalling the creepily seductive work of Alina Szapocznikow, Robert Gober and David Lynch, as well as Man Ray’s iconic fashion images of feet, hands and Lee Miller’s tearful eyes. Despite their seemingly decorative nature, Belanger’s ceramics aren’t stand-alone curiosities; they tell a larger story — as do the creations of all these artists. Belanger makes installations that conjure an entire mise-en-scène, building the furniture and wiring the lighting herself. “I normally start with what the room is going to be, and then build all the objects to tell a more fleshed out story,” she says. The Danish artist Eken, 45, explores in-between spaces. While a teenager in Copenhagen, Eken worked as a stage technician for various punk venues, and this period of her life continues to inform her work. “When the audience is not there, when there’s nobody on the stage … these spaces are kind of suspended in time,” says Eken. “I’m intrigued by this moment just before something, or just after.” She’s created several “aftermath” installations, as she calls them, in which she reproduces the detritus left in theaters and concert venues in ceramics that are just slightly off in scale: cigarette butts, soda cans, beer bottles, plastic cups, lighters, band T-shirts, electric cables — commonplace items where private and collective memories meet. The viewer is left to impose their subjective narrative on the work: That was the night you got drunk; that was the show where you sneaked backstage. “We have a lot of ideas, subconsciously, about what these objects mean to us,” Eken says. We derive memories, identity, meaning from the sea of stuff in which we swim. The London-based Berrow, a 29-year-old British ceramic artist who sells her pieces on Instagram, works in a similar vein, though on a smaller scale. She’s best known for her signature ashtrays that contain stubbed-out cigarettes, along with whatever else one might toss in during the course of an evening — lemon wedges, pistachio shells, spent matches, a steeped tea bag, clementine peels, a gold tooth. “It’s almost like doing a portrait,” she says of her ashtray worlds, which can tell the story of a life — for one couple’s commission she made a smoked joint, an apartment key and a scribbled note of affection — or simply a big night out. Berrow took up ceramics in early 2020 while on lockdown at her mother’s house in Dorset; her mother, Miranda, is also a ceramist, so Berrow availed herself of her earthenware, kiln and high-sheen glazes. Berrow makes cigarettes, she explains, because she’s drawn to things that are “caricatures of themselves.” She’s also done oysters, lobsters, prawns, Ritz crackers, pomegranates, a backgammon board — all vaguely retro, often glamorous relics that carry cultural symbolism or baggage. But the common denominator is whatever Berrow finds comical. “A prawn cocktail, for me, is funny,” she says. “I don’t know why, but I find them hysterical.” The British South African artist Stubbs, 29, also finds humor in unexpected places. “I like to explore the really dark side of human nature,” she says, “but to make it light.” Stubbs, who studied illustration at the School of Visual Arts in New York and now lives in London, makes bright, whimsical, cartoonish work — her palette includes a lot of superhero red, yellow and green — of unexpected oddities: large bowls of spaghetti and clams, a mountainous tower of crayfish and enormous round plates of meat (“disgusting and glossy,” she calls them), a nod to the Swiss artist duo Peter Fischli and David Weiss. Raised on the gothic stories of Edward Gorey and Roald Dahl, Stubbs is interested in gluttony and excess — “this human quality of ours,” she tells me, “where we want more and we want a big pile.” She’s fascinated by humans indulging their baser, more callous instincts, and much of her work tells that tale in some form. “I did one pot about a man kicking another man,” she deadpans. “Sometimes you just feel like kicking somebody.” It made me think: Is the sudden proliferation of oddity ceramics, which I had previously chalked up to any number of art-world factors — a return to figuration, a renewed interest in traditional crafts, a long overdue focus on female artists — in fact a response to the ongoing darkness of this moment? After all, the original Surrealist movement, with its urge to systematically derange the senses, occurred in the wake of the First World War and its horrors. These are humorous, superficially light pieces — distractions — that also convey a wry awareness of an omnipresent and unsettling strangeness. What’s known and functional has been rendered impractical and pointless, which is fascinating but also kind of scary. As the author Anne Boyer writes in 2019’s “The Undying,” “Enchantment exists when things are themselves and not their uses.” These objects reflect back at us a world that both is and is no longer familiar.\n", + " IN HIS 1869 poetic novel, “Les Chants de Maldoror,” the French writer Isidore Lucien Ducasse, known pseudonymously as the Comte de Lautréamont, describes a young boy who is as “beautiful as the chance encounter of a sewing machine and an umbrella on an operating table.” Lautréamont’s book was rediscovered and championed by the Surrealists after World War I, and this particular simile became a kind of foundational mantra for the movement. Its juxtaposition of mundane objects in an unexpected setting conveyed the Surrealists’ cheekiness, their love of the incongruous and irrational and their overriding fascination with found curiosities.\n", " Evidence\n", "\n", - "
" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "\n", - "\n" - ] - }, - { - "data": { - "text/html": [ - "

nytimes\\olympics-beijing-xi-putin.txt

" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Using custom data configuration default-2e57a48a390a623f\n" - ] + "\n", + "\n", + " The Surrealists were, as we would put it today, obsessed with the totemic power of the object and its ability to re-enchant humdrum reality: Marcel Duchamp’s punning readymades and Hans Bellmer’s fetishistic dolls, Salvador Dalí’s winkingly evocative lobster phone and Méret Oppenheim’s more overtly suggestive furry teacup. Members of the movement roamed flea markets in search of treasures and documented the bizarre wonders that floated into their subconscious while they slept. On the occasion of the landmark “Surrealist Exhibition of Objects,” held in Paris in May 1936, André Breton, the godfather of the movement, wrote an essay in which he called for the “total revolution of the object” — a goal the Surrealists arguably achieved, as numerous artists, from Louise Bourgeois to Sarah Lucas, have been influenced by their sensibility, images and ideas.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Nowadays, a group of contemporary artists are making what one might call oddity ceramics: playful, imaginative, funny but often slightly menacing objets d’art. Genesis Belanger, Rose Eken, Alma Berrow and Katy Stubbs are all working in a similar vein (as are a handful of notable others, such as Lindsey Mendick, Jessica Stoller and Woody De Othello). These four artists — all of them, not incidentally, women — take the notion of the readymade and subvert it, refashioning quotidian artifacts (cigarettes, sandwiches, shoes, lipstick, beer cans, sweaty plates of meat or eggs) in ceramics, a medium that was once considered a lowly craft but, in recent years, has been welcomed to the loftier echelon of fine art. Although their humorous, sometimes dark sculptures all share a spiritual DNA, each artist treats the object in her own highly specific, idiosyncratic way, which is perhaps not surprising, given the strange, often diminutive but eerily compelling works they’re creating.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " THE BROOKLYN-BASED artist Belanger, 43, who sculpts pastel-colored ceramics out of porcelain and stoneware, calls her work “Pop Bauhaus with a Surrealist bent.” Belanger worked for several years as a prop stylist’s assistant on campaigns for major brands like Tiffany & Co., Chanel and Victoria’s Secret, and finds inspiration in vintage advertisements — particularly in their use of beauty to induce desire: “It’s borderline offensive to actually offensive when you look at it now with our contemporary eye,” she says. Her unglazed matte clay objects, which she tints with powdered pigments in nostalgic confectionary hues the colors of Jordan almonds, tend to anthropomorphize everyday household articles. A thick, pink tongue extends from a tape dispenser. A foot-long hot dog is tucked into a platform sandal (get it?). Lamps have lips or breasts or arms and wear jewelry. These pieces are beautiful on the surface but rather disquieting beneath, recalling the creepily seductive work of Alina Szapocznikow, Robert Gober and David Lynch, as well as Man Ray’s iconic fashion images of feet, hands and Lee Miller’s tearful eyes.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Despite their seemingly decorative nature, Belanger’s ceramics aren’t stand-alone curiosities; they tell a larger story — as do the creations of all these artists. Belanger makes installations that conjure an entire mise-en-scène, building the furniture and wiring the lighting herself. “I normally start with what the room is going to be, and then build all the objects to tell a more fleshed out story,” she says.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The Danish artist Eken, 45, explores in-between spaces. While a teenager in Copenhagen, Eken worked as a stage technician for various punk venues, and this period of her life continues to inform her work. “When the audience is not there, when there’s nobody on the stage … these spaces are kind of suspended in time,” says Eken. “I’m intrigued by this moment just before something, or just after.” She’s created several “aftermath” installations, as she calls them, in which she reproduces the detritus left in theaters and concert venues in ceramics that are just slightly off in scale: cigarette butts, soda cans, beer bottles, plastic cups, lighters, band T-shirts, electric cables — commonplace items where private and collective memories meet. The viewer is left to impose their subjective narrative on the work: That was the night you got drunk; that was the show where you sneaked backstage. “We have a lot of ideas, subconsciously, about what these objects mean to us,” Eken says. We derive memories, identity, meaning from the sea of stuff in which we swim.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The London-based Berrow, a 29-year-old British ceramic artist who sells her pieces on Instagram, works in a similar vein, though on a smaller scale. She’s best known for her signature ashtrays that contain stubbed-out cigarettes, along with whatever else one might toss in during the course of an evening — lemon wedges, pistachio shells, spent matches, a steeped tea bag, clementine peels, a gold tooth. “It’s almost like doing a portrait,” she says of her ashtray worlds, which can tell the story of a life — for one couple’s commission she made a smoked joint, an apartment key and a scribbled note of affection — or simply a big night out.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Berrow took up ceramics in early 2020 while on lockdown at her mother’s house in Dorset; her mother, Miranda, is also a ceramist, so Berrow availed herself of her earthenware, kiln and high-sheen glazes. Berrow makes cigarettes, she explains, because she’s drawn to things that are “caricatures of themselves.” She’s also done oysters, lobsters, prawns, Ritz crackers, pomegranates, a backgammon board — all vaguely retro, often glamorous relics that carry cultural symbolism or baggage. But the common denominator is whatever Berrow finds comical. “A prawn cocktail, for me, is funny,” she says. “I don’t know why, but I find them hysterical.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The British South African artist Stubbs, 29, also finds humor in unexpected places. “I like to explore the really dark side of human nature,” she says, “but to make it light.” Stubbs, who studied illustration at the School of Visual Arts in New York and now lives in London, makes bright, whimsical, cartoonish work — her palette includes a lot of superhero red, yellow and green — of unexpected oddities: large bowls of spaghetti and clams, a mountainous tower of crayfish and enormous round plates of meat (“disgusting and glossy,” she calls them), a nod to the Swiss artist duo Peter Fischli and David Weiss. Raised on the gothic stories of Edward Gorey and Roald Dahl, Stubbs is interested in gluttony and excess — “this human quality of ours,” she tells me, “where we want more and we want a big pile.” She’s fascinated by humans indulging their baser, more callous instincts, and much of her work tells that tale in some form. “I did one pot about a man kicking another man,” she deadpans. “Sometimes you just feel like kicking somebody.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " It made me think: Is the sudden proliferation of oddity ceramics, which I had previously chalked up to any number of art-world factors — a return to figuration, a renewed interest in traditional crafts, a long overdue focus on female artists — in fact a response to the ongoing darkness of this moment? After all, the original Surrealist movement, with its urge to systematically derange the senses, occurred in the wake of the First World War and its horrors. These are humorous, superficially light pieces — distractions — that also convey a wry awareness of an omnipresent and unsettling strangeness. What’s known and functional has been rendered impractical and pointless, which is fascinating but also kind of scary. As the author Anne Boyer writes in 2019’s “The Undying,” “Enchantment exists when things are themselves and not their uses.” These objects reflect back at us a world that both is and is no longer familiar.\n", + " Evidence\n", + "\n", + "
" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-2e57a48a390a623f\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "\n", + "\n", + "\n" ] }, { "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "936edff954ed45989d17fd832177d6ba", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00olympics-beijing-xi-putin.txt" + ], "text/plain": [ - " 0%| | 0/1 [00:00" ] }, "metadata": {}, "output_type": "display_data" }, { - "name": "stdout", + "name": "stderr", "output_type": "stream", "text": [ - "Dataset text downloaded and prepared to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-2e57a48a390a623f\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4. Subsequent calls will reuse this data.\n" + "Using custom data configuration default-2e57a48a390a623f\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-2e57a48a390a623f\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "799f20ad866c4cacbb8e78da87b6f00c", + "model_id": "68e18543465b4e4bae5dcfe5feb7d5b5", "version_major": 2, "version_minor": 0 }, @@ -19688,23 +27509,16 @@ "output_type": "display_data" }, { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "f75981847e444e1996b0d4fd1b77ca8f", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " BEIJING — China’s leader, Xi Jinping, opened an Olympic Games on Friday intended to celebrate his country’s increasingly assured global status standing defiantly with his Russian counterpart, Vladimir V. Putin, in an increasingly ideological contest with the United States and its allies. While President Biden and other democratic leaders shunned the opening ceremony over China’s human rights abuses, Mr. Xi drew his own bloc of supportive guests. Mr. Putin, another strongman leader bristling against the United States’ demands, appeared with him in a calculated display of solidarity while Moscow’s tensions with Ukraine could tip into war. The meeting with Mr. Putin, with the opening ceremony, amounted to a choreographed display of China’s shifting place in the world — wanting to win over countries wary of its rising power, but growing impatient, and disdainful, of Western censure. It also underscored China and Russia’s determination to present a united front against the West, broadly, and the United States in particular — exactly the result that President Richard M. Nixon and his national security adviser, Henry A. Kissinger, were trying to avoid with their opening to China in 1971. In a joint statement after Mr. Xi and Mr. Putin met, they said their friendship had “no limits,” and China sided with Russia on one of its critical security demands: an end to NATO expansion to the east and closer to Russia’s borders. The two leaders called for the United States to abandon plans to deploy intermediate range missiles in Europe and Asia and denounced what they see as American interference in their internal affairs by fomenting “color revolutions,” the public uprisings in former Soviet republics like Georgia and Ukraine calling for greater democracy. “Russia and China stand against attempts by external forces to undermine security and stability in their common adjacent regions,” they said in the 5,300-word statement, which illustrated the widening rift between democracies and autocracies. In a message directly aimed at the United States, the two leaders vowed “to counter interference by outside forces in the internal affairs of sovereign countries under any pretext, oppose color revolutions and will increase cooperation in the aforementioned areas.” The statement made no mention of mutual support in Russia’s tensions over Ukraine and China’s with Taiwan, signaling the limits of the growing partnership. “This statement reflects the nature of the relationship with China,” said Alexander Gabuev, a senior fellow at the Carnegie Moscow Center. “It’s increasingly deep, increasingly directed at the U.S., but it’s not an alliance where both sides support each other on everything.” After the hard-nosed geopolitics of his talks with Mr. Putin, Mr. Xi presided over the Winter Games’ opening spectacular in the “Bird’s Nest” National Stadium. The ceremony, lasting more than two hours on a clear, frigid night, was filled with images of China as a friendly, open host, despite the imposition of the most stringent health restrictions ever in a major sporting event. The night began with a display of folksy charm watched by spectators carefully screened against Covid — a distant cry from the passionate crowd that filled the stadium for the grandiose, four-hour Summer Olympics ceremony there in 2008. The highlight for many that time was the appearance of 2,008 tightly coordinated drummers chanting Confucius: “Friends have come from afar, and how happy we are.” This time, a thousand performers jumped and twisted to China’s version of square dancing, a boisterous dance style popular among middle-aged people who gather in parks across China. Zhang Yimou, the director of the opening ceremony, as well as the 2008 opening, has said that this time he wanted to highlight China’s “ordinary humanity.” The president of the International Olympic Committee, Thomas Bach, used his remarks at the opening ceremony to make a plea to keep politics out of international sports, a position that has drawn increasing criticism from detractors of the committee and of China.\n", + " BEIJING — China’s leader, Xi Jinping, opened an Olympic Games on Friday intended to celebrate his country’s increasingly assured global status standing defiantly with his Russian counterpart, Vladimir V. Putin, in an increasingly ideological contest with the United States and its allies.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " While President Biden and other democratic leaders shunned the opening ceremony over China’s human rights abuses, Mr. Xi drew his own bloc of supportive guests. Mr. Putin, another strongman leader bristling against the United States’ demands, appeared with him in a calculated display of solidarity while Moscow’s tensions with Ukraine could tip into war.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The meeting with Mr. Putin, with the opening ceremony, amounted to a choreographed display of China’s shifting place in the world — wanting to win over countries wary of its rising power, but growing impatient, and disdainful, of Western censure.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " It also underscored China and Russia’s determination to present a united front against the West, broadly, and the United States in particular — exactly the result that President Richard M. Nixon and his national security adviser, Henry A. Kissinger, were trying to avoid with their opening to China in 1971.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In a joint statement after Mr. Xi and Mr. Putin met, they said their friendship had “no limits,” and China sided with Russia on one of its critical security demands: an end to NATO expansion to the east and closer to Russia’s borders.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The two leaders called for the United States to abandon plans to deploy intermediate range missiles in Europe and Asia and denounced what they see as American interference in their internal affairs by fomenting “color revolutions,” the public uprisings in former Soviet republics like Georgia and Ukraine calling for greater democracy.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Russia and China stand against attempts by external forces to undermine security and stability in their common adjacent regions,” they said in the 5,300-word statement, which illustrated the widening rift between democracies and autocracies.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In a message directly aimed at the United States, the two leaders vowed “to counter interference by outside forces in the internal affairs of sovereign countries under any pretext, oppose color revolutions and will increase cooperation in the aforementioned areas.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The statement made no mention of mutual support in Russia’s tensions over Ukraine and China’s with Taiwan, signaling the limits of the growing partnership.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “This statement reflects the nature of the relationship with China,” said Alexander Gabuev, a senior fellow at the Carnegie Moscow Center. “It’s increasingly deep, increasingly directed at the U.S., but it’s not an alliance where both sides support each other on everything.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " After the hard-nosed geopolitics of his talks with Mr. Putin, Mr. Xi presided over the Winter Games’ opening spectacular in the “Bird’s Nest” National Stadium. The ceremony, lasting more than two hours on a clear, frigid night, was filled with images of China as a friendly, open host, despite the imposition of the most stringent health restrictions ever in a major sporting event.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The night began with a display of folksy charm watched by spectators carefully screened against Covid — a distant cry from the passionate crowd that filled the stadium for the grandiose, four-hour Summer Olympics ceremony there in 2008. The highlight for many that time was the appearance of 2,008 tightly coordinated drummers chanting Confucius: “Friends have come from afar, and how happy we are.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " This time, a thousand performers jumped and twisted to China’s version of square dancing, a boisterous dance style popular among middle-aged people who gather in parks across China. Zhang Yimou, the director of the opening ceremony, as well as the 2008 opening, has said that this time he wanted to highlight China’s “ordinary humanity.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The president of the International Olympic Committee, Thomas Bach, used his remarks at the opening ceremony to make a plea to keep politics out of international sports, a position that has drawn increasing criticism from detractors of the committee and of China.\n", " Evidence\n", "\n", "\n", @@ -19779,7 +27696,67 @@ "\n", "\n", "\n", - " Mr. Xi has seized on the occasion to present China as an anchor of stability in a crisis-ridden world. Being able to hold the Games on schedule, in the face of Covid, is enough proof of China’s dependability, he has suggested. Nearly 14 years after the 2008 Games, a very different China — much wealthier, more powerful, but also more feared — put on a show designed to reassure, as well as dazzle, its global audience. China, the message was, did not feel the same swaggering anxiety as it once did to prove that it had arrived. “China is no longer seeking entry into the international community. It is an embedded senior member,” Rana Mitter, a professor of Chinese history and politics at Oxford University, said of the contrast between 2008 and today. “There is also a much stronger message saying, ‘We’re no longer supplicants seeking to enter the room. We are defining the rules of what happens in the room’,” he said. Mr. Xi and other Chinese leaders have portrayed the Games as a celebration of sport, accusing the United States of politicizing the event by leading a “diplomatic boycott” by Western leaders and senior officials. Mr. Putin reiterated the accusation in remarks on the eve of his visit. Chinese state news media has even claimed, without evidence, that the United States was plotting to disrupt the festivities with orchestrated protests by athletes or other participants. In their meeting on Friday — the 38th between the two as leaders — Mr. Putin told his counterpart that the Chinese-Russian relationship had “taken on a truly unprecedented character.” “It is an example of a dignified relationship that helps each of us develop while supporting each other’s development,” Mr. Putin said at the start of talks that also covered trade and security issues. Even so, the limits of China’s support for Russia were on display. The leaders’ statement did not specifically mention Ukraine, where China has economic and geopolitical interests of its own. Mr. Putin was among 22 world leaders who attended the opening ceremony, a gathering that blunted at least somewhat the “diplomatic boycott” that Mr. Biden and other democratic leaders had announced. Among those in attendance were the leaders of the five Central Asian nations that were once part of the Soviet Union, as well as Egypt, Saudi Arabia, Qatar and United Arab Emirates. Most, though not all, are autocratic nations, underscoring the growing divides in the world based less on political ideology than on modes of governance and tolerance for basic political freedoms. China’s record of rights abuses made the country’s choice as a host for these Games even more controversial than Beijing was for the Summer Olympics in 2008. Beijing became the first city given the chance to hold both the summer and winter editions of the premier sporting event in 2015 — only after Norway, Sweden and other European countries dropped out, citing costs or lack of public support for hosting the Olympics. Mr. Xi’s wide suppression of dissent, crushing of democratic opposition in Hong Kong and detention of hundreds of thousands of members of the Uyghur ethnic minority in Xinjiang region have fueled calls for boycotts by countries and corporate sponsors. Against that backdrop, critics denounced as hypocritical the choice of Dinigeer Yilamujiang, a cross-country skier who the Chinese said has Uyghur roots, to participate in the final, ritual lighting of the Olympic flame.\n", + " Mr. Xi has seized on the occasion to present China as an anchor of stability in a crisis-ridden world. Being able to hold the Games on schedule, in the face of Covid, is enough proof of China’s dependability, he has suggested.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Nearly 14 years after the 2008 Games, a very different China — much wealthier, more powerful, but also more feared — put on a show designed to reassure, as well as dazzle, its global audience. China, the message was, did not feel the same swaggering anxiety as it once did to prove that it had arrived.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “China is no longer seeking entry into the international community. It is an embedded senior member,” Rana Mitter, a professor of Chinese history and politics at Oxford University, said of the contrast between 2008 and today.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “There is also a much stronger message saying, ‘We’re no longer supplicants seeking to enter the room. We are defining the rules of what happens in the room’,” he said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mr. Xi and other Chinese leaders have portrayed the Games as a celebration of sport, accusing the United States of politicizing the event by leading a “diplomatic boycott” by Western leaders and senior officials.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mr. Putin reiterated the accusation in remarks on the eve of his visit. Chinese state news media has even claimed, without evidence, that the United States was plotting to disrupt the festivities with orchestrated protests by athletes or other participants.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In their meeting on Friday — the 38th between the two as leaders — Mr. Putin told his counterpart that the Chinese-Russian relationship had “taken on a truly unprecedented character.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “It is an example of a dignified relationship that helps each of us develop while supporting each other’s development,” Mr. Putin said at the start of talks that also covered trade and security issues.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Even so, the limits of China’s support for Russia were on display. The leaders’ statement did not specifically mention Ukraine, where China has economic and geopolitical interests of its own.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mr. Putin was among 22 world leaders who attended the opening ceremony, a gathering that blunted at least somewhat the “diplomatic boycott” that Mr. Biden and other democratic leaders had announced.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Among those in attendance were the leaders of the five Central Asian nations that were once part of the Soviet Union, as well as Egypt, Saudi Arabia, Qatar and United Arab Emirates. Most, though not all, are autocratic nations, underscoring the growing divides in the world based less on political ideology than on modes of governance and tolerance for basic political freedoms.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " China’s record of rights abuses made the country’s choice as a host for these Games even more controversial than Beijing was for the Summer Olympics in 2008. Beijing became the first city given the chance to hold both the summer and winter editions of the premier sporting event in 2015 — only after Norway, Sweden and other European countries dropped out, citing costs or lack of public support for hosting the Olympics.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mr. Xi’s wide suppression of dissent, crushing of democratic opposition in Hong Kong and detention of hundreds of thousands of members of the Uyghur ethnic minority in Xinjiang region have fueled calls for boycotts by countries and corporate sponsors. Against that backdrop, critics denounced as hypocritical the choice of Dinigeer Yilamujiang, a cross-country skier who the Chinese said has Uyghur roots, to participate in the final, ritual lighting of the Olympic flame.\n", " Evidence\n", "\n", "\n", @@ -19789,7 +27766,12 @@ "\n", "\n", "\n", - " Mr. Xi, who was vice president in 2008, has since taking power in 2012 presided over a vigorous restoration of Communist Party power that he clearly hopes the Olympics will validate. “If you look back at that time, 2008, they were still willing to show the world that they speak the same language, that they were part of some idea,” Ai Weiwei, the Chinese artist who helped design the Bird’s Nest stadium, said in an interview from Portugal. He left China in 2015 after his outspoken criticisms of the government. The open, airy design of the stadium was at odds with the direction China has taken, he said.\n", + " Mr. Xi, who was vice president in 2008, has since taking power in 2012 presided over a vigorous restoration of Communist Party power that he clearly hopes the Olympics will validate.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “If you look back at that time, 2008, they were still willing to show the world that they speak the same language, that they were part of some idea,” Ai Weiwei, the Chinese artist who helped design the Bird’s Nest stadium, said in an interview from Portugal. He left China in 2015 after his outspoken criticisms of the government. The open, airy design of the stadium was at odds with the direction China has taken, he said.\n", " Evidence\n", "\n", "\n", @@ -19799,7 +27781,22 @@ "\n", "\n", "\n", - " Holding the games could help put Mr. Xi in a flattering glow before a Communist Party congress late this year that will be crucial to extending his era in power. Mr. Xi appears increasingly assured of winning another five-year term as party leader at that congress, confirming his status as China’s most powerful leader since Mao Zedong and Deng Xiaoping. “This is in fact a celebration of a decade of Xi Jinping’s era in power. It’s a celebration of his power,” Geremie R. Barmé, a fellow at the Asia Society’s Center on U.S.-China Relation, said of the Games’ opening ceremony. “It’s like a National Day celebration, but done in the guise of an international event.” During the ceremony, thousands of athletes representing 90 countries and territories marched around the stadium. So far, none have openly criticized the Chinese government, something officials have warned could be punished. “If any athletes, upon their departure from China and return to their home countries, choose to say anything about China, though, that could turn the narrative back toward the tensions,” said Heather Dichter, an associate professor of sports history at De Montfort University in Britain.\n", + " Holding the games could help put Mr. Xi in a flattering glow before a Communist Party congress late this year that will be crucial to extending his era in power. Mr. Xi appears increasingly assured of winning another five-year term as party leader at that congress, confirming his status as China’s most powerful leader since Mao Zedong and Deng Xiaoping.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “This is in fact a celebration of a decade of Xi Jinping’s era in power. It’s a celebration of his power,” Geremie R. Barmé, a fellow at the Asia Society’s Center on U.S.-China Relation, said of the Games’ opening ceremony. “It’s like a National Day celebration, but done in the guise of an international event.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " During the ceremony, thousands of athletes representing 90 countries and territories marched around the stadium. So far, none have openly criticized the Chinese government, something officials have warned could be punished.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “If any athletes, upon their departure from China and return to their home countries, choose to say anything about China, though, that could turn the narrative back toward the tensions,” said Heather Dichter, an associate professor of sports history at De Montfort University in Britain.\n", " Evidence\n", "\n", "\n", @@ -19828,7 +27825,7 @@ { "data": { "text/html": [ - "

nytimes\\olympics-china-american-athletes.txt

" + "

olympics-china-american-athletes.txt

" ], "text/plain": [ "" @@ -19841,34 +27838,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-a35a925519ac7648\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-a35a925519ac7648\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-a35a925519ac7648\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-a35a925519ac7648\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "5533bb3686bc419299e4b2b8a8f06e1d", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " BEIJING — When the figure skater Nathan Chen won an Olympic gold medal for the United States, the state media in China, his parents’ birthplace, practically ignored his victory. When the Californian-born skater Beverly Zhu stumbled on the ice in her first appearance for China, Chinese social media users told her to “go back to America.” When Eileen Gu won gold skiing for China, people in China celebrated her as the nation’s pride. But in the United States, where she was born and trained, some conservative political pundits called her ungrateful. To be an American-born athlete of Chinese descent on sport’s most prominent global stage is to be a lightning rod for patriotic, some say nationalistic, sentiment. Once held up as bridges linking the two countries, the Chinese American Olympians — and their successes and failures — are increasingly being seen as proxies in the superpowers’ broader geopolitical tussle. In China, a resurgent nationalism has meant that even among citizens, anyone airing even the mildest of criticisms can be accused of disloyalty. But the scrutiny of Chinese Americans is often harsh in other ways. They are expected to show loyalty as part of a perceived extended Chinese family, yet are also distrusted as outsiders. Depending on the moment and mood, they can be shunned as traitors to the motherland or embraced as heroes who bring glory to the nation. For the athletes, choosing which country to compete for is often a personal or practical decision. Having ties to both the United States and China is also natural for Chinese Americans, many of whom grow up straddling two cultures, geographies and languages. “When I’m in China, I’m Chinese and when I go to America, I’m American,” Ms. Gu, 18, has often said in response to questions about her decision to compete for China. Ms. Gu, whose father is white and mother is Chinese, was born and raised in California by her mother. She speaks Chinese fluently and visited Beijing frequently as a child.\n", + " BEIJING — When the figure skater Nathan Chen won an Olympic gold medal for the United States, the state media in China, his parents’ birthplace, practically ignored his victory.\n", " Evidence\n", "\n", "\n", - "\n", - " But worsening geopolitical tensions between Beijing and Washington have made maintaining the balancing act difficult for such athletes.\n", - " Rebuttal\n", - "\n", + "\n", + " When the Californian-born skater Beverly Zhu stumbled on the ice in her first appearance for China, Chinese social media users told her to “go back to America.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " When Eileen Gu won gold skiing for China, people in China celebrated her as the nation’s pride. But in the United States, where she was born and trained, some conservative political pundits called her ungrateful.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " To be an American-born athlete of Chinese descent on sport’s most prominent global stage is to be a lightning rod for patriotic, some say nationalistic, sentiment. Once held up as bridges linking the two countries, the Chinese American Olympians — and their successes and failures — are increasingly being seen as proxies in the superpowers’ broader geopolitical tussle.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In China, a resurgent nationalism has meant that even among citizens, anyone airing even the mildest of criticisms can be accused of disloyalty. But the scrutiny of Chinese Americans is often harsh in other ways.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " They are expected to show loyalty as part of a perceived extended Chinese family, yet are also distrusted as outsiders. Depending on the moment and mood, they can be shunned as traitors to the motherland or embraced as heroes who bring glory to the nation.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " For the athletes, choosing which country to compete for is often a personal or practical decision. Having ties to both the United States and China is also natural for Chinese Americans, many of whom grow up straddling two cultures, geographies and languages.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “When I’m in China, I’m Chinese and when I go to America, I’m American,” Ms. Gu, 18, has often said in response to questions about her decision to compete for China. Ms. Gu, whose father is white and mother is Chinese, was born and raised in California by her mother. She speaks Chinese fluently and visited Beijing frequently as a child.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " But worsening geopolitical tensions between Beijing and Washington have made maintaining the balancing act difficult for such athletes.\n", + " Rebuttal\n", + "\n", "\n", "\n", - " “We can see the heightened expectations and demands for these young athletes to pick a side, to prove their loyalty in one way or another,” said Ellen Wu, an associate professor of history at Indiana University who researches Asian American history. Many countries have for decades recruited foreign-born athletes to boost their chances of winning medals at the Olympics. Now China, too, is looking abroad for talent as well. Around 30 athletes competing for China in this year’s Games are naturalized Chinese citizens, with most playing for the men’s and women’s ice hockey teams. None, though, have attracted as much scrutiny in the United States as Ms. Gu, who has already won two medals at these Games.\n", + " “We can see the heightened expectations and demands for these young athletes to pick a side, to prove their loyalty in one way or another,” said Ellen Wu, an associate professor of history at Indiana University who researches Asian American history.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Many countries have for decades recruited foreign-born athletes to boost their chances of winning medals at the Olympics. Now China, too, is looking abroad for talent as well.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Around 30 athletes competing for China in this year’s Games are naturalized Chinese citizens, with most playing for the men’s and women’s ice hockey teams. None, though, have attracted as much scrutiny in the United States as Ms. Gu, who has already won two medals at these Games.\n", " Evidence\n", "\n", "\n", @@ -19997,7 +28024,22 @@ "\n", "\n", "\n", - " Will Cain, a Fox News Host, said it was “ungrateful” of Ms. Gu to “betray the country that not just raised her, but turned her into a world-class skier.” In China, however, Ms. Gu has quickly become a superstar. Many Chinese obsess over her strong Beijing accent, her success as a model and reports about her near-perfect SAT scores. She has a bevy of lucrative endorsements from top Chinese brands, like JD.com, Bank of China and Anta. Despite the outpouring of adulation in China, Ms. Gu is also walking a fine line. She has so far declined to answer repeated questions about whether she surrendered her United States passport. (China does not allow dual nationality.) Hu Xijin, a recently retired editor of Global Times, a brashly nationalist Chinese newspaper, warned Chinese propaganda organs on Sunday to moderate their praise of Ms. Gu, suggesting it was unclear which nation she would identify with as she got older.\n", + " Will Cain, a Fox News Host, said it was “ungrateful” of Ms. Gu to “betray the country that not just raised her, but turned her into a world-class skier.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In China, however, Ms. Gu has quickly become a superstar. Many Chinese obsess over her strong Beijing accent, her success as a model and reports about her near-perfect SAT scores. She has a bevy of lucrative endorsements from top Chinese brands, like JD.com, Bank of China and Anta.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Despite the outpouring of adulation in China, Ms. Gu is also walking a fine line. She has so far declined to answer repeated questions about whether she surrendered her United States passport. (China does not allow dual nationality.)\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Hu Xijin, a recently retired editor of Global Times, a brashly nationalist Chinese newspaper, warned Chinese propaganda organs on Sunday to moderate their praise of Ms. Gu, suggesting it was unclear which nation she would identify with as she got older.\n", " Evidence\n", "\n", "\n", @@ -20007,7 +28049,17 @@ "\n", "\n", "\n", - " The implication is that heritage alone is no longer enough for Chinese American athletes to be embraced by China. Rather, it now hinges on their ability to hew to China’s increasingly demanding, some say unrealistic, expectations. Not being able to speak Chinese fluently was the first strike against Beverly Zhu, the California-born figure skater who competes for China under the name Zhu Yi. Then, she fell several times during competition, prompting Chinese social media users to unleash a wave of attacks against her, many of them ugly. Many online users called her a “disgrace” and suggested — without evidence — that Ms. Zhu had been given a spot on the Chinese Olympics team over a Chinese-born skater because of the prominence of her father, a computer scientist who relocated to Peking University from the United States. The attacks were so intense that Chinese internet censors stepped in to tamp down the vitriol.\n", + " The implication is that heritage alone is no longer enough for Chinese American athletes to be embraced by China. Rather, it now hinges on their ability to hew to China’s increasingly demanding, some say unrealistic, expectations.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Not being able to speak Chinese fluently was the first strike against Beverly Zhu, the California-born figure skater who competes for China under the name Zhu Yi. Then, she fell several times during competition, prompting Chinese social media users to unleash a wave of attacks against her, many of them ugly.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Many online users called her a “disgrace” and suggested — without evidence — that Ms. Zhu had been given a spot on the Chinese Olympics team over a Chinese-born skater because of the prominence of her father, a computer scientist who relocated to Peking University from the United States. The attacks were so intense that Chinese internet censors stepped in to tamp down the vitriol.\n", " Evidence\n", "\n", "\n", @@ -20017,7 +28069,22 @@ "\n", "\n", "\n", - " “There was a time when people felt it was awesome to be American,” said Hung Huang, a Chinese-born American writer based in Beijing. “But as politics between the two countries have spiraled down the rabbit hole, Chinese feel that they should not — or cannot — admire a country that point fingers at them all the time.” The Chinese response to some of the athletes has been indifferent at best, derisive at worst. Last week, Chinese state media was noticeably silent on the gold medal win by Mr. Chen, the American figure skater, in the men’s individual event, focusing instead on Japan’s Yuzuru Hanyu, who finished fourth, and on the Chinese figure skater Jin Boyang, who placed ninth. Chinese social media users posted comments dismissing the American athlete’s achievement as unworthy of attention because, in their view, he had insulted China. Mr. Chen had initially rankled the Chinese public at the 2018 Games, when he skated to the music of “Mao’s Last Dancer,” a 2009 film about a Chinese ballet dancer who had defected. (Mr. Chen said last week that he was not aware of the broader context of the music when he chose it.) Then, in October, Mr. Chen drew more criticism in China when he supported his teammate, Evan Bates, in expressing concern about China’s human rights record.\n", + " “There was a time when people felt it was awesome to be American,” said Hung Huang, a Chinese-born American writer based in Beijing. “But as politics between the two countries have spiraled down the rabbit hole, Chinese feel that they should not — or cannot — admire a country that point fingers at them all the time.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The Chinese response to some of the athletes has been indifferent at best, derisive at worst. Last week, Chinese state media was noticeably silent on the gold medal win by Mr. Chen, the American figure skater, in the men’s individual event, focusing instead on Japan’s Yuzuru Hanyu, who finished fourth, and on the Chinese figure skater Jin Boyang, who placed ninth. Chinese social media users posted comments dismissing the American athlete’s achievement as unworthy of attention because, in their view, he had insulted China.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mr. Chen had initially rankled the Chinese public at the 2018 Games, when he skated to the music of “Mao’s Last Dancer,” a 2009 film about a Chinese ballet dancer who had defected. (Mr. Chen said last week that he was not aware of the broader context of the music when he chose it.)\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Then, in October, Mr. Chen drew more criticism in China when he supported his teammate, Evan Bates, in expressing concern about China’s human rights record.\n", " Evidence\n", "\n", "\n", @@ -20027,7 +28094,17 @@ "\n", "\n", "\n", - " Two decades ago, China held up athletes like the figure skater Michelle Kwan and the tennis player Michael Chang as cultural ambassadors. David Zhuang, a Chinese-born table tennis player competing for the United States, recalled receiving a raucous welcome when he returned to Beijing in 2008 for the Summer Olympics. Mr. Zhuang, who had moved to the United States in 1990, said in a phone interview that during one match he played, a group of Chinese fans gathered around and shouted encouraging words. “Can you imagine, I had left the country 18 years before and here they were cheering me on,” recalled Mr. Zhuang. “I couldn’t play after that, I was so emotional.”\n", + " Two decades ago, China held up athletes like the figure skater Michelle Kwan and the tennis player Michael Chang as cultural ambassadors.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " David Zhuang, a Chinese-born table tennis player competing for the United States, recalled receiving a raucous welcome when he returned to Beijing in 2008 for the Summer Olympics. Mr. Zhuang, who had moved to the United States in 1990, said in a phone interview that during one match he played, a group of Chinese fans gathered around and shouted encouraging words.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Can you imagine, I had left the country 18 years before and here they were cheering me on,” recalled Mr. Zhuang. “I couldn’t play after that, I was so emotional.”\n", " Evidence\n", "\n", "\n", @@ -20061,7 +28138,7 @@ { "data": { "text/html": [ - "

nytimes\\olympics-skating-valieva-age.txt

" + "

olympics-skating-valieva-age.txt

" ], "text/plain": [ "" @@ -20074,34 +28151,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-0e6bffd40e8d00c8\n" + "Using custom data configuration default-0e6bffd40e8d00c8\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-0e6bffd40e8d00c8\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-0e6bffd40e8d00c8\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" - ] - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "9433b38c21e14e5385962db4cf058d1f", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " Like so many other people who watched the Russian star Kamila Valieva crumble during her free skate at the Beijing Games, Tara Lipinski, the Olympic champion and NBC announcer, woke up still feeling shaken over it. She had slept just two and a half hours, worried about Valieva, 15, and her 17-year-old Russian teammates, whose raw emotions of devastation, joy and rage were captured on live TV as they navigated the debacle on their own, without any real comfort from adults.\n", + " Like so many other people who watched the Russian star Kamila Valieva crumble during her free skate at the Beijing Games, Tara Lipinski, the Olympic champion and NBC announcer, woke up still feeling shaken over it.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " She had slept just two and a half hours, worried about Valieva, 15, and her 17-year-old Russian teammates, whose raw emotions of devastation, joy and rage were captured on live TV as they navigated the debacle on their own, without any real comfort from adults.\n", " Evidence\n", "\n", "\n", @@ -20220,7 +28283,17 @@ "\n", "\n", "\n", - " Valieva, at the center of a doping scandal, finished fourth and wandered around the rink in tears after a disastrous free skate. Anna Shcherbakova won, but said she felt empty inside. Alexandra Trusova, the silver medalist, was crying and enraged because she thought she deserved to win, and just wanted her mother. Finding a way to protect teenagers inside an authoritarian sports system like Russia’s will be challenging. No doubt girls and women fear speaking out because of possible reprisal against them or their families. Setting up an independent group to provide oversight there is not as easy as it sounds. This is Russia we’re talking about, the country caught switching out urine samples in a doping scheme at the 2014 Sochi Games so its athletes could win.\n", + " Valieva, at the center of a doping scandal, finished fourth and wandered around the rink in tears after a disastrous free skate. Anna Shcherbakova won, but said she felt empty inside. Alexandra Trusova, the silver medalist, was crying and enraged because she thought she deserved to win, and just wanted her mother.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Finding a way to protect teenagers inside an authoritarian sports system like Russia’s will be challenging. No doubt girls and women fear speaking out because of possible reprisal against them or their families. Setting up an independent group to provide oversight there is not as easy as it sounds.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " This is Russia we’re talking about, the country caught switching out urine samples in a doping scheme at the 2014 Sochi Games so its athletes could win.\n", " Evidence\n", "\n", "\n", @@ -20230,7 +28303,17 @@ "\n", "\n", "\n", - " Karen Chen, the American who finished 16th in the women’s event, explained this week how this would help young athletes, saying that when she was 15 or 16 she was completely different from the person she is now, at 22. “I don’t know if robot is the right word, but my coaches would tell me to go do something and I’d do it,” she said. The word “robot” should send off warning signals. Many young gymnasts in the Lawrence G. Nassar sexual abuse case described themselves as robots who did as they were told, even if it was trying skills that might hurt them, or limiting their food and even water intake. They also were too scared to question authority, even when being abused. The transformation of these young women into machines controlled by adults nearly crushed the sport.\n", + " Karen Chen, the American who finished 16th in the women’s event, explained this week how this would help young athletes, saying that when she was 15 or 16 she was completely different from the person she is now, at 22.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “I don’t know if robot is the right word, but my coaches would tell me to go do something and I’d do it,” she said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The word “robot” should send off warning signals. Many young gymnasts in the Lawrence G. Nassar sexual abuse case described themselves as robots who did as they were told, even if it was trying skills that might hurt them, or limiting their food and even water intake. They also were too scared to question authority, even when being abused. The transformation of these young women into machines controlled by adults nearly crushed the sport.\n", " Evidence\n", "\n", "\n", @@ -20240,7 +28323,27 @@ "\n", "\n", "\n", - " “If you have athletes who are raised in an abusive reality, it’s not like a switch is flipped when you turn 17 and suddenly your warped sense of reality and perception is eradicated,” Rachael Denhollander, the first athlete to publicly accuse Nassar of sexual abuse, said. “How old were some of Larry’s victims who, honest to God, believed that they were getting medical procedures because they had been taught not to trust their own perceptions when they were just children?” Some of those gymnasts were as young as 8. Some were in their 20s. “We need to be on guard for individuals and entities who are going to make raising the age minimum sound like an easy fix because they don’t want to dismantle the system and get rid of the people in power who are feeding the system,” Denhollander said. “That requires much more work and complete restructuring and people don’t want to do that work.” She added that raising the age might be a piece of the puzzle, but says older figure skaters might still face abuse because mature women will then be forced to remain as small and as thin as 15-year-olds. In skating, lighter athletes find it easier to spin and jump. “It’s almost better for them to get out of the sport fast when they are young, so they can continue growing,” Denhollander said. “Raising the age might be like extending the abusive system for a few more years.”\n", + " “If you have athletes who are raised in an abusive reality, it’s not like a switch is flipped when you turn 17 and suddenly your warped sense of reality and perception is eradicated,” Rachael Denhollander, the first athlete to publicly accuse Nassar of sexual abuse, said. “How old were some of Larry’s victims who, honest to God, believed that they were getting medical procedures because they had been taught not to trust their own perceptions when they were just children?”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Some of those gymnasts were as young as 8. Some were in their 20s.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “We need to be on guard for individuals and entities who are going to make raising the age minimum sound like an easy fix because they don’t want to dismantle the system and get rid of the people in power who are feeding the system,” Denhollander said. “That requires much more work and complete restructuring and people don’t want to do that work.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " She added that raising the age might be a piece of the puzzle, but says older figure skaters might still face abuse because mature women will then be forced to remain as small and as thin as 15-year-olds. In skating, lighter athletes find it easier to spin and jump.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “It’s almost better for them to get out of the sport fast when they are young, so they can continue growing,” Denhollander said. “Raising the age might be like extending the abusive system for a few more years.”\n", " Evidence\n", "\n", "\n", @@ -20250,12 +28353,37 @@ "\n", "\n", "\n", - " In a discussion on Instagram Live on Thursday, Edmunds said Eteri Tutberidze, the coach of all three Russians who competed in the women’s event in Beijing, holds undue power in the sport and “needs to be gone.” Tutberidze’s skaters have been given inflated scores and not penalized for mistakes for years, she said, so if the judging doesn’t change, the age limit must. “I don’t think you should be held back at your competitive peak just because this whole fiasco is happening,” Edmunds said of raising the minimum age. “If you raise the age limit and not do anything about what this coaching team is doing, corruption is still going to happen.” Tutberidze’s skaters are known for their quadruple jumps, and landing them helps the skater rack up a huge number of points. But to do quads, according to Tutberidze, girls must start young to learn a foundation of the technique. At the free skate on Thursday, Tutberidze was caught on camera telling Valieva, just as she stepped off the ice: “Why did you let it go? Why did you stop fighting? Explain it to me, why?” They did not hug. Thomas Bach, the International Olympic Committee president, said on Friday that he was “very disturbed” to see how Valieva’s entourage treated her and the other Russians. He said that the committee’s executive board had been discussing raising the minimum competition age, but that it would be up to the international sports federations to mandate it.\n", + " In a discussion on Instagram Live on Thursday, Edmunds said Eteri Tutberidze, the coach of all three Russians who competed in the women’s event in Beijing, holds undue power in the sport and “needs to be gone.” Tutberidze’s skaters have been given inflated scores and not penalized for mistakes for years, she said, so if the judging doesn’t change, the age limit must.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “I don’t think you should be held back at your competitive peak just because this whole fiasco is happening,” Edmunds said of raising the minimum age. “If you raise the age limit and not do anything about what this coaching team is doing, corruption is still going to happen.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Tutberidze’s skaters are known for their quadruple jumps, and landing them helps the skater rack up a huge number of points. But to do quads, according to Tutberidze, girls must start young to learn a foundation of the technique.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " At the free skate on Thursday, Tutberidze was caught on camera telling Valieva, just as she stepped off the ice: “Why did you let it go? Why did you stop fighting? Explain it to me, why?” They did not hug.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Thomas Bach, the International Olympic Committee president, said on Friday that he was “very disturbed” to see how Valieva’s entourage treated her and the other Russians. He said that the committee’s executive board had been discussing raising the minimum competition age, but that it would be up to the international sports federations to mandate it.\n", " Evidence\n", "\n", "\n", "\n", - " Valieva’s entourage, including Tutberidze, is already under investigation by antidoping authorities after Valieva tested positive for a banned heart drug before the Olympics. Russia quickly responded to Bach’s comments, with the deputy prime minister saying Bach has “his own fictional narrative.”\n", + " Valieva’s entourage, including Tutberidze, is already under investigation by antidoping authorities after Valieva tested positive for a banned heart drug before the Olympics.\n", + " Claim\n", + "\n", + "\n", + "\n", + " Russia quickly responded to Bach’s comments, with the deputy prime minister saying Bach has “his own fictional narrative.”\n", " Claim\n", "\n", "\n", @@ -20289,7 +28417,7 @@ { "data": { "text/html": [ - "

nytimes\\oscars-vaccine-mandate-coronavirus.txt

" + "

oscars-vaccine-mandate-coronavirus.txt

" ], "text/plain": [ "" @@ -20302,34 +28430,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-33522e57eb6dcae3\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-33522e57eb6dcae3\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-33522e57eb6dcae3\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-33522e57eb6dcae3\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "8addd4dc63bd451b8e7523d89ab97140", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " After much internal discussion, the Academy of Motion Picture Arts and Sciences has come to an agreement on coronavirus safety measures for attendees of the 94th Oscars, which will be held on March 27 in Los Angeles: The audience of 2,500 invited guests — including all nominees — will be required to show proof of vaccination against the coronavirus and at least two negative P.C.R. tests. Performers and presenters also must undergo rigorous testing — but those people will not need to show proof of vaccination, a decision that an academy spokeswoman said on Thursday was in keeping with virus safety protocols on some television sets and return-to-work standards set by Los Angeles County. Under an agreement last year between entertainment unions and the Alliance of Motion Picture and Television Producers, production companies (in this case the academy) have the option to mandate vaccinations for cast and crew. But it is not a requirement, and some companies separate productions into zones, with different testing and social distancing requirements depending on how closely casts and crews need to work together. Face covering requirements also will vary, the academy said. Nominees and their guests will be seated in the orchestra and parterre areas of the Dolby Theater and will not be required to wear masks. These attendees will be seated with more spacing than usual. The Dolby seats 3,317 people and 2,500 people will be invited, the academy said. Those in the mezzanine may be required to wear masks, as they will sit shoulder-to-shoulder. Infections are declining rapidly in Los Angeles County, and the academy said it was consulting with government officials, infectious disease experts and an independent vendor, Cosmos Health Solutions, on a policy. Last week, following a report in The Hollywood Reporter that the academy was planning to forgo a vaccine mandate across the board, the organization was pummeled on social media by fans, stars, politicians and others for what appeared to be an effort to accommodate unvaccinated celebrities. Seth MacFarlane, who hosted the Oscars in 2013, was among those who criticized the academy on Twitter.\n", + " After much internal discussion, the Academy of Motion Picture Arts and Sciences has come to an agreement on coronavirus safety measures for attendees of the 94th Oscars, which will be held on March 27 in Los Angeles: The audience of 2,500 invited guests — including all nominees — will be required to show proof of vaccination against the coronavirus and at least two negative P.C.R. tests.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Performers and presenters also must undergo rigorous testing — but those people will not need to show proof of vaccination, a decision that an academy spokeswoman said on Thursday was in keeping with virus safety protocols on some television sets and return-to-work standards set by Los Angeles County.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Under an agreement last year between entertainment unions and the Alliance of Motion Picture and Television Producers, production companies (in this case the academy) have the option to mandate vaccinations for cast and crew. But it is not a requirement, and some companies separate productions into zones, with different testing and social distancing requirements depending on how closely casts and crews need to work together.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Face covering requirements also will vary, the academy said. Nominees and their guests will be seated in the orchestra and parterre areas of the Dolby Theater and will not be required to wear masks. These attendees will be seated with more spacing than usual. The Dolby seats 3,317 people and 2,500 people will be invited, the academy said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Those in the mezzanine may be required to wear masks, as they will sit shoulder-to-shoulder. Infections are declining rapidly in Los Angeles County, and the academy said it was consulting with government officials, infectious disease experts and an independent vendor, Cosmos Health Solutions, on a policy.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Last week, following a report in The Hollywood Reporter that the academy was planning to forgo a vaccine mandate across the board, the organization was pummeled on social media by fans, stars, politicians and others for what appeared to be an effort to accommodate unvaccinated celebrities. Seth MacFarlane, who hosted the Oscars in 2013, was among those who criticized the academy on Twitter.\n", " Evidence\n", "\n", "\n", @@ -20421,7 +28538,17 @@ "\n", "\n", "\n", - " Coronavirus safety protocols have been changing rapidly as infections have declined. On Tuesday, Disney eased its mask mandate for fully vaccinated theme park visitors in California and Florida. This week, the Coachella Valley Music and Arts Festival said attendees (up to 125,000 fans a day in the prepandemic era) would not be required to be vaccinated, tested or masked. According to government data, 1,713 coronavirus-positive patients were hospitalized in Los Angeles County as of Thursday, a 54 percent decline since Feb. 1. Over the last week, the county has reported an average of about 4,100 new cases per day, a decline of 77 percent from two weeks ago. The academy’s decision puts it at odds with some award shows that are scheduled to take place in the weeks before the Oscars, including the Critics Choice Awards on March 13. Joey Berlin, the force behind the awards, told The Hollywood Reporter that everyone involved would be vaccinated. “I can’t invite people to a show where they’re not going to feel safe,” he said.\n", + " Coronavirus safety protocols have been changing rapidly as infections have declined. On Tuesday, Disney eased its mask mandate for fully vaccinated theme park visitors in California and Florida. This week, the Coachella Valley Music and Arts Festival said attendees (up to 125,000 fans a day in the prepandemic era) would not be required to be vaccinated, tested or masked.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " According to government data, 1,713 coronavirus-positive patients were hospitalized in Los Angeles County as of Thursday, a 54 percent decline since Feb. 1. Over the last week, the county has reported an average of about 4,100 new cases per day, a decline of 77 percent from two weeks ago.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The academy’s decision puts it at odds with some award shows that are scheduled to take place in the weeks before the Oscars, including the Critics Choice Awards on March 13. Joey Berlin, the force behind the awards, told The Hollywood Reporter that everyone involved would be vaccinated. “I can’t invite people to a show where they’re not going to feel safe,” he said.\n", " Evidence\n", "\n", "\n", @@ -20450,7 +28577,7 @@ { "data": { "text/html": [ - "

nytimes\\ottawa-protest-convoy.txt

" + "

ottawa-protest-convoy.txt

" ], "text/plain": [ "" @@ -20463,34 +28590,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-fa5f8fd966709cd8\n" + "Using custom data configuration default-fa5f8fd966709cd8\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-fa5f8fd966709cd8\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-fa5f8fd966709cd8\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" - ] - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "62b5326b9e6e4390b39a2c711c55f938", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " OTTAWA — When I asked Matthew Wall, a 36-year-old electrician from Manitoba, what brought him to this city, which has been overwhelmed by a giant protest encampment, he answered with one word: “Mushrooms.” Searching for his purpose in life, he said, he went on a psychedelic spiritual journey and had an image of the Freedom Convoy, a demonstration against Covid rules that has converged on the Canadian capital with trucks and other large vehicles. “I’m here for the rights of our kids, for parents’ rights, for everyone’s rights,” said Wall. “So kids can live in a future where they don’t have to have something covering their face, lose emotion. You don’t have the human connection, don’t see them smile anymore. It’s dehumanizing.” His daughters, he told me, were seeing a school therapist weekly because of the emotional fallout of the pandemic. “You’re taking away the love!” he said. Wall was sitting in the passenger seat of a black truck owned by a friend he’d made in Ottawa. It was covered in painted slogans, some with imperfect punctuation: “Dad’s On a Mission,” “Bless You in Advance Boys in Blue,” “Superhero’s Never Die.” Notes of thanks were taped to the truck, as were tickets that had been issued to protesters, including one to Wall for “bass noise (or unusual noise or noise that disturbs inhabitant(s) of the city),” which came with a fine of 1,000 Canadian dollars. In the back seat was Jenna Wozney, a 24-year-old actress from Vancouver who’d flown to Ottawa on her own a few days earlier. She said some of her family and friends considered the protests “hateful,” but she’d been determined to see them for herself. Wozney deeply distrusted the vaccines, though she’d given in and gotten the shots in order to be able to work: “I’m so poor, I didn’t have any money, I had to get it,” she said, adding an expletive. The demonstrations felt, to her, transformative. She saw them, somehow, as the next step after Black Lives Matter and Canada’s Every Child Matters movement, which is devoted to Indigenous survivors of abusive residential schools. “I feel like this is the final thing,” she said.\n", + " OTTAWA — When I asked Matthew Wall, a 36-year-old electrician from Manitoba, what brought him to this city, which has been overwhelmed by a giant protest encampment, he answered with one word: “Mushrooms.” Searching for his purpose in life, he said, he went on a psychedelic spiritual journey and had an image of the Freedom Convoy, a demonstration against Covid rules that has converged on the Canadian capital with trucks and other large vehicles.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “I’m here for the rights of our kids, for parents’ rights, for everyone’s rights,” said Wall. “So kids can live in a future where they don’t have to have something covering their face, lose emotion. You don’t have the human connection, don’t see them smile anymore. It’s dehumanizing.” His daughters, he told me, were seeing a school therapist weekly because of the emotional fallout of the pandemic. “You’re taking away the love!” he said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Wall was sitting in the passenger seat of a black truck owned by a friend he’d made in Ottawa. It was covered in painted slogans, some with imperfect punctuation: “Dad’s On a Mission,” “Bless You in Advance Boys in Blue,” “Superhero’s Never Die.” Notes of thanks were taped to the truck, as were tickets that had been issued to protesters, including one to Wall for “bass noise (or unusual noise or noise that disturbs inhabitant(s) of the city),” which came with a fine of 1,000 Canadian dollars.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In the back seat was Jenna Wozney, a 24-year-old actress from Vancouver who’d flown to Ottawa on her own a few days earlier. She said some of her family and friends considered the protests “hateful,” but she’d been determined to see them for herself. Wozney deeply distrusted the vaccines, though she’d given in and gotten the shots in order to be able to work: “I’m so poor, I didn’t have any money, I had to get it,” she said, adding an expletive.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The demonstrations felt, to her, transformative. She saw them, somehow, as the next step after Black Lives Matter and Canada’s Every Child Matters movement, which is devoted to Indigenous survivors of abusive residential schools. “I feel like this is the final thing,” she said.\n", " Evidence\n", "\n", "\n", @@ -20612,17 +28742,112 @@ "\n", "\n", "\n", - " “I will, too,” said Wall. As I left, they insisted I take some of the fudge a stranger had given them.\n", + " “I will, too,” said Wall.\n", + " Claim\n", + "\n", + "\n", + "\n", + " As I left, they insisted I take some of the fudge a stranger had given them.\n", " Claim\n", "\n", "\n", "\n", - " The takeover of downtown Ottawa, whose streets are clogged by trucks, trailers and cars, is now approaching its fourth week. Populists and reactionaries worldwide, including Donald Trump and Tucker Carlson, have been thrilled by what’s happening here. A relatively small number of people — around 8,000 at the height of the protests, and on most days fewer — have snarled the capital of a major Western country and thrown its left-leaning government into chaos, demanding freedom from Covid-related public health measures. Related encampments on some of the bridges linking Canada to the United States affected hundreds of millions of dollars in trade a day before they were dispersed. There is a debate in Canada about whether Prime Minister Justin Trudeau was justified on Monday in invoking the Emergencies Act, a 1988 law which gives the government the power to override certain civil liberties. But the fact that he resorted to the law — which has never before been used — shows the extent to which the protests are making the capital ungovernable. The tactic of using large vehicles to occupy a big city has inspired similar protests in countries including France, Israel and New Zealand. Trump supporters are planning American versions of the convoys next month. If they succeed in entrenching themselves somewhere, it could be terrifying, not least because unlike the Canadians, they’ll probably be heavily armed. The thrust of the Ottawa protests is clearly reactionary, but there were plenty of people on the streets who seemed genuinely baffled by the media’s description of them as part of a far-right movement. They’d been infuriated and in some cases unmoored by Canada’s pandemic restrictions, which have been stricter than America’s. (As The National Post reported, during the Omicron wave, the provinces of Quebec and Ontario “closed schools and imposed blanket bans on indoor dining, gyms and bars,” and Quebec enacted a 10 p.m. curfew.) Most people I met said they’d never been to a protest before. Their willingness to not just go to Ottawa, but in many cases to stay there in the freezing cold for weeks on end, is a sign of how profoundly the pandemic has eroded trust in the authorities. Two years of Covid has created a climate of suspicion, confusion and grief that the far right has been able to exploit. By the time I arrived at the beginning of the week, the occupation had shrunk, but the main encampment still spread out several blocks on either side of Ottawa’s Parliament Hill as well as down a number of other downtown streets, including some residential blocks. There were more food tents and barbecues than I could count. On Kent Street, people were roasting a whole pig, one of two they said had been donated. Others played hockey on the block between the Supreme Court and the Department of Justice. Someone had brought a hot tub. At times there were bouncy castles for the kids who were visiting, as well as those camped out with their parents. Imagine Occupy Wall Street, but set up by construction workers and military veterans with logistics training. I didn’t see any Confederate or Nazi flags, though there had been some early on. I saw one Gadsden flag, and a guy in a MAGA hat who’d taped over the word “America” and written “Canada” on it. I saw lots of anti-vax paranoia, but few efforts to own the libs. The one word that was repeated over and over again — on signs, in chants and in conversation — was “freedom.” Many who’d found the pandemic intolerably alienating were reveling in human connection. Several people hugged me after I interviewed them, even though I told them I was from the hated mainstream media. Imad Arraj, who installs HVAC systems and helps his wife run an Ottawa hunting and fishing shop, was at the protest on Tuesday night with a cousin. “It did a lot of damage,” he said of pandemic restrictions. “Me myself, I’m sitting home, I’m just feeling so down because all these friendships that you used to have, get together for a card game or whatever, it’s no longer there. We disconnected from each other.” He spoke bitterly of the 10-person limit on indoor gatherings in Ontario over the winter holidays. “We used to have a lot of people at our house — my brothers, my sisters, my mom come to visit,” he said sadly. Before the Freedom Convoy came to Ottawa, Arraj said, he’d never taken part in a demonstration. “I was in depression, sitting at home. I thought I was alone. I thought I was going crazy. I thought I was the only person thinking that way,” he said. “And when this happened, I came down to see.” What he saw uplifted him. “The love that you’ll receive here, you are never, ever going to see it anywhere else,” he said. For many other Ottawans, though, the protests have been a siege, not a love fest. Locals described the incessant blaring of horns — which have ebbed, but not stopped, after an injunction — as a form of psychological torture. An Asian-inspired ice cream shop closed for several days after a member of its staff who was walking to work was confronted by two men and shoved to the ground for wearing a mask. “Based on the accounts we’ve heard from our neighbors, this behavior is not an isolated incident,” said a statement on the shop’s Instagram feed. Not everyone at the protests comes from the far right, but the organizers do. Among them are Tamara Lich, formerly a leading figure in the fringe Maverick Party, which promotes the secession of three of Canada’s Western provinces, and Patrick King, a “great replacement” conspiracy theorist who has railed against a plot to use refugees “to depopulate the Anglo-Saxon race because they are the ones with the strongest bloodlines.” The crowds themselves contain a number of extremists. At an encampment at the border crossing in Coutts, Alberta, four people were arrested and charged with conspiracy to murder police officers. Two of them reportedly had ties to a white nationalist network called Diagolon, whose founder, Jeremy MacKenzie, has been part of the Ottawa demonstrations. “One of the dynamics here is there are multiple faces to this occupation,” said Jeff Leiper, a member of the Ottawa City Council. “On weekends, there’s a party happening in occupied downtown — you’ve seen the stage, you’ve seen the bouncy castles, you’ve seen the hot tubs, you’ve seen the D.J.s. And that is one face of it.” But the other face has been more sinister. Throughout the protests, men in black pickup trucks flying Canadian flags have menaced people in residential neighborhoods. “Frequently, over and over again, we get the reports from residents that the trucks are slowing down, they’re accosting residents on the street for wearing masks, and frequently they’re accompanying that with some sort of misogynist, homophobic or racist slur,” said Leiper. Near the encampments, the restaurants and stores on some shopping streets, as well as the Rideau mall, have been shut for weeks, after being flooded with defiantly unmasked visitors when the convoys first arrived. Those who were horrified by the invasion of their city kept wondering: Where were the police? On Wednesday, cops handed out fliers warning protesters that they were subject to arrest. Under the Emergencies Act, the flier said, “anyone coming to Ottawa for the purpose of joining the ongoing demonstration is breaking the law.” But until Thursday, when the police started making arrests, their presence was minimal, and people continued to bring wagons full of fuel containers into the encampment to keep their engines running. Once the protesters had lodged their vehicles in the city, there was no straightforward way to get them out. Some towing companies refused to cooperate with the police, but even if they were willing to help clear the roads, it was hard to see how they could remove the vehicles — some with their wheels taken off — without being swarmed. Arresting the demonstrators first, however, would be a struggle, because they could hide in their cars, trucks and trailers. The presence of children complicated matters further. “I don’t think any of us have accepted at this point it’s inevitable that this will end in a firefight,” Leiper said on Wednesday. But, he added, “we’re all worried about it.” The day before, Ottawa’s police chief had resigned over his handling of the crisis. Back at the occupation, I met Dana Wilson, who told me he was raised in Mississippi and had served in the U.S. military in Central America before moving to Canada in 1987. He gestured to a cluster of men nearby and said that they were veterans as well, and that he was part of a group led by a retired colonel. “From a military man’s perspective, you want to talk jargon, this is the last hill,” he said, describing Trudeau as “a narcissistic globalist sociopath” who has used “medical tyranny” to control the population, all for profit. I asked him what he thought would happen when the police moved in. “We’ve got some things that we’re not prepared to talk about,” he said slyly. “We’ve got an arsenal, too. People power, darling.” When I pressed, he said that the arsenal was metaphorical. He called the encampment “the Canadian Alamo,” but then said that was a metaphor, too. At one point he said he didn’t believe there would be a police confrontation because Canadians wouldn’t stand for it; like others at the Freedom Convoy, he was convinced that the population is on his side, which polls show is very much not the case. (In one survey, 65 percent of respondents called the convoy “a small minority of Canadians” who were behaving “selfishly.”)\n", + " The takeover of downtown Ottawa, whose streets are clogged by trucks, trailers and cars, is now approaching its fourth week. Populists and reactionaries worldwide, including Donald Trump and Tucker Carlson, have been thrilled by what’s happening here. A relatively small number of people — around 8,000 at the height of the protests, and on most days fewer — have snarled the capital of a major Western country and thrown its left-leaning government into chaos, demanding freedom from Covid-related public health measures. Related encampments on some of the bridges linking Canada to the United States affected hundreds of millions of dollars in trade a day before they were dispersed.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " There is a debate in Canada about whether Prime Minister Justin Trudeau was justified on Monday in invoking the Emergencies Act, a 1988 law which gives the government the power to override certain civil liberties. But the fact that he resorted to the law — which has never before been used — shows the extent to which the protests are making the capital ungovernable. The tactic of using large vehicles to occupy a big city has inspired similar protests in countries including France, Israel and New Zealand. Trump supporters are planning American versions of the convoys next month. If they succeed in entrenching themselves somewhere, it could be terrifying, not least because unlike the Canadians, they’ll probably be heavily armed.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The thrust of the Ottawa protests is clearly reactionary, but there were plenty of people on the streets who seemed genuinely baffled by the media’s description of them as part of a far-right movement. They’d been infuriated and in some cases unmoored by Canada’s pandemic restrictions, which have been stricter than America’s. (As The National Post reported, during the Omicron wave, the provinces of Quebec and Ontario “closed schools and imposed blanket bans on indoor dining, gyms and bars,” and Quebec enacted a 10 p.m. curfew.)\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Most people I met said they’d never been to a protest before. Their willingness to not just go to Ottawa, but in many cases to stay there in the freezing cold for weeks on end, is a sign of how profoundly the pandemic has eroded trust in the authorities. Two years of Covid has created a climate of suspicion, confusion and grief that the far right has been able to exploit.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " By the time I arrived at the beginning of the week, the occupation had shrunk, but the main encampment still spread out several blocks on either side of Ottawa’s Parliament Hill as well as down a number of other downtown streets, including some residential blocks. There were more food tents and barbecues than I could count. On Kent Street, people were roasting a whole pig, one of two they said had been donated. Others played hockey on the block between the Supreme Court and the Department of Justice. Someone had brought a hot tub. At times there were bouncy castles for the kids who were visiting, as well as those camped out with their parents. Imagine Occupy Wall Street, but set up by construction workers and military veterans with logistics training.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " I didn’t see any Confederate or Nazi flags, though there had been some early on. I saw one Gadsden flag, and a guy in a MAGA hat who’d taped over the word “America” and written “Canada” on it. I saw lots of anti-vax paranoia, but few efforts to own the libs. The one word that was repeated over and over again — on signs, in chants and in conversation — was “freedom.” Many who’d found the pandemic intolerably alienating were reveling in human connection. Several people hugged me after I interviewed them, even though I told them I was from the hated mainstream media.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Imad Arraj, who installs HVAC systems and helps his wife run an Ottawa hunting and fishing shop, was at the protest on Tuesday night with a cousin. “It did a lot of damage,” he said of pandemic restrictions. “Me myself, I’m sitting home, I’m just feeling so down because all these friendships that you used to have, get together for a card game or whatever, it’s no longer there. We disconnected from each other.” He spoke bitterly of the 10-person limit on indoor gatherings in Ontario over the winter holidays. “We used to have a lot of people at our house — my brothers, my sisters, my mom come to visit,” he said sadly.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Before the Freedom Convoy came to Ottawa, Arraj said, he’d never taken part in a demonstration. “I was in depression, sitting at home. I thought I was alone. I thought I was going crazy. I thought I was the only person thinking that way,” he said. “And when this happened, I came down to see.” What he saw uplifted him. “The love that you’ll receive here, you are never, ever going to see it anywhere else,” he said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " For many other Ottawans, though, the protests have been a siege, not a love fest. Locals described the incessant blaring of horns — which have ebbed, but not stopped, after an injunction — as a form of psychological torture. An Asian-inspired ice cream shop closed for several days after a member of its staff who was walking to work was confronted by two men and shoved to the ground for wearing a mask. “Based on the accounts we’ve heard from our neighbors, this behavior is not an isolated incident,” said a statement on the shop’s Instagram feed.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Not everyone at the protests comes from the far right, but the organizers do. Among them are Tamara Lich, formerly a leading figure in the fringe Maverick Party, which promotes the secession of three of Canada’s Western provinces, and Patrick King, a “great replacement” conspiracy theorist who has railed against a plot to use refugees “to depopulate the Anglo-Saxon race because they are the ones with the strongest bloodlines.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The crowds themselves contain a number of extremists. At an encampment at the border crossing in Coutts, Alberta, four people were arrested and charged with conspiracy to murder police officers. Two of them reportedly had ties to a white nationalist network called Diagolon, whose founder, Jeremy MacKenzie, has been part of the Ottawa demonstrations.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “One of the dynamics here is there are multiple faces to this occupation,” said Jeff Leiper, a member of the Ottawa City Council. “On weekends, there’s a party happening in occupied downtown — you’ve seen the stage, you’ve seen the bouncy castles, you’ve seen the hot tubs, you’ve seen the D.J.s. And that is one face of it.” But the other face has been more sinister.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Throughout the protests, men in black pickup trucks flying Canadian flags have menaced people in residential neighborhoods. “Frequently, over and over again, we get the reports from residents that the trucks are slowing down, they’re accosting residents on the street for wearing masks, and frequently they’re accompanying that with some sort of misogynist, homophobic or racist slur,” said Leiper.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Near the encampments, the restaurants and stores on some shopping streets, as well as the Rideau mall, have been shut for weeks, after being flooded with defiantly unmasked visitors when the convoys first arrived. Those who were horrified by the invasion of their city kept wondering: Where were the police? On Wednesday, cops handed out fliers warning protesters that they were subject to arrest. Under the Emergencies Act, the flier said, “anyone coming to Ottawa for the purpose of joining the ongoing demonstration is breaking the law.” But until Thursday, when the police started making arrests, their presence was minimal, and people continued to bring wagons full of fuel containers into the encampment to keep their engines running.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Once the protesters had lodged their vehicles in the city, there was no straightforward way to get them out. Some towing companies refused to cooperate with the police, but even if they were willing to help clear the roads, it was hard to see how they could remove the vehicles — some with their wheels taken off — without being swarmed. Arresting the demonstrators first, however, would be a struggle, because they could hide in their cars, trucks and trailers. The presence of children complicated matters further.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “I don’t think any of us have accepted at this point it’s inevitable that this will end in a firefight,” Leiper said on Wednesday. But, he added, “we’re all worried about it.” The day before, Ottawa’s police chief had resigned over his handling of the crisis.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Back at the occupation, I met Dana Wilson, who told me he was raised in Mississippi and had served in the U.S. military in Central America before moving to Canada in 1987. He gestured to a cluster of men nearby and said that they were veterans as well, and that he was part of a group led by a retired colonel. “From a military man’s perspective, you want to talk jargon, this is the last hill,” he said, describing Trudeau as “a narcissistic globalist sociopath” who has used “medical tyranny” to control the population, all for profit.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " I asked him what he thought would happen when the police moved in. “We’ve got some things that we’re not prepared to talk about,” he said slyly. “We’ve got an arsenal, too. People power, darling.” When I pressed, he said that the arsenal was metaphorical. He called the encampment “the Canadian Alamo,” but then said that was a metaphor, too. At one point he said he didn’t believe there would be a police confrontation because Canadians wouldn’t stand for it; like others at the Freedom Convoy, he was convinced that the population is on his side, which polls show is very much not the case. (In one survey, 65 percent of respondents called the convoy “a small minority of Canadians” who were behaving “selfishly.”)\n", " Evidence\n", "\n", "\n", "\n", - " But he also seemed prepared for violence. Of the police, he said, “I hope they don’t start shooting people like they did at Kent State, but you know what, the world’s got to see.” However the protests resolve, Elizabeth Simons, deputy director of the Canadian Anti-Hate Network, an organization akin to the Southern Poverty Law Center, expects the far-right forces behind them to be emboldened. “It’s a populist movement,” she said. “We have people who feel that they are the pure public fighting for the rights of the people versus the corrupt elite, which is government, media. That’s going to resonate with a lot of people when we’re two years into a pandemic where there is legitimate grievance and criticism” of how the authorities have handled things.\n", + " But he also seemed prepared for violence. Of the police, he said, “I hope they don’t start shooting people like they did at Kent State, but you know what, the world’s got to see.”\n", + " Rebuttal\n", + "\n", + "\n", + "\n", + " However the protests resolve, Elizabeth Simons, deputy director of the Canadian Anti-Hate Network, an organization akin to the Southern Poverty Law Center, expects the far-right forces behind them to be emboldened. “It’s a populist movement,” she said. “We have people who feel that they are the pure public fighting for the rights of the people versus the corrupt elite, which is government, media. That’s going to resonate with a lot of people when we’re two years into a pandemic where there is legitimate grievance and criticism” of how the authorities have handled things.\n", " Rebuttal\n", "\n", "\n", @@ -20651,7 +28876,7 @@ { "data": { "text/html": [ - "

nytimes\\pairs-figure-skating-short-program.txt

" + "

pairs-figure-skating-short-program.txt

" ], "text/plain": [ "" @@ -20664,20 +28889,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-7f7c42398c0f636f\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-7f7c42398c0f636f\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-7f7c42398c0f636f\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-7f7c42398c0f636f\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "064e595c4fc64396b4e5711274fe4497", + "model_id": "91f950dec9e749a8abbc22b53ac4cbb6", "version_major": 2, "version_minor": 0 }, @@ -20689,58 +28908,16 @@ "output_type": "display_data" }, { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "1692bc19423c4139ad523a0c54025984", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00\n", "\n", "\n", - " The final figure skating competition of the Beijing Olympics opened on Friday, as 18 pairs took the ice for the short program, which lasts 2 minutes 40 seconds. Unlike the ice dancing competition that took place earlier in the Games, pairs figure skating prioritizes more acrobatic skills: jumps, overhead lifts and throws. Friday’s competition included performances by the rival pairs Anastasia Mishina and Aleksandr Galliamov of Russia, the reigning world champions, and Sui Wenjing and Han Cong of China, who won world titles in 2017 and 2019. Sui and Han are eager for redemption. They had the gold within their grasp at the 2018 Olympics, but lost by a mere 0.43 points to a German team. The early edge on Friday went to the Chinese team, which took the lead with the free skate still to come on Saturday. Mishina and Galliamov were in third, behind their fellow Russians Evgenia Tarasova and Vladimir Morozov.\n", + " The final figure skating competition of the Beijing Olympics opened on Friday, as 18 pairs took the ice for the short program, which lasts 2 minutes 40 seconds.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Unlike the ice dancing competition that took place earlier in the Games, pairs figure skating prioritizes more acrobatic skills: jumps, overhead lifts and throws.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Friday’s competition included performances by the rival pairs Anastasia Mishina and Aleksandr Galliamov of Russia, the reigning world champions, and Sui Wenjing and Han Cong of China, who won world titles in 2017 and 2019.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Sui and Han are eager for redemption. They had the gold within their grasp at the 2018 Olympics, but lost by a mere 0.43 points to a German team.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The early edge on Friday went to the Chinese team, which took the lead with the free skate still to come on Saturday. Mishina and Galliamov were in third, behind their fellow Russians Evgenia Tarasova and Vladimir Morozov.\n", " Evidence\n", "\n", "
" @@ -20797,7 +29001,7 @@ { "data": { "text/html": [ - "

nytimes\\parenting-adult-children.txt

" + "

parenting-adult-children.txt

" ], "text/plain": [ "" @@ -20810,34 +29014,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-bb9397d0364f1d66\n" + "Using custom data configuration default-bb9397d0364f1d66\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-bb9397d0364f1d66\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-bb9397d0364f1d66\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" - ] - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "35fefb4e8d73499c8a6265eda50c1958", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " We have a mainstream directive for raising children in our society: You provide them with support, shelter and care until they’re 18, and then they’re supposed to be, more or less, self-sufficient, launched into the world as adults. This framework leaves out millions of parents whose children struggle with substance abuse or mental illness, who may be providing active care to their adult children for the rest of their lives. A new book, “Difficult: Mothering Challenging Adult Children through Conflict and Change,” by Judith R. Smith, an associate professor at the Graduate School of Social Service at Fordham, seeks to define and explore this often painful type of parenting. An estimated 8.4 million Americans care for “an adult with an emotional or mental health issue,” according to a 2016 report from the National Alliance for Caregiving, and 45 percent of mental health caregivers are caring for an adult child. For “Difficult,” Smith writes, she spoke to 50 mothers of adult children who were not fully independent, who had issues from severe mental illness to persistent unemployment. All of these mothers were over 60, and many were also dealing with their own declining physical and emotional health. Smith writes that half the women she spoke to were doing this with incomes under $17,000 a year for a family of two. “My research revealed that a mother’s internalized mandate to protect her child does not end when her children are grown,” Smith writes, and she outlines the stigma and worry they feel about their children’s problems. She seeks to lessen this stigma for parents, more and more of whom will be in the same situation as her book’s subjects in the coming years, with young adults increasingly reporting mental health issues, particularly during the pandemic, and the opioid crisis continuing to take lives. There is very little social support for these parents and their children: According to the National Alliance for Caregiving, the majority of adult caregivers have trouble getting services for their loved ones like day programs or peer support, and close to half say they struggle to find treatment for substance abuse. Just as for younger children, mothers are spackling over every gap in the system, sometimes destroying themselves in the process. Sixty-two percent of parents who are caregivers for adult children say their caregiving role has made their own health worse.\n", + " We have a mainstream directive for raising children in our society: You provide them with support, shelter and care until they’re 18, and then they’re supposed to be, more or less, self-sufficient, launched into the world as adults. This framework leaves out millions of parents whose children struggle with substance abuse or mental illness, who may be providing active care to their adult children for the rest of their lives.\n", " Evidence\n", "\n", "\n", - "\n", - " I spoke to Smith about how she chose the term “difficult adult children” to refer to this population, what can be done to help caregivers and their children in the near term and why it’s important for all parents to come to terms with their own ambivalence, because it is normal to have mixed feelings about our roles. The following conversation has been edited and condensed. Jessica Grose: Tell me about the choice to use the term “difficult adult children,” and what it means for the mothers in your book.\n", - " Lead\n", + "\n", + " A new book, “Difficult: Mothering Challenging Adult Children through Conflict and Change,” by Judith R. Smith, an associate professor at the Graduate School of Social Service at Fordham, seeks to define and explore this often painful type of parenting. An estimated 8.4 million Americans care for “an adult with an emotional or mental health issue,” according to a 2016 report from the National Alliance for Caregiving, and 45 percent of mental health caregivers are caring for an adult child.\n", + " Evidence\n", "\n", "\n", "\n", - " Judith Smith: As I was doing my research, one friend said, “No, no, no, you can’t use that word. It’s pejorative.” But as I say in the book, this is how “difficult” is defined: It’s something hard to do, it’s something hard to manage, and it’s something hard to understand. Whether the kid had a substance use issue or severe mental illness or was depressed or unemployed and not willing to look for a job, what I heard was the mothers were struggling. It was really difficult for them to figure out what to do, because they didn’t see any choice. They felt committed as mothers to hang in there, but they felt hopeless for their child and they felt hopeless for themselves. Some of them were in real physical danger, living with an adult child who had serious problems. Jessica Grose: I was so struck by the point that you made about how for mothers of children with mental illness who are in danger, that often their only option is to call the cops. Most parents do not want to call the police on their children. You also talk about the very limited options in the United States if parents are not able to take on the work of housing and protecting their children anymore. What’s the low-hanging fruit of what we can change to help these parents in the near term? I know this is a decades-long, complicated, multipronged problem. Judith Smith: I think the advocates for parents of adults with severe mental illness are hoping for something they call “housing that heals” — supportive housing, group homes for people with severe mental illness that also have treatment. I think housing has to be a priority. There also need to be more psychiatric beds available for when people need them in the short term. This is a political battle within the advocacy for severe mental illness. In terms of the people who advocate for the rights of the person with mental illness, and the families who would like there to be more options for temporarily taking away the rights of the person and having them be protected and hospitalized when they are really aggressive and a danger to themselves and their families. But it’s a horrendous decision to say, “Right now, my child will have to be homeless.” Jessica Grose: Reading about mothers in your book grappling with that decision was just awful. And I think part of why it was so awful for them is because of the blame that society tends to place on mothers. You quote the psychiatrist Stella Chess, who said, “There are very few jobs in which one individual will be blamed for anything that goes wrong, and fewer still in which what can go wrong, and the feeling of being blamed, is so devastating.” Can you tell me a bit more about how that ends up playing out, in terms of the guilt and shame that these mothers feel?\n", + " For “Difficult,” Smith writes, she spoke to 50 mothers of adult children who were not fully independent, who had issues from severe mental illness to persistent unemployment. All of these mothers were over 60, and many were also dealing with their own declining physical and emotional health. Smith writes that half the women she spoke to were doing this with incomes under $17,000 a year for a family of two.\n", " Evidence\n", "\n", "\n", - "\n", - " Judith Smith: I think we assume that women should be able to do everything, and we should be able to produce perfect kids. So I think for all parents, when our kids aren’t doing well, it affects our self-esteem. We feel bad and then we experience the conflict of ambivalence. Rozsika Parker wrote a wonderful book, “Torn in Two,” more than 20 years ago. She’s a psychoanalyst. And she really talks about how shameful it is for women to acknowledge their mixed feelings, which we all have.\n", - " Concluding Statement\n", + "\n", + " “My research revealed that a mother’s internalized mandate to protect her child does not end when her children are grown,” Smith writes, and she outlines the stigma and worry they feel about their children’s problems. She seeks to lessen this stigma for parents, more and more of whom will be in the same situation as her book’s subjects in the coming years, with young adults increasingly reporting mental health issues, particularly during the pandemic, and the opioid crisis continuing to take lives.\n", + " Evidence\n", "\n", "\n", "\n", - " If you want to take a shower and your kid won’t let you take a shower, you’re angry, but then you feel bad for being angry. And society doesn’t allow women to have mixed feelings. Parker named the conflict of ambivalence as what is keeping mothers imprisoned and so isolated and feeling so bad about themselves — but that in fact, ambivalence is a part of all relationships. That’s a lot of what we do with clients, is allow them to express negative feelings about their parents or about their spouses and be able to live with it without feeling like they’re bad people. Jessica Grose: I’ve heard most concepts in terms of the caregiving literature, but I hadn’t heard of “chronic sorrow,” before your book, which is something these mothers experience, and which is defined as “the long-term periodic sadness the chronically ill and their caregivers experience in reaction to continual losses.” I would love to hear you talk a little bit more about chronic sorrow — the hopes these parents once had for their kids that are now gone. Judith Smith: Each mom I talked to experienced it in a different way. One woman has a 37-year-old son who has been home since college, when he had a breakdown. He was in the Harlem Children’s Choir, had a beautiful voice. Everybody liked him in the neighborhood and none of that is there anymore. Each person talked about what wasn’t. One mom talked about her sadness at the birth of her first grandchild. It should have been the most joyous time in her life. But it made her remember her first birth, which was her son who ended up dying by suicide at 45. She had three other living children, and she felt so bad that she was feeling sorrowful at such a wonderful moment.\n", + " There is very little social support for these parents and their children: According to the National Alliance for Caregiving, the majority of adult caregivers have trouble getting services for their loved ones like day programs or peer support, and close to half say they struggle to find treatment for substance abuse. Just as for younger children, mothers are spackling over every gap in the system, sometimes destroying themselves in the process. Sixty-two percent of parents who are caregivers for adult children say their caregiving role has made their own health worse.\n", " Evidence\n", "\n", "\n", - "\n", + "\n", + " I spoke to Smith about how she chose the term “difficult adult children” to refer to this population, what can be done to help caregivers and their children in the near term and why it’s important for all parents to come to terms with their own ambivalence, because it is normal to have mixed feelings about our roles. The following conversation has been edited and condensed.\n", + " Lead\n", + "\n", + "\n", + "\n", + " Jessica Grose: Tell me about the choice to use the term “difficult adult children,” and what it means for the mothers in your book.\n", + " Lead\n", + "\n", + "\n", + "\n", + " Judith Smith: As I was doing my research, one friend said, “No, no, no, you can’t use that word. It’s pejorative.” But as I say in the book, this is how “difficult” is defined: It’s something hard to do, it’s something hard to manage, and it’s something hard to understand.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Whether the kid had a substance use issue or severe mental illness or was depressed or unemployed and not willing to look for a job, what I heard was the mothers were struggling. It was really difficult for them to figure out what to do, because they didn’t see any choice. They felt committed as mothers to hang in there, but they felt hopeless for their child and they felt hopeless for themselves. Some of them were in real physical danger, living with an adult child who had serious problems.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Jessica Grose: I was so struck by the point that you made about how for mothers of children with mental illness who are in danger, that often their only option is to call the cops. Most parents do not want to call the police on their children. You also talk about the very limited options in the United States if parents are not able to take on the work of housing and protecting their children anymore. What’s the low-hanging fruit of what we can change to help these parents in the near term? I know this is a decades-long, complicated, multipronged problem.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Judith Smith: I think the advocates for parents of adults with severe mental illness are hoping for something they call “housing that heals” — supportive housing, group homes for people with severe mental illness that also have treatment. I think housing has to be a priority. There also need to be more psychiatric beds available for when people need them in the short term.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " This is a political battle within the advocacy for severe mental illness. In terms of the people who advocate for the rights of the person with mental illness, and the families who would like there to be more options for temporarily taking away the rights of the person and having them be protected and hospitalized when they are really aggressive and a danger to themselves and their families. But it’s a horrendous decision to say, “Right now, my child will have to be homeless.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Jessica Grose: Reading about mothers in your book grappling with that decision was just awful. And I think part of why it was so awful for them is because of the blame that society tends to place on mothers. You quote the psychiatrist Stella Chess, who said, “There are very few jobs in which one individual will be blamed for anything that goes wrong, and fewer still in which what can go wrong, and the feeling of being blamed, is so devastating.” Can you tell me a bit more about how that ends up playing out, in terms of the guilt and shame that these mothers feel?\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Judith Smith: I think we assume that women should be able to do everything, and we should be able to produce perfect kids. So I think for all parents, when our kids aren’t doing well, it affects our self-esteem. We feel bad and then we experience the conflict of ambivalence. Rozsika Parker wrote a wonderful book, “Torn in Two,” more than 20 years ago. She’s a psychoanalyst. And she really talks about how shameful it is for women to acknowledge their mixed feelings, which we all have.\n", + " Concluding Statement\n", + "\n", + "\n", + "\n", + " If you want to take a shower and your kid won’t let you take a shower, you’re angry, but then you feel bad for being angry. And society doesn’t allow women to have mixed feelings. Parker named the conflict of ambivalence as what is keeping mothers imprisoned and so isolated and feeling so bad about themselves — but that in fact, ambivalence is a part of all relationships. That’s a lot of what we do with clients, is allow them to express negative feelings about their parents or about their spouses and be able to live with it without feeling like they’re bad people.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Jessica Grose: I’ve heard most concepts in terms of the caregiving literature, but I hadn’t heard of “chronic sorrow,” before your book, which is something these mothers experience, and which is defined as “the long-term periodic sadness the chronically ill and their caregivers experience in reaction to continual losses.” I would love to hear you talk a little bit more about chronic sorrow — the hopes these parents once had for their kids that are now gone.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Judith Smith: Each mom I talked to experienced it in a different way. One woman has a 37-year-old son who has been home since college, when he had a breakdown. He was in the Harlem Children’s Choir, had a beautiful voice. Everybody liked him in the neighborhood and none of that is there anymore.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Each person talked about what wasn’t. One mom talked about her sadness at the birth of her first grandchild. It should have been the most joyous time in her life. But it made her remember her first birth, which was her son who ended up dying by suicide at 45. She had three other living children, and she felt so bad that she was feeling sorrowful at such a wonderful moment.\n", + " Evidence\n", + "\n", + "\n", + "\n", " But this is what it is. There is a study where they actually, with a large data set, proved that you’re only as happy as your least happy child. There are a couple of books that are written about when our kids disappoint us, and the message is: “Move on. Let them take care of themselves.” But they’re not talking about this population. These mothers cannot just move on.\n", " Rebuttal\n", "\n", @@ -20979,7 +29253,12 @@ "\n", "\n", "\n", - " “The trend of ‘intensifying grandparenting’ — grandparents taking on more active roles in child-rearing and household management — has surged over the last few decades,” The Times’s Dani Blum reported in 2020. I have twins who are 11 weeks old. I have given myself permission to stop pumping/breastfeeding. My body has done enough. I have done enough.\n", + " “The trend of ‘intensifying grandparenting’ — grandparents taking on more active roles in child-rearing and household management — has surged over the last few decades,” The Times’s Dani Blum reported in 2020.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " I have twins who are 11 weeks old. I have given myself permission to stop pumping/breastfeeding. My body has done enough. I have done enough.\n", " Evidence\n", "\n", "\n", @@ -21013,7 +29292,7 @@ { "data": { "text/html": [ - "

nytimes\\phil-mickelson-saudi-golf-tour.txt

" + "

phil-mickelson-saudi-golf-tour.txt

" ], "text/plain": [ "" @@ -21026,20 +29305,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-22185a18bfb16f38\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-22185a18bfb16f38\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-22185a18bfb16f38\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-22185a18bfb16f38\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "df3aa5c4a0d5483a90247cd2f05d5765", + "model_id": "21d86ec5b1d241ab9541e7795b372389", "version_major": 2, "version_minor": 0 }, @@ -21051,58 +29324,16 @@ "output_type": "display_data" }, { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "c132431097b14904a6cefd4449e071e2", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " The pro golfer Phil Mickelson faced a mounting backlash this week for his reported remarks about a Saudi-backed golf tour, with a biographer quoting him as saying that though he knew of the kingdom’s “horrible record on human rights,” the tour was a “once-in-a-lifetime opportunity.” Mickelson, a six-time major winner, made the comments during a nearly hourlong phone interview last November, Alan Shipnuck, a longtime golf writer who is completing a biography on the golfer, said on Friday. A former writer for Sports Illustrated and Golf magazine, Mr. Shipnuck reported the remarks on Thursday on The Fire Pit Collective, a golf site. Mickelson, 51, had been asked to comment about his connection to the Super Golf League, an upstart tour whose main source of funding is the Public Investment Fund of Saudi Arabia, a sovereign wealth fund totaling more than $400 billion. He called the Saudi authorities “scary,” using a profanity to describe them, and noted the murder of Jamal Khashoggi, the Washington Post journalist who was assassinated in 2018 with the approval of the kingdom’s crown prince, according to U.S. intelligence officials. Mickelson also alluded to the criminalization of homosexuality in Saudi Arabia, where being gay is punishable by death. “We know they killed Khashoggi and have a horrible record on human rights,” Mickelson was quoted as saying by the biographer. “They execute people over there for being gay. Knowing all of this, why would I even consider it? Because this is a once-in-a-lifetime opportunity to reshape how the PGA Tour operates.” Representatives for Mickelson, who is one of the biggest names linked to the breakaway tour, and the Saudi Embassy in Washington did not immediately respond to a request for comment on Friday.\n", + " The pro golfer Phil Mickelson faced a mounting backlash this week for his reported remarks about a Saudi-backed golf tour, with a biographer quoting him as saying that though he knew of the kingdom’s “horrible record on human rights,” the tour was a “once-in-a-lifetime opportunity.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mickelson, a six-time major winner, made the comments during a nearly hourlong phone interview last November, Alan Shipnuck, a longtime golf writer who is completing a biography on the golfer, said on Friday.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " A former writer for Sports Illustrated and Golf magazine, Mr. Shipnuck reported the remarks on Thursday on The Fire Pit Collective, a golf site.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mickelson, 51, had been asked to comment about his connection to the Super Golf League, an upstart tour whose main source of funding is the Public Investment Fund of Saudi Arabia, a sovereign wealth fund totaling more than $400 billion.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " He called the Saudi authorities “scary,” using a profanity to describe them, and noted the murder of Jamal Khashoggi, the Washington Post journalist who was assassinated in 2018 with the approval of the kingdom’s crown prince, according to U.S. intelligence officials. Mickelson also alluded to the criminalization of homosexuality in Saudi Arabia, where being gay is punishable by death.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “We know they killed Khashoggi and have a horrible record on human rights,” Mickelson was quoted as saying by the biographer. “They execute people over there for being gay. Knowing all of this, why would I even consider it? Because this is a once-in-a-lifetime opportunity to reshape how the PGA Tour operates.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Representatives for Mickelson, who is one of the biggest names linked to the breakaway tour, and the Saudi Embassy in Washington did not immediately respond to a request for comment on Friday.\n", " Evidence\n", "\n", "\n", @@ -21152,7 +29432,52 @@ "\n", "\n", "\n", - " When reached on Friday, Mr. Shipnuck said that the golfer had previously declined to be interviewed for his biography, “Phil: The Rip-Roaring (and Unauthorized!) Biography of Golf’s Most Colorful Superstar,” which is scheduled to be published in May. But he said that Mickelson had granted him an on-the-record interview in an attempt to explain his potential involvement in the breakaway tour. “Phil likes to play with fire,” Mr. Shipnuck said. “Sometimes when you play with fire, you’re going to get scorched. I don’t think he realized how hot this topic is with Saudi Arabia.” In his online account of the interview, Mr. Shipnuck said that the golfer had enlisted three other unidentified players to hire lawyers to draft the upstart tour’s operating agreement. Several top golfers criticized Mickelson for his remarks, including Justin Thomas, the eighth-ranked player in the world. Speaking to reporters on Thursday at the Genesis Invitational near Los Angeles, he said it “seems like a bit of a pretty, you know, egotistical statement.” Thomas continued: “It’s like he’s done a lot of great things for the PGA Tour, it’s a big reason it is where it is, but him and others that are very adamant about that, if they’re that passionate, go ahead. I don’t think anybody’s stopping them.” Writing in The Sydney Morning Herald on Friday, the columnist Peter FitzSimons criticized Mickelson’s comments. He urged Greg Norman, a former golf champion and head of the breakaway tour, to cut ties with the new venture. “Well, anyone with a conscience would resign,” Mr. FitzSimons wrote. “But with you I guess that is beside the point here. Your best plan is probably to do what you have been doing, and do better than anyone — hold your nose and go after more money.” Jane MacNeille, a spokeswoman for LIV Golf Investments — the company who chief executive, Mr. Norman, is starting the breakaway tour — heralded Mickelson in a statement on Friday. “Phil is one of the greatest golfers in the history of the game, and we have an enormous amount of respect for him and his career,” she said. “Any league or tour would be lucky to have him.” Brandel Chamblee, an analyst for the Golf Channel and former PGA Tour player, said on Twitter on Friday that “those advocating for the Saudi backed tour, most notably Phil Mickelson, are trying to obfuscate their greed and masquerade that this is about growing the game.”\n", + " When reached on Friday, Mr. Shipnuck said that the golfer had previously declined to be interviewed for his biography, “Phil: The Rip-Roaring (and Unauthorized!) Biography of Golf’s Most Colorful Superstar,” which is scheduled to be published in May. But he said that Mickelson had granted him an on-the-record interview in an attempt to explain his potential involvement in the breakaway tour.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Phil likes to play with fire,” Mr. Shipnuck said. “Sometimes when you play with fire, you’re going to get scorched. I don’t think he realized how hot this topic is with Saudi Arabia.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In his online account of the interview, Mr. Shipnuck said that the golfer had enlisted three other unidentified players to hire lawyers to draft the upstart tour’s operating agreement.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Several top golfers criticized Mickelson for his remarks, including Justin Thomas, the eighth-ranked player in the world. Speaking to reporters on Thursday at the Genesis Invitational near Los Angeles, he said it “seems like a bit of a pretty, you know, egotistical statement.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Thomas continued: “It’s like he’s done a lot of great things for the PGA Tour, it’s a big reason it is where it is, but him and others that are very adamant about that, if they’re that passionate, go ahead. I don’t think anybody’s stopping them.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Writing in The Sydney Morning Herald on Friday, the columnist Peter FitzSimons criticized Mickelson’s comments. He urged Greg Norman, a former golf champion and head of the breakaway tour, to cut ties with the new venture.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Well, anyone with a conscience would resign,” Mr. FitzSimons wrote. “But with you I guess that is beside the point here. Your best plan is probably to do what you have been doing, and do better than anyone — hold your nose and go after more money.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Jane MacNeille, a spokeswoman for LIV Golf Investments — the company who chief executive, Mr. Norman, is starting the breakaway tour — heralded Mickelson in a statement on Friday.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Phil is one of the greatest golfers in the history of the game, and we have an enormous amount of respect for him and his career,” she said. “Any league or tour would be lucky to have him.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Brandel Chamblee, an analyst for the Golf Channel and former PGA Tour player, said on Twitter on Friday that “those advocating for the Saudi backed tour, most notably Phil Mickelson, are trying to obfuscate their greed and masquerade that this is about growing the game.”\n", " Evidence\n", "\n", "
" @@ -21176,7 +29501,7 @@ { "data": { "text/html": [ - "

nytimes\\prosecutors-midterms-crime.txt

" + "

prosecutors-midterms-crime.txt

" ], "text/plain": [ "" @@ -21189,34 +29514,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-4d6b5327928a43d4\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-4d6b5327928a43d4\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-4d6b5327928a43d4\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-4d6b5327928a43d4\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "bd4b4a2e47f34cf79c3d1f5d7849aaf2", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00\n", "\n", "\n", - " In San Francisco, District Attorney Chesa Boudin is facing a recall vote in June, stoked by criticism from the city’s Democratic mayor. In Los Angeles, the county district attorney, George Gascón, is trying to fend off a recall effort as some elected officials complain about new guidelines eliminating the death penalty and the prosecution of juveniles as adults. Manhattan’s new district attorney, Alvin Bragg, quickly ran afoul of the new Democratic mayor, Eric Adams, and his new police commissioner over policies that critics branded too lenient. The combative resistance is a harsh turn for a group of leaders whom progressives hailed as an electoral success story. Rising homicide and violent crime rates have even Democrats in liberal cities calling for more law enforcement, not less — forcing prosecutors to defend their policies against their own allies. And traditional boosters on the left aren’t rushing to their aid, with some saying they’ve soured on the officials they once backed. “I think that whole honeymoon period lasts about five or six hours,” said Wesley Bell, the prosecuting attorney for St. Louis County in Missouri, who is seeking re-election this fall. Mr. Bell, a former city councilman in Ferguson, Mo., is part of the group of prosecutors elected on a promise to address racial disparities in the criminal justice system. Most support eliminating the death penalty and cash bail, limiting prosecutions for low-level, nonviolent offenses and scaling back sentences. In a show of political strength, progressive prosecutors in Chicago and Philadelphia handily defeated challengers in recent years. Mr. Bell’s re-election bid in November is one of several races being watched for signs that voters’ views have shifted on those policies as violent crime has risen and racial justice protests have fallen out of the headlines. Homicide rates spiked in 2020 and continued to rise last year, albeit less slowly, hitting levels not seen since the 1990s. Other violent crimes also are up. Both increases have occurred nationally, in cities with progressive prosecutors and in cities without. That’s left no clear evidence linking progressive policies to these trends, but critics have been quick to make the connection, suggesting that prosecutors have let offenders walk and created an expectation that low-level offenses won’t be charged. Those arguments have landed on voters and city leaders already grappling with a scourge of pandemic-related ills — including mental health care needs and housing shortages, rising drug use, even traffic deaths. Last week, a Quinnipiac University poll of registered voters in New York City found that 74 percent of respondents considered crime a “very serious” problem — the largest share since the survey began asking the question in 1999 and more than 20 percentage points greater than the previous high, which was recorded in January 2016. Politicians are heeding those concerns. In New York, Mr. Adams, a Democrat, has promised to crack down on crime, and his police commissioner, Keechant Sewell, slammed Mr. Bragg’s proposals as threatening the safety of police officers and the public. In San Francisco, Mayor London Breed has become an outspoken critic of Mr. Boudin’s approach, which emphasizes social services over policing. “This is not working,” Ms. Breed said recently on The New York Times podcast “Sway.” “We’ve added all these additional resources — the street crisis response team, the ambassadors, the services, the buildings we purchase, the hotels we purchase, the resources. We’ve added all these things to deal with food insecurity. All these things. Yet people are still being physically harmed and killed.” The criticisms from two prominent Black mayors are particularly biting. In their liberal cities, the leaders’ nuanced complaints have far more influence with voters than familiar attacks from Republicans or police unions. Both mayors have argued that the minority communities that want racism rooted from the justice system also want more robust policing and prosecutions. President Biden, who was one of the architects of the tough-on-crime criminal justice overhaul of the 1990s, recently spoke highly of Mr. Adams’s focus on crime prevention. Some prosecutors and their allies took that as a sign that the Democratic establishment is digging in on a centrist approach to criminal justice reform. Mr. Biden’s comments came as the Democratic Party worried about retaining the support of moderate suburban voters in midterm elections this year. Many Democratic lawmakers and strategists believe that protest slogans like “defund the police” hurt the party in the 2020 elections — particularly in Congressional swing districts and in Senate races. Republican candidates, eager to retake control of Congress in November, already have run advertisements casting Democrats as soft on crime. Most progressive prosecutors oppose the calls to gut police department budgets, but that is a nuance often missed. At one liberal philanthropic group, some newer givers have said they will not donate to any criminal justice groups — or to the campaigns of progressive prosecutors — because they don’t want to endorse defunding the police, according to a person who connects donors to criminal justice causes, and who insisted on anonymity to discuss private conversations. Samuel Sinyangwe, an activist who has been involved in several organizations pushing progressive prosecutors, said prosecutors hadn’t been as forceful as law enforcement unions in selling their solutions to rising violence in cities. “Police are spending a lot of money convincing people the appropriate response to that is more policing and incarceration,” he said. “I think that individual cities and counties are having to push back against that narrative. But I think they’re struggling to do that right now.” In San Francisco, Mr. Boudin argued that the effort to recall him was fueled by politics, not voters’ worries about crime. He pointed to the Republican megadonors who have funded the recall efforts and said Ms. Breed has a political incentive to see him ousted — he beat her preferred candidate for district attorney.\n", + " In San Francisco, District Attorney Chesa Boudin is facing a recall vote in June, stoked by criticism from the city’s Democratic mayor. In Los Angeles, the county district attorney, George Gascón, is trying to fend off a recall effort as some elected officials complain about new guidelines eliminating the death penalty and the prosecution of juveniles as adults. Manhattan’s new district attorney, Alvin Bragg, quickly ran afoul of the new Democratic mayor, Eric Adams, and his new police commissioner over policies that critics branded too lenient.\n", " Evidence\n", "\n", "\n", - "\n", - " “These are Republican talking points,” Mr. Boudin said. “And it’s tremendously destructive to the Democratic Party and the long-term progress that the party is making at the local and national level around public safety and criminal justice to allow a few folks dissatisfied with a local election to undermine that progress.”\n", - " Concluding Statement\n", + "\n", + " The combative resistance is a harsh turn for a group of leaders whom progressives hailed as an electoral success story. Rising homicide and violent crime rates have even Democrats in liberal cities calling for more law enforcement, not less — forcing prosecutors to defend their policies against their own allies. And traditional boosters on the left aren’t rushing to their aid, with some saying they’ve soured on the officials they once backed.\n", + " Evidence\n", "\n", "\n", "\n", - " Mary Jung, a Democratic activist leading the recall campaign, said those who painted the efforts as fueled by conservatives or moderates were missing the point. Many of their supporters, she said, are lifelong liberal Democrats. Those voters, she said, don’t view the effort to recall Mr. Boudin, who was elected in 2019, as a broad shift away from progressive policies, but as a local response in a community that feels unsafe. She cited several attacks against Asian immigrants and incidents of shoplifting as the sort of crimes that have rattled residents, regardless of political ideology.\n", + " “I think that whole honeymoon period lasts about five or six hours,” said Wesley Bell, the prosecuting attorney for St. Louis County in Missouri, who is seeking re-election this fall.\n", " Evidence\n", "\n", "\n", - "\n", - " In another sign of Democrats’ discontent, San Francisco voters ousted three progressive members of the Board of Education in a recall election driven by pandemic angst.\n", - " Claim\n", + "\n", + " Mr. Bell, a former city councilman in Ferguson, Mo., is part of the group of prosecutors elected on a promise to address racial disparities in the criminal justice system. Most support eliminating the death penalty and cash bail, limiting prosecutions for low-level, nonviolent offenses and scaling back sentences.\n", + " Evidence\n", "\n", "\n", "\n", - " “Over 80,000 San Franciscans signed our petition and we only needed 53,000 signatures,” Ms. Jung said. “There’s only 33,000 registered Republicans in the city. So, you know, you do the math.”\n", + " In a show of political strength, progressive prosecutors in Chicago and Philadelphia handily defeated challengers in recent years. Mr. Bell’s re-election bid in November is one of several races being watched for signs that voters’ views have shifted on those policies as violent crime has risen and racial justice protests have fallen out of the headlines.\n", " Evidence\n", "\n", "\n", - "\n", - " Some progressives warn against ignoring people’s fears. Kim Foxx, the state’s attorney for Cook County, which includes Chicago and some of the country’s most violence-plagued communities, said that any dismissive rhetoric could make prosecutors risk looking out of touch.\n", - " Counterclaim\n", + "\n", + " Homicide rates spiked in 2020 and continued to rise last year, albeit less slowly, hitting levels not seen since the 1990s. Other violent crimes also are up. Both increases have occurred nationally, in cities with progressive prosecutors and in cities without.\n", + " Evidence\n", "\n", "\n", "\n", - " “You can’t dismiss people,” Ms. Foxx said. “I live in Chicago, where we hit 800 murders last year, and that represents 800 immediate families and thousands of people who are impacted.” Ms. Foxx faced a well-funded opponent and won re-election in 2020, as did Philadelphia’s district attorney, Larry Krasner, the following year. Those victories show the resilient support for progressive ideas, Mr. Krasner said, warning the Democratic Party not to abandon them. “Put criminal justice reform on the ballot in every election in almost every jurisdiction, and what you’re going to see is a surge in turnout,” Mr. Krasner said. “And that turnout will overwhelmingly be unlikely voters, reluctant voters, brand-new voters, people who are not connected to what they see as governmental dysfunction between the parties — but they are connected to an issue that has affected their communities.”\n", + " That’s left no clear evidence linking progressive policies to these trends, but critics have been quick to make the connection, suggesting that prosecutors have let offenders walk and created an expectation that low-level offenses won’t be charged. Those arguments have landed on voters and city leaders already grappling with a scourge of pandemic-related ills — including mental health care needs and housing shortages, rising drug use, even traffic deaths.\n", " Evidence\n", "\n", "\n", - "\n", - " But there are signs that attitudes about overhauling the criminal justice system are changing even among progressives. Many activists have shifted their focus away from electoral politics and toward policies they think address the root of the problem, such as reducing the number of police and abolishing prisons.\n", - " Rebuttal\n", + "\n", + " Last week, a Quinnipiac University poll of registered voters in New York City found that 74 percent of respondents considered crime a “very serious” problem — the largest share since the survey began asking the question in 1999 and more than 20 percentage points greater than the previous high, which was recorded in January 2016.\n", + " Evidence\n", "\n", "\n", "\n", - " That “makes it very difficult to even defend or support particular prosecutors, because at the end of the day, they’re still putting people in jail,” Mr. Sinyangwe said. In 2020, Mr. Bell, the St. Louis prosecutor, faced the ire of the same progressive activists who had helped elect him. That July, he announced that his renewed investigation into the 2014 fatal police shooting of Michael Brown Jr., a young Black man, which ignited weeks of protests, had delivered the same results: no charges for the officer who killed him. Mr. Brown’s mother denounced Mr. Bell’s investigation. Speaking to reporters then, Mr. Bell said the announcement was “one of the most difficult things I’ve had to do as an elected official.”\n", + " Politicians are heeding those concerns. In New York, Mr. Adams, a Democrat, has promised to crack down on crime, and his police commissioner, Keechant Sewell, slammed Mr. Bragg’s proposals as threatening the safety of police officers and the public. In San Francisco, Mayor London Breed has become an outspoken critic of Mr. Boudin’s approach, which emphasizes social services over policing.\n", " Evidence\n", "\n", "\n", - "\n", - " Asked to discuss the incident and the investigation, Mr. Bell declined.\n", - " Position\n", + "\n", + " “This is not working,” Ms. Breed said recently on The New York Times podcast “Sway.” “We’ve added all these additional resources — the street crisis response team, the ambassadors, the services, the buildings we purchase, the hotels we purchase, the resources. We’ve added all these things to deal with food insecurity. All these things. Yet people are still being physically harmed and killed.”\n", + " Evidence\n", "\n", "\n", "\n", - " Josie Duffy Rice, the former president of The Appeal, a news outlet focused on criminal justice, said that in some ways the voters were learning the limitations of the progressive prosecutor’s role. “Prosecutors have the power to cause a lot of problems,” Ms. Duffy Rice said. “But not enough power to solve problems.”\n", + " The criticisms from two prominent Black mayors are particularly biting. In their liberal cities, the leaders’ nuanced complaints have far more influence with voters than familiar attacks from Republicans or police unions. Both mayors have argued that the minority communities that want racism rooted from the justice system also want more robust policing and prosecutions.\n", " Evidence\n", "\n", - "
" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "\n", - "\n" - ] - }, - { - "data": { - "text/html": [ - "

nytimes\\putin-russia-ukraine.txt

" + "\n", + "\n", + " President Biden, who was one of the architects of the tough-on-crime criminal justice overhaul of the 1990s, recently spoke highly of Mr. Adams’s focus on crime prevention. Some prosecutors and their allies took that as a sign that the Democratic establishment is digging in on a centrist approach to criminal justice reform.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mr. Biden’s comments came as the Democratic Party worried about retaining the support of moderate suburban voters in midterm elections this year. Many Democratic lawmakers and strategists believe that protest slogans like “defund the police” hurt the party in the 2020 elections — particularly in Congressional swing districts and in Senate races. Republican candidates, eager to retake control of Congress in November, already have run advertisements casting Democrats as soft on crime.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Most progressive prosecutors oppose the calls to gut police department budgets, but that is a nuance often missed. At one liberal philanthropic group, some newer givers have said they will not donate to any criminal justice groups — or to the campaigns of progressive prosecutors — because they don’t want to endorse defunding the police, according to a person who connects donors to criminal justice causes, and who insisted on anonymity to discuss private conversations.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Samuel Sinyangwe, an activist who has been involved in several organizations pushing progressive prosecutors, said prosecutors hadn’t been as forceful as law enforcement unions in selling their solutions to rising violence in cities.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Police are spending a lot of money convincing people the appropriate response to that is more policing and incarceration,” he said. “I think that individual cities and counties are having to push back against that narrative. But I think they’re struggling to do that right now.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In San Francisco, Mr. Boudin argued that the effort to recall him was fueled by politics, not voters’ worries about crime. He pointed to the Republican megadonors who have funded the recall efforts and said Ms. Breed has a political incentive to see him ousted — he beat her preferred candidate for district attorney.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “These are Republican talking points,” Mr. Boudin said. “And it’s tremendously destructive to the Democratic Party and the long-term progress that the party is making at the local and national level around public safety and criminal justice to allow a few folks dissatisfied with a local election to undermine that progress.”\n", + " Concluding Statement\n", + "\n", + "\n", + "\n", + " Mary Jung, a Democratic activist leading the recall campaign, said those who painted the efforts as fueled by conservatives or moderates were missing the point. Many of their supporters, she said, are lifelong liberal Democrats.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Those voters, she said, don’t view the effort to recall Mr. Boudin, who was elected in 2019, as a broad shift away from progressive policies, but as a local response in a community that feels unsafe. She cited several attacks against Asian immigrants and incidents of shoplifting as the sort of crimes that have rattled residents, regardless of political ideology.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In another sign of Democrats’ discontent, San Francisco voters ousted three progressive members of the Board of Education in a recall election driven by pandemic angst.\n", + " Claim\n", + "\n", + "\n", + "\n", + " “Over 80,000 San Franciscans signed our petition and we only needed 53,000 signatures,” Ms. Jung said. “There’s only 33,000 registered Republicans in the city. So, you know, you do the math.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Some progressives warn against ignoring people’s fears. Kim Foxx, the state’s attorney for Cook County, which includes Chicago and some of the country’s most violence-plagued communities, said that any dismissive rhetoric could make prosecutors risk looking out of touch.\n", + " Counterclaim\n", + "\n", + "\n", + "\n", + " “You can’t dismiss people,” Ms. Foxx said. “I live in Chicago, where we hit 800 murders last year, and that represents 800 immediate families and thousands of people who are impacted.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Ms. Foxx faced a well-funded opponent and won re-election in 2020, as did Philadelphia’s district attorney, Larry Krasner, the following year. Those victories show the resilient support for progressive ideas, Mr. Krasner said, warning the Democratic Party not to abandon them.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Put criminal justice reform on the ballot in every election in almost every jurisdiction, and what you’re going to see is a surge in turnout,” Mr. Krasner said. “And that turnout will overwhelmingly be unlikely voters, reluctant voters, brand-new voters, people who are not connected to what they see as governmental dysfunction between the parties — but they are connected to an issue that has affected their communities.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " But there are signs that attitudes about overhauling the criminal justice system are changing even among progressives. Many activists have shifted their focus away from electoral politics and toward policies they think address the root of the problem, such as reducing the number of police and abolishing prisons.\n", + " Rebuttal\n", + "\n", + "\n", + "\n", + " That “makes it very difficult to even defend or support particular prosecutors, because at the end of the day, they’re still putting people in jail,” Mr. Sinyangwe said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In 2020, Mr. Bell, the St. Louis prosecutor, faced the ire of the same progressive activists who had helped elect him. That July, he announced that his renewed investigation into the 2014 fatal police shooting of Michael Brown Jr., a young Black man, which ignited weeks of protests, had delivered the same results: no charges for the officer who killed him.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mr. Brown’s mother denounced Mr. Bell’s investigation. Speaking to reporters then, Mr. Bell said the announcement was “one of the most difficult things I’ve had to do as an elected official.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Asked to discuss the incident and the investigation, Mr. Bell declined.\n", + " Position\n", + "\n", + "\n", + "\n", + " Josie Duffy Rice, the former president of The Appeal, a news outlet focused on criminal justice, said that in some ways the voters were learning the limitations of the progressive prosecutor’s role.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Prosecutors have the power to cause a lot of problems,” Ms. Duffy Rice said. “But not enough power to solve problems.”\n", + " Evidence\n", + "\n", + "
" ], "text/plain": [ "" @@ -21421,59 +29860,39 @@ "metadata": {}, "output_type": "display_data" }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Using custom data configuration default-6e1010e3d68c6bf5\n" - ] - }, { "name": "stdout", "output_type": "stream", "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-6e1010e3d68c6bf5\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "\n", + "\n", + "\n" ] }, { "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "67bfe02b97794f688d9f7b0bfcdec723", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00putin-russia-ukraine.txt" + ], "text/plain": [ - " 0%| | 0/1 [00:00" ] }, "metadata": {}, "output_type": "display_data" }, { - "name": "stdout", + "name": "stderr", "output_type": "stream", "text": [ - "Dataset text downloaded and prepared to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-6e1010e3d68c6bf5\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4. Subsequent calls will reuse this data.\n" + "Using custom data configuration default-6e1010e3d68c6bf5\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-6e1010e3d68c6bf5\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "de6c1f7fdb444451863888378c7beecf", + "model_id": "229719c3513c4e37b431220c1e6408c3", "version_major": 2, "version_minor": 0 }, @@ -21485,23 +29904,16 @@ "output_type": "display_data" }, { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "92fd8b804ee248f5a01b3f0347b40c49", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00\n", "\n", "\n", - " In Moscow, many analysts remain convinced that the Russian president is essentially rational, and that the risks of invading Ukraine would be so great that his huge troop buildup makes sense only as a very convincing bluff. But some also leave the door open to the idea that he has fundamentally changed amid the pandemic, a shift that may have left him more paranoid, more aggrieved and more reckless. The 20-foot-long table that Mr. Putin has used to socially distance himself this month from European leaders flying in for crisis talks symbolizes, to some longtime observers, his detachment from the rest of the world. For almost two years, Mr. Putin has ensconced himself in a virus-free cocoon unlike that of any Western leader, with state television showing him holding most key meetings by teleconference alone in a room and keeping even his own ministers at a distance on the rare occasions that he summons them in person. Speculation over a leader’s mental state is always fraught, but as Mr. Putin’s momentous decision approaches, Moscow commentators puzzling over what he might do next in Ukraine are finding some degree of armchair psychology hard to avoid. “There’s this impression of irritation, of a lack of interest, of an unwillingness to delve into anything new,” Ekaterina Schulmann, a political scientist and former member of Mr. Putin’s human rights council, said of the president’s recent public appearances. “The public is being shown that he has been in practical isolation, with ever fewer breaks, since the spring of 2020.” A large-scale invasion of Ukraine, many analysts point out, would be an enormous escalation compared with any of the actions that Mr. Putin has taken before. In 2014, the Kremlin’s subterfuge allowed Russian forces stripped of identifying markings to capture Crimea without firing a single shot. The proxy war that Mr. Putin fomented in Ukraine’s east allowed him to deny being a party to the conflict. “Starting a full-scale war is completely not in Putin’s interest,” said Anastasia Likhacheva, the dean of world economy and international affairs at the Higher School of Economics in Moscow. “It is very difficult for me to find any rational explanation for a desire to carry out such a campaign.” Even if Mr. Putin were able to take control of Ukraine, she noted, such a war would accomplish the opposite of what the president says he wants: rolling back the NATO presence in Eastern Europe. In the case of a war, the NATO allies would be “more unified than ever,” Ms. Likhacheva said, and they would be likely to deploy powerful new weaponry along Russia’s western frontiers. At home, Mr. Putin has always been keen to project the aura of a sober statesman, overruling the nationalist firebrands on prime-time talk shows and in Parliament who have been urging him for years to annex more of Ukraine. And while he casts himself as Russia’s guarantor of stability, he could face stark economic headwinds from Western sanctions and social upheaval if there are casualties on the battlefield and among civilians. Millions of Russians have relatives in Ukraine. For the moment, Russians largely appear to subscribe to the Kremlin narrative that the West is the aggressor in the Ukraine crisis, said Denis Volkov, the director of the Levada Center, an independent pollster in Moscow. The alarmist messaging out of Washington about an imminent Russian invasion has only bolstered that view, he says, because it makes the West seem to be the one that is “exerting pressure and escalating tensions.” If Mr. Putin were to carry out a short and limited military operation along the lines of the five-day war against Georgia in 2008, he said, Russians could be expected to support it.\n", + " In Moscow, many analysts remain convinced that the Russian president is essentially rational, and that the risks of invading Ukraine would be so great that his huge troop buildup makes sense only as a very convincing bluff. But some also leave the door open to the idea that he has fundamentally changed amid the pandemic, a shift that may have left him more paranoid, more aggrieved and more reckless.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The 20-foot-long table that Mr. Putin has used to socially distance himself this month from European leaders flying in for crisis talks symbolizes, to some longtime observers, his detachment from the rest of the world. For almost two years, Mr. Putin has ensconced himself in a virus-free cocoon unlike that of any Western leader, with state television showing him holding most key meetings by teleconference alone in a room and keeping even his own ministers at a distance on the rare occasions that he summons them in person.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Speculation over a leader’s mental state is always fraught, but as Mr. Putin’s momentous decision approaches, Moscow commentators puzzling over what he might do next in Ukraine are finding some degree of armchair psychology hard to avoid.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “There’s this impression of irritation, of a lack of interest, of an unwillingness to delve into anything new,” Ekaterina Schulmann, a political scientist and former member of Mr. Putin’s human rights council, said of the president’s recent public appearances. “The public is being shown that he has been in practical isolation, with ever fewer breaks, since the spring of 2020.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " A large-scale invasion of Ukraine, many analysts point out, would be an enormous escalation compared with any of the actions that Mr. Putin has taken before. In 2014, the Kremlin’s subterfuge allowed Russian forces stripped of identifying markings to capture Crimea without firing a single shot. The proxy war that Mr. Putin fomented in Ukraine’s east allowed him to deny being a party to the conflict.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Starting a full-scale war is completely not in Putin’s interest,” said Anastasia Likhacheva, the dean of world economy and international affairs at the Higher School of Economics in Moscow. “It is very difficult for me to find any rational explanation for a desire to carry out such a campaign.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Even if Mr. Putin were able to take control of Ukraine, she noted, such a war would accomplish the opposite of what the president says he wants: rolling back the NATO presence in Eastern Europe. In the case of a war, the NATO allies would be “more unified than ever,” Ms. Likhacheva said, and they would be likely to deploy powerful new weaponry along Russia’s western frontiers.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " At home, Mr. Putin has always been keen to project the aura of a sober statesman, overruling the nationalist firebrands on prime-time talk shows and in Parliament who have been urging him for years to annex more of Ukraine.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " And while he casts himself as Russia’s guarantor of stability, he could face stark economic headwinds from Western sanctions and social upheaval if there are casualties on the battlefield and among civilians. Millions of Russians have relatives in Ukraine.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " For the moment, Russians largely appear to subscribe to the Kremlin narrative that the West is the aggressor in the Ukraine crisis, said Denis Volkov, the director of the Levada Center, an independent pollster in Moscow. The alarmist messaging out of Washington about an imminent Russian invasion has only bolstered that view, he says, because it makes the West seem to be the one that is “exerting pressure and escalating tensions.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " If Mr. Putin were to carry out a short and limited military operation along the lines of the five-day war against Georgia in 2008, he said, Russians could be expected to support it.\n", " Evidence\n", "\n", "\n", @@ -21558,7 +30041,27 @@ "\n", "\n", "\n", - " Given that such a war still seems unthinkable and irrational to so many in Moscow, Russian foreign policy experts generally see the standoff over Ukraine as the latest stage in Mr. Putin’s yearslong effort to compel the West to accept what he sees as fundamental Russian security concerns. In the 1990s, that thinking goes, the West forced a new European order upon a weak Russia that disregarded its historical need for a geopolitical buffer zone to its west. And now that Russia is stronger, these experts say, it would be reasonable for any Kremlin leader to try to redraw that map. Fyodor Lukyanov, a prominent Moscow foreign policy analyst who advises the Kremlin, said Mr. Putin’s goal now was “to force the outcome of the Cold War to be partially revised.” But he still believes Mr. Putin will stop short of full-scale invasion, instead using “special, asymmetric or hybrid means” — including making the West believe that he is truly prepared to attack. “A bluff has to be very convincing,” Mr. Lukyanov said. And the United States, he went on, with its robust portrayals of an aggressive Russia poised for invasion, “is playing along at 200 percent.” By this line of thinking, Russian analysts say, American officials are falling for an exaggerated image of Mr. Putin as an evil genius. Since Mr. Putin’s past attempts to negotiate with the West over arms control and NATO expansion failed, they say, the Kremlin chose to raise the stakes to a point at which its interests became impossible to ignore. “He is very successful at using the negative image that has been created of him as a demon,” said Dmitri Trenin, the head of the Carnegie Moscow Center think tank, describing Mr. Putin as capitalizing on fears that he was prepared to unleash a horrific war. “The plan was to create a threat, to create the sense that a war could happen.”\n", + " Given that such a war still seems unthinkable and irrational to so many in Moscow, Russian foreign policy experts generally see the standoff over Ukraine as the latest stage in Mr. Putin’s yearslong effort to compel the West to accept what he sees as fundamental Russian security concerns. In the 1990s, that thinking goes, the West forced a new European order upon a weak Russia that disregarded its historical need for a geopolitical buffer zone to its west. And now that Russia is stronger, these experts say, it would be reasonable for any Kremlin leader to try to redraw that map.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Fyodor Lukyanov, a prominent Moscow foreign policy analyst who advises the Kremlin, said Mr. Putin’s goal now was “to force the outcome of the Cold War to be partially revised.” But he still believes Mr. Putin will stop short of full-scale invasion, instead using “special, asymmetric or hybrid means” — including making the West believe that he is truly prepared to attack.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “A bluff has to be very convincing,” Mr. Lukyanov said. And the United States, he went on, with its robust portrayals of an aggressive Russia poised for invasion, “is playing along at 200 percent.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " By this line of thinking, Russian analysts say, American officials are falling for an exaggerated image of Mr. Putin as an evil genius. Since Mr. Putin’s past attempts to negotiate with the West over arms control and NATO expansion failed, they say, the Kremlin chose to raise the stakes to a point at which its interests became impossible to ignore.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “He is very successful at using the negative image that has been created of him as a demon,” said Dmitri Trenin, the head of the Carnegie Moscow Center think tank, describing Mr. Putin as capitalizing on fears that he was prepared to unleash a horrific war. “The plan was to create a threat, to create the sense that a war could happen.”\n", " Evidence\n", "\n", "\n", @@ -21592,7 +30095,7 @@ { "data": { "text/html": [ - "

nytimes\\putin-ukraine.txt

" + "

putin-ukraine.txt

" ], "text/plain": [ "" @@ -21605,34 +30108,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-e3b13b71347fee31\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-e3b13b71347fee31\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-e3b13b71347fee31\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-e3b13b71347fee31\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "7557ecddd47840169e7d459bb3919b5b", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " Winston Churchill once described Russia as “a riddle, wrapped in a mystery, inside an enigma.” It’s a phrase that could equally apply to Vladimir Putin, the Kremlin’s leader, as the world awaits his next move on Ukraine. To better understand him, we reached out to Fiona Hill, one of Washington’s foremost experts on the Russian president. Hill has served in multiple U.S. administrations as an intelligence officer and policy adviser, most recently as senior director for Europe and Russia on the National Security Council under Donald Trump. She spoke with us about Putin’s longtime obsession with annexing Ukraine, her worries about how he’s closed himself off from outside information and his private boasts about his ability to “buy anyone” in the United States and Europe.\n", + " Winston Churchill once described Russia as “a riddle, wrapped in a mystery, inside an enigma.” It’s a phrase that could equally apply to Vladimir Putin, the Kremlin’s leader, as the world awaits his next move on Ukraine.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " To better understand him, we reached out to Fiona Hill, one of Washington’s foremost experts on the Russian president. Hill has served in multiple U.S. administrations as an intelligence officer and policy adviser, most recently as senior director for Europe and Russia on the National Security Council under Donald Trump.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " She spoke with us about Putin’s longtime obsession with annexing Ukraine, her worries about how he’s closed himself off from outside information and his private boasts about his ability to “buy anyone” in the United States and Europe.\n", " Evidence\n", "\n", "\n", @@ -21819,7 +30320,12 @@ "\n", "\n", "\n", - " I don’t know what signals he’s actually getting directly, beyond what they give him in media compilations, what he might be listening to. And that’s part of the problem. We don’t know how good his intel is. And in some cases, we think it might not be great, because he certainly hasn’t read the mood in Ukraine as well as you might have thought. He obviously thought that we’d all fall apart internationally. He didn’t probably anticipate the Western resolve that he’s got in the form of NATO and European unity, but we don’t know what people are telling him. People may be spinning to him that he’s done a great job — you know, that we’re all capitulating. He’s got a parade of European leaders coming and he’s trying to test them and see what they have to say. He’s looking for daylight between them, and then he’s making his own assessment.\n", + " I don’t know what signals he’s actually getting directly, beyond what they give him in media compilations, what he might be listening to. And that’s part of the problem. We don’t know how good his intel is. And in some cases, we think it might not be great, because he certainly hasn’t read the mood in Ukraine as well as you might have thought. He obviously thought that we’d all fall apart internationally. He didn’t probably anticipate the Western resolve that he’s got in the form of NATO and European unity, but we don’t know what people are telling him.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " People may be spinning to him that he’s done a great job — you know, that we’re all capitulating. He’s got a parade of European leaders coming and he’s trying to test them and see what they have to say. He’s looking for daylight between them, and then he’s making his own assessment.\n", " Evidence\n", "\n", "\n", @@ -21829,7 +30335,12 @@ "\n", "\n", "\n", - " That would be a mistake, to trigger off right now. It doesn’t work with just such crude messaging. You have to be able to show the cause and effect of sanctions when you put them on and off. Otherwise, the view then becomes, well, there’s nothing we can do anyway. Because the Russian point of view is that all the U.S. does is put sanctions on countries irrespective of what they do. We would just feed that narrative. And we already are doing plenty of things. But if we put unilateral sanctions on, in advance of more action from Russia, we’ll have lost the allies. And Putin probably is banking on some of that.\n", + " That would be a mistake, to trigger off right now. It doesn’t work with just such crude messaging. You have to be able to show the cause and effect of sanctions when you put them on and off. Otherwise, the view then becomes, well, there’s nothing we can do anyway. Because the Russian point of view is that all the U.S. does is put sanctions on countries irrespective of what they do. We would just feed that narrative.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " And we already are doing plenty of things. But if we put unilateral sanctions on, in advance of more action from Russia, we’ll have lost the allies. And Putin probably is banking on some of that.\n", " Evidence\n", "\n", "\n", @@ -21839,7 +30350,12 @@ "\n", "\n", "\n", - " The Russians think that they can just outmaneuver the United States and all of the allies on sanctions and everything else. And they’ve been very successful at that, because they have lobbyists within our own systems who lobby for them. You can go down a long list of people who are on the board of Russian companies or do consulting for Russian companies. Clearly, it’s always been for political leverage. And Putin explicitly says: I can buy anyone. I don’t, by the way, believe that he can, because I do know people who work with the Russians and maintain their integrity. But from Putin’s point of view, that’s very strong signaling.\n", + " The Russians think that they can just outmaneuver the United States and all of the allies on sanctions and everything else. And they’ve been very successful at that, because they have lobbyists within our own systems who lobby for them. You can go down a long list of people who are on the board of Russian companies or do consulting for Russian companies.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Clearly, it’s always been for political leverage. And Putin explicitly says: I can buy anyone. I don’t, by the way, believe that he can, because I do know people who work with the Russians and maintain their integrity. But from Putin’s point of view, that’s very strong signaling.\n", " Evidence\n", "\n", "\n", @@ -21859,7 +30375,17 @@ "\n", "\n", "\n", - " Representative Kevin McCarthy, the House Republican leader, endorsed Harriet Hageman, a pro-Trump candidate and primary challenger to Representative Liz Cheney. Annie Karni writes that the endorsement “was an extraordinary move” for McCarthy, who “has worked to toe a fine line between his far right flank and more mainstream conservatives.” The National Archives found that documents Donald Trump took home to Florida included classified information, report Luke Broadwater and Michael S. Schmidt. The letter from the archives also said “some White House staff conducted official business using nonofficial electronic messaging accounts.” On Politics regularly features work by Times photographers. On Valentine’s Day on Monday, Jill Biden led second-grade students from Aiton Elementary School in Washington on a tour of the White House. Here’s what Al Drago told us about capturing the image above:\n", + " Representative Kevin McCarthy, the House Republican leader, endorsed Harriet Hageman, a pro-Trump candidate and primary challenger to Representative Liz Cheney. Annie Karni writes that the endorsement “was an extraordinary move” for McCarthy, who “has worked to toe a fine line between his far right flank and more mainstream conservatives.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The National Archives found that documents Donald Trump took home to Florida included classified information, report Luke Broadwater and Michael S. Schmidt. The letter from the archives also said “some White House staff conducted official business using nonofficial electronic messaging accounts.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " On Politics regularly features work by Times photographers. On Valentine’s Day on Monday, Jill Biden led second-grade students from Aiton Elementary School in Washington on a tour of the White House. Here’s what Al Drago told us about capturing the image above:\n", " Evidence\n", "\n", "\n", @@ -21869,7 +30395,12 @@ "\n", "\n", "\n", - " I like this photo because you can see how eager the students are to keep moving, as the girl in front pulls her classmate forward. The students toured the North Lawn, Cross Hall, the White House movie theater, and more. Biden, a longtime advocate for educators who continues to teach at Northern Virginia Community College, apologized to the visiting teacher for giving her students chocolate that could make them hyper later in the day. I captured this photo as Biden was walking in between preplanned photo ops. Especially in covering politics, I am always looking for those more human, in-between moments.\n", + " I like this photo because you can see how eager the students are to keep moving, as the girl in front pulls her classmate forward. The students toured the North Lawn, Cross Hall, the White House movie theater, and more. Biden, a longtime advocate for educators who continues to teach at Northern Virginia Community College, apologized to the visiting teacher for giving her students chocolate that could make them hyper later in the day.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " I captured this photo as Biden was walking in between preplanned photo ops. Especially in covering politics, I am always looking for those more human, in-between moments.\n", " Evidence\n", "\n", "\n", @@ -21898,7 +30429,7 @@ { "data": { "text/html": [ - "

nytimes\\red-covid-partisan-deaths-vaccines.txt

" + "

red-covid-partisan-deaths-vaccines.txt

" ], "text/plain": [ "" @@ -21911,34 +30442,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-9c104fcfe1064332\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-9c104fcfe1064332\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-9c104fcfe1064332\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-9c104fcfe1064332\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "15ddf9c773194277a43e9ca151031f9a", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00\n", "\n", "\n", - " The large number of unvaccinated residents in Ocean County has led to a horrific amount of Covid illness and death. Nearly one out of every 200 residents has died from the virus. That is worse than the toll in Mississippi, the U.S. state with the largest amount of Covid death per capita, and worse than in any country except for Peru. What explains the vaccine skepticism in Ocean County? Politics, above all. The county is heavily Republican. Donald Trump won it by almost 30 percentage points in 2020, and many Republicans — including those who are older than 65 and vulnerable to severe Covid illness — are skeptical of the vaccines.\n", + " The large number of unvaccinated residents in Ocean County has led to a horrific amount of Covid illness and death. Nearly one out of every 200 residents has died from the virus. That is worse than the toll in Mississippi, the U.S. state with the largest amount of Covid death per capita, and worse than in any country except for Peru.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " What explains the vaccine skepticism in Ocean County? Politics, above all. The county is heavily Republican. Donald Trump won it by almost 30 percentage points in 2020, and many Republicans — including those who are older than 65 and vulnerable to severe Covid illness — are skeptical of the vaccines.\n", " Evidence\n", "\n", "\n", @@ -22098,12 +30613,22 @@ "\n", "\n", "\n", - " First, some background: In the pandemic’s initial months, Covid cases and deaths were higher in Democratic areas, probably because they are home to several major international airports. The virus entered this country on the West Coast and in the Northeast. But it didn’t stay there. By the end of Covid’s first year in the U.S., the virus had swept across the country, and there was no significant partisan divide in deaths. Only after the vaccines became widely available, in early 2021 — and liberals were much more willing to get shots than conservatives — did Covid become a disproportionately Republican illness. By the summer of 2021, the gap was soaring:\n", + " First, some background: In the pandemic’s initial months, Covid cases and deaths were higher in Democratic areas, probably because they are home to several major international airports. The virus entered this country on the West Coast and in the Northeast. But it didn’t stay there. By the end of Covid’s first year in the U.S., the virus had swept across the country, and there was no significant partisan divide in deaths.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Only after the vaccines became widely available, in early 2021 — and liberals were much more willing to get shots than conservatives — did Covid become a disproportionately Republican illness. By the summer of 2021, the gap was soaring:\n", " Evidence\n", "\n", "\n", "\n", - " As the chart makes clear, the toll has been even worse in counties where Trump won by a landslide than in counties that he won narrowly. This phenomenon is an example of how the country’s political polarization has warped people’s thinking, even when their personal safety is at stake. It is a tragedy — and a preventable one, too.\n", + " As the chart makes clear, the toll has been even worse in counties where Trump won by a landslide than in counties that he won narrowly.\n", + " Claim\n", + "\n", + "\n", + "\n", + " This phenomenon is an example of how the country’s political polarization has warped people’s thinking, even when their personal safety is at stake. It is a tragedy — and a preventable one, too.\n", " Claim\n", "\n", "\n", @@ -22138,12 +30663,32 @@ "\n", "\n", "\n", - " Another point to remember: Even in deeply blue counties, an outsize number of deaths are occurring among people who are unvaccinated or unboosted. The vaccines offer incredible protection from a deadly virus, yet many Americans have chosen to leave themselves exposed. Related: Vaccinating and boosting more elderly people is probably the single best strategy for reducing deaths, The Atlantic’s Sarah Zhang writes. One way to do so: Increase Medicare payments to doctors and hospitals that make progress.\n", + " Another point to remember: Even in deeply blue counties, an outsize number of deaths are occurring among people who are unvaccinated or unboosted. The vaccines offer incredible protection from a deadly virus, yet many Americans have chosen to leave themselves exposed.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Related: Vaccinating and boosting more elderly people is probably the single best strategy for reducing deaths, The Atlantic’s Sarah Zhang writes. One way to do so: Increase Medicare payments to doctors and hospitals that make progress.\n", " Evidence\n", "\n", "\n", "\n", - " Virus developments: California laid out a plan to treat Covid as a manageable risk that “will remain with us for some time, if not forever.” This moment feels particularly hard for immunocompromised people. “It’s like living behind a veil.” A flare-up in fighting between Ukraine and Russian-backed separatists raised fears of a larger conflict.\n", + " Virus developments:\n", + " Claim\n", + "\n", + "\n", + "\n", + " California laid out a plan to treat Covid as a manageable risk that “will remain with us for some time, if not forever.”\n", + " Claim\n", + "\n", + "\n", + "\n", + " This moment feels particularly hard for immunocompromised people. “It’s like living behind a veil.”\n", + " Claim\n", + "\n", + "\n", + "\n", + " A flare-up in fighting between Ukraine and Russian-backed separatists raised fears of a larger conflict.\n", " Claim\n", "\n", "\n", @@ -22153,12 +30698,22 @@ "\n", "\n", "\n", - " The U.S. message to Russia: Prove us wrong. President Biden will speak with allies today as tensions rise. Follow the latest.\n", + " The U.S. message to Russia: Prove us wrong.\n", + " Claim\n", + "\n", + "\n", + "\n", + " President Biden will speak with allies today as tensions rise. Follow the latest.\n", " Claim\n", "\n", "\n", "\n", - " New York’s attorney general can question Trump and two of his children under oath in an inquiry into his family business, a judge ruled. Kevin McCarthy, the House Republican leader, endorsed a primary challenger to Liz Cheney, a Trump-critical Republican.\n", + " New York’s attorney general can question Trump and two of his children under oath in an inquiry into his family business, a judge ruled.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Kevin McCarthy, the House Republican leader, endorsed a primary challenger to Liz Cheney, a Trump-critical Republican.\n", " Evidence\n", "\n", "\n", @@ -22168,12 +30723,27 @@ "\n", "\n", "\n", - " Nicholas Kristof, a former Times columnist, ended his campaign for governor of Oregon after the state’s Supreme Court ruled that he hadn’t lived there long enough. Tumbles and tears: Anna Shcherbakova of Russia won gold in women’s figure skating. Kamila Valieva finished fourth. Eileen Gu won her second gold, this time in the halfpipe. See her jumps, twists and grabs.\n", + " Nicholas Kristof, a former Times columnist, ended his campaign for governor of Oregon after the state’s Supreme Court ruled that he hadn’t lived there long enough.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Tumbles and tears: Anna Shcherbakova of Russia won gold in women’s figure skating. Kamila Valieva finished fourth.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Eileen Gu won her second gold, this time in the halfpipe. See her jumps, twists and grabs.\n", " Evidence\n", "\n", "\n", "\n", - " The U.S. men’s curling team, the defending champion, didn’t win a medal. The Canadian police have begun arresting protest organizers in Ottawa after weeks of gridlock.\n", + " The U.S. men’s curling team, the defending champion, didn’t win a medal.\n", + " Claim\n", + "\n", + "\n", + "\n", + " The Canadian police have begun arresting protest organizers in Ottawa after weeks of gridlock.\n", " Claim\n", "\n", "\n", @@ -22183,7 +30753,12 @@ "\n", "\n", "\n", - " A dangerous storm is causing disruptions in Britain and elsewhere in Europe. A ship with luxury vehicles, including 1,100 Porsches, is burning and adrift in the Atlantic.\n", + " A dangerous storm is causing disruptions in Britain and elsewhere in Europe.\n", + " Claim\n", + "\n", + "\n", + "\n", + " A ship with luxury vehicles, including 1,100 Porsches, is burning and adrift in the Atlantic.\n", " Claim\n", "\n", "\n", @@ -22193,17 +30768,67 @@ "\n", "\n", "\n", - " Covid has created a climate of suspicion, confusion and grief that the far right has exploited, Michelle Goldberg argues. With P.J. O’Rourke’s death, we’ve lost the last funny conservative, Christopher Buckley says. “Perfect Strangers”: Netflix’s first Arabic film has stirred a fierce moral debate. Mystery: What was Stonehenge for? The answer may be simple. Modern Love: When a former stripper marries a future minister. A Times classic: A better way to pack your suitcase.\n", + " Covid has created a climate of suspicion, confusion and grief that the far right has exploited, Michelle Goldberg argues.\n", + " Claim\n", + "\n", + "\n", + "\n", + " With P.J. O’Rourke’s death, we’ve lost the last funny conservative, Christopher Buckley says.\n", + " Claim\n", + "\n", + "\n", + "\n", + " “Perfect Strangers”: Netflix’s first Arabic film has stirred a fierce moral debate.\n", + " Claim\n", + "\n", + "\n", + "\n", + " Mystery: What was Stonehenge for? The answer may be simple.\n", + " Claim\n", + "\n", + "\n", + "\n", + " Modern Love: When a former stripper marries a future minister.\n", + " Claim\n", + "\n", + "\n", + "\n", + " A Times classic: A better way to pack your suitcase.\n", " Claim\n", "\n", "\n", "\n", - " Lives Lived: The American airman Gail Halvorsen became known as the Candy Bomber for dropping chocolate and chewing gum, wrapped in tiny parachutes, during the Berlin airlift. He died at 101. In recent years, “a certain polite, well-behaved-ness had become a defining characteristic of New York fashion,” Vanessa Friedman writes. This fashion week, which wrapped on Wednesday, welcomed a more “anarchic creative energy.” Shayne Oliver’s three-day extravaganza featured loads of straps and skin. “The point was less the actual garments than the energy they generated,” Friedman writes. “They were going somewhere, and not just in circles.” Other standout moments: Julia Fox opened the LaQuan Smith show — fresh from her breakup with Kanye West — in a slinky cutout dress, and the groundbreaking Black supermodels Beverly Johnson and Veronica Webb glided down the ’80s-flavored Sergio Hudson runway. Telfar put on a “happening,” mixing branded TV projects with fashion. So what does the new era of New York fashion look like? Look to Eckhaus Latta, which held its show in an old downtown Manhattan building now scheduled for demolition. The show’s mood was celebratory; friends and family walked the runway, and the clothes maintained “a singular crafty intelligence that avoids easy categorization.” A poem was handed out: “The future is people walking down the street laughing.” — Sanam Yar, a Morning writer\n", + " Lives Lived: The American airman Gail Halvorsen became known as the Candy Bomber for dropping chocolate and chewing gum, wrapped in tiny parachutes, during the Berlin airlift. He died at 101.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In recent years, “a certain polite, well-behaved-ness had become a defining characteristic of New York fashion,” Vanessa Friedman writes. This fashion week, which wrapped on Wednesday, welcomed a more “anarchic creative energy.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Shayne Oliver’s three-day extravaganza featured loads of straps and skin. “The point was less the actual garments than the energy they generated,” Friedman writes. “They were going somewhere, and not just in circles.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Other standout moments: Julia Fox opened the LaQuan Smith show — fresh from her breakup with Kanye West — in a slinky cutout dress, and the groundbreaking Black supermodels Beverly Johnson and Veronica Webb glided down the ’80s-flavored Sergio Hudson runway. Telfar put on a “happening,” mixing branded TV projects with fashion.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " So what does the new era of New York fashion look like? Look to Eckhaus Latta, which held its show in an old downtown Manhattan building now scheduled for demolition. The show’s mood was celebratory; friends and family walked the runway, and the clothes maintained “a singular crafty intelligence that avoids easy categorization.” A poem was handed out: “The future is people walking down the street laughing.” — Sanam Yar, a Morning writer\n", " Evidence\n", "\n", "\n", "\n", - " For more: The fashion isn’t just on the runway. Check out photos of street style in the city this week. This gingery fried rice is a good way to use up leftover veggies.\n", + " For more: The fashion isn’t just on the runway. Check out photos of street style in the city this week.\n", + " Claim\n", + "\n", + "\n", + "\n", + " This gingery fried rice is a good way to use up leftover veggies.\n", " Claim\n", "\n", "\n", @@ -22213,7 +30838,12 @@ "\n", "\n", "\n", - " New fiction from around the world, including a vicious novel set in an exclusive girls’ school in Ecuador. Trevor Noah says that Russia loves playing chess.\n", + " New fiction from around the world, including a vicious novel set in an exclusive girls’ school in Ecuador.\n", + " Claim\n", + "\n", + "\n", + "\n", + " Trevor Noah says that Russia loves playing chess.\n", " Claim\n", "\n", "\n", @@ -22228,7 +30858,17 @@ "\n", "\n", "\n", - " Here’s today’s Wordle. (If you’re worried about your stats streak, play in the browser you’ve been using.) Here’s today’s Mini Crossword, and a clue: Waterlogged (five letters). If you’re in the mood to play more, find all our games here.\n", + " Here’s today’s Wordle. (If you’re worried about your stats streak, play in the browser you’ve been using.)\n", + " Claim\n", + "\n", + "\n", + "\n", + " Here’s today’s Mini Crossword, and a clue: Waterlogged (five letters).\n", + " Claim\n", + "\n", + "\n", + "\n", + " If you’re in the mood to play more, find all our games here.\n", " Claim\n", "\n", "\n", @@ -22243,7 +30883,12 @@ "\n", "\n", "\n", - " Here’s today’s front page. “The Daily” is about nurses. “The Ezra Klein Show” features Alex Tabarrok, who has been prophetic about Covid policy.\n", + " Here’s today’s front page.\n", + " Lead\n", + "\n", + "\n", + "\n", + " “The Daily” is about nurses. “The Ezra Klein Show” features Alex Tabarrok, who has been prophetic about Covid policy.\n", " Lead\n", "\n", "\n", @@ -22277,7 +30922,7 @@ { "data": { "text/html": [ - "

nytimes\\rokia-kone-jacknife-lee-bamanan-review.txt

" + "

rokia-kone-jacknife-lee-bamanan-review.txt

" ], "text/plain": [ "" @@ -22290,34 +30935,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-a7059a1ab655dc1b\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-a7059a1ab655dc1b\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-a7059a1ab655dc1b\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-a7059a1ab655dc1b\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "fb94e503b2bf4ff6b5d5d3e46d6612be", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " African musicians don’t need outside help. Lately, Nigerian Afrobeats, South African amapiano and other sleek, high-tech, thoroughly danceable styles have reached listeners worldwide without Western mediators. But the proof of a collaboration is in its sound, not its pedigree, and the album “Bamanan” is a transcontinental alliance that finds its own synergy. “Bamanan” pairs Rokia Koné — a songwriter and singer from Mali who was a core member of the West African collective Les Amazones d’Afrique on their 2017 album “Republique Amazone” — with Garret “Jacknife” Lee, an Irish producer who has worked with U2 and Taylor Swift and is now based in California. Koné’s voice rightfully leaps out of every song. Drawing on West African griot style, she sings with gritty insistence, building up to a sandpapery rasp when her melodies hit their peaks. Her Malian band provides percussion, backup vocals and barbed, modal lead guitar parts that hint at traditional African instruments. Lee adds keyboards, guitars and drumbeats, placing the songs in a swirling, spacious digital realm. It’s an equal partnership that’s clearly enacted in the opening song, “Bi Ye Tulonba Ye” (“Today Is a Great Party”), a call for unity and an end to disagreements. At the beginning, Koné’s vocals are an urgent incantation amid reverent, hovering synthesizer tones, with a steady beat that slowly reveals itself. But the song lifts off as her band joins in, surrounding her with rhythmic and melodic crosscurrents of percussion and guitars. “Bamanan” was constructed gradually and remotely; Koné and Lee never met in person while making the album. During the pandemic, sessions that Koné and her band had recorded in 2016 and 2018 — vocals in Paris, instruments in Mali — were sent to Lee after he heard Les Amazones when judging a remix contest. In 2020, Lee added instrumental parts and production to Koné’s sessions, and he collaborated on a new song with Koné, “N’yanyan.” Koné sang the vocals for “N’yanyan” in Mali in August 2020, on the day a coup toppled Mali’s government. Her melody is based on an ancient song; Lee’s production provides simple, sustained electric-piano chords. On a day of political upheaval, Koné thoughtfully counseled taking a long view while reflecting on mortality: “This life is passing/It’s only a moment in time,” she sang in Bambara, the language she uses throughout the album. The sweep of history and a sense of indignation both course through “Bamanan.” Although she does not come from a hereditary griot family, Koné writes like a griot: a cultural guardian recalling history and speaking as a community conscience. “Bamanan” is named after the Bamana Empire, two centuries when Bambara leaders ruled much of what is now Mali. “Anw Tile (It’s Our Time)” meshes modal guitar curlicues and glimmering synthesizers as Koné and her backup singers chronicle the empire’s leaders and geography: “This time is golden,” women’s voices declare in unison. “Those who missed it, it was a great time.” The album also extends the forthright feminism Koné shared with Les Amazones. “Mayougouba” (“Move, Dance”) joyfully tells women worldwide, “You’re perfect as you are.” The album’s most kinetic song, “Kurunba,” paces its call-and-response vocals with galloping percussion and quick synthesizer ripples, as Koné’s narrator rails at being cast aside by her husband after raising their child: “Now my child is of age/Suddenly the door is shut on me,” she reproaches. Koné also remade a song she brought to Les Amazones: “Mansa Soyari,” which celebrates female role models and insists, “A country isn’t great without women.” With Les Amazones, the song was swaggering, distorted, psychedelic rock; with Lee, it’s lighter, more syncopated and more transparent, invoking the kora (harp-guitar) patterns of griot songs, but also hinting at funk and flaunting some otherworldly digital manipulations. With its deep Bambara foundations, the song is certain of where it comes from; it’s just as certain that its passion will be understood anywhere.\n", + " African musicians don’t need outside help. Lately, Nigerian Afrobeats, South African amapiano and other sleek, high-tech, thoroughly danceable styles have reached listeners worldwide without Western mediators. But the proof of a collaboration is in its sound, not its pedigree, and the album “Bamanan” is a transcontinental alliance that finds its own synergy.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Bamanan” pairs Rokia Koné — a songwriter and singer from Mali who was a core member of the West African collective Les Amazones d’Afrique on their 2017 album “Republique Amazone” — with Garret “Jacknife” Lee, an Irish producer who has worked with U2 and Taylor Swift and is now based in California.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Koné’s voice rightfully leaps out of every song. Drawing on West African griot style, she sings with gritty insistence, building up to a sandpapery rasp when her melodies hit their peaks. Her Malian band provides percussion, backup vocals and barbed, modal lead guitar parts that hint at traditional African instruments. Lee adds keyboards, guitars and drumbeats, placing the songs in a swirling, spacious digital realm.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " It’s an equal partnership that’s clearly enacted in the opening song, “Bi Ye Tulonba Ye” (“Today Is a Great Party”), a call for unity and an end to disagreements. At the beginning, Koné’s vocals are an urgent incantation amid reverent, hovering synthesizer tones, with a steady beat that slowly reveals itself. But the song lifts off as her band joins in, surrounding her with rhythmic and melodic crosscurrents of percussion and guitars.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Bamanan” was constructed gradually and remotely; Koné and Lee never met in person while making the album. During the pandemic, sessions that Koné and her band had recorded in 2016 and 2018 — vocals in Paris, instruments in Mali — were sent to Lee after he heard Les Amazones when judging a remix contest. In 2020, Lee added instrumental parts and production to Koné’s sessions, and he collaborated on a new song with Koné, “N’yanyan.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Koné sang the vocals for “N’yanyan” in Mali in August 2020, on the day a coup toppled Mali’s government. Her melody is based on an ancient song; Lee’s production provides simple, sustained electric-piano chords. On a day of political upheaval, Koné thoughtfully counseled taking a long view while reflecting on mortality: “This life is passing/It’s only a moment in time,” she sang in Bambara, the language she uses throughout the album.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The sweep of history and a sense of indignation both course through “Bamanan.” Although she does not come from a hereditary griot family, Koné writes like a griot: a cultural guardian recalling history and speaking as a community conscience. “Bamanan” is named after the Bamana Empire, two centuries when Bambara leaders ruled much of what is now Mali. “Anw Tile (It’s Our Time)” meshes modal guitar curlicues and glimmering synthesizers as Koné and her backup singers chronicle the empire’s leaders and geography: “This time is golden,” women’s voices declare in unison. “Those who missed it, it was a great time.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The album also extends the forthright feminism Koné shared with Les Amazones. “Mayougouba” (“Move, Dance”) joyfully tells women worldwide, “You’re perfect as you are.” The album’s most kinetic song, “Kurunba,” paces its call-and-response vocals with galloping percussion and quick synthesizer ripples, as Koné’s narrator rails at being cast aside by her husband after raising their child: “Now my child is of age/Suddenly the door is shut on me,” she reproaches.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Koné also remade a song she brought to Les Amazones: “Mansa Soyari,” which celebrates female role models and insists, “A country isn’t great without women.” With Les Amazones, the song was swaggering, distorted, psychedelic rock; with Lee, it’s lighter, more syncopated and more transparent, invoking the kora (harp-guitar) patterns of griot songs, but also hinting at funk and flaunting some otherworldly digital manipulations. With its deep Bambara foundations, the song is certain of where it comes from; it’s just as certain that its passion will be understood anywhere.\n", " Evidence\n", "\n", "
" @@ -22421,7 +31068,7 @@ { "data": { "text/html": [ - "

nytimes\\sacklers-opioids-lawsuit.txt

" + "

sacklers-opioids-lawsuit.txt

" ], "text/plain": [ "" @@ -22434,34 +31081,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-7ddf93945e9560d6\n" + "Using custom data configuration default-7ddf93945e9560d6\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-7ddf93945e9560d6\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-7ddf93945e9560d6\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" - ] - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "5ce820571e9f4330a458df53c677e274", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00\n", "\n", "\n", - " Legal experts and the public have criticized efforts by the Sackler family to seek personal protection from liability. It is a shield typically granted to companies seeking bankruptcy restructuring, as Purdue is, but rarely extended to owners who do not file for personal bankruptcy. Eight states and the District of Columbia refused to sign on to an earlier proposal because of the Sackler liability shields. The mediator, Judge Shelley Chapman, a federal bankruptcy judge, said in her report that a “supermajority” of those states had now agreed to the new offer. But holdouts remain and the deal is not yet done. The earlier offer included a pledge from the Sacklers of $4.55 billion, including a $225 million federal settlement, to be paid out over roughly nine years. Under the new offer, the Sacklers would pay a total of $5.5 billion, with an additional contribution of up to $500 million, contingent on the sale of their international pharmaceutical companies. The Sacklers would have 18 years to make payments of the additional $1 billion. The bankruptcy plan requires that the Sackler money, plus billions more from Purdue, be given to funds for states, municipalities and tribes dedicated to the treatment and prevention of opioid addiction, and to compensate victims. Known as “the Nine,” the holdouts, including Connecticut, Washington, California and Maryland, have been at the mediation table with Purdue and the Sacklers since January. While negotiations continue, a stay against all litigation against both Purdue and the Sacklers, which has been in place since September 2019, was extended this week and is now set to expire on March 3. A representative of one branch of the family, descendants of Mortimer Sackler, declined to comment; representatives of another branch, descendants of Raymond Sackler, did not respond to a comment request. Judge Chapman has requested an extension of the deadline for mediation talks through February 28. Noting that the “unanimous acceptance” that the Sacklers require has not yet been achieved, she suggested that further talks could either reach that end or craft a different set of plans that would not necessitate unanimity. In the meantime, Purdue, whose plan was rejected by U.S. District Judge Colleen McMahon in December, is pursuing an appeal in the Second Circuit Court of Appeals. Oral arguments are expected in April. Purdue released a statement saying: “We remain focused on achieving our goal of providing urgently needed funds to the American people for opioid crisis abatement. We believe a global settlement is the swiftest and most cost-effective exit path from Chapter 11 and we will continue working to build consensus as we proceed through the appeal process with the United States Court of Appeals for the Second Circuit.”\n", + " Legal experts and the public have criticized efforts by the Sackler family to seek personal protection from liability. It is a shield typically granted to companies seeking bankruptcy restructuring, as Purdue is, but rarely extended to owners who do not file for personal bankruptcy. Eight states and the District of Columbia refused to sign on to an earlier proposal because of the Sackler liability shields.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The mediator, Judge Shelley Chapman, a federal bankruptcy judge, said in her report that a “supermajority” of those states had now agreed to the new offer. But holdouts remain and the deal is not yet done.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The earlier offer included a pledge from the Sacklers of $4.55 billion, including a $225 million federal settlement, to be paid out over roughly nine years. Under the new offer, the Sacklers would pay a total of $5.5 billion, with an additional contribution of up to $500 million, contingent on the sale of their international pharmaceutical companies. The Sacklers would have 18 years to make payments of the additional $1 billion.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The bankruptcy plan requires that the Sackler money, plus billions more from Purdue, be given to funds for states, municipalities and tribes dedicated to the treatment and prevention of opioid addiction, and to compensate victims.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Known as “the Nine,” the holdouts, including Connecticut, Washington, California and Maryland, have been at the mediation table with Purdue and the Sacklers since January.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " While negotiations continue, a stay against all litigation against both Purdue and the Sacklers, which has been in place since September 2019, was extended this week and is now set to expire on March 3.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " A representative of one branch of the family, descendants of Mortimer Sackler, declined to comment; representatives of another branch, descendants of Raymond Sackler, did not respond to a comment request.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Judge Chapman has requested an extension of the deadline for mediation talks through February 28. Noting that the “unanimous acceptance” that the Sacklers require has not yet been achieved, she suggested that further talks could either reach that end or craft a different set of plans that would not necessitate unanimity.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In the meantime, Purdue, whose plan was rejected by U.S. District Judge Colleen McMahon in December, is pursuing an appeal in the Second Circuit Court of Appeals. Oral arguments are expected in April.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Purdue released a statement saying: “We remain focused on achieving our goal of providing urgently needed funds to the American people for opioid crisis abatement. We believe a global settlement is the swiftest and most cost-effective exit path from Chapter 11 and we will continue working to build consensus as we proceed through the appeal process with the United States Court of Appeals for the Second Circuit.”\n", " Evidence\n", "\n", "
" @@ -22578,7 +31235,7 @@ { "data": { "text/html": [ - "

nytimes\\sam-waterston-law-and-order.txt

" + "

sam-waterston-law-and-order.txt

" ], "text/plain": [ "" @@ -22591,34 +31248,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-2bf3480c206db853\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-2bf3480c206db853\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-2bf3480c206db853\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-2bf3480c206db853\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "6d9c4cf6c2ed41d7a3bec6fed70b11f3", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " “Law & Order” premiered on NBC in 1990. A procedural that was really two procedurals conjoined, the first half of each episode focused on the investigation of a crime, the second on the prosecution of the accused. Among the original cast members was Michael Moriarty, who played an assistant district attorney. During the fourth season, under clouded circumstances, Moriarty left. As Dick Wolf, who created “Law & Order,” tells it, Warren Littlefield, NBC’s president, questioned whether the show could continue. Wolf thought that it could. “I’ve got two words for you,” he says he told Littlefield. Those words? “Sam Waterston.” Waterston, who had just wrapped the NBC civil rights drama “I’ll Fly Away,” hadn’t been looking for a procedural. Having begun his career as a classical actor, he never really expected to work in television. Still, he agreed — in the short-term, anyway — signing a one-year contract in 1994 to play the principled assistant district attorney Jack McCoy. “I didn’t think I’d be there long,” Waterston recently told me. He stayed for 16 seasons. In those years, “Law & Order” became a cultural touchstone and an extensive franchise (back before seemingly every procedural franchised). Waterston — as his hair silvered and his face cragged — remained its dependable face. When NBC canceled the show, in 2010 — its ratings by then less than half of its early ’00s peak — he went back to classical theater and took prominent roles in Aaron Sorkin’s HBO media drama, “The Newsroom,” and in the Jane Fonda-Lily Tomlin Netflix comedy “Grace and Frankie.” He made a few movies. And then in a twist that even a late-season “Law & Order” writers room might have considered too much, “Law & Order” suddenly returned after a decade away, with Waterston’s McCoy along for the prosecutorial ride. The first episode will premiere on Feb. 24 on NBC (and be available to stream the following day on Peacock and Hulu). And on March 3, Hulu will debut “The Dropout,” a limited series based on the Theranos scandal, in which Waterston plays the former Secretary of State George Shultz. The seventh and final season of “Grace and Frankie” arrives in April, which means that Waterston will have three shows on simultaneously, showcasing his talents for drama, sophisticated impersonation and light comedy. “This is a really sweet time,” he said, as he tidily sipped a bowl of chicken soup. “I’ve always wanted to prove that I can do all kinds of things.” His motto, he told me, is a lyric from the musical “A Chorus Line” about an actor’s desire to do it all: “I can do that! I can do that!” Now he has. This was on a recent weekday afternoon. The forecast had predicted rain — correctly. But Waterston, 81, had still insisted on meeting in Central Park, armed against the wintry mix in a broad-brimmed hat, a leather jacket and an umbrella that he mostly left furled. He had brought me and a photographer to the Delacorte Theater, the longtime home of Shakespeare in the Park and the site of his early career triumphs: Benedick in “Much Ado About Nothing,” the Duke in “Measure for Measure,” Hamlet in “Hamlet.” “His love of that place, you could feel it very tangibly,” Michael Greif, who directed him there in “The Tempest,” told me. It was true. Waterston strode around stage — cheeks reddening, eyes crinkling — like it was summer already, seeming to see not the slush but the work he had done over the past 60 years. “The Delacorte just got the green light to be completely rebuilt,” he said in a nearby Italian restaurant, where we had retreated, damply. “It’s simply too great.” Waterston — plain-spoken, twinkly, wistful — has never needed much in the way of renovation, though he has reinvented himself as an actor several times over. His trip to the Delacorte suggested a man trying to trace a through-line in a hectic career.\n", + " “Law & Order” premiered on NBC in 1990. A procedural that was really two procedurals conjoined, the first half of each episode focused on the investigation of a crime, the second on the prosecution of the accused. Among the original cast members was Michael Moriarty, who played an assistant district attorney. During the fourth season, under clouded circumstances, Moriarty left.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " As Dick Wolf, who created “Law & Order,” tells it, Warren Littlefield, NBC’s president, questioned whether the show could continue. Wolf thought that it could. “I’ve got two words for you,” he says he told Littlefield. Those words? “Sam Waterston.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Waterston, who had just wrapped the NBC civil rights drama “I’ll Fly Away,” hadn’t been looking for a procedural. Having begun his career as a classical actor, he never really expected to work in television. Still, he agreed — in the short-term, anyway — signing a one-year contract in 1994 to play the principled assistant district attorney Jack McCoy.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “I didn’t think I’d be there long,” Waterston recently told me. He stayed for 16 seasons. In those years, “Law & Order” became a cultural touchstone and an extensive franchise (back before seemingly every procedural franchised). Waterston — as his hair silvered and his face cragged — remained its dependable face.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " When NBC canceled the show, in 2010 — its ratings by then less than half of its early ’00s peak — he went back to classical theater and took prominent roles in Aaron Sorkin’s HBO media drama, “The Newsroom,” and in the Jane Fonda-Lily Tomlin Netflix comedy “Grace and Frankie.” He made a few movies. And then in a twist that even a late-season “Law & Order” writers room might have considered too much, “Law & Order” suddenly returned after a decade away, with Waterston’s McCoy along for the prosecutorial ride.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The first episode will premiere on Feb. 24 on NBC (and be available to stream the following day on Peacock and Hulu). And on March 3, Hulu will debut “The Dropout,” a limited series based on the Theranos scandal, in which Waterston plays the former Secretary of State George Shultz. The seventh and final season of “Grace and Frankie” arrives in April, which means that Waterston will have three shows on simultaneously, showcasing his talents for drama, sophisticated impersonation and light comedy.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “This is a really sweet time,” he said, as he tidily sipped a bowl of chicken soup. “I’ve always wanted to prove that I can do all kinds of things.” His motto, he told me, is a lyric from the musical “A Chorus Line” about an actor’s desire to do it all: “I can do that! I can do that!” Now he has.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " This was on a recent weekday afternoon. The forecast had predicted rain — correctly. But Waterston, 81, had still insisted on meeting in Central Park, armed against the wintry mix in a broad-brimmed hat, a leather jacket and an umbrella that he mostly left furled. He had brought me and a photographer to the Delacorte Theater, the longtime home of Shakespeare in the Park and the site of his early career triumphs: Benedick in “Much Ado About Nothing,” the Duke in “Measure for Measure,” Hamlet in “Hamlet.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “His love of that place, you could feel it very tangibly,” Michael Greif, who directed him there in “The Tempest,” told me. It was true. Waterston strode around stage — cheeks reddening, eyes crinkling — like it was summer already, seeming to see not the slush but the work he had done over the past 60 years.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “The Delacorte just got the green light to be completely rebuilt,” he said in a nearby Italian restaurant, where we had retreated, damply. “It’s simply too great.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Waterston — plain-spoken, twinkly, wistful — has never needed much in the way of renovation, though he has reinvented himself as an actor several times over. His trip to the Delacorte suggested a man trying to trace a through-line in a hectic career.\n", " Evidence\n", "\n", "\n", @@ -22744,7 +31443,12 @@ "\n", "\n", "\n", - " Precocious, he started early, playing a small part in a play directed by his father, who taught at a preparatory school in northwest Massachusetts. At Yale, he continued acting; he can still recall a magical night in which he played Lucky in “Waiting for Godot” and felt that he and the audience “were in this kind of incredible bubble of communication and understanding of each other.” (This was after the Yale Daily News had argued he was too smart for the part, Waterston recalled.) He couldn’t imagine a career in show business — “a crazy business,” he called it. At Yale, he studied more sensible subjects like French and history. He spent a year at the Sorbonne. But somehow he couldn’t stop himself.\n", + " Precocious, he started early, playing a small part in a play directed by his father, who taught at a preparatory school in northwest Massachusetts. At Yale, he continued acting; he can still recall a magical night in which he played Lucky in “Waiting for Godot” and felt that he and the audience “were in this kind of incredible bubble of communication and understanding of each other.” (This was after the Yale Daily News had argued he was too smart for the part, Waterston recalled.)\n", + " Evidence\n", + "\n", + "\n", + "\n", + " He couldn’t imagine a career in show business — “a crazy business,” he called it. At Yale, he studied more sensible subjects like French and history. He spent a year at the Sorbonne. But somehow he couldn’t stop himself.\n", " Evidence\n", "\n", "\n", @@ -22754,7 +31458,32 @@ "\n", "\n", "\n", - " At first the roles that came to him were mostly comic, owing perhaps to his gangling figure and pilgrim looks — long face, sharp nose, superb eyebrows. He looks a lot like a handsome Abraham Lincoln. Waterston disputes the “handsome” part. Dramatic roles came a few years later. Then there were movies, then television, where he often played parts based on real people — Lincoln and others. (“People knew by then that I like to do Shakespeare. And if I liked to do Shakespeare, I must be serious,” he said.) Even as he angled to show his range, some constants remained, like a keen interest in characters in the midst of a moral quandary and a flair for the theatrical leavened by a natural gravitas. “For all his training, he has this incredible ability to be quiet onscreen,” said Elizabeth Meriwether, the showrunner of “The Dropout.” “You can tell he’s thinking onscreen, which is really rare.” And no matter the role, he seemed like a man you could trust. Stephen Colbert at one point introduced him as “the most reasonable seeming man in America.” “Law & Order” came around just as he was worrying how we would pay for four college educations. (He has one child, the actor James Waterston, with his first wife, Barbara Rutledge Johns; and three children, the actresses Elisabeth Waterston and Katherine Waterston and the filmmaker Graham Waterston, with his current wife, Lynn Louisa Woodruff.) The salary was decent and the show filmed in New York City, not too far from his Connecticut farmhouse. “It was just exactly the right moment,” he said. “And it kept me out of trouble. Kept me from doing really dumb stuff.”\n", + " At first the roles that came to him were mostly comic, owing perhaps to his gangling figure and pilgrim looks — long face, sharp nose, superb eyebrows. He looks a lot like a handsome Abraham Lincoln. Waterston disputes the “handsome” part.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Dramatic roles came a few years later. Then there were movies, then television, where he often played parts based on real people — Lincoln and others. (“People knew by then that I like to do Shakespeare. And if I liked to do Shakespeare, I must be serious,” he said.) Even as he angled to show his range, some constants remained, like a keen interest in characters in the midst of a moral quandary and a flair for the theatrical leavened by a natural gravitas.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “For all his training, he has this incredible ability to be quiet onscreen,” said Elizabeth Meriwether, the showrunner of “The Dropout.” “You can tell he’s thinking onscreen, which is really rare.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " And no matter the role, he seemed like a man you could trust. Stephen Colbert at one point introduced him as “the most reasonable seeming man in America.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Law & Order” came around just as he was worrying how we would pay for four college educations. (He has one child, the actor James Waterston, with his first wife, Barbara Rutledge Johns; and three children, the actresses Elisabeth Waterston and Katherine Waterston and the filmmaker Graham Waterston, with his current wife, Lynn Louisa Woodruff.) The salary was decent and the show filmed in New York City, not too far from his Connecticut farmhouse.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “It was just exactly the right moment,” he said. “And it kept me out of trouble. Kept me from doing really dumb stuff.”\n", " Evidence\n", "\n", "\n", @@ -22769,7 +31498,47 @@ "\n", "\n", "\n", - " Of course, “Law & Order” did more than preclude Waterston’s midlife crisis. Popular, influential and respectful of its audience, it made stars of many of its cast members. Even its scene break sound effect — the gavel-like “dun-dun” — became famous. Within a decade, it had birthed a litter of spinoffs, including one show, “Law & Order: Special Victims Unit,” that went on to displace “Gunsmoke” as the longest running television drama ever. (If there’s one thing America loves more than crime, it seems, it’s sex crime.) It helped to reestablish New York City as a viable hub for scripted series, drawing on its deep bench of theater actors. Everyone who’s anyone can list at least one “Law & Order” credit in a Playbill bio. The two-part format of “Law & Order,” which Wolf has described as a murder mystery followed by a moral mystery, proved indestructible. Every member of the original cast departed and still “Law & Order” kept going. (Even after cancellation, the original never really left. Syndicated episodes ran for years on TNT and later seasons can now be streamed on Peacock.) Still, certain characters — Waterston’s McCoy, Jerry Orbach’s Lennie Briscoe (12 seasons), S. Epatha Merkerson’s Anita Van Buren (17 seasons) — became metonyms for the show itself: hardworking, upstanding, bent on justice. The format depends on fixed structures and rhythms. In the early seasons, McCoy had similar scenes in nearly every episode: cross-examinations, in-chambers meeting, closing arguments. That could have made for repetitiveness, but in Waterston’s hands, the formula rarely felt formulaic. “He makes the role and the words unendingly interesting,” Wolf told me in an email. “That takes a level of skill and humanism that not many people possess.” After 12 seasons, the pace had worn him down, and he was happy enough, in 2007, to move into the less demanding role of district attorney, leaving the trial scenes to younger actors. Sometimes, during those late seasons, Waterston regretted not leaving altogether. “I wondered if I had stayed too long at the fair,” he said. Then the show did the leaving for him. Yet, when “Law & Order” came back, so did Waterston — partly as a courtesy to Wolf, partly as a kind of victory lap. “It’s nice to come back and just witness the thing we made,” Waterston said. Walking through the rebuilt sets, now housed in Long Island City, felt like a waking dream, he said. (Still, as in the ’90s, he has signed only a one-year contract.) Anthony Anderson, a veteran of earlier seasons, has also returned, but otherwise the co-stars — including Hugh Dancy and Odelya Halevi as the assistant district attorneys — are all new. Halevi grew up watching Waterston; she used to pretend she was “the female McCoy,” she wrote in an email. When she arrived on set — excited, nervous, occasionally forgetting her lines — he reminded her that they were there to have fun. For Waterston, a lot of the fun has been in that moral mystery Wolf described, in the ways in which each episode’s crime connects to a pertinent social issue. “We’ve done three shows now,” Waterston told me happily as he finished his soup. “Every one of them is about something that’s tearing this place apart. And in the current atmosphere, I think it’s pretty darn cool.”\n", + " Of course, “Law & Order” did more than preclude Waterston’s midlife crisis. Popular, influential and respectful of its audience, it made stars of many of its cast members. Even its scene break sound effect — the gavel-like “dun-dun” — became famous.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Within a decade, it had birthed a litter of spinoffs, including one show, “Law & Order: Special Victims Unit,” that went on to displace “Gunsmoke” as the longest running television drama ever. (If there’s one thing America loves more than crime, it seems, it’s sex crime.) It helped to reestablish New York City as a viable hub for scripted series, drawing on its deep bench of theater actors. Everyone who’s anyone can list at least one “Law & Order” credit in a Playbill bio.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The two-part format of “Law & Order,” which Wolf has described as a murder mystery followed by a moral mystery, proved indestructible. Every member of the original cast departed and still “Law & Order” kept going. (Even after cancellation, the original never really left. Syndicated episodes ran for years on TNT and later seasons can now be streamed on Peacock.) Still, certain characters — Waterston’s McCoy, Jerry Orbach’s Lennie Briscoe (12 seasons), S. Epatha Merkerson’s Anita Van Buren (17 seasons) — became metonyms for the show itself: hardworking, upstanding, bent on justice.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The format depends on fixed structures and rhythms. In the early seasons, McCoy had similar scenes in nearly every episode: cross-examinations, in-chambers meeting, closing arguments. That could have made for repetitiveness, but in Waterston’s hands, the formula rarely felt formulaic.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “He makes the role and the words unendingly interesting,” Wolf told me in an email. “That takes a level of skill and humanism that not many people possess.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " After 12 seasons, the pace had worn him down, and he was happy enough, in 2007, to move into the less demanding role of district attorney, leaving the trial scenes to younger actors. Sometimes, during those late seasons, Waterston regretted not leaving altogether. “I wondered if I had stayed too long at the fair,” he said. Then the show did the leaving for him.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Yet, when “Law & Order” came back, so did Waterston — partly as a courtesy to Wolf, partly as a kind of victory lap. “It’s nice to come back and just witness the thing we made,” Waterston said. Walking through the rebuilt sets, now housed in Long Island City, felt like a waking dream, he said. (Still, as in the ’90s, he has signed only a one-year contract.)\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Anthony Anderson, a veteran of earlier seasons, has also returned, but otherwise the co-stars — including Hugh Dancy and Odelya Halevi as the assistant district attorneys — are all new. Halevi grew up watching Waterston; she used to pretend she was “the female McCoy,” she wrote in an email. When she arrived on set — excited, nervous, occasionally forgetting her lines — he reminded her that they were there to have fun.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " For Waterston, a lot of the fun has been in that moral mystery Wolf described, in the ways in which each episode’s crime connects to a pertinent social issue. “We’ve done three shows now,” Waterston told me happily as he finished his soup. “Every one of them is about something that’s tearing this place apart. And in the current atmosphere, I think it’s pretty darn cool.”\n", " Evidence\n", "\n", "\n", @@ -22779,7 +31548,12 @@ "\n", "\n", "\n", - " “If you go back and look at how the cops behaved in the past, there were plenty of times when the audience was invited to disapprove of how they were behaving,” he said. “Now, there’s more.” The show addresses this tension in its season premiere. Halfway through the episode, District Attorney Jack McCoy appears — his voice reedier, his hair and eyebrows more silver — telling a younger colleague, “Like it or not, the big bad police department is our partner.”\n", + " “If you go back and look at how the cops behaved in the past, there were plenty of times when the audience was invited to disapprove of how they were behaving,” he said. “Now, there’s more.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The show addresses this tension in its season premiere. Halfway through the episode, District Attorney Jack McCoy appears — his voice reedier, his hair and eyebrows more silver — telling a younger colleague, “Like it or not, the big bad police department is our partner.”\n", " Evidence\n", "\n", "\n", @@ -22789,7 +31563,12 @@ "\n", "\n", "\n", - " “I guess there would be a way to just put on the old suit,” he said. “But I think it’s good for you as an actor — and it’s my nature anyway — to be on the edge of uncertainty.” Besides, Waterston has changed in the intervening decade — grown older, welcomed more grandchildren — which means that Jack McCoy might have changed a little, too. Think of it as one more mystery, maybe the ultimate mystery, for this revived “Law & Order.” Waterston is already on the case.\n", + " “I guess there would be a way to just put on the old suit,” he said. “But I think it’s good for you as an actor — and it’s my nature anyway — to be on the edge of uncertainty.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Besides, Waterston has changed in the intervening decade — grown older, welcomed more grandchildren — which means that Jack McCoy might have changed a little, too. Think of it as one more mystery, maybe the ultimate mystery, for this revived “Law & Order.” Waterston is already on the case.\n", " Evidence\n", "\n", "\n", @@ -22818,7 +31597,7 @@ { "data": { "text/html": [ - "

nytimes\\san-francisco-school-board-parents.txt

" + "

san-francisco-school-board-parents.txt

" ], "text/plain": [ "" @@ -22831,34 +31610,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-fc7cedae44f55900\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-fc7cedae44f55900\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-fc7cedae44f55900\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-fc7cedae44f55900\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "b18e0c94d0ca48bfa9f22ae5f4ac4223", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00\n", "\n", "\n", - " The lopsided victory in a recall election on Tuesday that ousted three members of the San Francisco school board shook the city’s liberal establishment and was a resounding alarm of parental anger over the way the public school system handled the coronavirus pandemic. Parents of varying ethnicities and income levels who had coalesced last year while San Francisco schools remained closed — they stayed shut for much longer than those in other large cities — organized themselves through Facebook groups and vowed to push out Board of Education members for what they saw as incompetence. They kept their promise: The three commissioners were removed by as much as 79 percent of voters, an unequivocal rejection in a city renowned for fractious politics. For many Asian Americans in the city, especially the large Chinese American community, the results were an affirmation of the group’s voting power, coming with a high degree of organizing, turnout and intensity not seen in many years. In an election where every registered voter received a ballot, overall turnout was relatively low at 26 percent; turnout among the 30,000 people who requested Chinese-language ballots was significantly higher at 37 percent. In an overwhelmingly liberal city, Asian American voters have sided with Democrats for decades. But in recent years, a growing number of Chinese residents, many of them born in mainland China, have become a moderating political force. Most Chinese residents in the city are registered as independents and, as Tuesday’s election appeared to show, they are not afraid to buck some of the more liberal elements of the Democratic Party. It is a pattern that has emerged in other cities, like New York, that are largely Democratic with significant Asian American populations. “They are absolutely up for grabs,” David Lee, a political science lecturer at San Francisco State University, said of Asian American voters in the city. In Tuesday’s election, two issues in particular motivated Chinese American voters. The Board of Education had voted to put in place a lottery admission system at the highly selective Lowell High School, replacing an admission process that primarily selected students with the highest grades and test scores. Lowell, whose long list of notable alumni includes Justice Stephen G. Breyer, for decades had represented what one community member described as the “gateway to the American dream.” The introduction of the lottery system has reduced the number of Asian and white ninth graders at Lowell by around one-quarter and increased Black and Latino ninth graders by more than 40 percent. Chinese voters were also upset by tweets by Alison Collins, one of the recalled school board members, that were unearthed during the campaign. Ms. Collins said Asian Americans used “white supremacist thinking to assimilate and ‘get ahead.’” She went on to compare Asian Americans to slaves who had the advantage of working inside a slave owner’s home instead of doing more grueling labor in the fields, using asterisks to mask an anti-Black racial slur. The tweets reinforced a sentiment among many Chinese voters of being taken for granted, underrepresented and insulted, people involved in the recall campaign said. Asian American voters also said they were motivated by issues beyond the actions of the board: The number of high-profile attacks against Asian Americans, many of them older, has traumatized the community. And many Chinese-owned businesses were suffering the effects of pandemic closures, especially in Chinatown.\n", + " The lopsided victory in a recall election on Tuesday that ousted three members of the San Francisco school board shook the city’s liberal establishment and was a resounding alarm of parental anger over the way the public school system handled the coronavirus pandemic.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Parents of varying ethnicities and income levels who had coalesced last year while San Francisco schools remained closed — they stayed shut for much longer than those in other large cities — organized themselves through Facebook groups and vowed to push out Board of Education members for what they saw as incompetence. They kept their promise: The three commissioners were removed by as much as 79 percent of voters, an unequivocal rejection in a city renowned for fractious politics.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " For many Asian Americans in the city, especially the large Chinese American community, the results were an affirmation of the group’s voting power, coming with a high degree of organizing, turnout and intensity not seen in many years. In an election where every registered voter received a ballot, overall turnout was relatively low at 26 percent; turnout among the 30,000 people who requested Chinese-language ballots was significantly higher at 37 percent.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In an overwhelmingly liberal city, Asian American voters have sided with Democrats for decades. But in recent years, a growing number of Chinese residents, many of them born in mainland China, have become a moderating political force. Most Chinese residents in the city are registered as independents and, as Tuesday’s election appeared to show, they are not afraid to buck some of the more liberal elements of the Democratic Party. It is a pattern that has emerged in other cities, like New York, that are largely Democratic with significant Asian American populations.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “They are absolutely up for grabs,” David Lee, a political science lecturer at San Francisco State University, said of Asian American voters in the city.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In Tuesday’s election, two issues in particular motivated Chinese American voters. The Board of Education had voted to put in place a lottery admission system at the highly selective Lowell High School, replacing an admission process that primarily selected students with the highest grades and test scores. Lowell, whose long list of notable alumni includes Justice Stephen G. Breyer, for decades had represented what one community member described as the “gateway to the American dream.” The introduction of the lottery system has reduced the number of Asian and white ninth graders at Lowell by around one-quarter and increased Black and Latino ninth graders by more than 40 percent.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Chinese voters were also upset by tweets by Alison Collins, one of the recalled school board members, that were unearthed during the campaign. Ms. Collins said Asian Americans used “white supremacist thinking to assimilate and ‘get ahead.’” She went on to compare Asian Americans to slaves who had the advantage of working inside a slave owner’s home instead of doing more grueling labor in the fields, using asterisks to mask an anti-Black racial slur. The tweets reinforced a sentiment among many Chinese voters of being taken for granted, underrepresented and insulted, people involved in the recall campaign said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Asian American voters also said they were motivated by issues beyond the actions of the board: The number of high-profile attacks against Asian Americans, many of them older, has traumatized the community. And many Chinese-owned businesses were suffering the effects of pandemic closures, especially in Chinatown.\n", " Evidence\n", "\n", "\n", @@ -22989,7 +31795,32 @@ "\n", "\n", "\n", - " Asian Americans make up about 36 percent of San Francisco’s population, one of the largest such communities in a major city, but they are an incredibly diverse group that includes Filipinos, Indians, Vietnamese and Thais and features different economic, linguistic and ethnic backgrounds. Chinese Americans are by far the largest Asian group, making up 23 percent of San Francisco’s population. Forty percent of the population is white, 15 percent Latino and 6 percent Black. The ouster of the three board members will elevate the only Chinese American member of the seven-person board to the position of president. And it puts Mayor London Breed in the delicate position of appointing three replacement members who will be acceptable to the parents now closely watching the process. Recall campaigners say they hope more Asian Americans will be appointed to the board. Autumn Looijen, who with her partner, Siva Raj, organized signature gathering and initiated the recall campaign, described the Chinese American community as crucial to the recall’s success. “They were the backbone of our volunteer efforts,” Ms. Looijen said. “They have been really powering this campaign from the beginning.” During the campaign, organizers used WeChat, the Chinese-language messaging app, to offer everything from detailed instructions on how to fill out a ballot to organizing the deployment of volunteers in Chinatown, where lion dances and drumming exhorted residents to vote. “We shall be silent no more,” said a flier in English and Chinese handed out by the Chinese American Democratic Club.\n", + " Asian Americans make up about 36 percent of San Francisco’s population, one of the largest such communities in a major city, but they are an incredibly diverse group that includes Filipinos, Indians, Vietnamese and Thais and features different economic, linguistic and ethnic backgrounds. Chinese Americans are by far the largest Asian group, making up 23 percent of San Francisco’s population. Forty percent of the population is white, 15 percent Latino and 6 percent Black.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The ouster of the three board members will elevate the only Chinese American member of the seven-person board to the position of president. And it puts Mayor London Breed in the delicate position of appointing three replacement members who will be acceptable to the parents now closely watching the process. Recall campaigners say they hope more Asian Americans will be appointed to the board.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Autumn Looijen, who with her partner, Siva Raj, organized signature gathering and initiated the recall campaign, described the Chinese American community as crucial to the recall’s success.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “They were the backbone of our volunteer efforts,” Ms. Looijen said. “They have been really powering this campaign from the beginning.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " During the campaign, organizers used WeChat, the Chinese-language messaging app, to offer everything from detailed instructions on how to fill out a ballot to organizing the deployment of volunteers in Chinatown, where lion dances and drumming exhorted residents to vote.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “We shall be silent no more,” said a flier in English and Chinese handed out by the Chinese American Democratic Club.\n", " Evidence\n", "\n", "\n", @@ -22999,7 +31830,12 @@ "\n", "\n", "\n", - " Ms. Chu, the woman who sent the WeChat message urging people to vote, said she grew up with parents who advised her to remain quiet if she felt she was being treated unfairly. Many first-generation immigrants still feel that way, she said. Now a mother of two children in the San Francisco public school system, Ms. Chu felt compelled, for the first time, to become actively involved in an election. Her hands hurt, she said, from texting so much on WeChat during the campaign.\n", + " Ms. Chu, the woman who sent the WeChat message urging people to vote, said she grew up with parents who advised her to remain quiet if she felt she was being treated unfairly. Many first-generation immigrants still feel that way, she said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Now a mother of two children in the San Francisco public school system, Ms. Chu felt compelled, for the first time, to become actively involved in an election. Her hands hurt, she said, from texting so much on WeChat during the campaign.\n", " Evidence\n", "\n", "\n", @@ -23009,17 +31845,37 @@ "\n", "\n", "\n", - " “This year a lot of parents are telling me, ‘We are done with being scapegoats,’” Ms. Chu said. “We are still being looked at as foreigners,” she said. “We are Americans. You have to give us respect.”\n", + " “This year a lot of parents are telling me, ‘We are done with being scapegoats,’” Ms. Chu said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “We are still being looked at as foreigners,” she said. “We are Americans. You have to give us respect.”\n", " Evidence\n", "\n", "\n", "\n", - " She called the recall election a milestone for the Asian American community. “They finally understand the power of their vote,” she said. Crucial to the organizing efforts was Ann Hsu, a Beijing-born entrepreneur with decades of experience in starting up and managing companies in both China and the United States.\n", + " She called the recall election a milestone for the Asian American community.\n", + " Claim\n", + "\n", + "\n", + "\n", + " “They finally understand the power of their vote,” she said.\n", + " Claim\n", + "\n", + "\n", + "\n", + " Crucial to the organizing efforts was Ann Hsu, a Beijing-born entrepreneur with decades of experience in starting up and managing companies in both China and the United States.\n", " Claim\n", "\n", "\n", "\n", - " Ms. Hsu used her management experience to organize volunteers and set campaign strategies. She ignored the English-language media and instead focused tightly on Chinese-language newspapers, YouTube channels and advertising. She and her volunteers distributed thousands of yellow shopping bags emblazoned with recall messages and gave them out to older Chinese residents. She set up a task force that registered 560 residents, almost all of them Asian Americans, to vote. Using WeChat to organize her operations had the added advantage of breaking a language barrier: She speaks Mandarin while other residents are more comfortable in Cantonese. The written messages could be understood by all.\n", + " Ms. Hsu used her management experience to organize volunteers and set campaign strategies. She ignored the English-language media and instead focused tightly on Chinese-language newspapers, YouTube channels and advertising. She and her volunteers distributed thousands of yellow shopping bags emblazoned with recall messages and gave them out to older Chinese residents. She set up a task force that registered 560 residents, almost all of them Asian Americans, to vote.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Using WeChat to organize her operations had the added advantage of breaking a language barrier: She speaks Mandarin while other residents are more comfortable in Cantonese. The written messages could be understood by all.\n", " Evidence\n", "\n", "\n", @@ -23049,12 +31905,22 @@ "\n", "\n", "\n", - " The debate over admission to elite public high schools has galvanized Asian parents in other cities, notably New York. In both San Francisco and New York, the issue cleaves liberal voters who are torn between a desire to maintain a system that has traditionally benefited high-achieving students from poorer, often immigrant, backgrounds but at the same time left behind Black and Latino students. In New York, where Black and Latino students are disproportionately underrepresented in the elite public high schools, the issue of school segregation rose to the fore during New York’s mayoral election last year. Left-leaning candidates called for a fundamental overhaul of the admissions standards while centrist candidates called for its retention. Among those who promised to keep the test was Eric Adams, the current mayor.\n", + " The debate over admission to elite public high schools has galvanized Asian parents in other cities, notably New York. In both San Francisco and New York, the issue cleaves liberal voters who are torn between a desire to maintain a system that has traditionally benefited high-achieving students from poorer, often immigrant, backgrounds but at the same time left behind Black and Latino students.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In New York, where Black and Latino students are disproportionately underrepresented in the elite public high schools, the issue of school segregation rose to the fore during New York’s mayoral election last year. Left-leaning candidates called for a fundamental overhaul of the admissions standards while centrist candidates called for its retention. Among those who promised to keep the test was Eric Adams, the current mayor.\n", " Evidence\n", "\n", "\n", "\n", - " Ms. Collins, the board member who was criticized for her tweets, said during the campaign that she had “desegregated” Lowell. In the wake of the lopsided recall, political analysts are weighing whether the energy and fervor of the campaign will carry over into other elections both in the city and nationally.\n", + " Ms. Collins, the board member who was criticized for her tweets, said during the campaign that she had “desegregated” Lowell.\n", + " Claim\n", + "\n", + "\n", + "\n", + " In the wake of the lopsided recall, political analysts are weighing whether the energy and fervor of the campaign will carry over into other elections both in the city and nationally.\n", " Claim\n", "\n", "\n", @@ -23093,7 +31959,7 @@ { "data": { "text/html": [ - "

nytimes\\sanctions-russia-ukraine.txt

" + "

sanctions-russia-ukraine.txt

" ], "text/plain": [ "" @@ -23106,34 +31972,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-3d2cddd67451a3b1\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-3d2cddd67451a3b1\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-3d2cddd67451a3b1\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-3d2cddd67451a3b1\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "385f5625de464018bfe9d22c2e3d2957", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " There are two clashing arguments about whether the threat of economic sanctions can be effective now in deterring Russian aggression in Ukraine. One is that sanctions against Russia following the 2014 invasion of Ukraine didn’t prompt any improvement in behavior, nor did sanctions promote good behavior when imposed against Cuba, Iran, Iraq, North Korea and Venezuela. So it’s unrealistic to expect sterner sanctions to work against Russia this time. The contrary view is that sanctions would be effective now because they could cause real economic pain. It’s the Russians themselves, oddly enough, who have expressed this view most prominently. In 2014, Alexei Kudrin, a former finance minister who is close to President Vladimir Putin, said that cutting off Russia’s access to Swift, a bank messaging network that proponents of sanctions have contemplated using as leverage, could cause Russian gross domestic product to fall 5 percent. In 2019, according to the Moscow-controlled broadcaster RT, the prime minister, Dmitri Medvedev, said that cutting off Swift access would be regarded as virtually a declaration of war.\n", + " There are two clashing arguments about whether the threat of economic sanctions can be effective now in deterring Russian aggression in Ukraine. One is that sanctions against Russia following the 2014 invasion of Ukraine didn’t prompt any improvement in behavior, nor did sanctions promote good behavior when imposed against Cuba, Iran, Iraq, North Korea and Venezuela. So it’s unrealistic to expect sterner sanctions to work against Russia this time.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The contrary view is that sanctions would be effective now because they could cause real economic pain. It’s the Russians themselves, oddly enough, who have expressed this view most prominently. In 2014, Alexei Kudrin, a former finance minister who is close to President Vladimir Putin, said that cutting off Russia’s access to Swift, a bank messaging network that proponents of sanctions have contemplated using as leverage, could cause Russian gross domestic product to fall 5 percent. In 2019, according to the Moscow-controlled broadcaster RT, the prime minister, Dmitri Medvedev, said that cutting off Swift access would be regarded as virtually a declaration of war.\n", " Evidence\n", "\n", "\n", @@ -23231,7 +32091,62 @@ "\n", "\n", "\n", - " In a hopeful sign on Tuesday, Putin said that Russia would “partially pull back troops” near the border with Ukraine and was seeking a “diplomatic path” to work out its differences with the West. On Wednesday, though, the United States and NATO said they had seen no sign of a pullback. International relations scholars by and large support sanctions despite their so-so record to date. Nearly 90 percent of 362 scholars at U.S. universities who were surveyed in December and January favored economic sanctions in case of a Russian invasion of Ukraine, according to researchers at the College of William and Mary and the University of Denver. One oddity of the debate is that a Swift cutoff, which is sometimes described as the nuclear option, would be less devastating than many Westerners — and, apparently, many Russians — seem to think. Swift, which is officially the Society for Worldwide Interbank Financial Telecommunications, is a messaging network connecting more than 11,000 financial institutions. It doesn’t move money itself but it lubricates transactions through messages that confirm the identities of senders and recipients and track that the money moves as intended. Trying to do international banking business without Swift is cumbersome and costly but not impossible. Russian banks could do business (albeit laboriously) by email, fax machine or possibly even telex, the telegraph-like system that preceded Swift and still exists vestigially. The bigger risk to Russia would come from certain other measures that are under discussion. Most significantly, the Biden administration could simply prohibit U.S. banks from dealing with their Russian counterparts, which would make Swift access largely irrelevant. Most of the rest of the world’s banks would most likely follow suit for fear of running afoul of the United States if a transaction between them and Russia inadvertently triggered an interaction with a U.S. bank. A cutoff from Swift could be imposed sometime later to mop up some of the banking transactions that might still be occurring despite a ban imposed by allied nations. To better understand how this would work, I spoke with Brian O’Toole, a nonresident senior fellow with the Atlantic Council’s GeoEconomics Center and a former senior adviser to the director of the Office of Foreign Assets Control at the Department of the Treasury. He gave an example of a currency conversion: To turn rubles into euros, foreign-exchange dealers typically use dollars as the go-between, first exchanging the rubles for dollars and then exchanging the dollars for euros. The portion of the transaction involving dollars would usually be cleared through the United States and thus violate U.S. sanctions, O’Toole said. Railways, metals and mining, insurance and diamonds are other sectors that the United States and its allies might target with sanctions, O’Toole said. Companies in the United States and other countries could be effectively blocked from selling Russia critical components such as computer chips. The consideration of such extreme measures reflects America’s abandonment of hope that Putin can be cajoled into becoming a responsible player on the world stage. The perfect sanction would penalize Putin and his cronies while causing no harm to ordinary Russian citizens or to the United States and its allies. Alas, such a sanction does not exist, says Emily Kilcrease, senior fellow and director of the energy, economics and security program at the Center for a New American Security in Washington. “We do need to be willing to take some of that pain as well,” Kilcrease told me. “We’ve already used the sanctions that don’t cause us a lot of pain,” such as travel bans on Putin allies and a ban on providing technology and loans to the Russian oil and gas sector. New sanctions would hurt companies that do business with Russia and could lead to retaliation. “Western banks should be prepared for cyberattacks,” Kilcrease said. “Clearly there is a scenario here where there’s a further escalation.” Russia has braced itself for sanctions by building its stockpile of foreign-exchange reserves. Likewise the West has braced itself by, among other things, asking oil and gas producers to be prepared to raise their output if needed to offset the loss of fuel from Russia. The West’s strategy must be a calculated combination of clarity and ambiguity, Kilcrease said. “The piece you want to be clear about is the range of options you’re considering,” she said. On the other hand, she added: “We don’t want to give him the entire playbook because then he could say, ‘Well, we can live with that.’ We want to leave room for escalation if needed.” The share of U.S. local daily newspapers owned by private equity funds increased from about 5 percent in 2002 to about 23 percent in 2019. What was the result? To find out, Michael Ewens of the California Institute of Technology and Arpit Gupta and Sabrina Howell of New York University’s Stern School of Business painstakingly built and then analyzed a database of 1,610 newspapers, 262 of which have ever been owned by private equity. In a working paper circulated by the National Bureau of Economic Research this month, Ewens, Gupta and Howell conclude that private-equity ownership leads to higher digital circulation and lower chances of newspapers’ shutting down. However, they write, “the composition of news shifts away from local governance, the number of reporters and editors falls, and participation in local elections declines.”\n", + " In a hopeful sign on Tuesday, Putin said that Russia would “partially pull back troops” near the border with Ukraine and was seeking a “diplomatic path” to work out its differences with the West. On Wednesday, though, the United States and NATO said they had seen no sign of a pullback.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " International relations scholars by and large support sanctions despite their so-so record to date. Nearly 90 percent of 362 scholars at U.S. universities who were surveyed in December and January favored economic sanctions in case of a Russian invasion of Ukraine, according to researchers at the College of William and Mary and the University of Denver.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " One oddity of the debate is that a Swift cutoff, which is sometimes described as the nuclear option, would be less devastating than many Westerners — and, apparently, many Russians — seem to think. Swift, which is officially the Society for Worldwide Interbank Financial Telecommunications, is a messaging network connecting more than 11,000 financial institutions. It doesn’t move money itself but it lubricates transactions through messages that confirm the identities of senders and recipients and track that the money moves as intended. Trying to do international banking business without Swift is cumbersome and costly but not impossible. Russian banks could do business (albeit laboriously) by email, fax machine or possibly even telex, the telegraph-like system that preceded Swift and still exists vestigially.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The bigger risk to Russia would come from certain other measures that are under discussion. Most significantly, the Biden administration could simply prohibit U.S. banks from dealing with their Russian counterparts, which would make Swift access largely irrelevant. Most of the rest of the world’s banks would most likely follow suit for fear of running afoul of the United States if a transaction between them and Russia inadvertently triggered an interaction with a U.S. bank. A cutoff from Swift could be imposed sometime later to mop up some of the banking transactions that might still be occurring despite a ban imposed by allied nations.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " To better understand how this would work, I spoke with Brian O’Toole, a nonresident senior fellow with the Atlantic Council’s GeoEconomics Center and a former senior adviser to the director of the Office of Foreign Assets Control at the Department of the Treasury. He gave an example of a currency conversion: To turn rubles into euros, foreign-exchange dealers typically use dollars as the go-between, first exchanging the rubles for dollars and then exchanging the dollars for euros. The portion of the transaction involving dollars would usually be cleared through the United States and thus violate U.S. sanctions, O’Toole said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Railways, metals and mining, insurance and diamonds are other sectors that the United States and its allies might target with sanctions, O’Toole said. Companies in the United States and other countries could be effectively blocked from selling Russia critical components such as computer chips. The consideration of such extreme measures reflects America’s abandonment of hope that Putin can be cajoled into becoming a responsible player on the world stage.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The perfect sanction would penalize Putin and his cronies while causing no harm to ordinary Russian citizens or to the United States and its allies. Alas, such a sanction does not exist, says Emily Kilcrease, senior fellow and director of the energy, economics and security program at the Center for a New American Security in Washington.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “We do need to be willing to take some of that pain as well,” Kilcrease told me. “We’ve already used the sanctions that don’t cause us a lot of pain,” such as travel bans on Putin allies and a ban on providing technology and loans to the Russian oil and gas sector. New sanctions would hurt companies that do business with Russia and could lead to retaliation. “Western banks should be prepared for cyberattacks,” Kilcrease said. “Clearly there is a scenario here where there’s a further escalation.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Russia has braced itself for sanctions by building its stockpile of foreign-exchange reserves. Likewise the West has braced itself by, among other things, asking oil and gas producers to be prepared to raise their output if needed to offset the loss of fuel from Russia.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The West’s strategy must be a calculated combination of clarity and ambiguity, Kilcrease said. “The piece you want to be clear about is the range of options you’re considering,” she said. On the other hand, she added: “We don’t want to give him the entire playbook because then he could say, ‘Well, we can live with that.’ We want to leave room for escalation if needed.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The share of U.S. local daily newspapers owned by private equity funds increased from about 5 percent in 2002 to about 23 percent in 2019. What was the result? To find out, Michael Ewens of the California Institute of Technology and Arpit Gupta and Sabrina Howell of New York University’s Stern School of Business painstakingly built and then analyzed a database of 1,610 newspapers, 262 of which have ever been owned by private equity.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In a working paper circulated by the National Bureau of Economic Research this month, Ewens, Gupta and Howell conclude that private-equity ownership leads to higher digital circulation and lower chances of newspapers’ shutting down. However, they write, “the composition of news shifts away from local governance, the number of reporters and editors falls, and participation in local elections declines.”\n", " Evidence\n", "\n", "\n", @@ -23265,7 +32180,7 @@ { "data": { "text/html": [ - "

nytimes\\school-board-recall.txt

" + "

school-board-recall.txt

" ], "text/plain": [ "" @@ -23278,34 +32193,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-b2816dff2cb77508\n" + "Using custom data configuration default-b2816dff2cb77508\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-b2816dff2cb77508\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-b2816dff2cb77508\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" - ] - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "020a2d3081b545d6809abde2432a44f6", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00\n", "\n", "\n", - " I am not immune to this style of political fortune telling, but what’s more interesting to me is what actually drives these predictions of doom for Democrats. Two assumptions seem to be lurking somewhere underneath the surface. The first: School closures irreparably harmed the Democratic Party. The second: There is a backlash against diversity and equity measures, many of which were established after the nationwide George Floyd protests.\n", + " I am not immune to this style of political fortune telling, but what’s more interesting to me is what actually drives these predictions of doom for Democrats. Two assumptions seem to be lurking somewhere underneath the surface.\n", + " Claim\n", + "\n", + "\n", + "\n", + " The first: School closures irreparably harmed the Democratic Party.\n", + " Claim\n", + "\n", + "\n", + "\n", + " The second: There is a backlash against diversity and equity measures, many of which were established after the nationwide George Floyd protests.\n", " Claim\n", "\n", "\n", "\n", - " So on Tuesday, when the deep blue city of San Francisco recalled three ultraprogressive, equity-focused members of the school board, ousting them in stunning three-to-one votes, what are we to make of it? Is it a harbinger of coming catastrophe for Democrats? Or are we dealing with a local election with local concerns? Was the recall the result of parents who were frustrated by the extended closures of schools even when the city had low coronavirus positivity and death rates? At times, the board members had seemed more concerned with renaming schools, including one named after Abraham Lincoln, than with figuring out a plan to reopen.\n", + " So on Tuesday, when the deep blue city of San Francisco recalled three ultraprogressive, equity-focused members of the school board, ousting them in stunning three-to-one votes, what are we to make of it? Is it a harbinger of coming catastrophe for Democrats? Or are we dealing with a local election with local concerns?\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Was the recall the result of parents who were frustrated by the extended closures of schools even when the city had low coronavirus positivity and death rates? At times, the board members had seemed more concerned with renaming schools, including one named after Abraham Lincoln, than with figuring out a plan to reopen.\n", " Evidence\n", "\n", "\n", @@ -23423,20 +32327,75 @@ "\n", "\n", "\n", - " Or is Alison Collins, the most controversial of the three school board officials who were forced out, the reason for it all? The wife of a wealthy real estate developer, she was responsible for much-publicized and seemingly anti-Asian tweets, followed by an absurd $87 million lawsuit against the city, the school district and her fellow school board members. If you connect any one of these factors with the landslide results, you can construct various narratives about the failure of the Democratic Party — overzealous Covid restrictions, out-of-control wokeness or being oblivious to an angry class of parents who just want their kids to be able to work hard and succeed. The school board vote reflects all of these things, of course, but not in equal proportion. Parents may have been impatient with the length of the school closures, and many may point to the strangeness of the board’s obsession with renaming schools while students were sitting at home, but the Bay Area shut down earlier than most parts of the country, and many residents here are proud of the region’s relatively low Covid toll. Attitudes about closures have changed, but this isn’t a city that’s exactly bursting with anti-mask, anti-vaccine and anti-lockdown sentiment. That hasn’t stopped some pundits from declaring that the recall signals the end of all progressive politics, especially in places that had extended school closures. A Republican lawmaker on Fox News declared that the results signaled a coming “red wave” in the midterms. This doesn’t mean that the shuttering of schools had no effect on the vote — I’m quite certain it had a large role — but it doesn’t seem to have been the catalyst. A recall requires people to go out and get signatures, file motions and keep up a lengthy campaign. Do we really believe that San Francisco, of all places, became so radicalized against school closures that they triggered the recall in the early months of 2021? What’s far more likely — and supported by the voting data — is that the recall was mostly brought about by a coalition of parents who were mad about the changes at Lowell. On Feb. 2, 2021, members of the school board put forth a resolution to end test-based admissions at the school permanently and to use instead the district’s standard lottery system as a way to diversify the mostly white and Asian student body. On Feb. 9 the school board voted 5 to 2 to adopt the resolution. Ten days later, two parents began the campaign to recall the three school board members. The vote capped a year of organizing by a mostly Asian American bloc of parents and citizens. Investors provided much of the campaign’s funding. The large amount — over $2 million in total — has raised questions about whether the effort was just an attempt by Silicon Valley and Wall Street to beat back equity efforts in public schools.\n", + " Or is Alison Collins, the most controversial of the three school board officials who were forced out, the reason for it all? The wife of a wealthy real estate developer, she was responsible for much-publicized and seemingly anti-Asian tweets, followed by an absurd $87 million lawsuit against the city, the school district and her fellow school board members.\n", " Evidence\n", "\n", "\n", - "\n", - " But this sort of dismissal belies the actual organizing that went into the effort and the work of hundreds of volunteers who collected signatures for the recall election throughout the city. It also ignores relatively high turnout rates in Asian neighborhoods and the overwhelming majority of those residents who voted to recall.\n", - " Rebuttal\n", + "\n", + " If you connect any one of these factors with the landslide results, you can construct various narratives about the failure of the Democratic Party — overzealous Covid restrictions, out-of-control wokeness or being oblivious to an angry class of parents who just want their kids to be able to work hard and succeed.\n", + " Evidence\n", "\n", "\n", "\n", - " As a resident of the Bay Area, I first came across these activists last year while waiting in line outside H Mart, a Korean grocery chain whose San Francisco location is in the southern part of the city. I go to H Mart quite regularly, and for months, nearly every time I went, I would see the same people — mostly elderly Chinese American men and women — standing out front with their fliers and petitions. Asian Americans who normally might not have been involved in the political process started standing in front of restaurants and on corners to collect signatures. This was true in Asian and even non-Asian neighborhoods throughout the city. They reminded me of the efforts of Richard Close, who, before his recent death, was the president of the Sherman Oaks Homeowners Association in Los Angeles. I wrote about his grass-roots successes in an earlier edition of the newsletter. He was behind monumental changes to California’s landscape, including Proposition 13, the landmark property tax bill, which may very well be the most consequential law on the state books. Throughout his career, progressives dismissed Close’s activism and his remarkable organizing skills. Instead, they pointed to the fact that he represented a largely wealthy and white constituency and suggested that he had somehow used his power and influence to get undemocratic results. This may have been true, but he had a talent for collecting converts in grocery store parking lots and strip malls, building voting blocs that showed up to every seemingly unimportant election. The activists behind the recall effort in San Francisco may not have known who Close was, but they seem to have followed his playbook of organizing within neighborhoods, flexing voting power in low-turnout elections and putting together a platform based entirely on self-interest. Along the way, they picked up important political endorsements — Mayor London Breed and State Senator Scott Wiener supported the recall (Wiener announced his support the day after Youngkin won in Virginia) — and built connections with existing community groups. Before long, they had a full-fledged political coalition that took down three members of a local school board. If you want another example of what a group like this can do, consider the leaders of the Asian American organizations that allied with the conservative legal activist Edward Blum to sue Harvard over affirmative action. The case, now before the Supreme Court, will likely bring about an end to race-based college admissions throughout the country. The origins of this group don’t lie in Republican dark money or disinformation campaigns. Instead, they first organized in 2013 because they wanted to protest what they felt was a racist sketch on the Jimmy Kimmel show. They got Kimmel to apologize and moved on to fight affirmative action in California before turning their attention to Harvard and the Supreme Court. When all the narratives about the recall of the three board members and what it means for Democrats wind to their end, that foundation of organized Asian Americans will still be there. In San Francisco they provided a glimpse of reality amid all the theorizing on wokeness, Covid fatigue and red waves in the midterms and beyond. It’s hard to imagine that any result in a blue city within a blue state will tell us all that much about what’s coming in 2022 or 2024; not all politics take place on such grand, national stages. A lot of times, it’s just angry citizens organizing out of pure self-interest — in this case in opposition to equity efforts at a magnet school — and then drawing in others who might be mad at the same people about Covid closures, school renamings or whatever else. The San Francisco outcome should remind us that politics is still local.\n", + " The school board vote reflects all of these things, of course, but not in equal proportion. Parents may have been impatient with the length of the school closures, and many may point to the strangeness of the board’s obsession with renaming schools while students were sitting at home, but the Bay Area shut down earlier than most parts of the country, and many residents here are proud of the region’s relatively low Covid toll. Attitudes about closures have changed, but this isn’t a city that’s exactly bursting with anti-mask, anti-vaccine and anti-lockdown sentiment.\n", " Evidence\n", "\n", - "
" + "\n", + "\n", + " That hasn’t stopped some pundits from declaring that the recall signals the end of all progressive politics, especially in places that had extended school closures. A Republican lawmaker on Fox News declared that the results signaled a coming “red wave” in the midterms. This doesn’t mean that the shuttering of schools had no effect on the vote — I’m quite certain it had a large role — but it doesn’t seem to have been the catalyst. A recall requires people to go out and get signatures, file motions and keep up a lengthy campaign. Do we really believe that San Francisco, of all places, became so radicalized against school closures that they triggered the recall in the early months of 2021?\n", + " Evidence\n", + "\n", + "\n", + "\n", + " What’s far more likely — and supported by the voting data — is that the recall was mostly brought about by a coalition of parents who were mad about the changes at Lowell. On Feb. 2, 2021, members of the school board put forth a resolution to end test-based admissions at the school permanently and to use instead the district’s standard lottery system as a way to diversify the mostly white and Asian student body. On Feb. 9 the school board voted 5 to 2 to adopt the resolution. Ten days later, two parents began the campaign to recall the three school board members.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The vote capped a year of organizing by a mostly Asian American bloc of parents and citizens. Investors provided much of the campaign’s funding. The large amount — over $2 million in total — has raised questions about whether the effort was just an attempt by Silicon Valley and Wall Street to beat back equity efforts in public schools.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " But this sort of dismissal belies the actual organizing that went into the effort and the work of hundreds of volunteers who collected signatures for the recall election throughout the city. It also ignores relatively high turnout rates in Asian neighborhoods and the overwhelming majority of those residents who voted to recall.\n", + " Rebuttal\n", + "\n", + "\n", + "\n", + " As a resident of the Bay Area, I first came across these activists last year while waiting in line outside H Mart, a Korean grocery chain whose San Francisco location is in the southern part of the city. I go to H Mart quite regularly, and for months, nearly every time I went, I would see the same people — mostly elderly Chinese American men and women — standing out front with their fliers and petitions. Asian Americans who normally might not have been involved in the political process started standing in front of restaurants and on corners to collect signatures. This was true in Asian and even non-Asian neighborhoods throughout the city.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " They reminded me of the efforts of Richard Close, who, before his recent death, was the president of the Sherman Oaks Homeowners Association in Los Angeles. I wrote about his grass-roots successes in an earlier edition of the newsletter. He was behind monumental changes to California’s landscape, including Proposition 13, the landmark property tax bill, which may very well be the most consequential law on the state books.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Throughout his career, progressives dismissed Close’s activism and his remarkable organizing skills. Instead, they pointed to the fact that he represented a largely wealthy and white constituency and suggested that he had somehow used his power and influence to get undemocratic results. This may have been true, but he had a talent for collecting converts in grocery store parking lots and strip malls, building voting blocs that showed up to every seemingly unimportant election.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The activists behind the recall effort in San Francisco may not have known who Close was, but they seem to have followed his playbook of organizing within neighborhoods, flexing voting power in low-turnout elections and putting together a platform based entirely on self-interest.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Along the way, they picked up important political endorsements — Mayor London Breed and State Senator Scott Wiener supported the recall (Wiener announced his support the day after Youngkin won in Virginia) — and built connections with existing community groups. Before long, they had a full-fledged political coalition that took down three members of a local school board.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " If you want another example of what a group like this can do, consider the leaders of the Asian American organizations that allied with the conservative legal activist Edward Blum to sue Harvard over affirmative action. The case, now before the Supreme Court, will likely bring about an end to race-based college admissions throughout the country. The origins of this group don’t lie in Republican dark money or disinformation campaigns. Instead, they first organized in 2013 because they wanted to protest what they felt was a racist sketch on the Jimmy Kimmel show. They got Kimmel to apologize and moved on to fight affirmative action in California before turning their attention to Harvard and the Supreme Court.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " When all the narratives about the recall of the three board members and what it means for Democrats wind to their end, that foundation of organized Asian Americans will still be there. In San Francisco they provided a glimpse of reality amid all the theorizing on wokeness, Covid fatigue and red waves in the midterms and beyond. It’s hard to imagine that any result in a blue city within a blue state will tell us all that much about what’s coming in 2022 or 2024; not all politics take place on such grand, national stages. A lot of times, it’s just angry citizens organizing out of pure self-interest — in this case in opposition to equity efforts at a magnet school — and then drawing in others who might be mad at the same people about Covid closures, school renamings or whatever else. The San Francisco outcome should remind us that politics is still local.\n", + " Evidence\n", + "\n", + "
" ], "text/plain": [ "" @@ -23457,7 +32416,7 @@ { "data": { "text/html": [ - "

nytimes\\seasonal-depression-covid.txt

" + "

seasonal-depression-covid.txt

" ], "text/plain": [ "" @@ -23470,34 +32429,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-d5fda5a67e9a1cba\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-d5fda5a67e9a1cba\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-d5fda5a67e9a1cba\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-d5fda5a67e9a1cba\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "153d680f7dd0412cb26a2353d8136031", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " Seeing friends was normally the highlight of Kendra Sands’ week. One night in January 2018, she had plans to meet two for dinner, but instead, Ms. Sands, who lives in Charlotte, N.C., crawled into bed. She wanted to go out, but she was stuck in a dark room, sobbing. “I forced myself to put on different clothes, touch up my makeup and get in the car,” she said. “But driving to the restaurant, I realized hibernating in bed had been a pattern for weeks.” Sands initially blamed PMS for the crying episodes, but after a month she still had no relief. After asking about her mental health pattern in previous years, Ms. Sands’ therapist eventually diagnosed her with seasonal affective disorder. “I knew I didn’t like the cold or dreariness of winter, but I never thought I had a form of depression,” Ms. Sands said. According to Vaile Wright, senior director of health care innovation and practice directorate at the American Psychological Association, seasonal affective disorder (S.A.D.) is a type of major depression. What makes S.A.D. unique is its timing: “It has a distinct seasonal onset, typically in winter, and a spontaneous remission of symptoms,” she said. S.A.D. patients experience classic depression symptoms: sadness, irritability, trouble concentrating, lack of interest in activities and increased sleep and appetite. It doesn’t have to be cold or snowy, people can experience S.A.D. in sunny climates like Florida or Southern California. “The important consideration for all forms of S.A.D. is the effect of your surroundings,” said Dr. Amit Etkin, a professor of psychiatry and behavioral sciences at Stanford University. “The light you experience, how you interact with the world when you get up, and when you go to bed all have a disproportionate effect on your mood.” Michael Terman, professor of clinical psychology at Columbia University and founder of the Center for Environmental Therapeutics, said it’s common to gain weight and feel lethargic in winter, but only around three percent of the population has S.A.D. To be diagnosed, you need to experience at least five of nine clinical symptoms for at least two weeks, said Paul Desan, assistant professor of psychiatry at Yale School of Medicine. If you don’t, you could have subsyndromal S.A.D., a milder version Dr. Desan said people often call “winter blues.” A distinct, seasonal pattern is key to recognizing S.A.D., feeling normal during spring and summer, then dwindling in energy and mood as days get shorter — almost like you want to hibernate. If you have a family member with S.A.D., you might be more likely to develop it, and Dr. Desan said the disorder is three times more common in women. According to Dr. Terman, S.A.D. prevalence increases as you move north, until you hit 38 degrees (around Washington D.C.). Anywhere farther north is essentially equally affected at maximum severity. The likelihood also rises near the western edges of time zones, where dawn occurs later. \n", + " Seeing friends was normally the highlight of Kendra Sands’ week. One night in January 2018, she had plans to meet two for dinner, but instead, Ms. Sands, who lives in Charlotte, N.C., crawled into bed. She wanted to go out, but she was stuck in a dark room, sobbing.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “I forced myself to put on different clothes, touch up my makeup and get in the car,” she said. “But driving to the restaurant, I realized hibernating in bed had been a pattern for weeks.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Sands initially blamed PMS for the crying episodes, but after a month she still had no relief. After asking about her mental health pattern in previous years, Ms. Sands’ therapist eventually diagnosed her with seasonal affective disorder. “I knew I didn’t like the cold or dreariness of winter, but I never thought I had a form of depression,” Ms. Sands said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " According to Vaile Wright, senior director of health care innovation and practice directorate at the American Psychological Association, seasonal affective disorder (S.A.D.) is a type of major depression. What makes S.A.D. unique is its timing: “It has a distinct seasonal onset, typically in winter, and a spontaneous remission of symptoms,” she said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " S.A.D. patients experience classic depression symptoms: sadness, irritability, trouble concentrating, lack of interest in activities and increased sleep and appetite. It doesn’t have to be cold or snowy, people can experience S.A.D. in sunny climates like Florida or Southern California.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “The important consideration for all forms of S.A.D. is the effect of your surroundings,” said Dr. Amit Etkin, a professor of psychiatry and behavioral sciences at Stanford University. “The light you experience, how you interact with the world when you get up, and when you go to bed all have a disproportionate effect on your mood.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Michael Terman, professor of clinical psychology at Columbia University and founder of the Center for Environmental Therapeutics, said it’s common to gain weight and feel lethargic in winter, but only around three percent of the population has S.A.D.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " To be diagnosed, you need to experience at least five of nine clinical symptoms for at least two weeks, said Paul Desan, assistant professor of psychiatry at Yale School of Medicine. If you don’t, you could have subsyndromal S.A.D., a milder version Dr. Desan said people often call “winter blues.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " A distinct, seasonal pattern is key to recognizing S.A.D., feeling normal during spring and summer, then dwindling in energy and mood as days get shorter — almost like you want to hibernate. If you have a family member with S.A.D., you might be more likely to develop it, and Dr. Desan said the disorder is three times more common in women.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " According to Dr. Terman, S.A.D. prevalence increases as you move north, until you hit 38 degrees (around Washington D.C.). Anywhere farther north is essentially equally affected at maximum severity. The likelihood also rises near the western edges of time zones, where dawn occurs later. \n", " Evidence\n", "\n", "\n", @@ -23604,7 +32587,22 @@ "\n", "\n", "\n", - " Many forms of depression, Dr. Wright said, benefit from changes to sleep schedule, a nutritious diet, exercise and social interaction. If you have S.A.D., put a winter spin on these behaviors. For example, even if you want to sleep later, set an alarm each day so you can experience early-morning sunshine, which helps with S.A.D. symptoms. “Engaging actively in the world, as if you already had those rhythms, is a good way to help reset your circadian rhythm,” Dr. Etkin said. What you do at night matters, too. Dr. Etkin suggests basic sleep hygiene like avoiding screens (and any artificial light). Try to keep your bedtime consistent — not too late — and avoid too much caffeine or alcohol, which can interfere with your quality of rest and ability to get up. Light activates a bodily signal that informs your cells what time of day it is. Morning light causes cortisol to spike, giving you energy. The time of that initial spike determines when your brain releases melatonin, a hormone that makes you sleepy before bedtime.\n", + " Many forms of depression, Dr. Wright said, benefit from changes to sleep schedule, a nutritious diet, exercise and social interaction. If you have S.A.D., put a winter spin on these behaviors.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " For example, even if you want to sleep later, set an alarm each day so you can experience early-morning sunshine, which helps with S.A.D. symptoms. “Engaging actively in the world, as if you already had those rhythms, is a good way to help reset your circadian rhythm,” Dr. Etkin said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " What you do at night matters, too. Dr. Etkin suggests basic sleep hygiene like avoiding screens (and any artificial light). Try to keep your bedtime consistent — not too late — and avoid too much caffeine or alcohol, which can interfere with your quality of rest and ability to get up.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Light activates a bodily signal that informs your cells what time of day it is. Morning light causes cortisol to spike, giving you energy. The time of that initial spike determines when your brain releases melatonin, a hormone that makes you sleepy before bedtime.\n", " Evidence\n", "\n", "\n", @@ -23614,7 +32612,37 @@ "\n", "\n", "\n", - " Light boxes — devices that produce artificial light similar to sunlight — may be an effective way to correct that. In a meta-analysis of 19 studies, bright light therapy was superior to placebo; another small study found 61 percent of light-therapy patients saw their depression symptoms ebb in four weeks. There is some evidence that sitting in front of a 10,000-lux (the measure of light intensity) light box for 30-45 minutes every day around sunrise during fall and winter decreases S.A.D. symptoms. If you’re currently experiencing S.A.D. symptoms, it’s not too late to start. You can also begin treating next season’s symptoms in the fall. As tempting as it is to hit the snooze button on weekends, Dr. Desan said your mood will start to sag again if you don’t do your treatment every day around sunrise, so build light therapy into your life. Most research-grade light boxes allow you to sit at arm’s length and move your head, so you should be able to eat breakfast, drink coffee or read. An effective light box is usually at least $100, but not every option is equally effective. Of the 24 devices Dr. Desan tested in 2019, only seven met clinical criteria. The rest weren’t as effective as research-grade boxes. According to Anna Wirz-Justice, professor emeritus in the Centre for Chronobiology at the University of Basel, in Switzerland, natural light isn’t only cheaper than a light box, it’s also brighter. Sunrise light is equivalent to 1,000 lux. A rainy morning provides around 10,000 lux, and snow on the ground is even brighter, at 50,000 lux. Aim to go outside within 30 minutes after sunrise. “You don’t need to see the sun cross the horizon,” said Dr. Huberman. “What you’re looking for is the quality of light that happens when the sun is low in the sky.” Duration depends on where you live and the weather. Dr. Huberman suggested around five minutes outside if it’s bright or 10-15 minutes if it’s cloudy. It’s OK to wear glasses or contacts, but skip sunglasses and never look at the sun directly.\n", + " Light boxes — devices that produce artificial light similar to sunlight — may be an effective way to correct that. In a meta-analysis of 19 studies, bright light therapy was superior to placebo; another small study found 61 percent of light-therapy patients saw their depression symptoms ebb in four weeks.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " There is some evidence that sitting in front of a 10,000-lux (the measure of light intensity) light box for 30-45 minutes every day around sunrise during fall and winter decreases S.A.D. symptoms. If you’re currently experiencing S.A.D. symptoms, it’s not too late to start. You can also begin treating next season’s symptoms in the fall.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " As tempting as it is to hit the snooze button on weekends, Dr. Desan said your mood will start to sag again if you don’t do your treatment every day around sunrise, so build light therapy into your life. Most research-grade light boxes allow you to sit at arm’s length and move your head, so you should be able to eat breakfast, drink coffee or read.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " An effective light box is usually at least $100, but not every option is equally effective. Of the 24 devices Dr. Desan tested in 2019, only seven met clinical criteria. The rest weren’t as effective as research-grade boxes.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " According to Anna Wirz-Justice, professor emeritus in the Centre for Chronobiology at the University of Basel, in Switzerland, natural light isn’t only cheaper than a light box, it’s also brighter. Sunrise light is equivalent to 1,000 lux. A rainy morning provides around 10,000 lux, and snow on the ground is even brighter, at 50,000 lux.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Aim to go outside within 30 minutes after sunrise. “You don’t need to see the sun cross the horizon,” said Dr. Huberman. “What you’re looking for is the quality of light that happens when the sun is low in the sky.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Duration depends on where you live and the weather. Dr. Huberman suggested around five minutes outside if it’s bright or 10-15 minutes if it’s cloudy. It’s OK to wear glasses or contacts, but skip sunglasses and never look at the sun directly.\n", " Evidence\n", "\n", "\n", @@ -23624,7 +32652,12 @@ "\n", "\n", "\n", - " Dr. Rohan said C.B.T. may reduce symptoms more effectively because it provides long-term coping skills for changing negative thought and behavior patterns — whereas light therapy only works when you do it. For Ms. Sands, the combination of lifestyle changes and psychotherapy made a significant difference in reducing her symptoms. But nothing helped more than naming the debilitating dip in her mood every winter. “Because I have a diagnosis, I can be proactive,” Ms. Sands said. “I don’t have to wait until spring to feel better.”\n", + " Dr. Rohan said C.B.T. may reduce symptoms more effectively because it provides long-term coping skills for changing negative thought and behavior patterns — whereas light therapy only works when you do it.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " For Ms. Sands, the combination of lifestyle changes and psychotherapy made a significant difference in reducing her symptoms. But nothing helped more than naming the debilitating dip in her mood every winter. “Because I have a diagnosis, I can be proactive,” Ms. Sands said. “I don’t have to wait until spring to feel better.”\n", " Evidence\n", "\n", "
" @@ -23648,7 +32681,7 @@ { "data": { "text/html": [ - "

nytimes\\seattle-bicycle-helmet.txt

" + "

seattle-bicycle-helmet.txt

" ], "text/plain": [ "" @@ -23661,34 +32694,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-8644ae573585d5bd\n" + "Using custom data configuration default-8644ae573585d5bd\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-8644ae573585d5bd\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-8644ae573585d5bd\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" - ] - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "b45b6ff6dda149798dad42ad65924acc", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00\n", "\n", "\n", - " “The question before us yesterday wasn’t the efficacy of helmets,” said Girmay Zahilay, a board member who is also a member of the King County Council. “The question before us was whether a helmet law that’s enforced by police on balance produces results that outweigh the harm that that law creates.” Seattle is the largest city in the country to enforce a bike helmet requirement. The city of Tacoma, Wash., repealed its requirement in 2020, citing similar equity concerns, as did Dallas in 2014 for those 18 and older, as a means of encouraging more bike-sharing. In a county that has made racial justice reform a priority — the King County health board declared racism a public health crisis in 2020 — the regulation pitted the need to address racial equity against the obvious safety benefits of helmets. “We have to have a broad view of public health: Yes, we have to think about brain injury, and we also have to think about the impact on our criminal legal system,” Mr. Zahilay said. The board of health, made up of elected officials and appointed medical experts from across the county, began to scrutinize the helmet rule in 2020 after an analysis of court records from Crosscut, a local news site, showed that it was rarely enforced, and enforced disproportionately when it was. Since 2017, Seattle police had given just 117 helmet citations, over 40 percent of which went to people who were homeless. Since 2019, 60 percent of citations went to people who were homeless. A separate analysis from Central Seattle Greenways, a safe streets advocacy group, found that Black cyclists were almost four times as likely to receive a citation for violating the helmet requirement as white cyclists. Native American cyclists were just over twice as likely to receive one as white cyclists. Neither study looked at whether homeless people or people of color wore helmets less frequently than other groups — or whether, out of economic necessity, they were more likely to ride a bike. Critics nonetheless said enforcement appeared to be discriminatory. “It was a law that really just allowed the Police Department, the Seattle Police Department, to harass Black and brown community members,” said K.L. Shannon, an organizer for Seattle Neighborhood Greenways and police accountability chair for the Seattle King County chapter of the N.A.A.C.P. Ms. Shannon’s nephew was just 8 years old when he and three friends were stopped by an officer a few blocks from their houses for not wearing helmets, Ms. Shannon said. She said the officer accused them of stealing the bikes. “Until this day my nephew doesn’t ride a bike,” Ms. Shannon said. “He’s never forgotten that.” In an incident in 2016, a Black man was stopped by the Seattle police for riding a bike with no helmet. In a dashcam video of the tense, 19-minute stop, one officer shared with another that the suspect “matches the description of a burglary suspect,” suggesting that the helmet regulation was used as a pretense. In 2019, Daniel Oakes was stopped for not wearing his helmet while riding his bicycle on a sidewalk near a homeless encampment and then charged with an unrelated offense. A judge dismissed the case after Mr. Oakes’s lawyer argued that the helmet requirement had been unconstitutionally used as a pretext to make the stop. In a statement to Crosscut in response to its analysis of bike stop data, a Seattle Police Department spokesman, Randall Huserik, said the traffic stops were often used to educate riders about the benefits of wearing a helmet. “The focus is the behavior, not the status,” he said. “A risk of serious brain injury/death remains just as dire for someone experiencing homelessness as it does for someone who is housed — that is the risk these citations are intended to mitigate.”\n", + " “The question before us yesterday wasn’t the efficacy of helmets,” said Girmay Zahilay, a board member who is also a member of the King County Council. “The question before us was whether a helmet law that’s enforced by police on balance produces results that outweigh the harm that that law creates.”\n", " Evidence\n", "\n", "\n", - "\n", - " Last month, the department announced that it would no longer use bicycle helmet infractions — along with a few other low-risk safety violations — as primary reasons for a traffic stop.\n", - " Claim\n", + "\n", + " Seattle is the largest city in the country to enforce a bike helmet requirement. The city of Tacoma, Wash., repealed its requirement in 2020, citing similar equity concerns, as did Dallas in 2014 for those 18 and older, as a means of encouraging more bike-sharing.\n", + " Evidence\n", "\n", "\n", "\n", - " As the largest city in King County, Seattle is the biggest jurisdiction affected by the rollback. Seventeen jurisdictions outside Seattle — making up just over one-third of the county’s population — have their own mandates requiring helmet use and will not be affected by Thursday’s vote.\n", + " In a county that has made racial justice reform a priority — the King County health board declared racism a public health crisis in 2020 — the regulation pitted the need to address racial equity against the obvious safety benefits of helmets.\n", " Evidence\n", "\n", "\n", - "\n", - " Opponents of the repeal have warned that it could have serious safety consequences.\n", - " Counterclaim\n", + "\n", + " “We have to have a broad view of public health: Yes, we have to think about brain injury, and we also have to think about the impact on our criminal legal system,” Mr. Zahilay said.\n", + " Evidence\n", "\n", "\n", "\n", - " “No helmets means more death and more serious injury,” said Richard Adler, a lawyer who works with clients who have suffered brain injuries. “Access to helmets is already an issue, and repealing this disincentivizes everybody to not wear their helmet over time.” Helmets reduce the likelihood of serious head injury by 60 percent, according to the National Transportation Safety Board. In cases where it was known whether cyclists were wearing helmets, 79 percent of those who were fatally injured in bike crashes between 2010 and 2017 were not wearing them.\n", + " The board of health, made up of elected officials and appointed medical experts from across the county, began to scrutinize the helmet rule in 2020 after an analysis of court records from Crosscut, a local news site, showed that it was rarely enforced, and enforced disproportionately when it was. Since 2017, Seattle police had given just 117 helmet citations, over 40 percent of which went to people who were homeless. Since 2019, 60 percent of citations went to people who were homeless.\n", " Evidence\n", "\n", "\n", - "\n", - " Advocates for the repeal said they believed that people would continue to wear helmets even in the absence of a legal requirement.\n", - " Counterclaim\n", + "\n", + " A separate analysis from Central Seattle Greenways, a safe streets advocacy group, found that Black cyclists were almost four times as likely to receive a citation for violating the helmet requirement as white cyclists. Native American cyclists were just over twice as likely to receive one as white cyclists.\n", + " Evidence\n", "\n", "\n", "\n", - " When the requirement was first enacted in 1993, helmet use was not widespread, said Joe McDermott, a board member who voted in favor of the repeal. But times have changed, he said. “The law and the public education around creating the law helped change behaviors and norms,” Mr. McDermott said. “And 30 years later it’s essential that we do re-evaluate our intended purposes when we adopted the helmet law and the unintended consequences of having it in place.” Helmet use in the city is as high as 91 percent among private bike riders, according to one study. In nearby Portland, Ore., advocates for repeal noted, use is similarly high, despite the fact that the city does not have an all-ages helmet law. Access to helmets is a particular challenge for low-income people: according to a study from the National Highway Traffic Safety Administration, people in the lowest income bracket were about half as likely to wear a helmet for all rides as people in the highest income bracket.\n", + " Neither study looked at whether homeless people or people of color wore helmets less frequently than other groups — or whether, out of economic necessity, they were more likely to ride a bike. Critics nonetheless said enforcement appeared to be discriminatory.\n", " Evidence\n", "\n", "\n", - "\n", - " But Mr. McDermott said he doubted that those disparities accounted for the extent of the disproportionate enforcement of the rule. And he said the county could address the disparities without policing: The county recently budgeted more than $200,000 to buy helmets and expand education on bike safety.\n", - " Rebuttal\n", + "\n", + " “It was a law that really just allowed the Police Department, the Seattle Police Department, to harass Black and brown community members,” said K.L. Shannon, an organizer for Seattle Neighborhood Greenways and police accountability chair for the Seattle King County chapter of the N.A.A.C.P.\n", + " Evidence\n", "\n", "\n", - "\n", - " Across the country, other kinds of biking regulations have also been found to be enforced in discriminatory ways.\n", - " Claim\n", + "\n", + " Ms. Shannon’s nephew was just 8 years old when he and three friends were stopped by an officer a few blocks from their houses for not wearing helmets, Ms. Shannon said. She said the officer accused them of stealing the bikes.\n", + " Evidence\n", "\n", "\n", "\n", - " In Chicago, a study found that tickets were issued to cyclists eight times more often in majority-Black parts of the city. An investigation by the U.S. Department of Justice found that 73 percent of bicycle stops in Tampa, Fla., between 2014 and 2015 involved Black cyclists, despite the fact that Black people made up 26 percent of the population. “The data revealed that the stops did not reduce crime or produce any other positive outcome,” such as reducing bike crashes or injuries, the report said. “The best investments to keep people safe while riding bikes is creating safe streets, safer transportation systems,” said Bill Nesper, director of the League of American Bicyclists. “Those are the types of investments that are going to keep people walking and biking safest in our communities, instead of investing in laws like this that could be a barrier to people riding bikes and that may be enforced in a discretionary and discriminatory way.”\n", + " “Until this day my nephew doesn’t ride a bike,” Ms. Shannon said. “He’s never forgotten that.”\n", " Evidence\n", "\n", - "
" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "\n", - "\n" - ] - }, - { - "data": { - "text/html": [ - "

nytimes\\senate-spending-bill-shutdown.txt

" + "\n", + "\n", + " In an incident in 2016, a Black man was stopped by the Seattle police for riding a bike with no helmet. In a dashcam video of the tense, 19-minute stop, one officer shared with another that the suspect “matches the description of a burglary suspect,” suggesting that the helmet regulation was used as a pretense.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In 2019, Daniel Oakes was stopped for not wearing his helmet while riding his bicycle on a sidewalk near a homeless encampment and then charged with an unrelated offense. A judge dismissed the case after Mr. Oakes’s lawyer argued that the helmet requirement had been unconstitutionally used as a pretext to make the stop.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In a statement to Crosscut in response to its analysis of bike stop data, a Seattle Police Department spokesman, Randall Huserik, said the traffic stops were often used to educate riders about the benefits of wearing a helmet.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “The focus is the behavior, not the status,” he said. “A risk of serious brain injury/death remains just as dire for someone experiencing homelessness as it does for someone who is housed — that is the risk these citations are intended to mitigate.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Last month, the department announced that it would no longer use bicycle helmet infractions — along with a few other low-risk safety violations — as primary reasons for a traffic stop.\n", + " Claim\n", + "\n", + "\n", + "\n", + " As the largest city in King County, Seattle is the biggest jurisdiction affected by the rollback. Seventeen jurisdictions outside Seattle — making up just over one-third of the county’s population — have their own mandates requiring helmet use and will not be affected by Thursday’s vote.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Opponents of the repeal have warned that it could have serious safety consequences.\n", + " Counterclaim\n", + "\n", + "\n", + "\n", + " “No helmets means more death and more serious injury,” said Richard Adler, a lawyer who works with clients who have suffered brain injuries. “Access to helmets is already an issue, and repealing this disincentivizes everybody to not wear their helmet over time.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Helmets reduce the likelihood of serious head injury by 60 percent, according to the National Transportation Safety Board. In cases where it was known whether cyclists were wearing helmets, 79 percent of those who were fatally injured in bike crashes between 2010 and 2017 were not wearing them.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Advocates for the repeal said they believed that people would continue to wear helmets even in the absence of a legal requirement.\n", + " Counterclaim\n", + "\n", + "\n", + "\n", + " When the requirement was first enacted in 1993, helmet use was not widespread, said Joe McDermott, a board member who voted in favor of the repeal. But times have changed, he said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “The law and the public education around creating the law helped change behaviors and norms,” Mr. McDermott said. “And 30 years later it’s essential that we do re-evaluate our intended purposes when we adopted the helmet law and the unintended consequences of having it in place.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Helmet use in the city is as high as 91 percent among private bike riders, according to one study. In nearby Portland, Ore., advocates for repeal noted, use is similarly high, despite the fact that the city does not have an all-ages helmet law.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Access to helmets is a particular challenge for low-income people: according to a study from the National Highway Traffic Safety Administration, people in the lowest income bracket were about half as likely to wear a helmet for all rides as people in the highest income bracket.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " But Mr. McDermott said he doubted that those disparities accounted for the extent of the disproportionate enforcement of the rule. And he said the county could address the disparities without policing: The county recently budgeted more than $200,000 to buy helmets and expand education on bike safety.\n", + " Rebuttal\n", + "\n", + "\n", + "\n", + " Across the country, other kinds of biking regulations have also been found to be enforced in discriminatory ways.\n", + " Claim\n", + "\n", + "\n", + "\n", + " In Chicago, a study found that tickets were issued to cyclists eight times more often in majority-Black parts of the city. An investigation by the U.S. Department of Justice found that 73 percent of bicycle stops in Tampa, Fla., between 2014 and 2015 involved Black cyclists, despite the fact that Black people made up 26 percent of the population.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “The data revealed that the stops did not reduce crime or produce any other positive outcome,” such as reducing bike crashes or injuries, the report said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “The best investments to keep people safe while riding bikes is creating safe streets, safer transportation systems,” said Bill Nesper, director of the League of American Bicyclists. “Those are the types of investments that are going to keep people walking and biking safest in our communities, instead of investing in laws like this that could be a barrier to people riding bikes and that may be enforced in a discretionary and discriminatory way.”\n", + " Evidence\n", + "\n", + "
" ], "text/plain": [ "" @@ -23884,59 +32975,39 @@ "metadata": {}, "output_type": "display_data" }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Using custom data configuration default-82dacf1b5ec0c5d2\n" - ] - }, { "name": "stdout", "output_type": "stream", "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-82dacf1b5ec0c5d2\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "\n", + "\n", + "\n" ] }, { "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "45242b8bcfce4752a540efb29e6b3629", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00senate-spending-bill-shutdown.txt" + ], "text/plain": [ - " 0%| | 0/1 [00:00" ] }, "metadata": {}, "output_type": "display_data" }, { - "name": "stdout", + "name": "stderr", "output_type": "stream", "text": [ - "Dataset text downloaded and prepared to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-82dacf1b5ec0c5d2\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4. Subsequent calls will reuse this data.\n" + "Using custom data configuration default-82dacf1b5ec0c5d2\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-82dacf1b5ec0c5d2\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "9d0eb5b805ef4165aa0b68976b94c43f", + "model_id": "0805e5c9f13c4992be2863ef3a80a58d", "version_major": 2, "version_minor": 0 }, @@ -23948,23 +33019,16 @@ "output_type": "display_data" }, { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "7ac0d4ec6a8e46218986566b4ff91767", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " WASHINGTON — Congress gave final approval on Thursday to a bill to fund the government through March 11, averting a shutdown this week and giving lawmakers more time to cement a deal on spending for the remainder of the fiscal year. Passage of the short-term measure in the Senate came less than 48 hours before government funding was sent to lapse, as lawmakers rushed to leave Washington for a weeklong recess. It passed 65 to 27, just over a week after the House approved it. The legislation, which will keep the government funded through March 11, now heads to President Biden’s desk. He is expected to sign it. Lawmakers and aides are gambling that the three-week extension will provide enough time to finalize a deal on the dozen bills needed to keep federal government agencies and departments funded for the rest of the fiscal year. Four months into the fiscal year, which began in October, lawmakers have yet to reach an agreement, instead relying on a series of stopgap bills that maintain funding levels set under the Trump administration. “Our government is not meant to run on autopilot, and American taxpayer dollars should not be spent on outdated priorities,” Senator Patrick J. Leahy, a Vermont Democrat and the chairman of the Senate Appropriations Committee, said on the Senate floor. “We have the responsibility to make the hard choices about how to invest in the American people.” Negotiations on the omnibus package had been stymied largely by an impasse over how to divide the money, with Democrats pressing to prioritize social and domestic programs while they control both chambers of Congress and the White House. Republicans, who are needed to muster the 60 votes necessary to pass most legislation, pushed to keep military spending on equal financial footing with those programs.\n", + " WASHINGTON — Congress gave final approval on Thursday to a bill to fund the government through March 11, averting a shutdown this week and giving lawmakers more time to cement a deal on spending for the remainder of the fiscal year.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Passage of the short-term measure in the Senate came less than 48 hours before government funding was sent to lapse, as lawmakers rushed to leave Washington for a weeklong recess. It passed 65 to 27, just over a week after the House approved it.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The legislation, which will keep the government funded through March 11, now heads to President Biden’s desk. He is expected to sign it.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Lawmakers and aides are gambling that the three-week extension will provide enough time to finalize a deal on the dozen bills needed to keep federal government agencies and departments funded for the rest of the fiscal year. Four months into the fiscal year, which began in October, lawmakers have yet to reach an agreement, instead relying on a series of stopgap bills that maintain funding levels set under the Trump administration.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Our government is not meant to run on autopilot, and American taxpayer dollars should not be spent on outdated priorities,” Senator Patrick J. Leahy, a Vermont Democrat and the chairman of the Senate Appropriations Committee, said on the Senate floor. “We have the responsibility to make the hard choices about how to invest in the American people.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Negotiations on the omnibus package had been stymied largely by an impasse over how to divide the money, with Democrats pressing to prioritize social and domestic programs while they control both chambers of Congress and the White House. Republicans, who are needed to muster the 60 votes necessary to pass most legislation, pushed to keep military spending on equal financial footing with those programs.\n", " Evidence\n", "\n", "\n", @@ -24017,7 +33128,17 @@ "\n", "\n", "\n", - " If they can nail down the details of the agreement, the catchall spending package would not only allow for spending increases, but unlock funding outlined in the bipartisan infrastructure law and, for the first time in more than a decade, fund earmarks that let individual lawmakers direct money to specific projects in their states. “Agencies need certainty, the businesses that rely on government for contracts need certainty, and our men and women who are serving in the military need certainty,” said Senator Jeanne Shaheen, Democrat of New Hampshire. It is also likely that many or all longtime policy provisions, like the Hyde Amendment, which bans federal funding for most abortions, would be kept in some form in any such package. Republicans had also warned that those conditions — known as policy riders — would need to be maintained to ensure that enough of their party would back the legislation.\n", + " If they can nail down the details of the agreement, the catchall spending package would not only allow for spending increases, but unlock funding outlined in the bipartisan infrastructure law and, for the first time in more than a decade, fund earmarks that let individual lawmakers direct money to specific projects in their states.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Agencies need certainty, the businesses that rely on government for contracts need certainty, and our men and women who are serving in the military need certainty,” said Senator Jeanne Shaheen, Democrat of New Hampshire.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " It is also likely that many or all longtime policy provisions, like the Hyde Amendment, which bans federal funding for most abortions, would be kept in some form in any such package. Republicans had also warned that those conditions — known as policy riders — would need to be maintained to ensure that enough of their party would back the legislation.\n", " Evidence\n", "\n", "\n", @@ -24027,7 +33148,22 @@ "\n", "\n", "\n", - " “Once you start a vehicle moving, a lot of people want to ride on it,” said Senator Richard C. Shelby of Alabama, the top Republican on the Appropriations Committee. Among the most obvious candidates is an emergency pandemic aid package, although the White House has not yet made a formal request. The Biden administration told key congressional officials on Tuesday that it could need as much as an additional $30 billion in coronavirus response funds, including to improve testing and vaccinations across the country. Several Republicans have signaled a reluctance to support more pandemic spending after Democrats muscled through a $1.9 trillion pandemic aid package in March over their unanimous opposition. In an informal briefing with key congressional officials on Tuesday, Biden administration officials floated an additional $17.9 billion for vaccines and therapeutics, $4.9 billion for diagnostics and additional money to counter future variants, according to one official briefed on the details, who was not authorized to speak publicly and described the session on the condition of anonymity. “They haven’t sent us a relief package yet,” Senator Chuck Schumer of New York, the majority leader, said on Tuesday. “But obviously, we’re going to have to do something.”\n", + " “Once you start a vehicle moving, a lot of people want to ride on it,” said Senator Richard C. Shelby of Alabama, the top Republican on the Appropriations Committee.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Among the most obvious candidates is an emergency pandemic aid package, although the White House has not yet made a formal request. The Biden administration told key congressional officials on Tuesday that it could need as much as an additional $30 billion in coronavirus response funds, including to improve testing and vaccinations across the country.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Several Republicans have signaled a reluctance to support more pandemic spending after Democrats muscled through a $1.9 trillion pandemic aid package in March over their unanimous opposition. In an informal briefing with key congressional officials on Tuesday, Biden administration officials floated an additional $17.9 billion for vaccines and therapeutics, $4.9 billion for diagnostics and additional money to counter future variants, according to one official briefed on the details, who was not authorized to speak publicly and described the session on the condition of anonymity.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “They haven’t sent us a relief package yet,” Senator Chuck Schumer of New York, the majority leader, said on Tuesday. “But obviously, we’re going to have to do something.”\n", " Evidence\n", "\n", "\n", @@ -24037,7 +33173,27 @@ "\n", "\n", "\n", - " Before passing the temporary spending bill, lawmakers voted down a few amendments proposed by Republicans, including a measure that would have defunded vaccine mandates, including for federal employees, and another that would have denied federal funding to schools that require coronavirus vaccinations for students. The final vote had been delayed by a number of policy disputes and senatorial absences, as Democratic leaders scrambled to ensure they had the votes to prevent the amendments from changing the bill and forcing the House to vote again on the measure. Mr. Leahy, in particular, grew visibly frustrated on the floor by the delay, as he blocked an attempt by Senator Marco Rubio, Republican of Florida, to first swiftly pass legislation banning federal funding from going toward pipes for smoking crack cocaine and other drug paraphernalia. (Mr. Rubio denied he was trying to slow down passage of the stopgap bill, known as a continuing resolution.) “Everybody has a right to make any kind of political point for any group they want, but let’s talk about being U.S. senators,” Mr. Leahy said, banging his fist on his lectern. “Let’s not slow things down,” he added. “Let’s vote on the continuing resolution. Let’s show the United States of America and the rest of the world that we can stay open.”\n", + " Before passing the temporary spending bill, lawmakers voted down a few amendments proposed by Republicans, including a measure that would have defunded vaccine mandates, including for federal employees, and another that would have denied federal funding to schools that require coronavirus vaccinations for students.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The final vote had been delayed by a number of policy disputes and senatorial absences, as Democratic leaders scrambled to ensure they had the votes to prevent the amendments from changing the bill and forcing the House to vote again on the measure.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mr. Leahy, in particular, grew visibly frustrated on the floor by the delay, as he blocked an attempt by Senator Marco Rubio, Republican of Florida, to first swiftly pass legislation banning federal funding from going toward pipes for smoking crack cocaine and other drug paraphernalia. (Mr. Rubio denied he was trying to slow down passage of the stopgap bill, known as a continuing resolution.)\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Everybody has a right to make any kind of political point for any group they want, but let’s talk about being U.S. senators,” Mr. Leahy said, banging his fist on his lectern.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Let’s not slow things down,” he added. “Let’s vote on the continuing resolution. Let’s show the United States of America and the rest of the world that we can stay open.”\n", " Evidence\n", "\n", "
" @@ -24061,7 +33217,7 @@ { "data": { "text/html": [ - "

nytimes\\severance-review.txt

" + "

severance-review.txt

" ], "text/plain": [ "" @@ -24074,34 +33230,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-0ef4e7c3402a43bd\n" + "Using custom data configuration default-0ef4e7c3402a43bd\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-0ef4e7c3402a43bd\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-0ef4e7c3402a43bd\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" - ] - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "e9691baf16e24fc282128702e4f83d60", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00\n", "\n", "\n", - " The employees of the macrodata refinement department of Lumon Industries, led by Mark Scout (Adam Scott), have all agreed to undergo surgery to partition the work and personal sectors of their brains. When each of them enters the office, a work self, or “innie,” becomes conscious and clocks in. Come quitting time, the out-of-office self, or “outie,” takes over and goes home, retaining no memory of life on the job. Think of it as a neurological mullet: business in the frontal lobe, party in the back. Sweet deal, right? No more balancing work and personal life, no more bringing office stress home, no more Monday-morning dread. It could be bliss, for one of you at least.\n", + " The employees of the macrodata refinement department of Lumon Industries, led by Mark Scout (Adam Scott), have all agreed to undergo surgery to partition the work and personal sectors of their brains.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " When each of them enters the office, a work self, or “innie,” becomes conscious and clocks in. Come quitting time, the out-of-office self, or “outie,” takes over and goes home, retaining no memory of life on the job. Think of it as a neurological mullet: business in the frontal lobe, party in the back.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Sweet deal, right? No more balancing work and personal life, no more bringing office stress home, no more Monday-morning dread. It could be bliss, for one of you at least.\n", " Evidence\n", "\n", "\n", @@ -24212,23 +33373,73 @@ "\n", "\n", "\n", - " At the start of “Severance,” which begins Friday, the staffers work contentedly in their retro-minimalist office, sorting numbers on computer terminals. They fit neat workplace-sitcom archetypes: Irving (John Turturro), the starchy veteran; Dylan (Zach Cherry), the cynical wisecracker; and Mark, the nice guy struggling with the responsibilities he inherited when the former team leader (Yul Vazquez) suddenly vanished. (Sounds significant; it is.) Their arrangement is shaken with the arrival of a new colleague, Helly (Britt Lower), who wakes on a conference table in an amnesiac stupor. (“Am I dead?” she asks. “Am I livestock?”) After she makes a brief, slapstick-violent attempt to flee, Mark explains that she is there of her own free will — “her” meaning her outie version, whose permission Helly would need in order to quit. Anyway, as Mark notes, “Quitting would effectively end your life, insomuch as you’ve come to know it.” There’s something different about Helly, whom Lower plays with a nervy intensity. She does not become a team player, despite training, bonding exercises and threats of the “break room” (the first word of which, at Lumon, is more verb than noun). She’s an irritant. Over an engrossing season, she prompts itches in her co-workers that lead them to wonder about their top-secret work and their outside lives, and to rebel. The forces against them include their deadpan, terrifying boss, Harmony Cobel (Patricia Arquette); politicians who are pushing to broaden the use of severance technology; and, in a way, their out-of-office selves. Sci-fi stories about altered consciousness, from “They Live” to “The Matrix” to “Homecoming,” often involve people having their minds tinkered with by aliens or evil institutions. “Severance” asks whether, given an incentive, you would subjugate a part of yourself, outsourcing your drudgery to another you, like Homer Simpson deferring his problems to “Future Homer.” (“Man, I don’t envy that guy!”) Playful and mordantly funny, “Severance” is like a Charlie Kaufman-designed nightmare, from the midcentury-menacing set to the way it sketches the innies’ hermetic lives. They walk through the elevator doors at quitting time, then immediately back in to start the day, as if someone has snipped off the rest of life and twisted the remainder into a Möbius strip. Undergirding the fun-house surrealism is the series’s feel for the soft tyrannies of the modern workplace. Troubled workers get a session with a “wellness” counselor (Dichen Lachman), who calms them with soothing trivia about outie life. The creepily cheerful H.R. rep/minder, Milchick (Tramell Tillman), bestows minor perks like a five-minute dance session or a “waffle party,” a goofy reward that becomes poignant when you realize the innies’ days eternally begin after breakfast and end before dinner. The series’s tone and palette shift when we leave the office with Mark, who, we learn, volunteered for severance after losing his wife. For him, the operation is a means of creating a grief-free second self. Scott’s features transform when Mark shifts to outie mode, his face deflating like a flat tire. Mark’s home life is not without drama; unbeknown to him, since he has no memory of the office, Harmony lives next door, surveilling him in the guise of a dotty neighbor. But maybe because of his sad-sack bearing (Scott feels more alive in the role of droll office guy, as in “Parks and Recreation”), the outside scenes drag, with a wintry pall that matches Mark’s gloom. Lumon may be a high-tech gulag, but it is by far the more fun place to spend time as a viewer. The nine-episode season suffers from streaming slump in the middle, but it hooks you early and accelerates late, as the data crunchers learn more about Lumon and its other departments. (Turturro’s Irving strikes up a sweet flirtation with a courtly associate played by Christopher Walken.) It all builds to a tense, stupendous season finale that feels like a racecar hurtling toward a brick wall, in the best way.\n", + " At the start of “Severance,” which begins Friday, the staffers work contentedly in their retro-minimalist office, sorting numbers on computer terminals. They fit neat workplace-sitcom archetypes: Irving (John Turturro), the starchy veteran; Dylan (Zach Cherry), the cynical wisecracker; and Mark, the nice guy struggling with the responsibilities he inherited when the former team leader (Yul Vazquez) suddenly vanished. (Sounds significant; it is.)\n", " Evidence\n", "\n", "\n", - "\n", - " The premise of “Severance” might appear superficially to be out of step with the times. After all, months of Slack huddles and Zoom meetings have fuzzed the boundaries between work and home, not carved them with a scalpel. But the story is perfectly timed for a moment when, through the stresses and disruptions of the pandemic, workers have been confronting what they’re asked to give of themselves for a paycheck. This may be the first great TV show of the Great Resignation.\n", - " Concluding Statement\n", + "\n", + " Their arrangement is shaken with the arrival of a new colleague, Helly (Britt Lower), who wakes on a conference table in an amnesiac stupor. (“Am I dead?” she asks. “Am I livestock?”) After she makes a brief, slapstick-violent attempt to flee, Mark explains that she is there of her own free will — “her” meaning her outie version, whose permission Helly would need in order to quit. Anyway, as Mark notes, “Quitting would effectively end your life, insomuch as you’ve come to know it.”\n", + " Evidence\n", "\n", "\n", "\n", - " There are also hints that severance might have applications beyond the workplace, which holds promise for future seasons. How many unpleasant aspects of life might people like to outsource to another version of themselves — or even to make someone else forget, with the aid of a little brain snip? What kind of heaven could you live in if your alter ego could, like Persephone, do the time in hell? In fact, “Severance” rings so true as a parable of modern life that it feels like a slight misstep for the series to depict Lumon the way it does — as a kind of cult, with a fanatical devotion to its 19th-century founder and his quasi biblical aphorisms. (“Let not weakness live in your veins.”)\n", + " There’s something different about Helly, whom Lower plays with a nervy intensity. She does not become a team player, despite training, bonding exercises and threats of the “break room” (the first word of which, at Lumon, is more verb than noun). She’s an irritant. Over an engrossing season, she prompts itches in her co-workers that lead them to wonder about their top-secret work and their outside lives, and to rebel.\n", " Evidence\n", "\n", "\n", - "\n", - " As we know from reality, it doesn’t take a monstrously aberrant organization to abuse productivity-enhancing technology. It’s just business.\n", - " Claim\n", + "\n", + " The forces against them include their deadpan, terrifying boss, Harmony Cobel (Patricia Arquette); politicians who are pushing to broaden the use of severance technology; and, in a way, their out-of-office selves.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Sci-fi stories about altered consciousness, from “They Live” to “The Matrix” to “Homecoming,” often involve people having their minds tinkered with by aliens or evil institutions. “Severance” asks whether, given an incentive, you would subjugate a part of yourself, outsourcing your drudgery to another you, like Homer Simpson deferring his problems to “Future Homer.” (“Man, I don’t envy that guy!”)\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Playful and mordantly funny, “Severance” is like a Charlie Kaufman-designed nightmare, from the midcentury-menacing set to the way it sketches the innies’ hermetic lives. They walk through the elevator doors at quitting time, then immediately back in to start the day, as if someone has snipped off the rest of life and twisted the remainder into a Möbius strip.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Undergirding the fun-house surrealism is the series’s feel for the soft tyrannies of the modern workplace. Troubled workers get a session with a “wellness” counselor (Dichen Lachman), who calms them with soothing trivia about outie life. The creepily cheerful H.R. rep/minder, Milchick (Tramell Tillman), bestows minor perks like a five-minute dance session or a “waffle party,” a goofy reward that becomes poignant when you realize the innies’ days eternally begin after breakfast and end before dinner.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The series’s tone and palette shift when we leave the office with Mark, who, we learn, volunteered for severance after losing his wife. For him, the operation is a means of creating a grief-free second self. Scott’s features transform when Mark shifts to outie mode, his face deflating like a flat tire.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mark’s home life is not without drama; unbeknown to him, since he has no memory of the office, Harmony lives next door, surveilling him in the guise of a dotty neighbor. But maybe because of his sad-sack bearing (Scott feels more alive in the role of droll office guy, as in “Parks and Recreation”), the outside scenes drag, with a wintry pall that matches Mark’s gloom. Lumon may be a high-tech gulag, but it is by far the more fun place to spend time as a viewer.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The nine-episode season suffers from streaming slump in the middle, but it hooks you early and accelerates late, as the data crunchers learn more about Lumon and its other departments. (Turturro’s Irving strikes up a sweet flirtation with a courtly associate played by Christopher Walken.) It all builds to a tense, stupendous season finale that feels like a racecar hurtling toward a brick wall, in the best way.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The premise of “Severance” might appear superficially to be out of step with the times. After all, months of Slack huddles and Zoom meetings have fuzzed the boundaries between work and home, not carved them with a scalpel. But the story is perfectly timed for a moment when, through the stresses and disruptions of the pandemic, workers have been confronting what they’re asked to give of themselves for a paycheck. This may be the first great TV show of the Great Resignation.\n", + " Concluding Statement\n", + "\n", + "\n", + "\n", + " There are also hints that severance might have applications beyond the workplace, which holds promise for future seasons. How many unpleasant aspects of life might people like to outsource to another version of themselves — or even to make someone else forget, with the aid of a little brain snip? What kind of heaven could you live in if your alter ego could, like Persephone, do the time in hell?\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In fact, “Severance” rings so true as a parable of modern life that it feels like a slight misstep for the series to depict Lumon the way it does — as a kind of cult, with a fanatical devotion to its 19th-century founder and his quasi biblical aphorisms. (“Let not weakness live in your veins.”)\n", + " Evidence\n", + "\n", + "\n", + "\n", + " As we know from reality, it doesn’t take a monstrously aberrant organization to abuse productivity-enhancing technology. It’s just business.\n", + " Claim\n", "\n", "
" ], @@ -24251,7 +33462,7 @@ { "data": { "text/html": [ - "

nytimes\\ski-tricks-utah.txt

" + "

ski-tricks-utah.txt

" ], "text/plain": [ "" @@ -24264,20 +33475,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-7b6184b6d5bd4cff\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-7b6184b6d5bd4cff\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-7b6184b6d5bd4cff\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-7b6184b6d5bd4cff\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "8bf9fa37d32d446cacfd0ff3a3807ce7", + "model_id": "e129bff5d54547a6b40606aea5c70437", "version_major": 2, "version_minor": 0 }, @@ -24289,58 +33494,16 @@ "output_type": "display_data" }, { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "7918ec0190ad468092337714e9e0ffde", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00\n", "\n", "\n", - " Constellations of sallow contusions pulse on my legs, and my elbows resemble raw meat. Sweat soaks my helmet and drips into my ski boots. I have fallen more today than in all of my 35 years of skiing. And yet, I’m grateful. This could be so much worse. It’s a brittle, 20-degree day in Park City, Utah, and feeble sunlight falls through the holes in the clouds. It is here in the spectacular Wasatch Mountains, 40 miles east of Salt Lake City, that you’ll find some of the country’s most famous ski areas. There’s Deer Valley, with its fizzy spas and brilliant glades, and Park City Mountain, a sprawling giant with heated lifts and 7,300 acres of terrain.\n", + " Constellations of sallow contusions pulse on my legs, and my elbows resemble raw meat. Sweat soaks my helmet and drips into my ski boots. I have fallen more today than in all of my 35 years of skiing. And yet, I’m grateful. This could be so much worse.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " It’s a brittle, 20-degree day in Park City, Utah, and feeble sunlight falls through the holes in the clouds. It is here in the spectacular Wasatch Mountains, 40 miles east of Salt Lake City, that you’ll find some of the country’s most famous ski areas. There’s Deer Valley, with its fizzy spas and brilliant glades, and Park City Mountain, a sprawling giant with heated lifts and 7,300 acres of terrain.\n", " Evidence\n", "\n", "\n", @@ -24438,7 +33719,22 @@ "\n", "\n", "\n", - " I learned to ski fairly young, and as a result, even now, well into my middle-age years, there are few slopes that scare me. I can fight my way down narrow chutes, maintain speeds that would earn a car a ticket, and keep my turns so tight in the trees I’ll emerge with moss on my jacket. But the thing I never learned to do properly is to jump. In those days it was illegal and I nearly lost a lift ticket once for catching air off a mogul. Decades later, once my skis leave earth, I still have all the control of space trash. I have come to Woodward to change that. That warehouse holds 66,000 square feet of total kid heaven, a palace full of Olympic-size trampolines, ramps and spring floors, where you can learn to fling yourself off things, over things, down things, even up things. Cavernous foam pits and an airbag with a pressure-monitoring system can transform what would have been a trip to the E.R. into a harmless flop on a featherbed. Master your moves inside and you can head outside to find more features. “We had a guy who always wanted to do a back flip on skis for his birthday,” says Matt Peterson, the marketing and brand director for Woodward Mountain Centers. “By the end of the day he was doing it, and he was 70.” Today is a Tuesday, not too busy, and kids are blasting off the biggest jump, a 10-foot-high monster with a foam pit deep enough to consume all traces of them upon impact.\n", + " I learned to ski fairly young, and as a result, even now, well into my middle-age years, there are few slopes that scare me. I can fight my way down narrow chutes, maintain speeds that would earn a car a ticket, and keep my turns so tight in the trees I’ll emerge with moss on my jacket. But the thing I never learned to do properly is to jump. In those days it was illegal and I nearly lost a lift ticket once for catching air off a mogul. Decades later, once my skis leave earth, I still have all the control of space trash.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " I have come to Woodward to change that. That warehouse holds 66,000 square feet of total kid heaven, a palace full of Olympic-size trampolines, ramps and spring floors, where you can learn to fling yourself off things, over things, down things, even up things. Cavernous foam pits and an airbag with a pressure-monitoring system can transform what would have been a trip to the E.R. into a harmless flop on a featherbed. Master your moves inside and you can head outside to find more features.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “We had a guy who always wanted to do a back flip on skis for his birthday,” says Matt Peterson, the marketing and brand director for Woodward Mountain Centers. “By the end of the day he was doing it, and he was 70.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Today is a Tuesday, not too busy, and kids are blasting off the biggest jump, a 10-foot-high monster with a foam pit deep enough to consume all traces of them upon impact.\n", " Evidence\n", "\n", "\n", @@ -24453,17 +33749,42 @@ "\n", "\n", "\n", - " For me, things are not so awesome. I’ve been here for hours and I’m still quivering atop the tiniest of the ramps, a relaxed U-shape formation with a three-foot jump that’s perfectly arced for an up-and-out trajectory. I’ve been hurling myself off this thing while wearing special roller skis that I can neither stop nor turn. Once I shove off I’m at the mercy of physics and the airbag, which after 40 — 50? 60? — crashes will still leave you bruised and bleeding. Max Leabman, a 33-year-old skiing and snowboarding coach, stands ready to film me in slow motion. I’ve hired him to teach me to do the only trick I have ever wanted to do, the simplest of tricks, the one that forms the basis for so many other tricks. A 360. That’s one full spin in the air.\n", + " For me, things are not so awesome. I’ve been here for hours and I’m still quivering atop the tiniest of the ramps, a relaxed U-shape formation with a three-foot jump that’s perfectly arced for an up-and-out trajectory. I’ve been hurling myself off this thing while wearing special roller skis that I can neither stop nor turn. Once I shove off I’m at the mercy of physics and the airbag, which after 40 — 50? 60? — crashes will still leave you bruised and bleeding.\n", " Evidence\n", "\n", "\n", + "\n", + " Max Leabman, a 33-year-old skiing and snowboarding coach, stands ready to film me in slow motion. I’ve hired him to teach me to do the only trick I have ever wanted to do, the simplest of tricks, the one that forms the basis for so many other tricks. A 360. That’s one full spin in the air.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “You got this,” Max says. “Confidence and commitment.”\n", + " Claim\n", + "\n", + "\n", "\n", - " “You got this,” Max says. “Confidence and commitment.” “Confidence and commitment,” I repeat, and push off down the ramp.\n", + " “Confidence and commitment,” I repeat, and push off down the ramp.\n", " Claim\n", "\n", "\n", "\n", - " Of the Olympic events that made their debuts at the Winter Games in Beijing this year, to me, nothing brings awe like the new big-air skiing event. To watch a breakable human roar 200-vertical-feet down a black-diamond-steep slope, hit a 16-foot-tall ramp at 40 m.p.h., soar 80 feet or more through the air, all while spinning and flipping, and somehow having enough “air awareness,” strength and flexibility to cross skis or to reach down and grab them for style points mid-flight — and then touch down with skis perfectly aligned on another steep slope, often backward: It’s enough to leave even veteran commentators flabbergasted. Consider the X Games in January in Aspen, when the Park City local and Olympian Alex Hall performed an electrifying “switch double-cork twenty-one sixty Buick-grab” a new trick whereby he hit the jump facing backward (switch), did six full spins (2,160 degrees), two of them so off-axis they looked more like spirals (double cork, like a corkscrew), all while reaching his right arm across his chest to grab his right ski, now behind him (a Buick grab), and then untangled himself to land at high speed, backward, again. “No way,” shouted the announcer, Tom Wallisch, a former X Games gold medalist, who asked for a slow-motion replay. “I need Alex to just tell me what he just did.” Of course, Mr. Hall, 23, an Olympic favorite, was building upon a long lineage of skiers who saw the doors that a little hang time could open. Stein Eriksen, “the father of freestyle skiing” threw gorgeous, swan-diving front flips in the 1950s and ’60s. The hot-doggers of the ’70s, like Wayne Wong, popularized more upright tricks, like the “daffy,” the air-walking, front-split-like strut best performed while wearing neon.\n", + " Of the Olympic events that made their debuts at the Winter Games in Beijing this year, to me, nothing brings awe like the new big-air skiing event. To watch a breakable human roar 200-vertical-feet down a black-diamond-steep slope, hit a 16-foot-tall ramp at 40 m.p.h., soar 80 feet or more through the air, all while spinning and flipping, and somehow having enough “air awareness,” strength and flexibility to cross skis or to reach down and grab them for style points mid-flight — and then touch down with skis perfectly aligned on another steep slope, often backward: It’s enough to leave even veteran commentators flabbergasted.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Consider the X Games in January in Aspen, when the Park City local and Olympian Alex Hall performed an electrifying “switch double-cork twenty-one sixty Buick-grab” a new trick whereby he hit the jump facing backward (switch), did six full spins (2,160 degrees), two of them so off-axis they looked more like spirals (double cork, like a corkscrew), all while reaching his right arm across his chest to grab his right ski, now behind him (a Buick grab), and then untangled himself to land at high speed, backward, again.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “No way,” shouted the announcer, Tom Wallisch, a former X Games gold medalist, who asked for a slow-motion replay. “I need Alex to just tell me what he just did.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Of course, Mr. Hall, 23, an Olympic favorite, was building upon a long lineage of skiers who saw the doors that a little hang time could open. Stein Eriksen, “the father of freestyle skiing” threw gorgeous, swan-diving front flips in the 1950s and ’60s. The hot-doggers of the ’70s, like Wayne Wong, popularized more upright tricks, like the “daffy,” the air-walking, front-split-like strut best performed while wearing neon.\n", " Evidence\n", "\n", "\n", @@ -24473,7 +33794,67 @@ "\n", "\n", "\n", - " Ski areas in the 1980s, after years of resistance, eventually embraced the rapscallion world of “snow surfing.” Soon ski resorts lifted bans on jumping and built skateboard-like “snowboard parks” that evolved into today’s terrain parks, with an array of half pipes, kickers, tabletops, boxes and rails. With these new features and attitudes, tricks became less about rigid gymnastics and more about style. Skiing quickly followed suit as companies like Salomon in 1998 marketed skis with “twin tips” for riding backward like snowboards could, but the “freeskiing” uptake still took time. In 2002, the mogul skier Jonny Moseley had to convince Olympic judges at the Winter Games in Park City that his “dinner roll,” a 720-degree, off-axis spin, didn’t violate fusty rules against inverted aerials since his ankles technically never went above his head. His execution was flawless, but the panel wasn’t wowed and Moseley took 4th. Today, the repertoire of tricks is staggering, as is the language used to describe them. “Safety grab double rodeo.” “Switch right quad cork 1620.” “Cab 5 double grab.” But at the root of these high-octane showpieces lies someone who began by mastering the humble 360. “That was the first trick I got good at,” Mr. Hall told me shortly before heading to Beijing, where he would win gold in the slopestyle skiing event. “The 360 is like the first piece in a puzzle you can use to put different tricks together to make more complicated tricks.” The word for that step-by-step approach is called “progression,” and you hear it a lot at Woodward. The company started in 1970 in Woodward, Penn., as a gymnastics camp, but has long since branched out into bike parks, skateparks and terrain parks at ski areas in Vermont, California, Colorado and Oregon. In 2009, Woodward opened its first indoor mountain center in Copper, Colo. The one in Park City opened in late 2019. At each facility, the idea is the same: Start small to go big. “Gymnastics really is terrific at figuring out how to take you along in steps,” said Phoebe Mills, Woodward Park City’s general manager, a snowboarder and a 1988 Olympic bronze medalist on the balance beam. “That’s the basis for what we’re doing.” Max, my coach, seemed confident my skiing experience and the progression method would have me doing 360s in a few hours. I met him midmorning, signed some waivers, and followed him out onto a red spring floor in my jeans, a T-shirt and socks. He pointed to a line on the floor. I stood on it. The first step to any trick is the “pop,” a snappy, two-footed jump you must time right as you take off from the ramp. A good pop sends you on a stable, balanced flight path. A poor pop spells disaster. People get scared on approach and lean back, which sends their feet shooting out from under them. Being “in the back seat,” as skiers say, strips you of all landing gear but your coccyx. On the floor, my pop was Olympian. Max asked me to jump and spin 180 degrees around to land back on the line. I did that by naturally rotating to the left. This was Max’s first clue about me. From then on he would focus on my dominant, “natural” direction of spin to the left, leaving the lessons on “unnatural” spins to the right for another time. Max asked me to try a full spin. He showed me how to use my arms to set the rotation in motion, and how to look over my left shoulder and lead with my left elbow until I could see forward. “Don’t worry about your legs,” he said. “Bottom follows top.” He popped, spun and landed on the line as if he were a rotary dial. I was certain I could do this, too, but I could not. I fell to the left. I fell to the right. I fell forward. I was never anything but an average athlete; now I didn’t even feel average. Max suggested we move to the trampolines where some extra airtime might help me make it around. It didn’t. Instead, it just exaggerated my flaws. Part of this was physics. I’m shaped like a misfit carrot — long and thin — and staying on axis is hard for carrots. Mostly, my balance — my joints, muscles and reflexes — really aren’t what they were. Soon I was sweating profusely, and I could hear blood marching around in my ears. Doubt set in. I hadn’t even been here an hour. A boy, maybe 8 years old, stood by, watching me suffer.\n", + " Ski areas in the 1980s, after years of resistance, eventually embraced the rapscallion world of “snow surfing.” Soon ski resorts lifted bans on jumping and built skateboard-like “snowboard parks” that evolved into today’s terrain parks, with an array of half pipes, kickers, tabletops, boxes and rails. With these new features and attitudes, tricks became less about rigid gymnastics and more about style.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Skiing quickly followed suit as companies like Salomon in 1998 marketed skis with “twin tips” for riding backward like snowboards could, but the “freeskiing” uptake still took time. In 2002, the mogul skier Jonny Moseley had to convince Olympic judges at the Winter Games in Park City that his “dinner roll,” a 720-degree, off-axis spin, didn’t violate fusty rules against inverted aerials since his ankles technically never went above his head. His execution was flawless, but the panel wasn’t wowed and Moseley took 4th.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Today, the repertoire of tricks is staggering, as is the language used to describe them. “Safety grab double rodeo.” “Switch right quad cork 1620.” “Cab 5 double grab.” But at the root of these high-octane showpieces lies someone who began by mastering the humble 360.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “That was the first trick I got good at,” Mr. Hall told me shortly before heading to Beijing, where he would win gold in the slopestyle skiing event. “The 360 is like the first piece in a puzzle you can use to put different tricks together to make more complicated tricks.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The word for that step-by-step approach is called “progression,” and you hear it a lot at Woodward. The company started in 1970 in Woodward, Penn., as a gymnastics camp, but has long since branched out into bike parks, skateparks and terrain parks at ski areas in Vermont, California, Colorado and Oregon. In 2009, Woodward opened its first indoor mountain center in Copper, Colo. The one in Park City opened in late 2019. At each facility, the idea is the same: Start small to go big.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Gymnastics really is terrific at figuring out how to take you along in steps,” said Phoebe Mills, Woodward Park City’s general manager, a snowboarder and a 1988 Olympic bronze medalist on the balance beam. “That’s the basis for what we’re doing.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Max, my coach, seemed confident my skiing experience and the progression method would have me doing 360s in a few hours. I met him midmorning, signed some waivers, and followed him out onto a red spring floor in my jeans, a T-shirt and socks. He pointed to a line on the floor. I stood on it.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The first step to any trick is the “pop,” a snappy, two-footed jump you must time right as you take off from the ramp. A good pop sends you on a stable, balanced flight path. A poor pop spells disaster. People get scared on approach and lean back, which sends their feet shooting out from under them. Being “in the back seat,” as skiers say, strips you of all landing gear but your coccyx.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " On the floor, my pop was Olympian. Max asked me to jump and spin 180 degrees around to land back on the line. I did that by naturally rotating to the left. This was Max’s first clue about me. From then on he would focus on my dominant, “natural” direction of spin to the left, leaving the lessons on “unnatural” spins to the right for another time.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Max asked me to try a full spin. He showed me how to use my arms to set the rotation in motion, and how to look over my left shoulder and lead with my left elbow until I could see forward. “Don’t worry about your legs,” he said. “Bottom follows top.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " He popped, spun and landed on the line as if he were a rotary dial. I was certain I could do this, too, but I could not. I fell to the left. I fell to the right. I fell forward. I was never anything but an average athlete; now I didn’t even feel average.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Max suggested we move to the trampolines where some extra airtime might help me make it around. It didn’t. Instead, it just exaggerated my flaws. Part of this was physics. I’m shaped like a misfit carrot — long and thin — and staying on axis is hard for carrots. Mostly, my balance — my joints, muscles and reflexes — really aren’t what they were.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Soon I was sweating profusely, and I could hear blood marching around in my ears. Doubt set in. I hadn’t even been here an hour. A boy, maybe 8 years old, stood by, watching me suffer.\n", " Evidence\n", "\n", "\n", @@ -24488,17 +33869,32 @@ "\n", "\n", "\n", - " Things got real when Max handed me some training skis called “ParkSkis,” which were about three-feet long with eight, small, white wheels mounted in such a way that the skis could roll closer to the ground than even a skateboard would. To get used to them, Max took me upstairs to a pump track, an undulating pathway made of a material called Skatelite. The idea is to use only your body in an up-and-down pumping motion to generate momentum. The skis felt more like awkward roller skates, and the Skatelite was surprisingly slick, but I zipped to the other side with ease.\n", + " Things got real when Max handed me some training skis called “ParkSkis,” which were about three-feet long with eight, small, white wheels mounted in such a way that the skis could roll closer to the ground than even a skateboard would.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " To get used to them, Max took me upstairs to a pump track, an undulating pathway made of a material called Skatelite. The idea is to use only your body in an up-and-down pumping motion to generate momentum. The skis felt more like awkward roller skates, and the Skatelite was surprisingly slick, but I zipped to the other side with ease.\n", " Evidence\n", "\n", "\n", "\n", - " “These feel great,” I said. “It’s time, then.”\n", + " “These feel great,” I said.\n", " Claim\n", "\n", "\n", + "\n", + " “It’s time, then.”\n", + " Claim\n", + "\n", + "\n", + "\n", + " Max took me to the top of the ramp with the airbag to practice trickless jumps, or “straight airs,” with good pop. This was much harder than standing still on the spring floor, but with each attempt, my pop improved.\n", + " Evidence\n", + "\n", + "\n", "\n", - " Max took me to the top of the ramp with the airbag to practice trickless jumps, or “straight airs,” with good pop. This was much harder than standing still on the spring floor, but with each attempt, my pop improved. At the top again, Max asked me to visualize a 360. I pictured pumping down the in-run with bent knees, arms out, chin high, ready to spin as I approached the ramp. In the air I’d be calm with my knees slightly drawn, my gaze pegged over my left shoulder with my left elbow pulling me around.\n", + " At the top again, Max asked me to visualize a 360. I pictured pumping down the in-run with bent knees, arms out, chin high, ready to spin as I approached the ramp. In the air I’d be calm with my knees slightly drawn, my gaze pegged over my left shoulder with my left elbow pulling me around.\n", " Evidence\n", "\n", "\n", @@ -24508,7 +33904,17 @@ "\n", "\n", "\n", - " I shoved off, but panic struck as I felt the skis tipping skyward. My pop fizzed and pitched me to starboard. I landed sideways and toppled over hard. Outside, my day would have been over. In here, the friction of my arm against the airbag relieved me of a tiny patch of skin. “A Woodward tattoo,” Max said. I tried and failed again. And again, and again. Max showed me replays in slow motion and the problem was obvious: I would begin my spin, but hold it only until I was halfway around. Instead of leading with my left elbow, I’d inexplicably send my arms back to the right. This created failure every time. I kept at it for what felt like hours. My tattoo became two tattoos and then a pair of hot wounds. My legs ached. My arms ached. My abdomen ached from crawling out of the airbag so many times.\n", + " I shoved off, but panic struck as I felt the skis tipping skyward. My pop fizzed and pitched me to starboard. I landed sideways and toppled over hard. Outside, my day would have been over. In here, the friction of my arm against the airbag relieved me of a tiny patch of skin. “A Woodward tattoo,” Max said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " I tried and failed again. And again, and again. Max showed me replays in slow motion and the problem was obvious: I would begin my spin, but hold it only until I was halfway around. Instead of leading with my left elbow, I’d inexplicably send my arms back to the right. This created failure every time.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " I kept at it for what felt like hours. My tattoo became two tattoos and then a pair of hot wounds. My legs ached. My arms ached. My abdomen ached from crawling out of the airbag so many times.\n", " Evidence\n", "\n", "\n", @@ -24533,7 +33939,12 @@ "\n", "\n", "\n", - " I stopped thinking. In the air my head stayed high. I looked over my shoulder and reached around for my right bum, but before I felt anything, I saw something. It was gray and poofy and straight ahead — the airbag. This is what they mean by “spot your landing.” I stayed calm. My legs came around and I touched down upright at last. “That’s it!” Max boomed, asking me to do it again. “Two for true.”\n", + " I stopped thinking. In the air my head stayed high. I looked over my shoulder and reached around for my right bum, but before I felt anything, I saw something. It was gray and poofy and straight ahead — the airbag. This is what they mean by “spot your landing.” I stayed calm. My legs came around and I touched down upright at last.\n", + " Lead\n", + "\n", + "\n", + "\n", + " “That’s it!” Max boomed, asking me to do it again. “Two for true.”\n", " Lead\n", "\n", "\n", @@ -24582,7 +33993,7 @@ { "data": { "text/html": [ - "

nytimes\\smartphones-iphone-android.txt

" + "

smartphones-iphone-android.txt

" ], "text/plain": [ "" @@ -24595,34 +34006,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-5e47972a68c07251\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-5e47972a68c07251\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-5e47972a68c07251\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-5e47972a68c07251\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "b23d06b36ef24c6ea24903327a98ff1f", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00\n", "\n", "\n", - " I’m going to pose an intentionally provocative question: What if smartphones are so successful and useful that they are holding back innovation? Technologists are now imagining what could be the next big thing. But there may never be anything else like the smartphone, the first and perhaps last mass market and globally transformative computer.\n", + " I’m going to pose an intentionally provocative question: What if smartphones are so successful and useful that they are holding back innovation?\n", + " Claim\n", + "\n", + "\n", + "\n", + " Technologists are now imagining what could be the next big thing. But there may never be anything else like the smartphone, the first and perhaps last mass market and globally transformative computer.\n", " Claim\n", "\n", "\n", @@ -24752,7 +34161,17 @@ "\n", "\n", "\n", - " When my colleague Mike Isaac tried Facebook’s new model of glasses that can snap photos with a tap on the temple, a company executive said to him: “Isn’t that better than having to take out your phone and hold it in front of your face every time you want to capture a moment?” I get the executive’s point. It’s true that devices like the Apple Watch, Facebook’s glasses and Snap’s Spectacles are clever about making features of smartphones less obtrusive. Companies including Facebook, Snap and Apple are also working on eyewear that — like the failed Google Glass — aims to combine digital information like maps with what we see around us. The comment also shows that any new consumer technology will have to answer the inevitable questions: Why should I buy another gadget to take photos, flip through cycling directions or play music when I can do most of that with the smartphone that’s already in my pocket? Do I need to live in the metaverse when I have a similar experience in the rectangular screen of my phone?\n", + " When my colleague Mike Isaac tried Facebook’s new model of glasses that can snap photos with a tap on the temple, a company executive said to him: “Isn’t that better than having to take out your phone and hold it in front of your face every time you want to capture a moment?”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " I get the executive’s point. It’s true that devices like the Apple Watch, Facebook’s glasses and Snap’s Spectacles are clever about making features of smartphones less obtrusive. Companies including Facebook, Snap and Apple are also working on eyewear that — like the failed Google Glass — aims to combine digital information like maps with what we see around us.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The comment also shows that any new consumer technology will have to answer the inevitable questions: Why should I buy another gadget to take photos, flip through cycling directions or play music when I can do most of that with the smartphone that’s already in my pocket? Do I need to live in the metaverse when I have a similar experience in the rectangular screen of my phone?\n", " Evidence\n", "\n", "\n", @@ -24767,12 +34186,27 @@ "\n", "\n", "\n", - " We wanted flying cars and we got an $850 robot vacuum that steers around dog doo: To build the latest Roomba, the company “built over 100 physical models of pet droppings, and trained algorithms on over a hundred thousand images to get the device to avoid crap,” The Washington Post writes. Also, the robots collect a lot of data from inside your home. (The Roomba is still confused by black striped carpet, though.) “It’s a startlingly dark show, and that’s on purpose.” This is a thought-provoking essay about a new streaming video series focused on a TikTok-famous family that humanizes the people who are thrust into social media celebrity. Check out these video clips from a nest of barred owls in Indiana. Baby owls learning to fly really are the cutest things. We want to hear from you. Tell us what you think of this newsletter and what else you’d like us to explore. You can reach us at ontech@nytimes.com.\n", + " We wanted flying cars and we got an $850 robot vacuum that steers around dog doo: To build the latest Roomba, the company “built over 100 physical models of pet droppings, and trained algorithms on over a hundred thousand images to get the device to avoid crap,” The Washington Post writes. Also, the robots collect a lot of data from inside your home. (The Roomba is still confused by black striped carpet, though.)\n", " Evidence\n", "\n", "\n", - "\n", - " If you don’t already get this newsletter in your inbox, please sign up here. You can also read past On Tech columns.\n", + "\n", + " “It’s a startlingly dark show, and that’s on purpose.” This is a thought-provoking essay about a new streaming video series focused on a TikTok-famous family that humanizes the people who are thrust into social media celebrity.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Check out these video clips from a nest of barred owls in Indiana. Baby owls learning to fly really are the cutest things.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " We want to hear from you. Tell us what you think of this newsletter and what else you’d like us to explore. You can reach us at ontech@nytimes.com.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " If you don’t already get this newsletter in your inbox, please sign up here. You can also read past On Tech columns.\n", " Concluding Statement\n", "\n", "" @@ -24796,7 +34230,7 @@ { "data": { "text/html": [ - "

nytimes\\space-china-billionaires.txt

" + "

space-china-billionaires.txt

" ], "text/plain": [ "" @@ -24809,34 +34243,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-6e60a68d7da07034\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-6e60a68d7da07034\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-6e60a68d7da07034\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-6e60a68d7da07034\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "a03a4148660546d49632890555f5c67c", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " The crowds that cheered the astronaut — about a quarter-million in Washington, four million in New York — adorned themselves in numerous ways. Some wore space helmets fashioned from cardboard and plastic. Others, less showily, wore buttons proclaiming John Glenn “the New Frontier man of the year,” a nod to John F. Kennedy’s famous phrase. Sixty years ago, Glenn became the first American to orbit Earth, opening up the frontier of human exploration in space — a frontier that stretched to the moon and beyond. The flight of Friendship 7 made it all seem possible. Glenn’s feat marked the start of a spectacular decade: spacewalks, trips around the moon, six lunar landings. Then the frontier receded. Since 1972, no human being has ventured outside Earth’s orbit. A generation has reached middle age without any memory of Americans on the moon. That could change soon. If NASA’s plan holds, its Artemis program will land the first woman and the first person of color on the moon in 2025. And this, NASA says, is just the beginning. The agency envisions at least 10 lunar landings. Its administrator, Bill Nelson, is waging a campaign to beat other nations in placing “boots on the moon” — not just boots but also, in time, a base. And “the sooner we get to the moon,” NASA has said, “the sooner we get American astronauts to Mars.”\n", + " The crowds that cheered the astronaut — about a quarter-million in Washington, four million in New York — adorned themselves in numerous ways. Some wore space helmets fashioned from cardboard and plastic. Others, less showily, wore buttons proclaiming John Glenn “the New Frontier man of the year,” a nod to John F. Kennedy’s famous phrase. Sixty years ago, Glenn became the first American to orbit Earth, opening up the frontier of human exploration in space — a frontier that stretched to the moon and beyond. The flight of Friendship 7 made it all seem possible.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Glenn’s feat marked the start of a spectacular decade: spacewalks, trips around the moon, six lunar landings. Then the frontier receded. Since 1972, no human being has ventured outside Earth’s orbit. A generation has reached middle age without any memory of Americans on the moon.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " That could change soon. If NASA’s plan holds, its Artemis program will land the first woman and the first person of color on the moon in 2025. And this, NASA says, is just the beginning. The agency envisions at least 10 lunar landings. Its administrator, Bill Nelson, is waging a campaign to beat other nations in placing “boots on the moon” — not just boots but also, in time, a base. And “the sooner we get to the moon,” NASA has said, “the sooner we get American astronauts to Mars.”\n", " Evidence\n", "\n", "\n", @@ -24930,7 +34346,32 @@ "\n", "\n", "\n", - " In 1961, when Kennedy proposed to send Americans to the moon, a senator warned that the administration had “a lot of missionary work” to do. That is surely the case today. Mr. Nelson has been making a persistent pitch for funding, but Congress appears unpersuaded. President Biden, for his part, has signaled support for Artemis but is more focused on the nation’s commercial and military capabilities in space, as well as the vantage point that space provides to observe climate change. Vice President Kamala Harris, the chair of the National Space Council, rarely mentions human spaceflight, stressing instead “the responsibility to look to our home planet.” And reasonably so. Our planet has plenty to worry about, not least the damage we do to its atmosphere. But there is an argument to be made for the human exploration of space — a better argument, at least, than the White House and NASA have put forward. If the administration fails to sharpen and press its case, if it shies from insisting that humans, not just our inventions, should roam the heavens, the United States will likely cede the moon — and a good deal more than that — to more determined competitors. Chief among them is China. Its goal is plain: to become a “great space power,” as President Xi Jinping has said. China’s Mars rover, arriving on the heels of our own, has been an impressive success; China also has a probe on the far side of the moon — a first for any nation. Its space station is nearly complete, while the International Space Station, after more than two decades orbiting Earth, approaches obsolescence and NASA turns to private companies to build and run its successors. Like the United States, China hopes to build a research station on the lunar surface. Unlike the United States, China gives no reason to doubt its resolve. It will also have a partner: Russia. The two countries have already begun to align their efforts. Mr. Nelson cites an “aggressive” China as a reason for Americans to “get off our duff,” but a few national security questions require a fuller airing. What if, for example, China stakes out strategic positions on the moon? What if it asserts control over the resources it and other nations are searching for there: silicon, titanium and, not least, the water that is needed to sustain a human settlement? As Namrata Goswami, an expert on China’s space policy, has argued, “An advantage in accessing the vast wealth of the inner solar system could have an effect on the balance of power” on Earth. If anyone is as bullish on the new frontier as China, it is the billionaires. Their ambitions, too, should spur NASA to stay in the game. Jeff Bezos and Elon Musk might or might not be visionaries, but they are easily the most powerful people on this planet to speak with a straight face about colonizing other ones. Mr. Musk warns of an “extinction event” that will require us to leave Earth behind. There is a certain egalitarianism in the idea of an escape hatch for humanity, though it is the egalitarianism of rats leaving a sinking (or overheating) ship. It would have to get pretty bad down here before ordinary people follow the billionaires into the black void of space rather than bid them adieu. Mr. Musk’s product placement of a Tesla in orbit and Mr. Bezos’ postflight performance in his cowboy hat leave one wary of their motives and nostalgic for the military bearing of Glenn. If space travel lost its novelty in the early 1970s, it might now be in the process of losing its dignity. Of course, this takes nothing away from the achievements of Mr. Musk’s aerospace company, SpaceX. Rarely in any industry has such boldness of imagination been matched by such brilliance in execution. The company is an indispensable partner to NASA; a SpaceX landing system will carry astronauts to and from the moon’s surface.\n", + " In 1961, when Kennedy proposed to send Americans to the moon, a senator warned that the administration had “a lot of missionary work” to do. That is surely the case today. Mr. Nelson has been making a persistent pitch for funding, but Congress appears unpersuaded. President Biden, for his part, has signaled support for Artemis but is more focused on the nation’s commercial and military capabilities in space, as well as the vantage point that space provides to observe climate change. Vice President Kamala Harris, the chair of the National Space Council, rarely mentions human spaceflight, stressing instead “the responsibility to look to our home planet.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " And reasonably so. Our planet has plenty to worry about, not least the damage we do to its atmosphere. But there is an argument to be made for the human exploration of space — a better argument, at least, than the White House and NASA have put forward. If the administration fails to sharpen and press its case, if it shies from insisting that humans, not just our inventions, should roam the heavens, the United States will likely cede the moon — and a good deal more than that — to more determined competitors.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Chief among them is China. Its goal is plain: to become a “great space power,” as President Xi Jinping has said. China’s Mars rover, arriving on the heels of our own, has been an impressive success; China also has a probe on the far side of the moon — a first for any nation. Its space station is nearly complete, while the International Space Station, after more than two decades orbiting Earth, approaches obsolescence and NASA turns to private companies to build and run its successors. Like the United States, China hopes to build a research station on the lunar surface. Unlike the United States, China gives no reason to doubt its resolve. It will also have a partner: Russia. The two countries have already begun to align their efforts.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mr. Nelson cites an “aggressive” China as a reason for Americans to “get off our duff,” but a few national security questions require a fuller airing. What if, for example, China stakes out strategic positions on the moon? What if it asserts control over the resources it and other nations are searching for there: silicon, titanium and, not least, the water that is needed to sustain a human settlement? As Namrata Goswami, an expert on China’s space policy, has argued, “An advantage in accessing the vast wealth of the inner solar system could have an effect on the balance of power” on Earth.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " If anyone is as bullish on the new frontier as China, it is the billionaires. Their ambitions, too, should spur NASA to stay in the game. Jeff Bezos and Elon Musk might or might not be visionaries, but they are easily the most powerful people on this planet to speak with a straight face about colonizing other ones. Mr. Musk warns of an “extinction event” that will require us to leave Earth behind. There is a certain egalitarianism in the idea of an escape hatch for humanity, though it is the egalitarianism of rats leaving a sinking (or overheating) ship. It would have to get pretty bad down here before ordinary people follow the billionaires into the black void of space rather than bid them adieu. Mr. Musk’s product placement of a Tesla in orbit and Mr. Bezos’ postflight performance in his cowboy hat leave one wary of their motives and nostalgic for the military bearing of Glenn. If space travel lost its novelty in the early 1970s, it might now be in the process of losing its dignity.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Of course, this takes nothing away from the achievements of Mr. Musk’s aerospace company, SpaceX. Rarely in any industry has such boldness of imagination been matched by such brilliance in execution. The company is an indispensable partner to NASA; a SpaceX landing system will carry astronauts to and from the moon’s surface.\n", " Evidence\n", "\n", "\n", @@ -24940,7 +34381,12 @@ "\n", "\n", "\n", - " “The exploration of space will go ahead, whether we join in it or not,” Kennedy said in 1962 at Rice University, warning that “no nation which expects to be the leader of other nations can expect to stay behind in this race for space.” Perhaps this logic has lost its power; perhaps Americans don’t care if the billionaires and China have the moon to themselves. The idea of space as a new frontier, too, might be tired, overworked. (During the Super Bowl, a Salesforce ad dismissed it with an “Eh.”) But the thrilling discoveries by Perseverance — the evidence of ancient Martian river deltas and lava flows — give eloquent testimony to the mysteries that await on the frontier. Robots like these are stunningly capable. Still, they cannot invent or imagine; they cannot drive the process of discovery in space any more than they do here on Earth. Only humans can lead, and to lead, humans must go. Science “is simply the exploration of the unknown,” James Head, a planetary geologist at Brown who helped train the Apollo astronauts, told me, adding that “the moon is unknown. Mars is unknown.” Perhaps this is what NASA should say, and without apology: We don’t know what we’ll find. We don’t know what the moon and Mars can tell us about the origins of the universe and life on Earth and possibly beyond it. And that, above all, is the reason for going. Six days after his return to Earth, Glenn addressed a joint meeting of Congress. “What benefits are we gaining from the money spent?” he asked, acknowledging that it was too early to say. “But exploration and the pursuit of knowledge,” he said, “have always paid dividends in the long run — usually far greater than anything expected at the outset.” Why bother? This is why.\n", + " “The exploration of space will go ahead, whether we join in it or not,” Kennedy said in 1962 at Rice University, warning that “no nation which expects to be the leader of other nations can expect to stay behind in this race for space.” Perhaps this logic has lost its power; perhaps Americans don’t care if the billionaires and China have the moon to themselves. The idea of space as a new frontier, too, might be tired, overworked. (During the Super Bowl, a Salesforce ad dismissed it with an “Eh.”) But the thrilling discoveries by Perseverance — the evidence of ancient Martian river deltas and lava flows — give eloquent testimony to the mysteries that await on the frontier. Robots like these are stunningly capable. Still, they cannot invent or imagine; they cannot drive the process of discovery in space any more than they do here on Earth. Only humans can lead, and to lead, humans must go.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Science “is simply the exploration of the unknown,” James Head, a planetary geologist at Brown who helped train the Apollo astronauts, told me, adding that “the moon is unknown. Mars is unknown.” Perhaps this is what NASA should say, and without apology: We don’t know what we’ll find. We don’t know what the moon and Mars can tell us about the origins of the universe and life on Earth and possibly beyond it. And that, above all, is the reason for going. Six days after his return to Earth, Glenn addressed a joint meeting of Congress. “What benefits are we gaining from the money spent?” he asked, acknowledging that it was too early to say. “But exploration and the pursuit of knowledge,” he said, “have always paid dividends in the long run — usually far greater than anything expected at the outset.” Why bother? This is why.\n", " Evidence\n", "\n", "
" @@ -24964,7 +34410,7 @@ { "data": { "text/html": [ - "

nytimes\\spotify-joe-rogan-misinformation.txt

" + "

spotify-joe-rogan-misinformation.txt

" ], "text/plain": [ "" @@ -24977,34 +34423,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-83bee6c9ee7fa303\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-83bee6c9ee7fa303\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-83bee6c9ee7fa303\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-83bee6c9ee7fa303\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "8a1883b3f2e04bee98b99bbfcfc8da95", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00\n", "\n", "\n", - " Spotify was already the king of music streaming. But to help propel the company into its next phase as an all-purpose audio juggernaut, and further challenge Apple and Google, it wanted a superstar podcaster, much as Howard Stern helped put satellite radio on the map in 2006. Spotify executives came to view Joe Rogan — a comedian and sports commentator whose no-holds-barred podcast, “The Joe Rogan Experience,” was already a monster hit on YouTube — as that transformative star. In May 2020, after an intense courtship, Spotify announced a licensing agreement to host Mr. Rogan’s show exclusively. Although reported then to be worth more than $100 million, the true value of the deal that was negotiated at the time, which covered three and a half years, was at least $200 million, with the possibility of more, according to two people familiar with the details of the transaction who spoke anonymously because they were not authorized to discuss it.\n", + " Spotify was already the king of music streaming. But to help propel the company into its next phase as an all-purpose audio juggernaut, and further challenge Apple and Google, it wanted a superstar podcaster, much as Howard Stern helped put satellite radio on the map in 2006. Spotify executives came to view Joe Rogan — a comedian and sports commentator whose no-holds-barred podcast, “The Joe Rogan Experience,” was already a monster hit on YouTube — as that transformative star.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In May 2020, after an intense courtship, Spotify announced a licensing agreement to host Mr. Rogan’s show exclusively. Although reported then to be worth more than $100 million, the true value of the deal that was negotiated at the time, which covered three and a half years, was at least $200 million, with the possibility of more, according to two people familiar with the details of the transaction who spoke anonymously because they were not authorized to discuss it.\n", " Evidence\n", "\n", "\n", @@ -25138,7 +34628,37 @@ "
\n", "\n", "\n", - " It began when several prominent artists, led by Neil Young, took their music off the service to protest what they described as Covid vaccine misinformation on Mr. Rogan’s show. Then clips from old “Joe Rogan Experience” episodes caught fire on social media, showing him using a racial slur repeatedly and chuckling at jokes about sexual exploitation, prompting Mr. Rogan to apologize for his past use of the slur. A #DeleteSpotify social media campaign began calling for a boycott. And some Spotify podcasters publicly criticized Mr. Rogan and the platform. Spotify declined to make company executives available for interviews. Dustee Jenkins, a spokeswoman for the company, declined to comment on the terms of Mr. Rogan’s deal. Representatives of Mr. Rogan did not respond to multiple requests for comment. Even in the frothy podcast market, the deal for “The Joe Rogan Experience” was extraordinary. Spotify had purchased entire content companies, Gimlet Media and The Ringer, for slightly less than $200 million each, according to company filings. With tens of millions of listeners for its buzziest episodes, “The Joe Rogan Experience” is Spotify’s biggest podcast not only in the United States but in 92 other markets, with a following that hangs on every word of his hourslong shows. In its financial reports, Spotify cites podcasts — and Mr. Rogan’s show in particular — as a factor in the long-sought growth of its advertising business. At a recent company meeting, Daniel Ek, Spotify’s chief executive, told employees that exclusive content like Mr. Rogan’s show is vital ammunition in Spotify’s competition against tech Goliaths like Apple and Google. As Mr. Rogan faced growing public criticism, Spotify responded by reaffirming its commitment to free speech, even as dozens of Mr. Rogan’s past episodes have been removed. It also made its content guidelines public for the first time, said that it would add “content advisory” notices to episodes discussing the coronavirus and promised to contribute $100 million for work by creators “from historically marginalized groups.” The moves came as Spotify faced growing dissension among high-profile creators. This month Ava DuVernay, the film director who announced a podcast deal with Spotify a year ago but has yet to produce any content under it, severed her ties with Spotify, according to a statement from her production company, Array. And Jemele Hill, the former ESPN commentator, said that Spotify’s defense of Mr. Rogan had created problems with her audience, and raised questions about the sincerity of the company’s dedication to minority talent. “What I would like to see,” Ms. Hill said in an interview, “is for them to hand $100 million to somebody who is Black.”\n", + " It began when several prominent artists, led by Neil Young, took their music off the service to protest what they described as Covid vaccine misinformation on Mr. Rogan’s show. Then clips from old “Joe Rogan Experience” episodes caught fire on social media, showing him using a racial slur repeatedly and chuckling at jokes about sexual exploitation, prompting Mr. Rogan to apologize for his past use of the slur. A #DeleteSpotify social media campaign began calling for a boycott. And some Spotify podcasters publicly criticized Mr. Rogan and the platform.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Spotify declined to make company executives available for interviews. Dustee Jenkins, a spokeswoman for the company, declined to comment on the terms of Mr. Rogan’s deal. Representatives of Mr. Rogan did not respond to multiple requests for comment.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Even in the frothy podcast market, the deal for “The Joe Rogan Experience” was extraordinary. Spotify had purchased entire content companies, Gimlet Media and The Ringer, for slightly less than $200 million each, according to company filings.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " With tens of millions of listeners for its buzziest episodes, “The Joe Rogan Experience” is Spotify’s biggest podcast not only in the United States but in 92 other markets, with a following that hangs on every word of his hourslong shows. In its financial reports, Spotify cites podcasts — and Mr. Rogan’s show in particular — as a factor in the long-sought growth of its advertising business. At a recent company meeting, Daniel Ek, Spotify’s chief executive, told employees that exclusive content like Mr. Rogan’s show is vital ammunition in Spotify’s competition against tech Goliaths like Apple and Google.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " As Mr. Rogan faced growing public criticism, Spotify responded by reaffirming its commitment to free speech, even as dozens of Mr. Rogan’s past episodes have been removed. It also made its content guidelines public for the first time, said that it would add “content advisory” notices to episodes discussing the coronavirus and promised to contribute $100 million for work by creators “from historically marginalized groups.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The moves came as Spotify faced growing dissension among high-profile creators. This month Ava DuVernay, the film director who announced a podcast deal with Spotify a year ago but has yet to produce any content under it, severed her ties with Spotify, according to a statement from her production company, Array. And Jemele Hill, the former ESPN commentator, said that Spotify’s defense of Mr. Rogan had created problems with her audience, and raised questions about the sincerity of the company’s dedication to minority talent.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “What I would like to see,” Ms. Hill said in an interview, “is for them to hand $100 million to somebody who is Black.”\n", " Evidence\n", "\n", "\n", @@ -25148,7 +34668,12 @@ "\n", "\n", "\n", - " The company dipped its toe into video around 2015, but little came of it. By 2018, the year Spotify listed its shares on the New York Stock Exchange, it was forming plans to pursue Mr. Rogan, hoping to supercharge its market position in non-music audio and to chip away at the dominance of Apple and Google’s YouTube. To make Spotify a player in podcasting, Mr. Ek and his deputies, including Dawn Ostroff, a former television and magazine publishing executive, and Courtney Holt, formerly of Maker Studios, an online video network, set out on a multipart strategy. Spotify would buy audio studios, like Gimlet, and acquire exclusive rights to existing shows. With Spotify Originals, the company would also create buzzy new programs in partnership with creators like Ms. DuVernay’s Array and Higher Ground, the production company of former President Barack Obama and Michelle Obama.\n", + " The company dipped its toe into video around 2015, but little came of it. By 2018, the year Spotify listed its shares on the New York Stock Exchange, it was forming plans to pursue Mr. Rogan, hoping to supercharge its market position in non-music audio and to chip away at the dominance of Apple and Google’s YouTube.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " To make Spotify a player in podcasting, Mr. Ek and his deputies, including Dawn Ostroff, a former television and magazine publishing executive, and Courtney Holt, formerly of Maker Studios, an online video network, set out on a multipart strategy. Spotify would buy audio studios, like Gimlet, and acquire exclusive rights to existing shows. With Spotify Originals, the company would also create buzzy new programs in partnership with creators like Ms. DuVernay’s Array and Higher Ground, the production company of former President Barack Obama and Michelle Obama.\n", " Evidence\n", "\n", "\n", @@ -25158,7 +34683,17 @@ "\n", "\n", "\n", - " “All music streaming services are offering the same plain vanilla ice cream at the same price,” said Will Page, Spotify’s former top economist, who was not involved in the Rogan deal but is a frequent commentator on the digital media business. “The overarching issue is how do you make your customer proposition distinct.” The strategy had seemed to be working for Netflix, which produced its first original show in 2012 as a way to differentiate itself from other streaming services. Barry McCarthy, a former top executive at Netflix, was Spotify’s chief financial officer until early 2020 and is now on its board. (Earlier this month, he was named the chief executive of Peloton.) Ted Sarandos, the co-chief executive officer of Netflix, is also on the board. With podcasts, Spotify could be more in charge of its own destiny, and could pocket more of the advertising and subscription fees it relies on. And with the company’s later acquisitions of start-ups like Megaphone and Whooshkaa, Spotify could provide better tools for both the many podcasters who work with Spotify and the marketers who purchase ads on the platform. This week, Spotify expanded its portfolio of podcast tools by acquiring two more companies, Podsights and Chartable. \n", + " “All music streaming services are offering the same plain vanilla ice cream at the same price,” said Will Page, Spotify’s former top economist, who was not involved in the Rogan deal but is a frequent commentator on the digital media business. “The overarching issue is how do you make your customer proposition distinct.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The strategy had seemed to be working for Netflix, which produced its first original show in 2012 as a way to differentiate itself from other streaming services. Barry McCarthy, a former top executive at Netflix, was Spotify’s chief financial officer until early 2020 and is now on its board. (Earlier this month, he was named the chief executive of Peloton.) Ted Sarandos, the co-chief executive officer of Netflix, is also on the board.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " With podcasts, Spotify could be more in charge of its own destiny, and could pocket more of the advertising and subscription fees it relies on. And with the company’s later acquisitions of start-ups like Megaphone and Whooshkaa, Spotify could provide better tools for both the many podcasters who work with Spotify and the marketers who purchase ads on the platform. This week, Spotify expanded its portfolio of podcast tools by acquiring two more companies, Podsights and Chartable. \n", " Evidence\n", "\n", "\n", @@ -25173,7 +34708,17 @@ "\n", "\n", "\n", - " Since the show’s debut in 2009, Mr. Rogan, a mixed martial arts enthusiast and comedian, had made himself into a podcasting heavyweight, landing an eclectic range of guests and engaging them in freewheeling, uncensored conversations. The results could be wildly entertaining, as when Mr. Rogan smoked marijuana with Elon Musk, the billionaire founder of Tesla, in 2018. Or they could be inflammatory, as when Mr. Rogan hosted the conspiracy theorist Alex Jones — who has spread bogus theories that the 2012 killing of 20 children and six educators at an elementary school in Newtown, Conn., was a hoax — despite Mr. Jones being barred from Spotify for violating its prohibition on hate speech two years prior. Mr. Rogan is no standard, one-sided media talking head. He supported Bernie Sanders for president and stumps for universal health care. But he also has some libertarian views and expressed skepticism about vaccines, suggesting that “healthy” young people, for example, do not need to get vaccinated for Covid-19, contrary to what scientists and health officials were urging. The left-leaning watchdog group Media Matters for America has documented more than 20 instances of what it characterizes as Covid-19 misinformation, bigotry and anti-trans language on Mr. Rogan’s show — in 2021 alone.\n", + " Since the show’s debut in 2009, Mr. Rogan, a mixed martial arts enthusiast and comedian, had made himself into a podcasting heavyweight, landing an eclectic range of guests and engaging them in freewheeling, uncensored conversations.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The results could be wildly entertaining, as when Mr. Rogan smoked marijuana with Elon Musk, the billionaire founder of Tesla, in 2018. Or they could be inflammatory, as when Mr. Rogan hosted the conspiracy theorist Alex Jones — who has spread bogus theories that the 2012 killing of 20 children and six educators at an elementary school in Newtown, Conn., was a hoax — despite Mr. Jones being barred from Spotify for violating its prohibition on hate speech two years prior.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mr. Rogan is no standard, one-sided media talking head. He supported Bernie Sanders for president and stumps for universal health care. But he also has some libertarian views and expressed skepticism about vaccines, suggesting that “healthy” young people, for example, do not need to get vaccinated for Covid-19, contrary to what scientists and health officials were urging. The left-leaning watchdog group Media Matters for America has documented more than 20 instances of what it characterizes as Covid-19 misinformation, bigotry and anti-trans language on Mr. Rogan’s show — in 2021 alone.\n", " Evidence\n", "\n", "\n", @@ -25193,7 +34738,67 @@ "\n", "\n", "\n", - " For many rank-and-file employees at Spotify, landing Mr. Rogan was far from something to be celebrated. He was already known for elevating controversial figures like Mr. Jones and Gavin McInnes, founder of the alt-right group the Proud Boys. The news that Mr. Rogan would be joining the platform brought with it an initial wave of concern inside the company, according to several current and former employees. That reached a flash point in September 2020, when a number of employees pushed back against episodes of Mr. Rogan’s show that they felt were transphobic. One employee group, Spectrum — made up of L.G.B.T. members or supporters — pressed management over why Spotify had made the deal with Mr. Rogan despite knowing how divisive some of his content could be, according to current and former employees who witnessed the events at the time. There had also been concerns within Spotify that the company had not invested enough in moderation tools to review podcasts, an area known as “trust and safety.” The deluge of podcasts each week introduced new risks about harmful content that the company had not previously dealt with as a music service. Mr. Ek defended the company’s decisions at the time, while meeting with many of the concerned employee groups to try to assuage their concerns. Management’s position, however, was clear: Mr. Rogan wasn’t going anywhere. As the months wore on and Mr. Rogan showed no sign of shying away from controversy, more people connected to the company began to speak out against his presence on the platform. In January, after 270 scientists, medical professionals and others wrote to Spotify to raise alarms about Covid-related misinformation on Mr. Rogan’s show, executives made assurances internally that the company was taking the issue seriously and that it was continuing to review Mr. Rogan’s shows to make sure they were complying with Spotify’s rules, said a person involved in the discussions. The issue exploded on Jan. 24, when Mr. Young, the rock icon, posted a public letter demanding that his music be removed from Spotify over coronavirus misinformation. “They can have Rogan or Young,” he wrote. “Not both.” Joni Mitchell followed him off the platform, and within days, Prince Harry and Meghan Markle, the Duke and Duchess of Sussex, who have their own deal to produce podcasts for Spotify but have produced only one, voiced their own concerns about Covid misinformation on the platform. Amid the backlash, Mr. Rogan promised to add “balance” to the conversations on his show. But days later, the crisis widened when the R&B singer India.Arie posted a video compilation of Mr. Rogan repeatedly using a racial slur, and said she wished to withdraw her music as well. She and other musicians also used the episode to reiterate long-running complaints that the streaming economy does not pay artists enough. As the controversy swirled, many Spotify workers felt management was too slow to respond, two current employees said. It also raised alarms on Spotify’s board of directors, where some members have been disappointed by the company’s halting response, according to a person familiar with the events who asked to remain anonymous because of confidentiality agreements. Management of the crisis in the United States may have been further complicated because Spotify’s headquarters is nearly 4,000 miles away, in Sweden, where Mr. Ek, a publicity-shy executive who grew up in a suburb of Stockholm, and many of the company’s engineers and longest-tenured employees are based. Free expression is a deeply held belief in Sweden. Many employees there — and in the United States — were angry when Spotify removed music by R. Kelly and XXXTentacion from playlists in 2018 for content or conduct deemed offensive, a decision the company quickly reversed. Mr. Ek has made it clear that he is wary of taking on the role of censor. “We’re not in the business of dictating the discourse that these creators want to have on their shows,” he told employees earlier this month in a speech first reported by The Verge, adding that “if we only wanted to make content that we all like and agree with, we will need to eliminate religion, and politics, and comedy, and health, and environment, and education, the list goes on and on and on.”\n", + " For many rank-and-file employees at Spotify, landing Mr. Rogan was far from something to be celebrated. He was already known for elevating controversial figures like Mr. Jones and Gavin McInnes, founder of the alt-right group the Proud Boys. The news that Mr. Rogan would be joining the platform brought with it an initial wave of concern inside the company, according to several current and former employees.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " That reached a flash point in September 2020, when a number of employees pushed back against episodes of Mr. Rogan’s show that they felt were transphobic. One employee group, Spectrum — made up of L.G.B.T. members or supporters — pressed management over why Spotify had made the deal with Mr. Rogan despite knowing how divisive some of his content could be, according to current and former employees who witnessed the events at the time.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " There had also been concerns within Spotify that the company had not invested enough in moderation tools to review podcasts, an area known as “trust and safety.” The deluge of podcasts each week introduced new risks about harmful content that the company had not previously dealt with as a music service.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mr. Ek defended the company’s decisions at the time, while meeting with many of the concerned employee groups to try to assuage their concerns. Management’s position, however, was clear: Mr. Rogan wasn’t going anywhere.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " As the months wore on and Mr. Rogan showed no sign of shying away from controversy, more people connected to the company began to speak out against his presence on the platform.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In January, after 270 scientists, medical professionals and others wrote to Spotify to raise alarms about Covid-related misinformation on Mr. Rogan’s show, executives made assurances internally that the company was taking the issue seriously and that it was continuing to review Mr. Rogan’s shows to make sure they were complying with Spotify’s rules, said a person involved in the discussions.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The issue exploded on Jan. 24, when Mr. Young, the rock icon, posted a public letter demanding that his music be removed from Spotify over coronavirus misinformation. “They can have Rogan or Young,” he wrote. “Not both.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Joni Mitchell followed him off the platform, and within days, Prince Harry and Meghan Markle, the Duke and Duchess of Sussex, who have their own deal to produce podcasts for Spotify but have produced only one, voiced their own concerns about Covid misinformation on the platform.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Amid the backlash, Mr. Rogan promised to add “balance” to the conversations on his show. But days later, the crisis widened when the R&B singer India.Arie posted a video compilation of Mr. Rogan repeatedly using a racial slur, and said she wished to withdraw her music as well. She and other musicians also used the episode to reiterate long-running complaints that the streaming economy does not pay artists enough.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " As the controversy swirled, many Spotify workers felt management was too slow to respond, two current employees said. It also raised alarms on Spotify’s board of directors, where some members have been disappointed by the company’s halting response, according to a person familiar with the events who asked to remain anonymous because of confidentiality agreements.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Management of the crisis in the United States may have been further complicated because Spotify’s headquarters is nearly 4,000 miles away, in Sweden, where Mr. Ek, a publicity-shy executive who grew up in a suburb of Stockholm, and many of the company’s engineers and longest-tenured employees are based. \n", + " Evidence\n", + "\n", + "\n", + "\n", + " Free expression is a deeply held belief in Sweden. Many employees there — and in the United States — were angry when Spotify removed music by R. Kelly and XXXTentacion from playlists in 2018 for content or conduct deemed offensive, a decision the company quickly reversed.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mr. Ek has made it clear that he is wary of taking on the role of censor. “We’re not in the business of dictating the discourse that these creators want to have on their shows,” he told employees earlier this month in a speech first reported by The Verge, adding that “if we only wanted to make content that we all like and agree with, we will need to eliminate religion, and politics, and comedy, and health, and environment, and education, the list goes on and on and on.”\n", " Evidence\n", "\n", "\n", @@ -25203,7 +34808,12 @@ "\n", "\n", "\n", - " “That could put at risk their future podcast strategy,” Mr. Mulligan said. In a recent memo to employees, Mr. Ek wrote that “canceling voices is a slippery slope” but acknowledged that a number of episodes of Mr. Rogan’s show had been removed from the platform. He wrote that Mr. Rogan had decided to remove them after meetings with Spotify executives and “his own reflections.”\n", + " “That could put at risk their future podcast strategy,” Mr. Mulligan said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In a recent memo to employees, Mr. Ek wrote that “canceling voices is a slippery slope” but acknowledged that a number of episodes of Mr. Rogan’s show had been removed from the platform. He wrote that Mr. Rogan had decided to remove them after meetings with Spotify executives and “his own reflections.”\n", " Evidence\n", "\n", "" @@ -25227,7 +34837,7 @@ { "data": { "text/html": [ - "

nytimes\\stanytsia-lushankya-shelling.txt

" + "

stanytsia-lushankya-shelling.txt

" ], "text/plain": [ "" @@ -25240,20 +34850,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-0a8794a9c63f3ccc\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-0a8794a9c63f3ccc\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-0a8794a9c63f3ccc\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-0a8794a9c63f3ccc\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "5b4ea1b936e8493ab6f035dd0d2a7152", + "model_id": "7d28965b21f54062b307996bf68da8b9", "version_major": 2, "version_minor": 0 }, @@ -25265,58 +34869,16 @@ "output_type": "display_data" }, { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "f989510ed9184790a009e2e38a5c60ac", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00\n", "\n", "\n", - " The Ukrainian military said shells fired by Russian-backed separatists in the morning hit a kindergarten, wounding three teachers but no students, as well as the playground of a high school. “It was a whistling sound, then an explosion,” said Tatyana Podikay, the director of the school, called Fairytale Kindergarten. The teachers herded the students into a hallway with no windows, the building’s safest place, and waited for parents to pick them up, she said. “To create a calm psychological atmosphere the teachers told stories, and whoever needed it got a hug,” Ms. Podikay said. The military also said two soldiers and a woman at a bus station were wounded. There were no reported fatalities. In the evening, the sharp cracks of explosions echoed off buildings and flashes of light from incoming artillery shells silhouetted the trees. Out on the darkened streets, explosions echoed among the buildings. At least two volleys of a half dozen rounds each struck the town, arriving with a sharp hiss before exploding. Drivers stopped their cars, got out and listened worriedly. One shell hit a residential building on Magistralna Street, bursting a gas pipe and starting a fire. The authorities said later in the evening that nobody had died or been wounded. Each side blamed the other for the shelling, which was viewed with concern in Ukraine and in Western capitals for its potential to spiral into a bigger conflict.\n", + " The Ukrainian military said shells fired by Russian-backed separatists in the morning hit a kindergarten, wounding three teachers but no students, as well as the playground of a high school.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “It was a whistling sound, then an explosion,” said Tatyana Podikay, the director of the school, called Fairytale Kindergarten.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The teachers herded the students into a hallway with no windows, the building’s safest place, and waited for parents to pick them up, she said. “To create a calm psychological atmosphere the teachers told stories, and whoever needed it got a hug,” Ms. Podikay said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The military also said two soldiers and a woman at a bus station were wounded. There were no reported fatalities.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In the evening, the sharp cracks of explosions echoed off buildings and flashes of light from incoming artillery shells silhouetted the trees. Out on the darkened streets, explosions echoed among the buildings. At least two volleys of a half dozen rounds each struck the town, arriving with a sharp hiss before exploding. Drivers stopped their cars, got out and listened worriedly.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " One shell hit a residential building on Magistralna Street, bursting a gas pipe and starting a fire. The authorities said later in the evening that nobody had died or been wounded.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Each side blamed the other for the shelling, which was viewed with concern in Ukraine and in Western capitals for its potential to spiral into a bigger conflict.\n", " Evidence\n", "\n", "\n", @@ -25384,7 +35003,82 @@ "\n", "\n", "\n", - " “Today it was long-distance and synchronized shelling,” said Maria Zolkina, a Ukrainian political analyst who works at the Democratic Initiatives Foundation. “It was simultaneous. This is notable.” The United States has said that Russia has massed about 150,000 troops on Ukraine’s border. And Western military analysts have predicted that Russia may claim an unprovoked attack, perhaps manufactured by Moscow, to justify an intervention in eastern Ukraine, possibly under the claim of serving as a peacekeeping force. The artillery strikes began early Thursday and continued into the evening, when the sharp cracks of explosions echoed off buildings and flashes of light from incoming artillery shells silhouetted trees on the edge of town. The Ukrainian military reported 47 cease-fire violations in at least 25 different locations, including two towns, Stanytsia Luhanska and Popasna. After a lull in the afternoon, artillery fire resumed Thursday evening in Stanytsia Luhanska, a hardscrabble town of dusty, potholed roads surrounded by farm fields. There is a gas station, a few leafy residential streets and not much else. Shells exploded in or near the town in at least two volleys of a half dozen rounds each. Drivers stopped their cars, got out and listened, worriedly. Amid the fighting, President Volodymyr Zelensky of Ukraine flew to the front line to visit troops and was quoted in Ukrainian media saying he was proud of the army for “giving a worthy rebuff to the enemy.” In Brussels, the U.S. defense secretary, Lloyd J. Austin III, said that the reports of shelling were “troubling.” While the United States was still gathering details, Mr. Austin said: “We’ve said for some time that the Russians might do something like this in order to justify a military conflict. So we’ll be watching this very closely.” That sequence of events has played out before with Russia. In 2008, the Russian Army invaded Georgia after a flare-up in fighting between government troops and a Russian-backed separatist movement in South Ossetia, a region of Georgia that Moscow now recognizes as an independent state. Ukraine’s foreign minister, Dmytro Kuleba, blamed Russia for a “severe violation” of the tenuous cease-fire agreement in the region, while President Zelensky described it as “provocative shelling.” The Kremlin was taking a different line. “We have warned many times that excessive concentration of Ukrainian forces near the contact line, together with possible provocations, can pose terrible danger,” President Vladimir V. Putin’s spokesman, Dmitri S. Peskov, said. He added that he hoped Western countries would warn Kyiv against a “further escalation of tensions.” The Russian-backed separatists also blamed the Ukrainian Army. Leonid Pasechnik, head of the self-proclaimed Luhansk People’s Republic, said the Ukrainian Army had shelled civilians early this morning — a claim that could not be independently verified. Russia’s foreign minister, Sergey V. Lavrov, has said about a quarter of the inhabitants in the separatist regions — 750,000 out of about three million — are Russian citizens. A strike that wounds or kills a Russian citizen could elevate the risk of a Russian response. To highlight what it called reckless firing into civilian areas, the Ukrainian military flew reporters, including one from The New York Times, to the site of the damaged kindergarten. The strike also knocked out electricity and sent residents scrambling into basements to seek cover. Artillery and small-arms fire are common along the frontline, where an international monitoring group typically reports dozens to hundreds of cease-fire violations every day in recent years. Homes, schools, administrative buildings and infrastructure including electrical pylons are often damaged. Earlier this year, Ukrainian authorities reported that a drone strike hit an abandoned school in an eastern Ukrainian town.\n", + " “Today it was long-distance and synchronized shelling,” said Maria Zolkina, a Ukrainian political analyst who works at the Democratic Initiatives Foundation. “It was simultaneous. This is notable.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The United States has said that Russia has massed about 150,000 troops on Ukraine’s border. And Western military analysts have predicted that Russia may claim an unprovoked attack, perhaps manufactured by Moscow, to justify an intervention in eastern Ukraine, possibly under the claim of serving as a peacekeeping force.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The artillery strikes began early Thursday and continued into the evening, when the sharp cracks of explosions echoed off buildings and flashes of light from incoming artillery shells silhouetted trees on the edge of town. The Ukrainian military reported 47 cease-fire violations in at least 25 different locations, including two towns, Stanytsia Luhanska and Popasna.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " After a lull in the afternoon, artillery fire resumed Thursday evening in Stanytsia Luhanska, a hardscrabble town of dusty, potholed roads surrounded by farm fields. There is a gas station, a few leafy residential streets and not much else.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Shells exploded in or near the town in at least two volleys of a half dozen rounds each. Drivers stopped their cars, got out and listened, worriedly.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Amid the fighting, President Volodymyr Zelensky of Ukraine flew to the front line to visit troops and was quoted in Ukrainian media saying he was proud of the army for “giving a worthy rebuff to the enemy.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In Brussels, the U.S. defense secretary, Lloyd J. Austin III, said that the reports of shelling were “troubling.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " While the United States was still gathering details, Mr. Austin said: “We’ve said for some time that the Russians might do something like this in order to justify a military conflict. So we’ll be watching this very closely.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " That sequence of events has played out before with Russia. In 2008, the Russian Army invaded Georgia after a flare-up in fighting between government troops and a Russian-backed separatist movement in South Ossetia, a region of Georgia that Moscow now recognizes as an independent state.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Ukraine’s foreign minister, Dmytro Kuleba, blamed Russia for a “severe violation” of the tenuous cease-fire agreement in the region, while President Zelensky described it as “provocative shelling.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The Kremlin was taking a different line. “We have warned many times that excessive concentration of Ukrainian forces near the contact line, together with possible provocations, can pose terrible danger,” President Vladimir V. Putin’s spokesman, Dmitri S. Peskov, said. He added that he hoped Western countries would warn Kyiv against a “further escalation of tensions.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The Russian-backed separatists also blamed the Ukrainian Army. Leonid Pasechnik, head of the self-proclaimed Luhansk People’s Republic, said the Ukrainian Army had shelled civilians early this morning — a claim that could not be independently verified.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Russia’s foreign minister, Sergey V. Lavrov, has said about a quarter of the inhabitants in the separatist regions — 750,000 out of about three million — are Russian citizens. A strike that wounds or kills a Russian citizen could elevate the risk of a Russian response.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " To highlight what it called reckless firing into civilian areas, the Ukrainian military flew reporters, including one from The New York Times, to the site of the damaged kindergarten. The strike also knocked out electricity and sent residents scrambling into basements to seek cover.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Artillery and small-arms fire are common along the frontline, where an international monitoring group typically reports dozens to hundreds of cease-fire violations every day in recent years.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Homes, schools, administrative buildings and infrastructure including electrical pylons are often damaged. Earlier this year, Ukrainian authorities reported that a drone strike hit an abandoned school in an eastern Ukrainian town.\n", " Evidence\n", "\n", "" @@ -25408,7 +35102,7 @@ { "data": { "text/html": [ - "

nytimes\\state-of-the-union-painting-with-john.txt

" + "

state-of-the-union-painting-with-john.txt

" ], "text/plain": [ "" @@ -25421,34 +35115,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-4b66a75eae560387\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-4b66a75eae560387\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-4b66a75eae560387\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-4b66a75eae560387\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "037f717bb5e74f25a256c3f0c2db3aed", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00\n", "\n", "\n", - " ‘Painting With John’When to watch: Friday at 11 p.m., on HBO. The musician, actor and artist John Lurie returns for a second season of delivering sanguine, meandering philosophy lectures while painting. Think of this show as the opposite of listening to podcasts at 1.5 speed; it has a magical lack of urgency and focus but still results in enlightenment. Lurie muses about his own experiences, about nature, about praise. In the fourth episode, he gazes into the camera and croaks, “adahbahdeewah.” After a moment, he says he hopes the people writing the closed captioning capture his terminology accurately. “Adahbahdeewah means absurd, but in an optimistic way,” he explains, “like, ‘“Painting With John” is adahbahdeewah.’” Exactly.\n", + " ‘Painting With John’When to watch: Friday at 11 p.m., on HBO.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The musician, actor and artist John Lurie returns for a second season of delivering sanguine, meandering philosophy lectures while painting. Think of this show as the opposite of listening to podcasts at 1.5 speed; it has a magical lack of urgency and focus but still results in enlightenment. Lurie muses about his own experiences, about nature, about praise.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In the fourth episode, he gazes into the camera and croaks, “adahbahdeewah.” After a moment, he says he hopes the people writing the closed captioning capture his terminology accurately. “Adahbahdeewah means absurd, but in an optimistic way,” he explains, “like, ‘“Painting With John” is adahbahdeewah.’” Exactly.\n", " Evidence\n", "\n", "\n", @@ -25582,7 +35259,7 @@ { "data": { "text/html": [ - "

nytimes\\stonehenge-british-museum.txt

" + "

stonehenge-british-museum.txt

" ], "text/plain": [ "" @@ -25595,34 +35272,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-9d98760cdb1b3504\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-9d98760cdb1b3504\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-9d98760cdb1b3504\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-9d98760cdb1b3504\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "fcf3a9b783ab4a2fa131c4c43fdf0ea6", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " LONDON — In 2003, the Canadian gynecologist Anthony M. Perks came up with an anatomical explanation for Stonehenge, the prehistoric monument in England whose precise purpose is a mystery. “Stonehenge could represent, symbolically, the opening by which Earth Mother gave birth to the plants and animals on which the ancient people so depended,” he wrote in an essay published in a medical journal. It could depict, he suggested, “the human vulva, with the birth canal at its center.” The essay was illustrated with sketches of Stonehenge and of female genitalia. The vulva hypothesis is one of the myriad theories that have proliferated around Stonehenge, which was constructed some 4,500 years ago. While it was built at roughly the same time as the Sphinx and the Great Pyramid of Giza, we know far more about those Egyptian sites. Incomplete knowledge of Stonehenge has turned it into a riddle that is now part of its identity.\n", + " LONDON — In 2003, the Canadian gynecologist Anthony M. Perks came up with an anatomical explanation for Stonehenge, the prehistoric monument in England whose precise purpose is a mystery.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Stonehenge could represent, symbolically, the opening by which Earth Mother gave birth to the plants and animals on which the ancient people so depended,” he wrote in an essay published in a medical journal. It could depict, he suggested, “the human vulva, with the birth canal at its center.” The essay was illustrated with sketches of Stonehenge and of female genitalia.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The vulva hypothesis is one of the myriad theories that have proliferated around Stonehenge, which was constructed some 4,500 years ago. While it was built at roughly the same time as the Sphinx and the Great Pyramid of Giza, we know far more about those Egyptian sites. Incomplete knowledge of Stonehenge has turned it into a riddle that is now part of its identity.\n", " Evidence\n", "\n", "\n", @@ -25728,7 +35393,22 @@ "\n", "\n", "\n", - " Stonehenge also attracts plenty of alien-origin theories, prompted by the belief that human beings could not possibly have raised those structures by themselves. According to these theories, Stonehenge was built by extraterrestrials, and it’s actually a landing pad for spacecraft. As the archaeologist and writer Jacquetta Hawkes famously observed in 1967, “Every age has the Stonehenge it deserves — or desires.” Hawkes’s words are reproduced on a wall text inside a new exhibition at the British Museum, “The World of Stonehenge,” which runs through July 17. The show strives to lessen the mystery around the monument by focusing on recent discoveries and putting them in the context of life in Britain, Ireland and northwestern Europe before, during and after Stonehenge’s construction. “Stonehenge was an important place that people went to, to be together as a community,” said Neil Wilkin, the exhibition’s lead curator. He described the site as a mix between a town hall and a cathedral, where people mingled for both religious and social reasons.\n", + " Stonehenge also attracts plenty of alien-origin theories, prompted by the belief that human beings could not possibly have raised those structures by themselves. According to these theories, Stonehenge was built by extraterrestrials, and it’s actually a landing pad for spacecraft.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " As the archaeologist and writer Jacquetta Hawkes famously observed in 1967, “Every age has the Stonehenge it deserves — or desires.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Hawkes’s words are reproduced on a wall text inside a new exhibition at the British Museum, “The World of Stonehenge,” which runs through July 17. The show strives to lessen the mystery around the monument by focusing on recent discoveries and putting them in the context of life in Britain, Ireland and northwestern Europe before, during and after Stonehenge’s construction.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Stonehenge was an important place that people went to, to be together as a community,” said Neil Wilkin, the exhibition’s lead curator. He described the site as a mix between a town hall and a cathedral, where people mingled for both religious and social reasons.\n", " Evidence\n", "\n", "\n", @@ -25738,35 +35418,85 @@ "\n", "\n", "\n", - " The exhibition starts out by introducing visitors to a structure that preceded Stonehenge: a stone circle built on the same spot some 500 years earlier, which, according to archaeologists, was a cemetery. It was constructed with large bluestone pillars — each of them transported from Wales, more than 200 miles away — and used for burying cremated bodies. So far, the remains of 150 to 200 men, women, and children have been found there. A piece of bluestone most likely used in the building of that cemetery is on display at the British Museum, as are some contents of the 5,000-year-old graves, including bone pins used for fastening shrouds. Five centuries later, Stonehenge as we know it was built using some of those existing bluestones, as well as more than 80 towering “sarsen” stones, the monument’s vertical pillars, and horizontal lintels, or capping stones. The sarsen stones were pounded into shape by circular hammerstones, several examples of which were recently discovered and are on show in an exhibition vitrine. Each sarsen stone needed at least 1,000 people to transport it over a distance of 15 miles. The process took generations, and many were killed and maimed as a result, according to the exhibition wall text. Another recent discovery revealed that some of the pilgrims who helped build Stonehenge stayed at Durrington Walls, a nearby settlement which, at its peak, contained around 1,000 temporary houses. A display case in the exhibition — piled high with pig bones and pieces of flint and pottery — attests to the hustle and bustle of that settlement. People were coming there, perhaps seasonally, to work on the final stages of Stonehenge, and they were “feasting: roasting pig, having barbecues,” said Jennifer Wexler, another exhibition curator. Stonehenge was built at a time of drastic population decline and dispersal, said Mike Parker Pearson, a professor at University College London who has made major Stonehenge-related discoveries, including the Durrington Walls settlement. There were few, if any, villages, and society was “trying to create a sense of unity and collaboration among its members,” he explained.\n", + " The exhibition starts out by introducing visitors to a structure that preceded Stonehenge: a stone circle built on the same spot some 500 years earlier, which, according to archaeologists, was a cemetery. It was constructed with large bluestone pillars — each of them transported from Wales, more than 200 miles away — and used for burying cremated bodies. So far, the remains of 150 to 200 men, women, and children have been found there.\n", " Evidence\n", "\n", "\n", - "\n", - " Built on the site of an ancient cemetery, Stonehenge was a “monument of remembrance,” he said, and an “expression of unity” that pulled people together in the pursuit of a common endeavor.\n", - " Claim\n", + "\n", + " A piece of bluestone most likely used in the building of that cemetery is on display at the British Museum, as are some contents of the 5,000-year-old graves, including bone pins used for fastening shrouds.\n", + " Evidence\n", "\n", "\n", - "\n", - " Yet, he said, “People don’t want it to be that simple as an explanation.”\n", - " Counterclaim\n", + "\n", + " Five centuries later, Stonehenge as we know it was built using some of those existing bluestones, as well as more than 80 towering “sarsen” stones, the monument’s vertical pillars, and horizontal lintels, or capping stones. The sarsen stones were pounded into shape by circular hammerstones, several examples of which were recently discovered and are on show in an exhibition vitrine. Each sarsen stone needed at least 1,000 people to transport it over a distance of 15 miles. The process took generations, and many were killed and maimed as a result, according to the exhibition wall text.\n", + " Evidence\n", "\n", "\n", "\n", - " “I was once told by a government minister that it was a great shame, what we were doing, because, of course, we were chipping away at the mystery” and “that does terrible things to the visitor numbers,” Parker Pearson added. Much of that mystery comes down to the fact that writing did not exist in England until the Romans arrived 2,500 years later — so there is no written history of Stonehenge and the people who put it up, Parker Pearson said. Nor did the people of prehistoric England leave any representations of human figures, said Wilkin, the curator. They had “an almost secretive attitude towards their religion,” perhaps with the intention of “excluding others from it,” so their spiritual practices are undocumented as well.\n", + " Another recent discovery revealed that some of the pilgrims who helped build Stonehenge stayed at Durrington Walls, a nearby settlement which, at its peak, contained around 1,000 temporary houses. A display case in the exhibition — piled high with pig bones and pieces of flint and pottery — attests to the hustle and bustle of that settlement.\n", " Evidence\n", "\n", "\n", - "\n", - " Technology may soon help solve some of the mysteries.\n", - " Claim\n", + "\n", + " People were coming there, perhaps seasonally, to work on the final stages of Stonehenge, and they were “feasting: roasting pig, having barbecues,” said Jennifer Wexler, another exhibition curator.\n", + " Evidence\n", "\n", "\n", "\n", - " Analysis of stable isotopes — meaning atoms that have additional or missing neutrons — is being used to study bones, tooth enamel and food residues on pots and elsewhere to determine what a person of the time ate and how far they moved around. Tooth enamel contains a kind of chemical record of the climatic and geological conditions in which a person grew up, allowing archaeologists to work out how far people traveled from their birthplaces and to map out migration and mobility, Wilkin explained. It also gives insight into their diets. The study of aDNA, or ancient DNA, is also pinpointing genetic relationships between individuals. Two people buried together with similar-looking ceramic objects might now be identified as brother and sister, with those grave goods taking on extra significance as they start to denote family relationships. “That’s going to really change the knowledge of the people who built monuments like Stonehenge, and what we can say about them,” Wilkin said, adding that it could lead to revising the label of the Stonehenge period from prehistory to “protohistory” — or just to plain history. New technology could “change how we interpret the objects in a really important way,” Wilkin said. “Exhibitions like this in 10 or 20 years will be very, very different.”\n", + " Stonehenge was built at a time of drastic population decline and dispersal, said Mike Parker Pearson, a professor at University College London who has made major Stonehenge-related discoveries, including the Durrington Walls settlement. There were few, if any, villages, and society was “trying to create a sense of unity and collaboration among its members,” he explained.\n", " Evidence\n", "\n", - "
" + "\n", + "\n", + " Built on the site of an ancient cemetery, Stonehenge was a “monument of remembrance,” he said, and an “expression of unity” that pulled people together in the pursuit of a common endeavor.\n", + " Claim\n", + "\n", + "\n", + "\n", + " Yet, he said, “People don’t want it to be that simple as an explanation.”\n", + " Counterclaim\n", + "\n", + "\n", + "\n", + " “I was once told by a government minister that it was a great shame, what we were doing, because, of course, we were chipping away at the mystery” and “that does terrible things to the visitor numbers,” Parker Pearson added.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Much of that mystery comes down to the fact that writing did not exist in England until the Romans arrived 2,500 years later — so there is no written history of Stonehenge and the people who put it up, Parker Pearson said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Nor did the people of prehistoric England leave any representations of human figures, said Wilkin, the curator. They had “an almost secretive attitude towards their religion,” perhaps with the intention of “excluding others from it,” so their spiritual practices are undocumented as well.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Technology may soon help solve some of the mysteries.\n", + " Claim\n", + "\n", + "\n", + "\n", + " Analysis of stable isotopes — meaning atoms that have additional or missing neutrons — is being used to study bones, tooth enamel and food residues on pots and elsewhere to determine what a person of the time ate and how far they moved around. Tooth enamel contains a kind of chemical record of the climatic and geological conditions in which a person grew up, allowing archaeologists to work out how far people traveled from their birthplaces and to map out migration and mobility, Wilkin explained. It also gives insight into their diets.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The study of aDNA, or ancient DNA, is also pinpointing genetic relationships between individuals. Two people buried together with similar-looking ceramic objects might now be identified as brother and sister, with those grave goods taking on extra significance as they start to denote family relationships.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “That’s going to really change the knowledge of the people who built monuments like Stonehenge, and what we can say about them,” Wilkin said, adding that it could lead to revising the label of the Stonehenge period from prehistory to “protohistory” — or just to plain history.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " New technology could “change how we interpret the objects in a really important way,” Wilkin said. “Exhibitions like this in 10 or 20 years will be very, very different.”\n", + " Evidence\n", + "\n", + "" ], "text/plain": [ "" @@ -25787,7 +35517,7 @@ { "data": { "text/html": [ - "

nytimes\\submarine-spy-guilty-plea.txt

" + "

submarine-spy-guilty-plea.txt

" ], "text/plain": [ "" @@ -25800,34 +35530,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-bb829cdf10532be8\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-bb829cdf10532be8\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-bb829cdf10532be8\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-bb829cdf10532be8\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "4a84c340bb8f4fa8a553a7e72da9624d", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " MARTINSBURG, W.Va. — The wife of a Navy nuclear engineer pleaded guilty on Friday to taking part in a conspiracy to sell submarine secrets to a foreign country, bringing to a close an espionage case that mixed spycraft and politics with the travails of a suburban family. Four days after her husband, Jonathan Toebbe, pleaded guilty in the case under a deal with the government, Diana Toebbe, a high school teacher in Annapolis, Md., acknowledged her part in a scheme to sell nuclear reactor secrets her husband had taken from the Navy, and will face a sentence of not more than three years, according to the terms of her agreement with the government. Her plea was entered during a hearing at a federal courthouse in Martinsburg. In April 2020, the couple wrote to an undisclosed foreign government, which turned over the letter to the F.B.I. Investigators then set up a series of dead drops to ensnare Ms. Toebbe and Mr. Toebbe; he faces 12 to 17-and-a-half years in prison under the terms of his plea. In the court proceeding Friday, prosecutors outlined how Ms. Toebbe served as a lookout while her husband deposited information in a dead drop set up by the F.B.I. Ms. Toebbe said she “knowingly and voluntarily joined a conspiracy with my husband, Jonathan Toebbe,” to attempt to sell government secrets to a foreign nation.\n", + " MARTINSBURG, W.Va. — The wife of a Navy nuclear engineer pleaded guilty on Friday to taking part in a conspiracy to sell submarine secrets to a foreign country, bringing to a close an espionage case that mixed spycraft and politics with the travails of a suburban family.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Four days after her husband, Jonathan Toebbe, pleaded guilty in the case under a deal with the government, Diana Toebbe, a high school teacher in Annapolis, Md., acknowledged her part in a scheme to sell nuclear reactor secrets her husband had taken from the Navy, and will face a sentence of not more than three years, according to the terms of her agreement with the government. Her plea was entered during a hearing at a federal courthouse in Martinsburg.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In April 2020, the couple wrote to an undisclosed foreign government, which turned over the letter to the F.B.I. Investigators then set up a series of dead drops to ensnare Ms. Toebbe and Mr. Toebbe; he faces 12 to 17-and-a-half years in prison under the terms of his plea.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In the court proceeding Friday, prosecutors outlined how Ms. Toebbe served as a lookout while her husband deposited information in a dead drop set up by the F.B.I. Ms. Toebbe said she “knowingly and voluntarily joined a conspiracy with my husband, Jonathan Toebbe,” to attempt to sell government secrets to a foreign nation.\n", " Evidence\n", "\n", "\n", @@ -25929,7 +35648,32 @@ "\n", "\n", "\n", - " While U.S. Attorney Jarod J. Douglas read the terms of her plea deal, Ms. Toebbe appeared to close her eyes or look down for an extended period of time, prompting her lawyer to tap her shoulder. She nodded to him in response. Neither Ms. Toebbe’s husband nor her children were present at the hearing, and it did not appear that any family members were there to hear the guilty plea. The couple’s plea deals will spare the government from a trial that could have risked exposing the foreign country involved in the plot — which officials have worked hard to keep secret. It might also have risked making public some of the material that the couple intended to provide to the foreign government. Mr. Toebbe worked in the Washington Navy Yard, developing nuclear reactors for American submarines. While he had access to some of the nation’s most highly protected secrets, the exact nature of the material he tried to sell in exchange for a kind of cryptocurrency has not been revealed by the government. Former students and colleagues at Annapolis’s elite Key School described Ms. Toebbe as increasingly frustrated with American politics and former President Donald J. Trump. She also complained about her pay at the school. Her husband made a good government salary as a highly educated nuclear engineer, $153,737 a year. Ms. Toebbe had even stronger academic credentials, holding a Ph.D. from Emory University, but she earned less than some of her male colleagues, a source of friction she would express in front of her classes, according to former students.\n", + " While U.S. Attorney Jarod J. Douglas read the terms of her plea deal, Ms. Toebbe appeared to close her eyes or look down for an extended period of time, prompting her lawyer to tap her shoulder. She nodded to him in response.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Neither Ms. Toebbe’s husband nor her children were present at the hearing, and it did not appear that any family members were there to hear the guilty plea.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The couple’s plea deals will spare the government from a trial that could have risked exposing the foreign country involved in the plot — which officials have worked hard to keep secret. It might also have risked making public some of the material that the couple intended to provide to the foreign government.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mr. Toebbe worked in the Washington Navy Yard, developing nuclear reactors for American submarines. While he had access to some of the nation’s most highly protected secrets, the exact nature of the material he tried to sell in exchange for a kind of cryptocurrency has not been revealed by the government.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Former students and colleagues at Annapolis’s elite Key School described Ms. Toebbe as increasingly frustrated with American politics and former President Donald J. Trump.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " She also complained about her pay at the school. Her husband made a good government salary as a highly educated nuclear engineer, $153,737 a year. Ms. Toebbe had even stronger academic credentials, holding a Ph.D. from Emory University, but she earned less than some of her male colleagues, a source of friction she would express in front of her classes, according to former students.\n", " Evidence\n", "\n", "\n", @@ -25939,7 +35683,12 @@ "\n", "\n", "\n", - " Under the terms of her plea agreement, Ms. Toebbe could face large fines and restitution to the government, although the government should not be able to take her house from her. In an earlier court hearing over her detention, the government read from encrypted text messages between the couple that prosecutors said showed Ms. Toebbe’s alienation from the United States. The defense countered that Ms. Toebbe’s frustration with Mr. Trump was hardly treasonous and was in fact something many Americans shared.\n", + " Under the terms of her plea agreement, Ms. Toebbe could face large fines and restitution to the government, although the government should not be able to take her house from her.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In an earlier court hearing over her detention, the government read from encrypted text messages between the couple that prosecutors said showed Ms. Toebbe’s alienation from the United States. The defense countered that Ms. Toebbe’s frustration with Mr. Trump was hardly treasonous and was in fact something many Americans shared.\n", " Evidence\n", "\n", "\n", @@ -25998,7 +35747,7 @@ { "data": { "text/html": [ - "

nytimes\\supreme-court-remain-in-mexico-asylum.txt

" + "

supreme-court-remain-in-mexico-asylum.txt

" ], "text/plain": [ "" @@ -26011,34 +35760,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-583bb4bee1630496\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-583bb4bee1630496\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-583bb4bee1630496\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-583bb4bee1630496\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "6f39716dd3df4ca4ad4abdf3354b04ff", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " WASHINGTON — The Supreme Court agreed on Friday to decide whether the Biden administration can end a Trump-era immigration program that forces asylum seekers arriving at the southwestern border to await approval in Mexico. The court put the case on a fast track, scheduling arguments for April. A decision will probably arrive by the end of the court’s current term in late June or early July. The challenged program, known commonly as Remain in Mexico and formally as the Migrant Protection Protocols, applies to people who left a third country and traveled through Mexico to reach the U.S. border. After the policy was put in place at the beginning of 2019, tens of thousands of people waited in unsanitary tent encampments for immigration hearings. There have been widespread reports of sexual assault, kidnapping and torture. Soon after he took office, President Biden sought to end the program. Texas and Missouri sued, saying they had been injured by the termination by having to provide government services like drivers’ licenses to immigrants allowed into the United States. Last August, Judge Matthew J. Kacsmaryk of the U.S. District Court for the Northern District of Texas, in Amarillo, ruled that a federal law required returning noncitizens seeking asylum to Mexico whenever the government lacked the resources to detain them. The Biden administration promptly asked the Supreme Court to intervene, but it refused to block Judge Kacsmaryk’s ruling, which required it to restart the program. The three more liberal justices dissented. The court’s brief unsigned order at the time said that the administration had appeared to have acted arbitrarily and capriciously in rescinding the program, citing a 2020 decision that had refused to let the Trump administration immediately rescind an Obama-era program protecting the young immigrants known as Dreamers. The Biden administration then took steps to restart the program and issued a new decision seeking to end it. Administration officials, responding to criticism that they had acted hastily, released a 38-page memorandum setting out their reasoning.\n", + " WASHINGTON — The Supreme Court agreed on Friday to decide whether the Biden administration can end a Trump-era immigration program that forces asylum seekers arriving at the southwestern border to await approval in Mexico.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The court put the case on a fast track, scheduling arguments for April. A decision will probably arrive by the end of the court’s current term in late June or early July.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The challenged program, known commonly as Remain in Mexico and formally as the Migrant Protection Protocols, applies to people who left a third country and traveled through Mexico to reach the U.S. border. After the policy was put in place at the beginning of 2019, tens of thousands of people waited in unsanitary tent encampments for immigration hearings. There have been widespread reports of sexual assault, kidnapping and torture.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Soon after he took office, President Biden sought to end the program. Texas and Missouri sued, saying they had been injured by the termination by having to provide government services like drivers’ licenses to immigrants allowed into the United States.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Last August, Judge Matthew J. Kacsmaryk of the U.S. District Court for the Northern District of Texas, in Amarillo, ruled that a federal law required returning noncitizens seeking asylum to Mexico whenever the government lacked the resources to detain them.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The Biden administration promptly asked the Supreme Court to intervene, but it refused to block Judge Kacsmaryk’s ruling, which required it to restart the program. The three more liberal justices dissented.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The court’s brief unsigned order at the time said that the administration had appeared to have acted arbitrarily and capriciously in rescinding the program, citing a 2020 decision that had refused to let the Trump administration immediately rescind an Obama-era program protecting the young immigrants known as Dreamers.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The Biden administration then took steps to restart the program and issued a new decision seeking to end it. Administration officials, responding to criticism that they had acted hastily, released a 38-page memorandum setting out their reasoning.\n", " Evidence\n", "\n", "\n", @@ -26139,7 +35908,12 @@ "\n", "\n", "\n", - " “The government says it has unreviewable and unilateral discretion to create and to eliminate entire components of the federal bureaucracy that affect countless people, tax dollars and sovereign states,” Judge Andrew S. Oldham wrote for the panel. “The government also says it has unreviewable and unilateral discretion to ignore statutory limits imposed by Congress.” “And the government says it can do all of this by typing up a new ‘memo’ and posting it on the internet,” he added. “If the government were correct, it would supplant the rule of law with the rule of say-so. We hold the government is wrong.”\n", + " “The government says it has unreviewable and unilateral discretion to create and to eliminate entire components of the federal bureaucracy that affect countless people, tax dollars and sovereign states,” Judge Andrew S. Oldham wrote for the panel. “The government also says it has unreviewable and unilateral discretion to ignore statutory limits imposed by Congress.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “And the government says it can do all of this by typing up a new ‘memo’ and posting it on the internet,” he added. “If the government were correct, it would supplant the rule of law with the rule of say-so. We hold the government is wrong.”\n", " Evidence\n", "\n", "\n", @@ -26149,7 +35923,12 @@ "\n", "\n", "\n", - " “The injunction is compelling the executive branch to maintain a controversial policy that” officials have “determined is contrary to the interests of the United States; to divert resources from other critical priorities; and to engage in ongoing coordination with Mexico,” she wrote. “That continuing intrusion on the executive’s constitutional and statutory authority to manage the border and conduct the nation’s foreign policy warrants immediate review.” Lawyers for Texas and Missouri told the justices that the program was an effective tool to protect the nation’s borders and that the administration had not followed lawful procedures in its attempt to rescind it.\n", + " “The injunction is compelling the executive branch to maintain a controversial policy that” officials have “determined is contrary to the interests of the United States; to divert resources from other critical priorities; and to engage in ongoing coordination with Mexico,” she wrote. “That continuing intrusion on the executive’s constitutional and statutory authority to manage the border and conduct the nation’s foreign policy warrants immediate review.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Lawyers for Texas and Missouri told the justices that the program was an effective tool to protect the nation’s borders and that the administration had not followed lawful procedures in its attempt to rescind it.\n", " Evidence\n", "\n", "
" @@ -26173,7 +35952,7 @@ { "data": { "text/html": [ - "

nytimes\\susan-collins-eca-reform.txt

" + "

susan-collins-eca-reform.txt

" ], "text/plain": [ "" @@ -26186,34 +35965,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-afd2c0c40a1fd751\n" + "Using custom data configuration default-afd2c0c40a1fd751\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-afd2c0c40a1fd751\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-afd2c0c40a1fd751\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" - ] - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "7386e847950d4db7841dbf4aeb8dd1cc", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00\n", "\n", "\n", - " These unfortunate flaws are codified in the Electoral Count Act, which guides the implementation of part of the presidential election process included in the Constitution. This 1887 law, vaguely written in the inaccessible language of a different era, was intended to restrain Congress, but in practice it has had the unintended effect of creating ambiguities that could potentially be used to expand the role of Congress and the vice president in ways that are contrary to the Constitution. Despite its defects, the law was not an issue for more than a century because of the restraint of the people who exercised the serious, but limited, constitutional responsibility of counting the votes. Vice presidents and Congresses sustained the will of the people — even when they did not like the result.\n", + " These unfortunate flaws are codified in the Electoral Count Act, which guides the implementation of part of the presidential election process included in the Constitution. This 1887 law, vaguely written in the inaccessible language of a different era, was intended to restrain Congress, but in practice it has had the unintended effect of creating ambiguities that could potentially be used to expand the role of Congress and the vice president in ways that are contrary to the Constitution.\n", " Rebuttal\n", "\n", "\n", - "\n", - " For example, we saw this in 1961 and again in 2001, when Vice Presidents Richard Nixon and Al Gore presided in a fair and dignified manner over the counting of the electoral votes despite having lost close elections for president. Vice President Gore even refused to hear Democratic objectors who were trying to make him president. Then came the election of 2020. President Donald Trump and his allies both exploited the weaknesses of the law and ignored the language of the Constitution. Mr. Trump argued that the vice president could overturn the election results. A violent mob temporarily halted the electoral count that would confirm President Biden’s victory. Vice President Mike Pence’s courage and integrity on that day cannot be overstated. He stood up to a determined president who relentlessly pressured him to swing the election his way. And he refused to be intimidated by rioters who assaulted police officers, swarmed the Capitol and chanted “Hang Mike Pence!” As the dangerous mob neared the Senate chambers, the vice president and senators had to be whisked away. The House, too, was forced to evacuate, bringing the electoral count to a halt. How well I remember a sparse group of Capitol Police officers urging us to “Run! Run!” as we made our way to a secure location, while other members of the overwhelmed Capitol Police battled the mob. For hours, we watched on television as rioters broke into the Senate chamber and rummaged through our desks. Finally, senators were told it was safe enough for us to proceed back to the chamber, which all of us were determined to do so that we could resume the counting of the votes. The walk back that evening was very different. In contrast to the small number of police officers guiding our evacuation, F.B.I. tactical teams with riot gear, National Guard members and police officers lined our route. Vice President Pence and the Congress returned to the Capitol that night and completed the final, constitutionally mandated step before the inauguration of a new president — we counted the votes. That day reminded us that there is nothing more essential to the survival of a democracy than the orderly transfer of power, and there is nothing more essential to the orderly transfer of power than clear rules for effecting it. We should not depend on the fidelity and resolve of vice presidents to follow the intent of these rules; the law should be crystal clear on the parameters of the vice president’s powers and consistent with the very limited role set forth in the Constitution. Vice President Pence’s actions on Jan. 6 were heroic. But the peaceful transfer of power shouldn’t require heroes.\n", - " Evidence\n", + "\n", + " Despite its defects, the law was not an issue for more than a century because of the restraint of the people who exercised the serious, but limited, constitutional responsibility of counting the votes. Vice presidents and Congresses sustained the will of the people — even when they did not like the result.\n", + " Rebuttal\n", + "\n", + "\n", + "\n", + " For example, we saw this in 1961 and again in 2001, when Vice Presidents Richard Nixon and Al Gore presided in a fair and dignified manner over the counting of the electoral votes despite having lost close elections for president. Vice President Gore even refused to hear Democratic objectors who were trying to make him president.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Then came the election of 2020. President Donald Trump and his allies both exploited the weaknesses of the law and ignored the language of the Constitution. Mr. Trump argued that the vice president could overturn the election results. A violent mob temporarily halted the electoral count that would confirm President Biden’s victory.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Vice President Mike Pence’s courage and integrity on that day cannot be overstated. He stood up to a determined president who relentlessly pressured him to swing the election his way. And he refused to be intimidated by rioters who assaulted police officers, swarmed the Capitol and chanted “Hang Mike Pence!” As the dangerous mob neared the Senate chambers, the vice president and senators had to be whisked away.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The House, too, was forced to evacuate, bringing the electoral count to a halt. How well I remember a sparse group of Capitol Police officers urging us to “Run! Run!” as we made our way to a secure location, while other members of the overwhelmed Capitol Police battled the mob. For hours, we watched on television as rioters broke into the Senate chamber and rummaged through our desks.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Finally, senators were told it was safe enough for us to proceed back to the chamber, which all of us were determined to do so that we could resume the counting of the votes. The walk back that evening was very different. In contrast to the small number of police officers guiding our evacuation, F.B.I. tactical teams with riot gear, National Guard members and police officers lined our route. Vice President Pence and the Congress returned to the Capitol that night and completed the final, constitutionally mandated step before the inauguration of a new president — we counted the votes.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " That day reminded us that there is nothing more essential to the survival of a democracy than the orderly transfer of power, and there is nothing more essential to the orderly transfer of power than clear rules for effecting it. We should not depend on the fidelity and resolve of vice presidents to follow the intent of these rules; the law should be crystal clear on the parameters of the vice president’s powers and consistent with the very limited role set forth in the Constitution. Vice President Pence’s actions on Jan. 6 were heroic. But the peaceful transfer of power shouldn’t require heroes.\n", + " Evidence\n", "\n", "\n", "\n", @@ -26324,7 +36118,12 @@ "\n", "\n", "\n", - " The ambiguously phrased Electoral Count Act must be amended to make absolutely clear that a vice president cannot manipulate or ignore electoral votes as he or she presides over this joint session of Congress. But other flaws in the law must also be remedied. For instance, the law’s threshold for triggering a challenge to the results of a state is far too low: Only one representative and one senator are required to object to a state’s electors. In the past, members on both sides of the aisle have challenged the vote without any real evidence of wrongdoing. Our group of senators shares a vision of drafting legislation to ensure the integrity of our elections and public confidence in the results. We want a bill that will be considered by committees, debated on the Senate floor, garner the support of the Senate’s two leaders and pass the Senate with 60 or more votes.\n", + " The ambiguously phrased Electoral Count Act must be amended to make absolutely clear that a vice president cannot manipulate or ignore electoral votes as he or she presides over this joint session of Congress. But other flaws in the law must also be remedied. For instance, the law’s threshold for triggering a challenge to the results of a state is far too low: Only one representative and one senator are required to object to a state’s electors. In the past, members on both sides of the aisle have challenged the vote without any real evidence of wrongdoing.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Our group of senators shares a vision of drafting legislation to ensure the integrity of our elections and public confidence in the results. We want a bill that will be considered by committees, debated on the Senate floor, garner the support of the Senate’s two leaders and pass the Senate with 60 or more votes.\n", " Evidence\n", "\n", "\n", @@ -26358,7 +36157,7 @@ { "data": { "text/html": [ - "

nytimes\\sway-kara-swisher-keith-rabois.txt

" + "

sway-kara-swisher-keith-rabois.txt

" ], "text/plain": [ "" @@ -26371,34 +36170,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-f7b4f2d692eb27a9\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-f7b4f2d692eb27a9\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-f7b4f2d692eb27a9\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-f7b4f2d692eb27a9\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "191899040a7642fb894de75d30714004", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " Keith Rabois minted his wealth with Elon Musk, Peter Thiel and other members of the so-called “PayPal Mafia.” Now, though, he’s moved to Miami and become one of the city’s biggest hype men. He believes Florida — which has already seen an influx of tech bros, venture capital investments and cryptocurrency plays during the pandemic — offers a better home to tech than California can, largely because of the politics. He tells Kara Swisher: “The mayor of Miami, the governor of Florida treat citizens like customers. ‘What can we offer you? How can we help?’ That’s their goal, and that’s how they frame everything.” [You can listen to this episode of “Sway” on Apple, Spotify, Google or wherever you get your podcasts.] In this conversation, Kara presses Rabois whether tech’s doubling down on Florida is all just about escaping high taxes. They also discuss whether venture capital is what investment banking was in the 2000s. And they catch up on the news, from stock fall-offs in big tech to why Peter Thiel will be stepping down from Meta’s board. (A full transcript of the episode will be available midday on the Times website.)\n", + " Keith Rabois minted his wealth with Elon Musk, Peter Thiel and other members of the so-called “PayPal Mafia.” Now, though, he’s moved to Miami and become one of the city’s biggest hype men. He believes Florida — which has already seen an influx of tech bros, venture capital investments and cryptocurrency plays during the pandemic — offers a better home to tech than California can, largely because of the politics. He tells Kara Swisher: “The mayor of Miami, the governor of Florida treat citizens like customers. ‘What can we offer you? How can we help?’ That’s their goal, and that’s how they frame everything.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " [You can listen to this episode of “Sway” on Apple, Spotify, Google or wherever you get your podcasts.]\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In this conversation, Kara presses Rabois whether tech’s doubling down on Florida is all just about escaping high taxes. They also discuss whether venture capital is what investment banking was in the 2000s. And they catch up on the news, from stock fall-offs in big tech to why Peter Thiel will be stepping down from Meta’s board.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " (A full transcript of the episode will be available midday on the Times website.)\n", " Evidence\n", "\n", "
" @@ -26497,7 +36268,7 @@ { "data": { "text/html": [ - "

nytimes\\taxes-remote-work.txt

" + "

taxes-remote-work.txt

" ], "text/plain": [ "" @@ -26510,34 +36281,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-4302a88353f721e3\n" + "Using custom data configuration default-4302a88353f721e3\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-4302a88353f721e3\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-4302a88353f721e3\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" - ] - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "3942e716df994d3bba69938f1769b4b1", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00\n", "\n", "\n", - " Ridiculous, right? That’s what the law says, though. According to the Tax Foundation, there are 24 states that require people who did work in their states to file tax returns no matter how short a time they worked or how little income they earned. (Examples are Colorado, Massachusetts, New Jersey, Ohio and Pennsylvania.) In another five states, including California, there’s also no time minimum, although there is an income threshold below which you don’t have to file a return. Most states don’t pursue short-time visitors for nickels and dimes because it’s not worth the effort. You’re unlikely to get a threatening letter from Nebraska because of that work phone call you made when you attended that wedding in Omaha. As written, though, the state laws “make scofflaws of us all,” says Jared Walczak, vice president of state projects at the Tax Foundation. It’s actually worse than that. Some people, such as lawyers and accountants, can’t take the risk of getting caught bending the rules, so they have to file returns in every state where they worked, which for many can be a dozen or more. It’s also a paperwork burden for employers that try to play by the rules, because the states require them to withhold state taxes from paychecks. It’s understandable that states would try to tax professional athletes, pop stars and other high earners who work in their states even briefly, because lots of money is involved. But laws that target everyone are just kind of silly. Congress could fix the problem by saying that you don’t owe income tax in a state unless you work there at least 30 days in a year. That would strike a reasonable balance between the competing priorities of completeness and simplicity, says Andrew Moylan, executive vice president of the National Taxpayers Union Foundation. Illinois and West Virginia have already set 30-day work minimums. Arizona, Hawaii and Utah have gone even further with 60-day minimums. There’s legislation in Congress to require a 30-day work minimum for most people, excluding professional athletes and other “public figures.” It passed the House in 2012, 2016 and 2017. It’s co-sponsored in the Senate this session by John Thune, Republican of South Dakota, and Sherrod Brown, Democrat of Ohio, who don’t agree on much. But Senator Charles Schumer of New York, the majority leader, has consistently opposed the legislation. New York State makes considerable money by taxing out-of-staters who come to the state — especially New York City — for business. New York’s Division of Taxation and Finance “has aggressively enforced the law and gotten more aggressive over time,” says Maureen Riehl, executive director of the Mobile Workforce Coalition. She told me that state employees go to trade shows in the Jacob K. Javits Convention Center in Manhattan and take pictures of the booths so they can go after companies that send their employees to New York. “We’ve been told by companies that they’ve avoided doing events in New York because of this,” says Ken Pokalsky, a vice president of the Business Council of New York State. “I’m not saying it’s widespread, but it’s one more thing.” He said his organization favors a 30-day work minimum for state taxation. The state tax agency did not reply to my voice mail requests for a response. (Complicating matters, there’s a related problem called the convenience rule that’s on the books in five states, including New York. Those states claim the right to tax people if the company they work for is headquartered in the state. So workers can be taxed on the same dollar of income by their home state and the state of their company headquarters.) State laws that require tax filings even for incidental work have become a bigger problem since the pandemic began, because more people are working remotely. But sponsors in the House and Senate aren’t pushing the bill this session because they don’t think it has a chance given the opposition from two key New Yorkers: Schumer and Representative Jerrold Nadler, chairman of the House Judiciary Committee, through which the House bill must pass. “As long as they sit where they sit, this issue’s on pause,” Riehl said. Angelo Roefaro, Schumer’s press secretary, told me today that Schumer and Nadler aren’t the only ones questioning the legislation. He said talks are continuing with other members of Congress as well as governors and state legislators. For the time being, nothing is happening. As Walczak of the Tax Foundation wrote to me in an email: “Taxpayers shouldn’t be tasked with deciding when to ignore what is technically a tax filing obligation and when to comply with it. Tax laws should be enforceable and broadly enforced. If they can’t be reasonably enforced, or it would be undesirable to do so, then it’s worth revisiting that law.” I recently saw your newsletter on the University of the People, the university that charges no tuition. The opportunity to attend college without paying for classes could be a life-changer for many students. But the faculty members aren’t paid. At a moment when current Ph.D. students graduate into a crushing job market, if we promote educational models that further erode that job market, it will become impossible for most students to afford to pursue graduate education and become professors — in turn undermining the quality of education we can provide as a nation.\n", + " Ridiculous, right? That’s what the law says, though. According to the Tax Foundation, there are 24 states that require people who did work in their states to file tax returns no matter how short a time they worked or how little income they earned. (Examples are Colorado, Massachusetts, New Jersey, Ohio and Pennsylvania.) In another five states, including California, there’s also no time minimum, although there is an income threshold below which you don’t have to file a return.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Most states don’t pursue short-time visitors for nickels and dimes because it’s not worth the effort. You’re unlikely to get a threatening letter from Nebraska because of that work phone call you made when you attended that wedding in Omaha. As written, though, the state laws “make scofflaws of us all,” says Jared Walczak, vice president of state projects at the Tax Foundation.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " It’s actually worse than that. Some people, such as lawyers and accountants, can’t take the risk of getting caught bending the rules, so they have to file returns in every state where they worked, which for many can be a dozen or more. It’s also a paperwork burden for employers that try to play by the rules, because the states require them to withhold state taxes from paychecks.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " It’s understandable that states would try to tax professional athletes, pop stars and other high earners who work in their states even briefly, because lots of money is involved. But laws that target everyone are just kind of silly.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Congress could fix the problem by saying that you don’t owe income tax in a state unless you work there at least 30 days in a year. That would strike a reasonable balance between the competing priorities of completeness and simplicity, says Andrew Moylan, executive vice president of the National Taxpayers Union Foundation. Illinois and West Virginia have already set 30-day work minimums. Arizona, Hawaii and Utah have gone even further with 60-day minimums.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " There’s legislation in Congress to require a 30-day work minimum for most people, excluding professional athletes and other “public figures.” It passed the House in 2012, 2016 and 2017. It’s co-sponsored in the Senate this session by John Thune, Republican of South Dakota, and Sherrod Brown, Democrat of Ohio, who don’t agree on much. But Senator Charles Schumer of New York, the majority leader, has consistently opposed the legislation.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " New York State makes considerable money by taxing out-of-staters who come to the state — especially New York City — for business. New York’s Division of Taxation and Finance “has aggressively enforced the law and gotten more aggressive over time,” says Maureen Riehl, executive director of the Mobile Workforce Coalition. She told me that state employees go to trade shows in the Jacob K. Javits Convention Center in Manhattan and take pictures of the booths so they can go after companies that send their employees to New York.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “We’ve been told by companies that they’ve avoided doing events in New York because of this,” says Ken Pokalsky, a vice president of the Business Council of New York State. “I’m not saying it’s widespread, but it’s one more thing.” He said his organization favors a 30-day work minimum for state taxation. The state tax agency did not reply to my voice mail requests for a response.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " (Complicating matters, there’s a related problem called the convenience rule that’s on the books in five states, including New York. Those states claim the right to tax people if the company they work for is headquartered in the state. So workers can be taxed on the same dollar of income by their home state and the state of their company headquarters.)\n", + " Evidence\n", + "\n", + "\n", + "\n", + " State laws that require tax filings even for incidental work have become a bigger problem since the pandemic began, because more people are working remotely. But sponsors in the House and Senate aren’t pushing the bill this session because they don’t think it has a chance given the opposition from two key New Yorkers: Schumer and Representative Jerrold Nadler, chairman of the House Judiciary Committee, through which the House bill must pass. “As long as they sit where they sit, this issue’s on pause,” Riehl said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Angelo Roefaro, Schumer’s press secretary, told me today that Schumer and Nadler aren’t the only ones questioning the legislation. He said talks are continuing with other members of Congress as well as governors and state legislators.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " For the time being, nothing is happening. As Walczak of the Tax Foundation wrote to me in an email: “Taxpayers shouldn’t be tasked with deciding when to ignore what is technically a tax filing obligation and when to comply with it. Tax laws should be enforceable and broadly enforced. If they can’t be reasonably enforced, or it would be undesirable to do so, then it’s worth revisiting that law.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " I recently saw your newsletter on the University of the People, the university that charges no tuition. The opportunity to attend college without paying for classes could be a life-changer for many students. But the faculty members aren’t paid. At a moment when current Ph.D. students graduate into a crushing job market, if we promote educational models that further erode that job market, it will become impossible for most students to afford to pursue graduate education and become professors — in turn undermining the quality of education we can provide as a nation.\n", " Evidence\n", "\n", "\n", "\n", - " Bruce LenthallRosemont, Pa. The writer is the executive director of the Center for Teaching and Learning at the University of Pennsylvania.\n", + " Bruce LenthallRosemont, Pa.\n", + " Claim\n", + "\n", + "\n", + "\n", + " The writer is the executive director of the Center for Teaching and Learning at the University of Pennsylvania.\n", " Claim\n", "\n", "\n", "\n", - " “All day long, I’d biddy biddy bum/If I were a wealthy man.” — Jerry Bock and Sheldon Harnick, “If I Were a Rich Man,” from “Fiddler on the Roof” (1964)\n", + " “All day long, I’d biddy biddy bum/If I were a wealthy man.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " — Jerry Bock and Sheldon Harnick, “If I Were a Rich Man,” from “Fiddler on the Roof” (1964)\n", " Evidence\n", "\n", "
" @@ -26671,7 +36484,7 @@ { "data": { "text/html": [ - "

nytimes\\tech-predictions.txt

" + "

tech-predictions.txt

" ], "text/plain": [ "" @@ -26684,34 +36497,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-32ced1e23b237714\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-32ced1e23b237714\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-32ced1e23b237714\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-32ced1e23b237714\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "5a9ca0d1d10b497fa2404de1f74c6967", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " This article is part of the On Tech newsletter. Here is a collection of past columns. Happy New Year! (I can still say that on Jan. 4, right?)\n", + " This article is part of the On Tech newsletter. Here is a collection of past columns.\n", + " Lead\n", + "\n", + "\n", + "\n", + " Happy New Year! (I can still say that on Jan. 4, right?)\n", " Lead\n", "\n", "\n", @@ -26824,7 +36661,12 @@ "\n", "\n", "\n", - " This exercise was inspired by Bret Taylor, the co-chief executive of the software company Salesforce, who posed a similar question on Twitter months ago. Taylor said that he had been wrong about how quickly driverless cars would become commonplace. Among my mea culpas was believing that Apple would soon become a fading tech empire. Ha, nope. (I’ll dig more into this in tomorrow’s newsletter.) Here’s a selection of responses, which have been edited.\n", + " This exercise was inspired by Bret Taylor, the co-chief executive of the software company Salesforce, who posed a similar question on Twitter months ago. Taylor said that he had been wrong about how quickly driverless cars would become commonplace.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Among my mea culpas was believing that Apple would soon become a fading tech empire. Ha, nope. (I’ll dig more into this in tomorrow’s newsletter.) Here’s a selection of responses, which have been edited.\n", " Evidence\n", "\n", "\n", @@ -26844,33 +36686,58 @@ "\n", "\n", "\n", - " — David Zipper, a visiting fellow at the Harvard Kennedy School who researches cities, technology, and how people and goods move around Technology improved people’s lives and incomes, but the gains were uneven:\n", + " — David Zipper, a visiting fellow at the Harvard Kennedy School who researches cities, technology, and how people and goods move around\n", " Claim\n", "\n", "\n", - "\n", - " Pretty much everything that makes our lives better, healthier and more secure comes from new technology. But since at least the Industrial Revolution, new technology also displaces people economically. What I and many other economists didn’t fully grasp was how many jobs would be lost to technology automation and how quickly that would happen. Tech also helped create new jobs, and wages have increased, but much of the gains went to high-end knowledge workers. There are good jobs out there, but we’re just not good at getting people to that work and training them for it.\n", - " Evidence\n", - "\n", - "\n", "\n", - " — Allison Schrager, a senior fellow at the Manhattan Institute, a conservative research center Educational records are still scattered all over the place:\n", + " Technology improved people’s lives and incomes, but the gains were uneven:\n", " Claim\n", "\n", "\n", "\n", - " It’s now much easier, though far from perfect, to gain access to my health records online because of policy and technological changes over the last decade. I assumed that electronic educational records would come swiftly after that. They haven’t. Workers, parents and companies still have no simple way to retrieve records from education and job training. It hurts us and the economy. Job seekers and military veterans don’t always remember all their certifications and training that could help them get better work and higher pay. Workers and parents have to do so much work to get school transcripts and other records that are often still kept on paper. Companies spend a lot of time verifying people’s credentials, degrees and licenses. The government should have centralized databases from accredited colleges and universities. It should be easy.\n", + " Pretty much everything that makes our lives better, healthier and more secure comes from new technology. But since at least the Industrial Revolution, new technology also displaces people economically. What I and many other economists didn’t fully grasp was how many jobs would be lost to technology automation and how quickly that would happen.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Tech also helped create new jobs, and wages have increased, but much of the gains went to high-end knowledge workers. There are good jobs out there, but we’re just not good at getting people to that work and training them for it.\n", " Evidence\n", "\n", "\n", "\n", - " — Julia Pollak, a labor economist with the career website ZipRecruiter Facebook didn’t learn from its grave harms:\n", + " — Allison Schrager, a senior fellow at the Manhattan Institute, a conservative research center\n", " Claim\n", "\n", "\n", - "\n", - " I was wrong that playing a role in enabling genocide would be sufficient cause for a major tech company to make meaningful changes.\n", - " Position\n", + "\n", + " Educational records are still scattered all over the place:\n", + " Claim\n", + "\n", + "\n", + "\n", + " It’s now much easier, though far from perfect, to gain access to my health records online because of policy and technological changes over the last decade. I assumed that electronic educational records would come swiftly after that. They haven’t. Workers, parents and companies still have no simple way to retrieve records from education and job training. It hurts us and the economy.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Job seekers and military veterans don’t always remember all their certifications and training that could help them get better work and higher pay. Workers and parents have to do so much work to get school transcripts and other records that are often still kept on paper. Companies spend a lot of time verifying people’s credentials, degrees and licenses. The government should have centralized databases from accredited colleges and universities. It should be easy.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " — Julia Pollak, a labor economist with the career website ZipRecruiter\n", + " Claim\n", + "\n", + "\n", + "\n", + " Facebook didn’t learn from its grave harms:\n", + " Claim\n", + "\n", + "\n", + "\n", + " I was wrong that playing a role in enabling genocide would be sufficient cause for a major tech company to make meaningful changes.\n", + " Position\n", "\n", "\n", "\n", @@ -26884,7 +36751,12 @@ "\n", "\n", "\n", - " People claimed that we would have self-driving cars on every road by 2020. When 2020 came and went, I thought self-driving car enthusiasts would give up on the dream. I thought people would realize that autonomous vehicles don’t work in snow or bad weather. I thought that people would realize that the computer vision algorithms in self-driving cars don’t detect people of color well, that they’re as racist as the algorithms in soap dispensers or facial recognition systems. I hoped that a public conversation about racial bias in algorithms would lead to companies’ making better decisions about rolling out tech that has obvious racial, gender or ability bias. I was wrong. I would like to be less wrong about this in 2022.\n", + " People claimed that we would have self-driving cars on every road by 2020. When 2020 came and went, I thought self-driving car enthusiasts would give up on the dream. I thought people would realize that autonomous vehicles don’t work in snow or bad weather. I thought that people would realize that the computer vision algorithms in self-driving cars don’t detect people of color well, that they’re as racist as the algorithms in soap dispensers or facial recognition systems.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " I hoped that a public conversation about racial bias in algorithms would lead to companies’ making better decisions about rolling out tech that has obvious racial, gender or ability bias. I was wrong. I would like to be less wrong about this in 2022.\n", " Evidence\n", "\n", "\n", @@ -26894,7 +36766,37 @@ "\n", "\n", "\n", - " If there’s a lesson from these varied responses, it may be that we have a tendency to both overestimate and underestimate the amount of change that technology can spark in the world. Humility about technology feels like a useful mode for 2022. Guilty verdicts for Elizabeth Holmes: A jury found the founder of the failed blood testing start-up Theranos guilty on four charges related to defrauding investors, my colleagues Erin Griffith and Erin Woo write. Holmes is expected to appeal. Related: Erin Griffith writes that technologists tried to distance themselves from Theranos, but that the company and Holmes relied on the Silicon Valley start-up playbook of overly optimistic puffery, denigrating doubters and stoking a “fear of missing out.” Also read David Streitfeld on the indictment of the “fake it until you make it” culture. Calculating the threats of political violence: An investigation by ProPublica and The Washington Post found at least 650,000 posts in public Facebook groups that questioned the legitimacy of Joe Biden’s election victory, including false information and violent threats, in the months before the Capitol riot one year ago. A personal word game that became a big hit: A software engineer in Brooklyn, Josh Wardle, created an online word game called Wordle just for his partner. It took off. “It’s just a game that’s fun,” Wardle told my colleague Daniel Victor. Spend 20 seconds taking in the sheep and the beautiful hills of Yorkshire. (Thanks to the Daily Respite newsletter for sharing this.) We want to hear from you. Tell us what you think of this newsletter and what else you’d like us to explore. You can reach us at ontech@nytimes.com.\n", + " If there’s a lesson from these varied responses, it may be that we have a tendency to both overestimate and underestimate the amount of change that technology can spark in the world. Humility about technology feels like a useful mode for 2022.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Guilty verdicts for Elizabeth Holmes: A jury found the founder of the failed blood testing start-up Theranos guilty on four charges related to defrauding investors, my colleagues Erin Griffith and Erin Woo write. Holmes is expected to appeal.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Related: Erin Griffith writes that technologists tried to distance themselves from Theranos, but that the company and Holmes relied on the Silicon Valley start-up playbook of overly optimistic puffery, denigrating doubters and stoking a “fear of missing out.” Also read David Streitfeld on the indictment of the “fake it until you make it” culture.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Calculating the threats of political violence: An investigation by ProPublica and The Washington Post found at least 650,000 posts in public Facebook groups that questioned the legitimacy of Joe Biden’s election victory, including false information and violent threats, in the months before the Capitol riot one year ago.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " A personal word game that became a big hit: A software engineer in Brooklyn, Josh Wardle, created an online word game called Wordle just for his partner. It took off. “It’s just a game that’s fun,” Wardle told my colleague Daniel Victor.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Spend 20 seconds taking in the sheep and the beautiful hills of Yorkshire. (Thanks to the Daily Respite newsletter for sharing this.)\n", + " Evidence\n", + "\n", + "\n", + "\n", + " We want to hear from you. Tell us what you think of this newsletter and what else you’d like us to explore. You can reach us at ontech@nytimes.com.\n", " Evidence\n", "\n", "\n", @@ -26923,7 +36825,7 @@ { "data": { "text/html": [ - "

nytimes\\tech-won-now-what.txt

" + "

tech-won-now-what.txt

" ], "text/plain": [ "" @@ -26936,34 +36838,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-a3949abcf19e313c\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-a3949abcf19e313c\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-a3949abcf19e313c\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-a3949abcf19e313c\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "a68e8d0367ff43a183860c94be50ed1b", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00\n", "\n", "\n", - " This is one example of what happens when technology is no longer confined to shiny gadgets or pixels on a screen. When technology is woven into everything, it doesn’t sneak up on us. Once, perhaps, technology felt like things that magical tech elves invented in their workshops and handed over for humans to adore. No more. Technology is normal, not magic. And — like everything else in the world — it can be good and bad. That can sometimes feel disappointing, but it’s also healthy. We have all grown a little savvier about the nuanced effects of technology in our lives. Technology is neither the cause of nor the solution to all of life’s problems. (Yes, “Simpsons” nerds, I see you.) Uber and similar on-demand ride services are handy to both passengers and people who want a flexible job. Those services also helped clog roads despite early promises that they would ease traffic, and might have helped popularize a form of perilous work. Technology in our homes helped us muddle through work, school and a social life during the past couple of years. And yet it’s so hard to make a stupid printer work. Technology didn’t cause the coronavirus pandemic, nor did it invent vaccines and distribute them to billions of people. Social media has contributed to social divisions in the U.S., but it’s just one of the forces of polarization. Technology is probably not the magical answer to climate change, nor to climbing rates of violence in parts of the U.S. Technology can assist us in finding the community that we need, but it can’t do the difficult work of sustaining those connections.\n", + " This is one example of what happens when technology is no longer confined to shiny gadgets or pixels on a screen. When technology is woven into everything, it doesn’t sneak up on us. Once, perhaps, technology felt like things that magical tech elves invented in their workshops and handed over for humans to adore. No more. Technology is normal, not magic. And — like everything else in the world — it can be good and bad.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " That can sometimes feel disappointing, but it’s also healthy. We have all grown a little savvier about the nuanced effects of technology in our lives. Technology is neither the cause of nor the solution to all of life’s problems. (Yes, “Simpsons” nerds, I see you.)\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Uber and similar on-demand ride services are handy to both passengers and people who want a flexible job. Those services also helped clog roads despite early promises that they would ease traffic, and might have helped popularize a form of perilous work. Technology in our homes helped us muddle through work, school and a social life during the past couple of years. And yet it’s so hard to make a stupid printer work.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Technology didn’t cause the coronavirus pandemic, nor did it invent vaccines and distribute them to billions of people. Social media has contributed to social divisions in the U.S., but it’s just one of the forces of polarization. Technology is probably not the magical answer to climate change, nor to climbing rates of violence in parts of the U.S. Technology can assist us in finding the community that we need, but it can’t do the difficult work of sustaining those connections.\n", " Evidence\n", "\n", "\n", @@ -27149,7 +37099,12 @@ "\n", "\n", "\n", - " (Editor’s note: You can try Meetup for a similar experience, although it’s not exactly like this.) Mo in Vancouver, British Columbia:\n", + " (Editor’s note: You can try Meetup for a similar experience, although it’s not exactly like this.)\n", + " Claim\n", + "\n", + "\n", + "\n", + " Mo in Vancouver, British Columbia:\n", " Claim\n", "\n", "\n", @@ -27159,17 +37114,37 @@ "\n", "\n", "\n", - " Jack Schaller in Philadelphia: I would like to have better “intelligence” built into our email client engines to intuitively sort the fire hose of mail we all receive into bins for processing, storing, referencing, etc. Gerald G. Stiebel in Santa Fe, N.M.:\n", + " Jack Schaller in Philadelphia:\n", + " Claim\n", + "\n", + "\n", + "\n", + " I would like to have better “intelligence” built into our email client engines to intuitively sort the fire hose of mail we all receive into bins for processing, storing, referencing, etc.\n", + " Claim\n", + "\n", + "\n", + "\n", + " Gerald G. Stiebel in Santa Fe, N.M.:\n", " Claim\n", "\n", "\n", "\n", - " I would love to see tech that helped with the continuous issues that we have with our tech. Let us know why Xfinity suddenly went out on both of our TVs at the same time. Why do my Sony headphones beep and stop my music or video until I reset them? Why do my apps suddenly change how they work when there is an update that “improves” my service? If there were one place all this information would appear with recommendations for repair or to restore my apps and interrelated material, this would take a lot of pressure off our lives, particularly if we are over 30.\n", + " I would love to see tech that helped with the continuous issues that we have with our tech. Let us know why Xfinity suddenly went out on both of our TVs at the same time. Why do my Sony headphones beep and stop my music or video until I reset them? Why do my apps suddenly change how they work when there is an update that “improves” my service?\n", + " Evidence\n", + "\n", + "\n", + "\n", + " If there were one place all this information would appear with recommendations for repair or to restore my apps and interrelated material, this would take a lot of pressure off our lives, particularly if we are over 30.\n", " Evidence\n", "\n", "\n", "\n", - " Andrew in Toronto: We all long to travel again. To encounter new places, to meet others and to engage different cultures. NOT in the metaverse, but in the real world.\n", + " Andrew in Toronto:\n", + " Claim\n", + "\n", + "\n", + "\n", + " We all long to travel again. To encounter new places, to meet others and to engage different cultures. NOT in the metaverse, but in the real world.\n", " Claim\n", "\n", "\n", @@ -27199,7 +37174,22 @@ "\n", "\n", "\n", - " Capping a complicated year for Amazon and its hourly workers: My colleague Karen Weise reports that Amazon reached a settlement that would give company workers greater flexibility to organize unions in its buildings. “Victims really are on their own.” Greg Bensinger from The New York Times’s Opinion section says that Uber’s policies discourage its customer service agents from suggesting that passengers and drivers call the police about claims of sexual assault or other crimes. “Police reports can puncture Uber’s carefully crafted safety image — and open the company up to more lawsuits and responsibility,” Greg writes in his column. Some people get bored with their Alexa toys quickly: Amazon sells lots of voice-controlled smart speakers and other gadgets over the holidays. But Bloomberg Businessweek reports that some years, up to one in four of those new Alexa device owners stop using them within a couple of weeks. (A subscription may be required.) My favorite version* of “My Favorite Things” is this TikTok duet from the gospel singer Robyn McGhee.\n", + " Capping a complicated year for Amazon and its hourly workers: My colleague Karen Weise reports that Amazon reached a settlement that would give company workers greater flexibility to organize unions in its buildings.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Victims really are on their own.” Greg Bensinger from The New York Times’s Opinion section says that Uber’s policies discourage its customer service agents from suggesting that passengers and drivers call the police about claims of sexual assault or other crimes. “Police reports can puncture Uber’s carefully crafted safety image — and open the company up to more lawsuits and responsibility,” Greg writes in his column.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Some people get bored with their Alexa toys quickly: Amazon sells lots of voice-controlled smart speakers and other gadgets over the holidays. But Bloomberg Businessweek reports that some years, up to one in four of those new Alexa device owners stop using them within a couple of weeks. (A subscription may be required.)\n", + " Evidence\n", + "\n", + "\n", + "\n", + " My favorite version* of “My Favorite Things” is this TikTok duet from the gospel singer Robyn McGhee.\n", " Evidence\n", "\n", "\n", @@ -27238,7 +37228,7 @@ { "data": { "text/html": [ - "

nytimes\\teresa-reichlen-retiring-from-new-york-city-ballet.txt

" + "

teresa-reichlen-retiring-from-new-york-city-ballet.txt

" ], "text/plain": [ "" @@ -27251,34 +37241,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-cf4f83160810fbc3\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-cf4f83160810fbc3\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-cf4f83160810fbc3\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-cf4f83160810fbc3\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "ee1f93a71f1a4e05bd01fccb662dd4b7", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " New York City Ballet’s fall season came and went, and if Teresa Reichlen was being honest with herself, she wasn’t feeling it. This was concerning. What kind of dancer wasn’t itching to perform after 18 months off the stage? “I had a few shows that were wonderful and felt like they’ve always felt,” she said, but “I was struggling a little bit. Everyone was so, so, so excited to be back and I just wasn’t at that level.” An injury kept her from performing in “George Balanchine’s The Nutcracker.” One night in December as she played on the floor with her son, Ozzie, now 11 months old, she said a thought crossed her mind: “I should be at the theater performing right now, but I wouldn’t want to not be here with Ozzie at night.” At that moment, she knew what to do. “I’ve had the crazy ballerina life,” she said. “I’ve traveled all over the world. I’ve had the crazy schedule, danced until 11:30 every night. I loved it. I’ve never just been a normal person before, so that’s kind of thrilling to me.” On Feb. 19, Reichlen will dance her farewell performance in Balanchine’s one-act “Swan Lake” before moving on to her next career: director of Shrine, a Lower East Side gallery with a focus on outsider and self-taught artists that her husband, Scott Ogden, opened in 2016. If Reichlen is matter-of-fact offstage, the sort of person who doesn’t suffer fools, onstage she is mysterious, understated, remote. Wendy Whelan, City Ballet’s associate artistic director and a former principal, said that her husband, the artist and photographer David Michalek, calls Reichlen one of the company’s Hitchcock blondes. This season she even brought a dash of Grace Kelly to the Stripper role in Balanchine’s “Slaughter on Tenth Avenue” — elegant, knowing and a little sly as she sliced her long legs into the air. “She’s got this underrated glamour that pops out, and you’re just like, ‘Whoa: look at those legs, look at that body,’” Whelan said. “She’s got incredible facility, and she can shape it in so many different ways: angular, curvy, classical, contemporary.” Russell Janzen, one of her partners and a friend, calls her selfless, the kind of dancer who puts the ballet first. “There is a little bit of a cool detachment,” he said. “It’s not judgmental. Sometimes it’s amused, which I think is really fun, especially when it’s one of those works where it’s so in her wheelhouse — it allows you to enjoy the choreography with her.” Reichlen, 37, has been dancing as long as she can remember. She didn’t know much about Balanchine, a founder of City Ballet, when she was growing up in Virginia, but the City Ballet-affiliated School of American Ballet was on her radar because no one from her dance school had ever been accepted. “I was kind of scared to try out for it, and then I did and I got in,” she said. “I was like, I should probably go — like I’m the only person that has gotten in.” After that summer course, she was invited to stay for the year. In 2000, Reichlen became an apprentice and in 2001, a member of the corps de ballet, where even dancing in the last row, she was a standout. She’s tall — around 5 feet 9 inches — which has led to her being cast in many coveted Balanchine roles: the tall girl in “Rubies,” the glittering lead in “Diamonds,” as well as in “Firebird,” “Symphony in C” and “Prodigal Son”\n", + " New York City Ballet’s fall season came and went, and if Teresa Reichlen was being honest with herself, she wasn’t feeling it. This was concerning. What kind of dancer wasn’t itching to perform after 18 months off the stage?\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “I had a few shows that were wonderful and felt like they’ve always felt,” she said, but “I was struggling a little bit. Everyone was so, so, so excited to be back and I just wasn’t at that level.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " An injury kept her from performing in “George Balanchine’s The Nutcracker.” One night in December as she played on the floor with her son, Ozzie, now 11 months old, she said a thought crossed her mind: “I should be at the theater performing right now, but I wouldn’t want to not be here with Ozzie at night.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " At that moment, she knew what to do. “I’ve had the crazy ballerina life,” she said. “I’ve traveled all over the world. I’ve had the crazy schedule, danced until 11:30 every night. I loved it. I’ve never just been a normal person before, so that’s kind of thrilling to me.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " On Feb. 19, Reichlen will dance her farewell performance in Balanchine’s one-act “Swan Lake” before moving on to her next career: director of Shrine, a Lower East Side gallery with a focus on outsider and self-taught artists that her husband, Scott Ogden, opened in 2016.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " If Reichlen is matter-of-fact offstage, the sort of person who doesn’t suffer fools, onstage she is mysterious, understated, remote. Wendy Whelan, City Ballet’s associate artistic director and a former principal, said that her husband, the artist and photographer David Michalek, calls Reichlen one of the company’s Hitchcock blondes. This season she even brought a dash of Grace Kelly to the Stripper role in Balanchine’s “Slaughter on Tenth Avenue” — elegant, knowing and a little sly as she sliced her long legs into the air.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “She’s got this underrated glamour that pops out, and you’re just like, ‘Whoa: look at those legs, look at that body,’” Whelan said. “She’s got incredible facility, and she can shape it in so many different ways: angular, curvy, classical, contemporary.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Russell Janzen, one of her partners and a friend, calls her selfless, the kind of dancer who puts the ballet first. “There is a little bit of a cool detachment,” he said. “It’s not judgmental. Sometimes it’s amused, which I think is really fun, especially when it’s one of those works where it’s so in her wheelhouse — it allows you to enjoy the choreography with her.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Reichlen, 37, has been dancing as long as she can remember. She didn’t know much about Balanchine, a founder of City Ballet, when she was growing up in Virginia, but the City Ballet-affiliated School of American Ballet was on her radar because no one from her dance school had ever been accepted. “I was kind of scared to try out for it, and then I did and I got in,” she said. “I was like, I should probably go — like I’m the only person that has gotten in.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " After that summer course, she was invited to stay for the year. In 2000, Reichlen became an apprentice and in 2001, a member of the corps de ballet, where even dancing in the last row, she was a standout. She’s tall — around 5 feet 9 inches — which has led to her being cast in many coveted Balanchine roles: the tall girl in “Rubies,” the glittering lead in “Diamonds,” as well as in “Firebird,” “Symphony in C” and “Prodigal Son”\n", " Evidence\n", "\n", "\n", @@ -27393,7 +37409,37 @@ "\n", "\n", "\n", - " One of his favorite memories of dancing with her is when she was thrown onstage in Balanchine’s “Firebird” at the last minute in 2007. She had around an hour and a half to learn the entire ballet. “She knew every phrase, she just didn’t know the order,” Stafford said. “She would look at me onstage during the performance, and I would say the first step of the next phrase and she would just go into it and get it completely right.” Stafford is going to miss her as a person, too. As an officer at the American Guild of Musical Artists, or A.G.M.A., she fought for dancers’ rights; when Stafford took over as City Ballet’s artistic director, in 2019, he relied on her as a sounding board. “Who am I going to call randomly any time of day and be like, ‘I need your advice?’” One of Reichlen’s most impressive moments onstage involved speaking, not dancing. It was after a photo-sharing scandal, which had come just after the resignation of the company’s longtime leader, Peter Martins, who left amid allegations of sexual harassment and verbal and physical abuse. (He denied the accusations.) Reichlen delivered a speech that she had written with Adrian Danchig-Waring, another principal dancer. It began: “We will not put art before common decency or allow talent to sway our moral compass.” Whelan, who likened Reichlen in that moment to Lady Liberty, said the speech felt seismic. It was as if she had pushed away a cloud and signaled “the start of a new hope, a new way forward,” Whelan said. “It made everybody rethink the old and how we need to shift all these parts that have been cemented in place for so long. She cracked it open.” Reichlen said she had never been so nervous in her life. “I feel like that defines me more than my dancing in a weird way,” she said. “Like that’s more my personality than ballerina.” She wanted to be involved with A.G.M.A. because of frustration with a lot of things at City Ballet. “It was just the only way I could see to fix things or try to fix things,” she said. “When I first got in, we used to get our daily schedule at 7:30 p.m. the evening before. Which is insane. It’s insane. So that’s one of my proudest achievements — we get our schedule a day and a half in advance now.”\n", + " One of his favorite memories of dancing with her is when she was thrown onstage in Balanchine’s “Firebird” at the last minute in 2007.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " She had around an hour and a half to learn the entire ballet. “She knew every phrase, she just didn’t know the order,” Stafford said. “She would look at me onstage during the performance, and I would say the first step of the next phrase and she would just go into it and get it completely right.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Stafford is going to miss her as a person, too. As an officer at the American Guild of Musical Artists, or A.G.M.A., she fought for dancers’ rights; when Stafford took over as City Ballet’s artistic director, in 2019, he relied on her as a sounding board. “Who am I going to call randomly any time of day and be like, ‘I need your advice?’”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " One of Reichlen’s most impressive moments onstage involved speaking, not dancing. It was after a photo-sharing scandal, which had come just after the resignation of the company’s longtime leader, Peter Martins, who left amid allegations of sexual harassment and verbal and physical abuse. (He denied the accusations.) Reichlen delivered a speech that she had written with Adrian Danchig-Waring, another principal dancer. It began: “We will not put art before common decency or allow talent to sway our moral compass.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Whelan, who likened Reichlen in that moment to Lady Liberty, said the speech felt seismic. It was as if she had pushed away a cloud and signaled “the start of a new hope, a new way forward,” Whelan said. “It made everybody rethink the old and how we need to shift all these parts that have been cemented in place for so long. She cracked it open.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Reichlen said she had never been so nervous in her life. “I feel like that defines me more than my dancing in a weird way,” she said. “Like that’s more my personality than ballerina.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " She wanted to be involved with A.G.M.A. because of frustration with a lot of things at City Ballet. “It was just the only way I could see to fix things or try to fix things,” she said. “When I first got in, we used to get our daily schedule at 7:30 p.m. the evening before. Which is insane. It’s insane. So that’s one of my proudest achievements — we get our schedule a day and a half in advance now.”\n", " Evidence\n", "\n", "\n", @@ -27403,22 +37449,52 @@ "\n", "\n", "\n", - " She decided to stick around for a year or so and to continue with school — she was also a student a Barnard College, studying biology. “I was just like, OK, you better have fun, you’re only going to do this for another year or so,” she said. “I tried to let go a little bit. And then also there were a bunch of injuries, so all of a sudden I was dancing a lot, and then I was happy.” In 2009, she was promoted to principal; including her apprenticeship, she’s been with the company 22 years. Now, with her performing days winding down, she said: “It’s bizarre having a finite amount of dancing left. I’m trying not to put pressure on myself and to be kind to myself in these last few weeks. I’m trying to just be like, you’re a good dancer. You look great.” And she’s excited about her future at Shrine, which is opening a Los Angeles branch in summer. During our video interview, she sat under a painting by Sanford Darling; later she grabbed her laptop for a tour of some of the other works that fill their apartment: “Hawkins Bolden is actually my favorite,” she said of the blind, self-taught artist as she aimed the camera at “Untitled (scarecrow),” made of metal wheelbarrow, garden hose and wire. “To live with these pieces? I used to think it was crazy. But when you live with them, they kind of take on this life that’s really joyful.” She has also loved getting to know artists and “to watch the success happen and know that you were maybe a small part of helping that happen,” she said. “My husband’s like, ‘Wait til you have your first sale, you’re going to feel amazing. You get an adrenaline rush.’ I was like, ‘Oh, so it’s kind of like performing.”’\n", + " She decided to stick around for a year or so and to continue with school — she was also a student a Barnard College, studying biology. “I was just like, OK, you better have fun, you’re only going to do this for another year or so,” she said. “I tried to let go a little bit. And then also there were a bunch of injuries, so all of a sudden I was dancing a lot, and then I was happy.” In 2009, she was promoted to principal; including her apprenticeship, she’s been with the company 22 years. \n", " Evidence\n", "\n", "\n", - "\n", - " But before she can begin her new life, her farewell performance is looming.\n", - " Rebuttal\n", + "\n", + " Now, with her performing days winding down, she said: “It’s bizarre having a finite amount of dancing left. I’m trying not to put pressure on myself and to be kind to myself in these last few weeks. I’m trying to just be like, you’re a good dancer. You look great.”\n", + " Evidence\n", "\n", "\n", "\n", - " It will be “typical Tess fashion: low key,” Stafford said. “During the bows, she doesn’t want bouquets. She just wants single roses, and she doesn’t want it to be a parade of all the principal dancers who feel like they have to do it. She just wants anyone who wants to give her a rose to give her a rose. And she’ll gladly accept it.” He added, “She’s pretty popular. I imagine a bunch of dancers are going to want to do it.” Clearly, this stresses Reichlen out. “I just really enjoy dancing,” she said. “The recognition and the pouring on of praise just makes me feel very uncomfortable. And in retirements in the past, when I’m at them, the whole time I’m thinking, this is my worst nightmare.” Well, maybe not her worst nightmare — she paused, clearly agonized. “It’s not me,” she said. “I’m the dancer who stands in the back corner of the studio. I enjoy being onstage, obviously, but it’s funny: I would be happy if the curtain came down and we didn’t have to bow.”\n", + " And she’s excited about her future at Shrine, which is opening a Los Angeles branch in summer. During our video interview, she sat under a painting by Sanford Darling; later she grabbed her laptop for a tour of some of the other works that fill their apartment: “Hawkins Bolden is actually my favorite,” she said of the blind, self-taught artist as she aimed the camera at “Untitled (scarecrow),” made of metal wheelbarrow, garden hose and wire. “To live with these pieces? I used to think it was crazy. But when you live with them, they kind of take on this life that’s really joyful.”\n", " Evidence\n", "\n", - "
" - ], - "text/plain": [ + "\n", + "\n", + " She has also loved getting to know artists and “to watch the success happen and know that you were maybe a small part of helping that happen,” she said. “My husband’s like, ‘Wait til you have your first sale, you’re going to feel amazing. You get an adrenaline rush.’ I was like, ‘Oh, so it’s kind of like performing.”’\n", + " Evidence\n", + "\n", + "\n", + "\n", + " But before she can begin her new life, her farewell performance is looming.\n", + " Rebuttal\n", + "\n", + "\n", + "\n", + " It will be “typical Tess fashion: low key,” Stafford said. “During the bows, she doesn’t want bouquets. She just wants single roses, and she doesn’t want it to be a parade of all the principal dancers who feel like they have to do it. She just wants anyone who wants to give her a rose to give her a rose. And she’ll gladly accept it.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " He added, “She’s pretty popular. I imagine a bunch of dancers are going to want to do it.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Clearly, this stresses Reichlen out. “I just really enjoy dancing,” she said. “The recognition and the pouring on of praise just makes me feel very uncomfortable. And in retirements in the past, when I’m at them, the whole time I’m thinking, this is my worst nightmare.” Well, maybe not her worst nightmare — she paused, clearly agonized.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “It’s not me,” she said. “I’m the dancer who stands in the back corner of the studio. I enjoy being onstage, obviously, but it’s funny: I would be happy if the curtain came down and we didn’t have to bow.”\n", + " Evidence\n", + "\n", + "
" + ], + "text/plain": [ "" ] }, @@ -27437,7 +37513,7 @@ { "data": { "text/html": [ - "

nytimes\\texas-primary-voting-law.txt

" + "

texas-primary-voting-law.txt

" ], "text/plain": [ "" @@ -27450,34 +37526,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-4b370a42fb9c0131\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-4b370a42fb9c0131\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-4b370a42fb9c0131\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-4b370a42fb9c0131\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "e25a1dd658b649a78f6af40f6cd09c0a", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " Thousands of Texans have had their absentee ballot applications denied as a result of regulations put in place under the state’s new election law, a jump in rejections that could force many older and disabled voters to either vote in person or not at all in primary elections early next month. With a Friday deadline, election officials in the state’s most populous counties have rejected 10 percent — or 12,000 — of the absentee ballot applications received as of Thursday, according to voting data obtained by The New York Times. Officials said the rejection rate reflected a significant increase from past years, and most often because a voter failed to satisfy the new identification requirements. “It’s high, there’s no question,” Bruce Sherbet, the election administrator for Collin County, northeast of Dallas, said of the number of rejections. Mr. Sherbet said his county typically rejects a handful of applications. This year, that number was roughly 300. The Times tallied rejected applications in 12 of the 13 Texas counties with more than 400,000 residents. Bexar County, home to San Antonio, did not disclose its numbers. The total of rejected ballots could still change as applications were still arriving ahead of the Friday night deadline. The figures are the broadest look yet at the impact of the voting law passed in August by the Republican-led legislature in an attempt to tighten procedures and, supporters of the law argued, to restore voter confidence in the election process.\n", + " Thousands of Texans have had their absentee ballot applications denied as a result of regulations put in place under the state’s new election law, a jump in rejections that could force many older and disabled voters to either vote in person or not at all in primary elections early next month.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " With a Friday deadline, election officials in the state’s most populous counties have rejected 10 percent — or 12,000 — of the absentee ballot applications received as of Thursday, according to voting data obtained by The New York Times. Officials said the rejection rate reflected a significant increase from past years, and most often because a voter failed to satisfy the new identification requirements.\n", " Evidence\n", "\n", "\n", + "\n", + " “It’s high, there’s no question,” Bruce Sherbet, the election administrator for Collin County, northeast of Dallas, said of the number of rejections. Mr. Sherbet said his county typically rejects a handful of applications. This year, that number was roughly 300.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The Times tallied rejected applications in 12 of the 13 Texas counties with more than 400,000 residents. Bexar County, home to San Antonio, did not disclose its numbers. The total of rejected ballots could still change as applications were still arriving ahead of the Friday night deadline.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The figures are the broadest look yet at the impact of the voting law passed in August by the Republican-led legislature in an attempt to tighten procedures and, supporters of the law argued, to restore voter confidence in the election process.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " As they prepare for the March 1 primary, election officials say the new law is sowing confusion among voters and further burdening already taxed local election offices.\n", + " Claim\n", + "\n", + "\n", "\n", - " As they prepare for the March 1 primary, election officials say the new law is sowing confusion among voters and further burdening already taxed local election offices. As one of 18 states to pass more restrictive voting laws after the 2020 presidential election, Texas’ rocky rollout could provide a preview of what could come elsewhere.\n", + " As one of 18 states to pass more restrictive voting laws after the 2020 presidential election, Texas’ rocky rollout could provide a preview of what could come elsewhere.\n", " Claim\n", "\n", "\n", "\n", - " Confusion over absentee ballot applications has a more limited impact in Texas than in many other states, however. Texas only allows voters who are over 65 or who have a verified disability to vote by mail. During the 2020 election, more than 1 million Texans voted by mail, although that number is expected to fall, as turnout regularly dips in the midterm elections. There are signs that the problems, particularly with new identification rules, may extend beyond applications to processing ballots. With less than a week of data on returned ballots, Harris County said its ballot rejection rates were as high as 34 percent, and Dallas County had rejected about 20 percent of ballots. “We’re seeing an alarming number of mail ballots being rejected and local officials are left scrambling to protect voter access as the deadline looms,” Isabel Longoria, the elections administrator of Harris County, said in a statement. The new law, a key Republican priority after former President Donald J. Trump claimed there was widespread fraud in the 2020 election, added a host of new restrictions to voting in the state, including banning drive-through voting and 24-hour voting, limiting drop boxes, adding new identification requirements to absentee ballots and preventing local election officials from promoting absentee voting. Republicans vowed that the law made it “easier to vote, harder to cheat.” But some voters in Texas have found the absentee process far from easy, even those who are highly motivated. In Corpus Christi, Linda White, 72, has been voting by mail for several years with her husband Jack, 74. A Democrat, she said that she and her husband, a Republican, have had their applications rejected three times this year. The first time, they inadvertently used an old form posted on the Texas secretary of state’s website (the form was updated in January). Then, they were rejected for overlooking the fields for both their driver’s license numbers and partial Social Security numbers. Finally, Ms. White printed out a new application, and she still did not see the required fields, so she hand-wrote both identification numbers on the side of her application.\n", + " Confusion over absentee ballot applications has a more limited impact in Texas than in many other states, however. Texas only allows voters who are over 65 or who have a verified disability to vote by mail. During the 2020 election, more than 1 million Texans voted by mail, although that number is expected to fall, as turnout regularly dips in the midterm elections.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " There are signs that the problems, particularly with new identification rules, may extend beyond applications to processing ballots. With less than a week of data on returned ballots, Harris County said its ballot rejection rates were as high as 34 percent, and Dallas County had rejected about 20 percent of ballots.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “We’re seeing an alarming number of mail ballots being rejected and local officials are left scrambling to protect voter access as the deadline looms,” Isabel Longoria, the elections administrator of Harris County, said in a statement.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The new law, a key Republican priority after former President Donald J. Trump claimed there was widespread fraud in the 2020 election, added a host of new restrictions to voting in the state, including banning drive-through voting and 24-hour voting, limiting drop boxes, adding new identification requirements to absentee ballots and preventing local election officials from promoting absentee voting.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Republicans vowed that the law made it “easier to vote, harder to cheat.” But some voters in Texas have found the absentee process far from easy, even those who are highly motivated.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In Corpus Christi, Linda White, 72, has been voting by mail for several years with her husband Jack, 74. A Democrat, she said that she and her husband, a Republican, have had their applications rejected three times this year.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The first time, they inadvertently used an old form posted on the Texas secretary of state’s website (the form was updated in January). Then, they were rejected for overlooking the fields for both their driver’s license numbers and partial Social Security numbers. Finally, Ms. White printed out a new application, and she still did not see the required fields, so she hand-wrote both identification numbers on the side of her application.\n", " Evidence\n", "\n", "\n", @@ -27606,7 +37722,22 @@ "\n", "\n", "\n", - " “If I hadn’t just been a determined, hardheaded old woman, and my husband just as determined and hardheaded, I think I would have given up after a couple of shots at this,” Ms. White said in an interview. The new rules require voters to put either their Texas driver’s license number or the last four digits of their Social Security number on ballot applications. If voters omit something, or make an error in another field, they can correct their applications up to 11 days before an election. Heidi Schoenfeld, a precinct chair in San Antonio who currently serves on the voter protection committee for her county’s Democratic Party, had her application for an absentee ballot rejected twice this year. “We’ve been voters continuously for 53 years, we’ve been registered that long, and I’ve been following what we’re supposed to do,” said Ms. Schoenfeld. “And if we can’t get it right, there’s just something wrong.”\n", + " “If I hadn’t just been a determined, hardheaded old woman, and my husband just as determined and hardheaded, I think I would have given up after a couple of shots at this,” Ms. White said in an interview.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The new rules require voters to put either their Texas driver’s license number or the last four digits of their Social Security number on ballot applications. If voters omit something, or make an error in another field, they can correct their applications up to 11 days before an election.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Heidi Schoenfeld, a precinct chair in San Antonio who currently serves on the voter protection committee for her county’s Democratic Party, had her application for an absentee ballot rejected twice this year.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “We’ve been voters continuously for 53 years, we’ve been registered that long, and I’ve been following what we’re supposed to do,” said Ms. Schoenfeld. “And if we can’t get it right, there’s just something wrong.”\n", " Evidence\n", "\n", "\n", @@ -27616,7 +37747,27 @@ "\n", "\n", "\n", - " The re-election campaign of Lt. Gov. Dan Patrick, a Republican, instructed supporters to mail their ballot applications to the secretary of state instead of to county officials, a clear break with the rules that could have resulted in the rejection of every supporter who followed those instructions. The secretary of state said it forwarded the applications to the counties. The Patrick campaign said the secretary of state was “trusted and respected” and wanted to “give voters an added layer of comfort,” Allen Blakemore, a campaign consultant for Mr. Patrick, wrote in an email to the Texas Tribune, which first reported on the Patrick campaign’s ballot applications. The office of Gov. Greg Abbott, the Republican governor who made new election legislation a top priority, issued a statement placing some blame for the rise in ballot rejections on local election officials. “Reports of high rejection rates of mail ballot applications at the county level are the result of election officials erroneously interpreting the law and going to the press instead of the Texas Secretary of State’s office for assistance,” said Nan Tolson, a spokeswoman for Mr. Abbott. Sam Taylor, a spokesman for the Texas secretary of state, said that the office has been working since December to help educate voters and election officials on the coming changes. But Mr. Taylor allowed that the time crunch — the new law went into effect in December — was causing problems.\n", + " The re-election campaign of Lt. Gov. Dan Patrick, a Republican, instructed supporters to mail their ballot applications to the secretary of state instead of to county officials, a clear break with the rules that could have resulted in the rejection of every supporter who followed those instructions. The secretary of state said it forwarded the applications to the counties.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The Patrick campaign said the secretary of state was “trusted and respected” and wanted to “give voters an added layer of comfort,” Allen Blakemore, a campaign consultant for Mr. Patrick, wrote in an email to the Texas Tribune, which first reported on the Patrick campaign’s ballot applications.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The office of Gov. Greg Abbott, the Republican governor who made new election legislation a top priority, issued a statement placing some blame for the rise in ballot rejections on local election officials.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Reports of high rejection rates of mail ballot applications at the county level are the result of election officials erroneously interpreting the law and going to the press instead of the Texas Secretary of State’s office for assistance,” said Nan Tolson, a spokeswoman for Mr. Abbott.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Sam Taylor, a spokesman for the Texas secretary of state, said that the office has been working since December to help educate voters and election officials on the coming changes. But Mr. Taylor allowed that the time crunch — the new law went into effect in December — was causing problems.\n", " Evidence\n", "\n", "\n", @@ -27675,7 +37826,7 @@ { "data": { "text/html": [ - "

nytimes\\the-gilded-age.txt

" + "

the-gilded-age.txt

" ], "text/plain": [ "" @@ -27688,34 +37839,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-44cfa3481ef4da9b\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-44cfa3481ef4da9b\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-44cfa3481ef4da9b\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-44cfa3481ef4da9b\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "a69aff367e1a48aaae974ca39724b2dc", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " In 1951, the N.A.A.C.P. had clearly seen enough of the televised version of “Amos ‘n’ Andy” — the visual adaptation of the popular radio show that had white minstrels voicing supposed Black characters. That year, according to Robin R. Means Coleman’s “African American Viewers and the Black Situation Comedy: Situating Racial Humor,” the N.A.A.C.P. put out a manifesto, in its bulletin, on “Why the ‘Amos ‘n’ Andy’ TV Show Should Be Taken Off the Air,” stating that the show “tends to strengthen the conclusion among uninformed and prejudiced people that Negroes are inferior, lazy, dumb, and dishonest,” and cataloging the show’s portrayals thusly: “Every character” is “either a clown or a crook”; “Negro doctors are shown as quacks and thieves”; “Negro lawyers are shown as slippery cowards”; “Negro women are shown as cackling, screaming shrews”; “All Negroes are shown as dodging work of any kind”; and “Millions of white Americans see this ‘Amos ‘n’ Andy’ picture of Negroes and think the entire race is the same.” The N.A.A.C.P. was right: “Amos ‘n’ Andy” disgracefully offered audiences a portrayal of Black Americans as impecunious dolts. And the N.A.A.C.P. was right to call this out. But from our perspective today, what notably appears to be missing from its indictment is any grievance that the show fails to call attention to the myriad injustices that Black people suffered historically and at the time. Listing its criticisms, the N.A.A.C.P. didn’t complain that “Amos ‘n’ Andy” ignored the reality of racism. Or that it did not, for instance, focus on characters being abused by police officers or finding themselves unable to secure housing outside of languishing Black neighborhoods. This approach — emphasizing the demand for positive portrayals of Black life, rather than calling for more examination of Black struggles — was typical of how Black demands were couched back then. A few years later, an episode of the TV news show “See It Now,” hosted by Edward R. Murrow, spotlighted the Black operatic virtuoso Marian Anderson’s tour of Asia. The episode, which was broadcast in December 1957 and documented Anderson’s exceptional cultural diplomacy (the whole thing is worth watching), juxtaposed with events of the preceding September, when segregationists resisted the integration of Little Rock Central High School in Little Rock, Ark., by Black students who became known as “The Little Rock Nine.” On her tour, Anderson was asked by interviewers about American race relations and she answered with statesmanlike aplomb — acknowledging that America was battling racism from within, while maintaining an optimism that we would move beyond it. Nevertheless, as Allan Keiler recounts in “Marian Anderson: A Singer’s Journey,” one viewer, presumably Black, wrote a letter complaining that the episode was still too pessimistic, neglecting greater mention of “the many of our race who are on top.” Back then, civil rights messaging, including Anderson’s, focused on how Black people were overcoming racism, not just on how it held us back. But that kind of message generated criticism of the sitcom “Julia” a decade later. “Julia,” which ran for three seasons starting in 1968, was about a Black registered nurse, played by Diahann Carroll in her signature unflappable style. Her character was a professional woman, a single mom of an adorable son and the widow of a Vietnam War veteran, who negotiated a white world in which she occasionally encountered prejudice and dispatched it with crisp dismissal. (Though, it should be noted, many episodes dealt with other issues entirely.) To the N.A.A.C.P. of the late 1950s, “Julia” would’ve been just the ticket, portraying a financially independent, self-assured Black everywoman. But as Donald Bogle documents in “Primetime Blues: African Americans on Network Television,” Carroll recalled that Harry Belafonte, the actor and civil rights activist, “launched a full-scale assault on ‘Julia,’ then asked me not to do it.” Bogle notes that Robert Lewis Shayon, a TV critic for The Saturday Review, wrote that the sitcom’s middle-class setting was “a far, far cry from the bitter realities of Negro life in the urban ghetto, the pit of America’s explosion potential.” After Carroll responded to Shayon’s criticism by noting that for many, watching TV can be a form of escapism at the end of a typical trying day, Shayon later wrote that the show: distorts reality and deals in double-truth. The business of TV comedy is not primarily to make people laugh: it is to manage consumption; and if in so doing it dulls critical sensibilities in people who have ‘had a pretty grim day,’ it contributes its share to the rigidity of a way of life in which black Americans suffer more severely than others. Shayon was white and his take on a show about middle-class Black contentment was what we might now call woke, in some ways more intuitive to many than the N.A.A.C.P.’s response to “Amos ‘n’ Andy.” Which brings me to the way race is handled on the new HBO Max show, “The Gilded Age.” As Dave Itzkoff of The New York Times reports, the creator, Julian Fellowes (of “Downton Abbey” fame), considered having the show’s central Black female character, Peggy Scott, played by Denée Benton, be introduced to other characters as a maid. This would have been an honest depiction of some Black people’s station amid wealthy white New Yorkers in 1882, but an incomplete one. Benton requested that the creators consider a different conception of her character, and they did — Peggy starts out as the personal secretary to Agnes Van Rhijn, the society matron played by Christine Baranski. And as the show proceeds, we learn that for Peggy, an aspiring writer, a secretarial position is something of a step down, as she eschews the ready-made path that her parents want for her: taking over her father’s pharmacy and her prescribed place in Black society. Miracle of miracles, “The Gilded Age” is portraying in living color (at least through the show’s most recently released episode) Brooklyn’s Black bourgeoisie of the era, and some of its history. That is, many Black New Yorkers, terrorized by the 1863 Draft Riots — which included the torching of a Black orphanage on Fifth Avenue — and by the generally oppressive conditions for Black people in an openly bigoted Manhattan, moved across the East River to Brooklyn, where a community of prosperous Black families took hold. Who knew that we would ever see, in high-def, this affluent Black Brooklyn, with characters played by actors as august as Audra McDonald and John Douglas Thompson? (Of note, also, is one of the show’s executive producers, Salli Richardson-Whitfield, known for her acting roles in movies such as “Antwone Fisher,” who directs four “Gilded Age” episodes this season.) The victory here is the kind that the critics of “Amos ‘n’ Andy” would have saluted, even if the critics of “Julia” might have been more skeptical. That is to say that “The Gilded Age,” at least so far, isn’t reckoning with the 19th-century Black New Yorkers who were making their way in the suffocatingly overcrowded Five Points neighborhood downtown (depicted memorably by Martin Scorsese in “Gangs of New York”). Or in cramped tenements in San Juan Hill on the Upper West Side, where “West Side Story” is set, a neighborhood later demolished to make way for Lincoln Center. In one scene, though, “Gilded Age” does nod to the racial stratification of the time, irrespective of class: As Peggy and her father stand on a sidewalk, white pedestrians pass, and she and her father know that they’re expected to stand aside and make way, and they do — their moneyed status and elegant bearing offering no exemption from being treated as second-class citizens.\n", + " In 1951, the N.A.A.C.P. had clearly seen enough of the televised version of “Amos ‘n’ Andy” — the visual adaptation of the popular radio show that had white minstrels voicing supposed Black characters. That year, according to Robin R. Means Coleman’s “African American Viewers and the Black Situation Comedy: Situating Racial Humor,” the N.A.A.C.P. put out a manifesto, in its bulletin, on “Why the ‘Amos ‘n’ Andy’ TV Show Should Be Taken Off the Air,” stating that the show “tends to strengthen the conclusion among uninformed and prejudiced people that Negroes are inferior, lazy, dumb, and dishonest,” and cataloging the show’s portrayals thusly: “Every character” is “either a clown or a crook”; “Negro doctors are shown as quacks and thieves”; “Negro lawyers are shown as slippery cowards”; “Negro women are shown as cackling, screaming shrews”; “All Negroes are shown as dodging work of any kind”; and “Millions of white Americans see this ‘Amos ‘n’ Andy’ picture of Negroes and think the entire race is the same.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The N.A.A.C.P. was right: “Amos ‘n’ Andy” disgracefully offered audiences a portrayal of Black Americans as impecunious dolts. And the N.A.A.C.P. was right to call this out. But from our perspective today, what notably appears to be missing from its indictment is any grievance that the show fails to call attention to the myriad injustices that Black people suffered historically and at the time. Listing its criticisms, the N.A.A.C.P. didn’t complain that “Amos ‘n’ Andy” ignored the reality of racism. Or that it did not, for instance, focus on characters being abused by police officers or finding themselves unable to secure housing outside of languishing Black neighborhoods.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " This approach — emphasizing the demand for positive portrayals of Black life, rather than calling for more examination of Black struggles — was typical of how Black demands were couched back then. A few years later, an episode of the TV news show “See It Now,” hosted by Edward R. Murrow, spotlighted the Black operatic virtuoso Marian Anderson’s tour of Asia. The episode, which was broadcast in December 1957 and documented Anderson’s exceptional cultural diplomacy (the whole thing is worth watching), juxtaposed with events of the preceding September, when segregationists resisted the integration of Little Rock Central High School in Little Rock, Ark., by Black students who became known as “The Little Rock Nine.” On her tour, Anderson was asked by interviewers about American race relations and she answered with statesmanlike aplomb — acknowledging that America was battling racism from within, while maintaining an optimism that we would move beyond it. Nevertheless, as Allan Keiler recounts in “Marian Anderson: A Singer’s Journey,” one viewer, presumably Black, wrote a letter complaining that the episode was still too pessimistic, neglecting greater mention of “the many of our race who are on top.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Back then, civil rights messaging, including Anderson’s, focused on how Black people were overcoming racism, not just on how it held us back. But that kind of message generated criticism of the sitcom “Julia” a decade later.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Julia,” which ran for three seasons starting in 1968, was about a Black registered nurse, played by Diahann Carroll in her signature unflappable style. Her character was a professional woman, a single mom of an adorable son and the widow of a Vietnam War veteran, who negotiated a white world in which she occasionally encountered prejudice and dispatched it with crisp dismissal. (Though, it should be noted, many episodes dealt with other issues entirely.) To the N.A.A.C.P. of the late 1950s, “Julia” would’ve been just the ticket, portraying a financially independent, self-assured Black everywoman.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " But as Donald Bogle documents in “Primetime Blues: African Americans on Network Television,” Carroll recalled that Harry Belafonte, the actor and civil rights activist, “launched a full-scale assault on ‘Julia,’ then asked me not to do it.” Bogle notes that Robert Lewis Shayon, a TV critic for The Saturday Review, wrote that the sitcom’s middle-class setting was “a far, far cry from the bitter realities of Negro life in the urban ghetto, the pit of America’s explosion potential.” After Carroll responded to Shayon’s criticism by noting that for many, watching TV can be a form of escapism at the end of a typical trying day, Shayon later wrote that the show:\n", + " Evidence\n", + "\n", + "\n", + "\n", + " distorts reality and deals in double-truth. The business of TV comedy is not primarily to make people laugh: it is to manage consumption; and if in so doing it dulls critical sensibilities in people who have ‘had a pretty grim day,’ it contributes its share to the rigidity of a way of life in which black Americans suffer more severely than others.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Shayon was white and his take on a show about middle-class Black contentment was what we might now call woke, in some ways more intuitive to many than the N.A.A.C.P.’s response to “Amos ‘n’ Andy.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Which brings me to the way race is handled on the new HBO Max show, “The Gilded Age.” As Dave Itzkoff of The New York Times reports, the creator, Julian Fellowes (of “Downton Abbey” fame), considered having the show’s central Black female character, Peggy Scott, played by Denée Benton, be introduced to other characters as a maid. This would have been an honest depiction of some Black people’s station amid wealthy white New Yorkers in 1882, but an incomplete one. Benton requested that the creators consider a different conception of her character, and they did — Peggy starts out as the personal secretary to Agnes Van Rhijn, the society matron played by Christine Baranski. And as the show proceeds, we learn that for Peggy, an aspiring writer, a secretarial position is something of a step down, as she eschews the ready-made path that her parents want for her: taking over her father’s pharmacy and her prescribed place in Black society.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Miracle of miracles, “The Gilded Age” is portraying in living color (at least through the show’s most recently released episode) Brooklyn’s Black bourgeoisie of the era, and some of its history. That is, many Black New Yorkers, terrorized by the 1863 Draft Riots — which included the torching of a Black orphanage on Fifth Avenue — and by the generally oppressive conditions for Black people in an openly bigoted Manhattan, moved across the East River to Brooklyn, where a community of prosperous Black families took hold. Who knew that we would ever see, in high-def, this affluent Black Brooklyn, with characters played by actors as august as Audra McDonald and John Douglas Thompson? (Of note, also, is one of the show’s executive producers, Salli Richardson-Whitfield, known for her acting roles in movies such as “Antwone Fisher,” who directs four “Gilded Age” episodes this season.)\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The victory here is the kind that the critics of “Amos ‘n’ Andy” would have saluted, even if the critics of “Julia” might have been more skeptical. That is to say that “The Gilded Age,” at least so far, isn’t reckoning with the 19th-century Black New Yorkers who were making their way in the suffocatingly overcrowded Five Points neighborhood downtown (depicted memorably by Martin Scorsese in “Gangs of New York”). Or in cramped tenements in San Juan Hill on the Upper West Side, where “West Side Story” is set, a neighborhood later demolished to make way for Lincoln Center. In one scene, though, “Gilded Age” does nod to the racial stratification of the time, irrespective of class: As Peggy and her father stand on a sidewalk, white pedestrians pass, and she and her father know that they’re expected to stand aside and make way, and they do — their moneyed status and elegant bearing offering no exemption from being treated as second-class citizens.\n", " Evidence\n", "\n", "\n", @@ -27816,7 +38000,12 @@ "\n", "\n", "\n", - " However, it isn’t fanciful to imagine such an objection emerging, as the series goes forth, when you consider that for years there was debate about whether the “The Cosby Show,” with its upper-middle-class Brooklynite Black family, was a realistic portrayal of Black life in America. Or when “Our Kind of People: Inside America’s Black Upper Class” (the inspiration for last year’s eponymous Fox series) was published in 1999 and its author, Lawrence Otis Graham, found himself described as a guileless chronicler of the Black elite. Or when the general zeitgeist seems to teach us that resenting white power and privilege is more interesting than examining how some people get past them. But given that Black struggle is these days portrayed rather richly in film and theater, “The Gilded Age” lends a service in showing, beyond museum exhibits and magazine articles, that Black people in another age could triumph despite the obstacles. It brings onscreen life to one of many Black truths, and the one it has chosen to show is of a kind that a truly proud people must not be denied.\n", + " However, it isn’t fanciful to imagine such an objection emerging, as the series goes forth, when you consider that for years there was debate about whether the “The Cosby Show,” with its upper-middle-class Brooklynite Black family, was a realistic portrayal of Black life in America. Or when “Our Kind of People: Inside America’s Black Upper Class” (the inspiration for last year’s eponymous Fox series) was published in 1999 and its author, Lawrence Otis Graham, found himself described as a guileless chronicler of the Black elite. Or when the general zeitgeist seems to teach us that resenting white power and privilege is more interesting than examining how some people get past them.\n", + " Rebuttal\n", + "\n", + "\n", + "\n", + " But given that Black struggle is these days portrayed rather richly in film and theater, “The Gilded Age” lends a service in showing, beyond museum exhibits and magazine articles, that Black people in another age could triumph despite the obstacles. It brings onscreen life to one of many Black truths, and the one it has chosen to show is of a kind that a truly proud people must not be denied.\n", " Rebuttal\n", "\n", "
" @@ -27840,7 +38029,7 @@ { "data": { "text/html": [ - "

nytimes\\things-to-do-this-weekend.txt

" + "

things-to-do-this-weekend.txt

" ], "text/plain": [ "" @@ -27853,20 +38042,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-edd53864fa1a487b\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-edd53864fa1a487b\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-edd53864fa1a487b\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-edd53864fa1a487b\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "46c0064420c548c2b074c13c119b362b", + "model_id": "795f6cc68abb44e0893dcb4301ec8d89", "version_major": 2, "version_minor": 0 }, @@ -27877,64 +38060,22 @@ "metadata": {}, "output_type": "display_data" }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Loading cached processed dataset at C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-edd53864fa1a487b\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4\\cache-e8ee9aedac3286df.arrow\n" + ] + }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "d844f95a190b4a20bc5c063884918dba", + "model_id": "88157ce28da24b7b9b7f97dc0b956b1e", "version_major": 2, "version_minor": 0 }, "text/plain": [ - " 0%| | 0/1 [00:00\n", "\n", "\n", - " After so much worrying about dangerous pathogens floating among us, it’s refreshing to be diverted, however briefly, by what the New Victory Theater is unleashing into its atmosphere: feathers, balloons, umbrellas, flowing fabric, shiny particles and, especially, joy. All have roles in “Air Play,” a mixture of circus, science, comedy and music to savor in person through March 6, or virtually through March 20. (Tickets are $20 to $45; on-demand online viewing is $25.) Presented by Seth Bloom and Christina Gelsone, the married duo known as Acrobuffos, this delightful hourlong revival — the show first ran here in 2018 — relies on its performers’ kinetic energy and Daniel Wurtzel’s air sculptures to keep both objects and spirits aloft. What’s an air sculpture? It results from combining carefully positioned electric fans with materials that can soar. You’ll see silken swaths dance, balloons coyly sway, and orbs and glitter form a whirling, starry universe. All the while, Bloom and Gelsone, expert clowns, play with each other, their props and their spectators, who shouldn’t expect to remain completely anchored themselves.LAUREL GRAEBER Betty White’s death at 99 on New Year’s Eve prompted not only national mourning, but also renewed nostalgia for “The Golden Girls,” the NBC sitcom White starred in that aired from 1985 to ’92. That sentimentality could extend to “That Golden Girls Show!” as well. The puppet parody, which originally ran Off Broadway in 2016, is back on the road for what is billed as the “Final Farewell” tour. With Miranda Cooper as Sophia, Dylan Glick as Dorothy, Lu Zielinski as Blanche, and Samantha Lee Mason as Rose, the show reimagines classic moments from the sitcom in which Sophia schemes, Blanche flirts, Rose evokes St. Olaf and Dorothy flings lots of insults. Recommended for ages 13 and older, “That Golden Girls Show!” is the first production to reopen Queens Theater. Performances are at 3 and 7 p.m. on Sunday, and tickets start at $20. If you miss the tour this time, it will circle back to the city with a four-week run at Theater Row beginning on April 29.SEAN L. McCARTHY “It’s my nature now, to record — to try to keep everything I’m passing through,” Jonas Mekas says in voice-over in “Lost Lost Lost.” First shown in 1976, this diary film is a compilation of footage Mekas shot from 1949 to 1963 capturing his life and friends in a changing New York, along with his feelings of displacement from his native Lithuania. A writer, filmmaker, champion of the avant-garde and a founder of Anthology Film Archives, Mekas died at 96 in 2019; he would have turned 100 this year. A retrospective of his major cinematic works starts on Friday at Film at Lincoln Center and includes “Lost Lost Lost” (on Saturday and Wednesday). A related exhibition, “Jonas Mekas: The Camera Was Always Running,” opens the same day at the Jewish Museum, which is showing Mekas’s films in a prismatic, 12-screen installation format, and where Mekas ran a film series in the late 1960s. On Sunday, Film at Lincoln Center will show Mekas’s nearly five-hour “As I Was Moving Ahead Occasionally I Saw Brief Glimpses of Beauty,” which stretches from 1970 to 1999. In his narration at the beginning, Mekas says he spliced together rolls of film “by chance, the way that I found them on the shelf.”BEN KENIGSBERG Last summer, the singer-songwriter and artist Moses Sumney held a concert in the Blue Ridge Mountains. It resulted in a 14-track album, “Live From Blackalachia,” and a 70-minute film that is simply titled “Blackalachia,” a portmanteau of “Black” and “Appalachia.” Sumney performed without an audience, unless you count the lush greenery that created the backdrop for his concert. At one point in the film, while lying in a tub full of flowers, Sumney says, “I’ve needed a space to articulate my own loneliness.” He does find some sense of connection in the Appalachian region, reinventing a place that bears few traces of the history of the Black people who once migrated through there. “Blackalachia,” along with Sumney’s self-portraits, will be on view through March 5 at Nicola Vassell Gallery in Chelsea. The film will be screened six times a day during the gallery’s hours from Tuesday to Sunday. Details can be found at nicolavassell.com.MELISSA SMITH These have been a maddeningly tough two years for festival planners, but with Covid-19 cases on the decline and statewide restrictions lifted, the Hudson Jazz Festival’s organizers can count themselves among the lucky ones. Two hours upriver from New York City, in an old opera house on the main drag of Hudson, N.Y., the festival culminates this weekend with nightly performances from some of straight-ahead jazz’s finest. The vibraphonist Warren Wolf will pay tribute on Friday night to Chick Corea and Gary Burton’s historic duets; the rising-star vocalist Jazzmeia Horn leads a quartet on Saturday; and the tenor saxophonist Jimmy Greene closes things out with a Sunday matinee. For most of the weekend’s performances, tickets are still available for tables of two and four, and start at $70. Can’t make it in person? Each night’s program can be livestreamed free, if you reserve a space ahead of time, at hudsonhall.org.GIOVANNI RUSSONELLO\n", + " After so much worrying about dangerous pathogens floating among us, it’s refreshing to be diverted, however briefly, by what the New Victory Theater is unleashing into its atmosphere: feathers, balloons, umbrellas, flowing fabric, shiny particles and, especially, joy.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " All have roles in “Air Play,” a mixture of circus, science, comedy and music to savor in person through March 6, or virtually through March 20. (Tickets are $20 to $45; on-demand online viewing is $25.) Presented by Seth Bloom and Christina Gelsone, the married duo known as Acrobuffos, this delightful hourlong revival — the show first ran here in 2018 — relies on its performers’ kinetic energy and Daniel Wurtzel’s air sculptures to keep both objects and spirits aloft.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " What’s an air sculpture? It results from combining carefully positioned electric fans with materials that can soar. You’ll see silken swaths dance, balloons coyly sway, and orbs and glitter form a whirling, starry universe.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " All the while, Bloom and Gelsone, expert clowns, play with each other, their props and their spectators, who shouldn’t expect to remain completely anchored themselves.LAUREL GRAEBER\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Betty White’s death at 99 on New Year’s Eve prompted not only national mourning, but also renewed nostalgia for “The Golden Girls,” the NBC sitcom White starred in that aired from 1985 to ’92.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " That sentimentality could extend to “That Golden Girls Show!” as well. The puppet parody, which originally ran Off Broadway in 2016, is back on the road for what is billed as the “Final Farewell” tour. With Miranda Cooper as Sophia, Dylan Glick as Dorothy, Lu Zielinski as Blanche, and Samantha Lee Mason as Rose, the show reimagines classic moments from the sitcom in which Sophia schemes, Blanche flirts, Rose evokes St. Olaf and Dorothy flings lots of insults.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Recommended for ages 13 and older, “That Golden Girls Show!” is the first production to reopen Queens Theater. Performances are at 3 and 7 p.m. on Sunday, and tickets start at $20. If you miss the tour this time, it will circle back to the city with a four-week run at Theater Row beginning on April 29.SEAN L. McCARTHY\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “It’s my nature now, to record — to try to keep everything I’m passing through,” Jonas Mekas says in voice-over in “Lost Lost Lost.” First shown in 1976, this diary film is a compilation of footage Mekas shot from 1949 to 1963 capturing his life and friends in a changing New York, along with his feelings of displacement from his native Lithuania.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " A writer, filmmaker, champion of the avant-garde and a founder of Anthology Film Archives, Mekas died at 96 in 2019; he would have turned 100 this year. A retrospective of his major cinematic works starts on Friday at Film at Lincoln Center and includes “Lost Lost Lost” (on Saturday and Wednesday). A related exhibition, “Jonas Mekas: The Camera Was Always Running,” opens the same day at the Jewish Museum, which is showing Mekas’s films in a prismatic, 12-screen installation format, and where Mekas ran a film series in the late 1960s.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " On Sunday, Film at Lincoln Center will show Mekas’s nearly five-hour “As I Was Moving Ahead Occasionally I Saw Brief Glimpses of Beauty,” which stretches from 1970 to 1999. In his narration at the beginning, Mekas says he spliced together rolls of film “by chance, the way that I found them on the shelf.”BEN KENIGSBERG\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Last summer, the singer-songwriter and artist Moses Sumney held a concert in the Blue Ridge Mountains. It resulted in a 14-track album, “Live From Blackalachia,” and a 70-minute film that is simply titled “Blackalachia,” a portmanteau of “Black” and “Appalachia.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Sumney performed without an audience, unless you count the lush greenery that created the backdrop for his concert. At one point in the film, while lying in a tub full of flowers, Sumney says, “I’ve needed a space to articulate my own loneliness.” He does find some sense of connection in the Appalachian region, reinventing a place that bears few traces of the history of the Black people who once migrated through there.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Blackalachia,” along with Sumney’s self-portraits, will be on view through March 5 at Nicola Vassell Gallery in Chelsea. The film will be screened six times a day during the gallery’s hours from Tuesday to Sunday. Details can be found at nicolavassell.com.MELISSA SMITH\n", + " Evidence\n", + "\n", + "\n", + "\n", + " These have been a maddeningly tough two years for festival planners, but with Covid-19 cases on the decline and statewide restrictions lifted, the Hudson Jazz Festival’s organizers can count themselves among the lucky ones.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Two hours upriver from New York City, in an old opera house on the main drag of Hudson, N.Y., the festival culminates this weekend with nightly performances from some of straight-ahead jazz’s finest. The vibraphonist Warren Wolf will pay tribute on Friday night to Chick Corea and Gary Burton’s historic duets; the rising-star vocalist Jazzmeia Horn leads a quartet on Saturday; and the tenor saxophonist Jimmy Greene closes things out with a Sunday matinee.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " For most of the weekend’s performances, tickets are still available for tables of two and four, and start at $70. Can’t make it in person? Each night’s program can be livestreamed free, if you reserve a space ahead of time, at hudsonhall.org.GIOVANNI RUSSONELLO\n", " Evidence\n", "\n", "
" @@ -27997,7 +38231,7 @@ { "data": { "text/html": [ - "

nytimes\\tiktok-ava-majury.txt

" + "

tiktok-ava-majury.txt

" ], "text/plain": [ "" @@ -28010,34 +38244,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-4a0e65cd80ec98d4\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-4a0e65cd80ec98d4\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-4a0e65cd80ec98d4\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-4a0e65cd80ec98d4\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "7e1c10f5176f46e996c26c96dceba5b4", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " NAPLES, Fla. — Ava Majury downloaded TikTok when she was 13, and at the height of the pandemic lockdowns a year later had more than a million followers. Her fans, nearly three-quarters of them male, watched her lip-sync and dance to trending music on an account with the profile message, “Hey, I love you!!” In early 2020 Ava noticed that one fan, EricJustin111, was trying to get her attention in comments on TikTok. He messaged her in Snapchat and on Instagram, and turned up in online games she played with her brothers. Ava responded to him a few times at first, she said, “because I used to reply to my fans, like ‘Hey, how was your day?’’’ Early on July 10, the fan — Eric Rohan Justin, 18, of Ellicott City, Md. — arrived with a shotgun at the Majury family home in Naples and blew open the front door. His weapon jammed; Ava’s father, Rob Majury, a retired police lieutenant, chased him off but fell. Mr. Majury told Collier County sheriff’s officers that he returned to the house, retrieved his handgun and stood guard at the front door, only to see the gunman return a short time later. By sunrise Mr. Justin lay dying, shot by Mr. Majury. What began as an enterprising teenager’s lockdown venture has awakened the family of five to how online fame can fuel real-world violence. In interviews with The New York Times, they spoke for the first time about an ordeal that illuminates the dark side of a social media platform favored by millions of children. TikTok’s owner, Beijing-based ByteDance Ltd., and many of its users emphasize the friendships, innovative content and creative collaboration enabled by the platform, but its enormous popularity among vulnerable, underage people has also been linked to mental health problems, injuries and deaths. Today Ava Majury remains on TikTok, where she is netting thousands of dollars in sponsorship deals and has attracted interest from Hollywood, including from reality TV producers. Her TikTok fame has brought sponsorship opportunities on Instagram and Snapchat, too. Instagram, owned by Meta, formerly known as Facebook, has also been accused of causing mental and emotional health problems among teenage female users. “Her creations, her contacts, her videos became such a big part of her that to take it away would have been hard,” her father said. “We chose what’s best for our family,” Ava’s mother, Kim Majury, added. “We know there are going to be two sides, and some people won’t understand.’’ The Majurys moved to Florida in 2019 from Manalapan, N.J., lured by its warm climate, low taxes and a quieter lifestyle. They settled in Naples, a staid, safe community of affluent retirees and growing families in Collier County, on the state’s Gulf Coast. Mr. Majury, 51, is a former Jersey City police lieutenant, and Mrs. Majury, 45, is an ultrasound technologist. The family rented a home in Raffia Preserve, a subdivision of tidy homes on curving streets. Ava is “a go-getter,” her father said. When classmates in New Jersey admired a sticker she had designed for her laptop, she started selling them, eventually earning nearly $700. On TikTok, she has promoted a tooth-whitening product, emerging recording artists and N.F.L. games. “I have three TikTok accounts, so I could have one brand come to me and be like, ‘Oh, I’ll do $1,000 for one video on your main account,’ and I’ll be like, ‘Oh great, I have two other accounts that are different types of people on there,’” Ava said in an interview. “So altogether, I’m making $1,700 off just my name, because I opened up three accounts rather than just building off one.” Her venture surprised and intrigued her parents. “Honestly, we had no idea the extent of what she was able to earn,” Mr. Majury said. He has appeared in a couple of her videos, including one she made in the car while he was driving. “We both pointed at the camera at the same time and the music stopped and she starts laughing. You know, so innocent, it was sweet for me. It’s me and her having a moment,” Mr. Majury recalled. The moment drew hundreds of thousands of views. Downloads of TikTok grew by 75 percent in 2020, making it the world’s most-downloaded app that year, according to Hootsuite. Today the platform has more than one billion average monthly users. It welcomes account holders as young as 13, and in 2021 outflanked both Instagram and Snapchat in weekly usage by youth ages 12 to 17. While teens like Ava have used it to entertain and spread positive messages, viral “TikTok Challenges” have been cited as inspiring children to vandalize and threaten their schools, follow starvation “Corpse Bride” diets and asphyxiate themselves. Teen girls have been repeatedly targeted by child predators. A TikTok spokeswoman, Mahsau Cullinane, emailed a statement saying that TikTok is “deeply invested in the safety and well-being of our community’’ and added that the platform uses tools to protect users under the age of 16. In 2020, TikTok classified more than a third of its 49 million daily users in the United States as 14 or younger, according to internal company data and documents reviewed by The Times. Ava has two brothers, Evan and Logan, ages 17 and 11. She and Evan attend a sprawling public high school where much of student life revolves around social media. In early 2020, after Ava noticed Mr. Justin angling for her attention on TikTok, she learned that friends in New Jersey and Florida were selling him photos of her as well as her personal information, including her cellphone number, which Mr. Justin used to call and text her. In another instance, Mr. Justin logged onto a classmate’s school account and did math homework in exchange for information about Ava, her family said. “I had to unfollow all my local friends and Jersey friends,” Ava said. “And everyone around me was like, ‘Oh you’re going Hollywood on all of us, you don’t want to talk to us anymore.’ And I’m like, ‘You’re selling my stuff.’”\n", + " NAPLES, Fla. — Ava Majury downloaded TikTok when she was 13, and at the height of the pandemic lockdowns a year later had more than a million followers. Her fans, nearly three-quarters of them male, watched her lip-sync and dance to trending music on an account with the profile message, “Hey, I love you!!”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In early 2020 Ava noticed that one fan, EricJustin111, was trying to get her attention in comments on TikTok. He messaged her in Snapchat and on Instagram, and turned up in online games she played with her brothers. Ava responded to him a few times at first, she said, “because I used to reply to my fans, like ‘Hey, how was your day?’’’\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Early on July 10, the fan — Eric Rohan Justin, 18, of Ellicott City, Md. — arrived with a shotgun at the Majury family home in Naples and blew open the front door. His weapon jammed; Ava’s father, Rob Majury, a retired police lieutenant, chased him off but fell. Mr. Majury told Collier County sheriff’s officers that he returned to the house, retrieved his handgun and stood guard at the front door, only to see the gunman return a short time later. By sunrise Mr. Justin lay dying, shot by Mr. Majury.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " What began as an enterprising teenager’s lockdown venture has awakened the family of five to how online fame can fuel real-world violence. In interviews with The New York Times, they spoke for the first time about an ordeal that illuminates the dark side of a social media platform favored by millions of children.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " TikTok’s owner, Beijing-based ByteDance Ltd., and many of its users emphasize the friendships, innovative content and creative collaboration enabled by the platform, but its enormous popularity among vulnerable, underage people has also been linked to mental health problems, injuries and deaths.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Today Ava Majury remains on TikTok, where she is netting thousands of dollars in sponsorship deals and has attracted interest from Hollywood, including from reality TV producers. Her TikTok fame has brought sponsorship opportunities on Instagram and Snapchat, too. Instagram, owned by Meta, formerly known as Facebook, has also been accused of causing mental and emotional health problems among teenage female users.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Her creations, her contacts, her videos became such a big part of her that to take it away would have been hard,” her father said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “We chose what’s best for our family,” Ava’s mother, Kim Majury, added. “We know there are going to be two sides, and some people won’t understand.’’\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The Majurys moved to Florida in 2019 from Manalapan, N.J., lured by its warm climate, low taxes and a quieter lifestyle. They settled in Naples, a staid, safe community of affluent retirees and growing families in Collier County, on the state’s Gulf Coast. Mr. Majury, 51, is a former Jersey City police lieutenant, and Mrs. Majury, 45, is an ultrasound technologist. The family rented a home in Raffia Preserve, a subdivision of tidy homes on curving streets.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Ava is “a go-getter,” her father said. When classmates in New Jersey admired a sticker she had designed for her laptop, she started selling them, eventually earning nearly $700. On TikTok, she has promoted a tooth-whitening product, emerging recording artists and N.F.L. games.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “I have three TikTok accounts, so I could have one brand come to me and be like, ‘Oh, I’ll do $1,000 for one video on your main account,’ and I’ll be like, ‘Oh great, I have two other accounts that are different types of people on there,’” Ava said in an interview. “So altogether, I’m making $1,700 off just my name, because I opened up three accounts rather than just building off one.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Her venture surprised and intrigued her parents. “Honestly, we had no idea the extent of what she was able to earn,” Mr. Majury said. He has appeared in a couple of her videos, including one she made in the car while he was driving.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “We both pointed at the camera at the same time and the music stopped and she starts laughing. You know, so innocent, it was sweet for me. It’s me and her having a moment,” Mr. Majury recalled. The moment drew hundreds of thousands of views.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Downloads of TikTok grew by 75 percent in 2020, making it the world’s most-downloaded app that year, according to Hootsuite. Today the platform has more than one billion average monthly users. It welcomes account holders as young as 13, and in 2021 outflanked both Instagram and Snapchat in weekly usage by youth ages 12 to 17. While teens like Ava have used it to entertain and spread positive messages, viral “TikTok Challenges” have been cited as inspiring children to vandalize and threaten their schools, follow starvation “Corpse Bride” diets and asphyxiate themselves. Teen girls have been repeatedly targeted by child predators. \n", + " Evidence\n", + "\n", + "\n", + "\n", + " A TikTok spokeswoman, Mahsau Cullinane, emailed a statement saying that TikTok is “deeply invested in the safety and well-being of our community’’ and added that the platform uses tools to protect users under the age of 16. In 2020, TikTok classified more than a third of its 49 million daily users in the United States as 14 or younger, according to internal company data and documents reviewed by The Times.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Ava has two brothers, Evan and Logan, ages 17 and 11. She and Evan attend a sprawling public high school where much of student life revolves around social media. \n", + " Evidence\n", + "\n", + "\n", + "\n", + " In early 2020, after Ava noticed Mr. Justin angling for her attention on TikTok, she learned that friends in New Jersey and Florida were selling him photos of her as well as her personal information, including her cellphone number, which Mr. Justin used to call and text her. In another instance, Mr. Justin logged onto a classmate’s school account and did math homework in exchange for information about Ava, her family said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “I had to unfollow all my local friends and Jersey friends,” Ava said. “And everyone around me was like, ‘Oh you’re going Hollywood on all of us, you don’t want to talk to us anymore.’ And I’m like, ‘You’re selling my stuff.’”\n", " Evidence\n", "\n", "\n", @@ -28183,17 +38502,47 @@ "\n", "\n", "\n", - " “I wasn’t sending anything of my body,’’ Ava said. “It was just pictures of my face, which is what I assume that he was paying for. My whole thing is my pretty smile — that’s my content.” She said Mr. Justin paid about $300 for two photos, via the Venmo digital wallet app. After that, Mr. Justin messaged Ava on Venmo with a breakdown of what he would pay for “booty pics” and photos of her feet, “stuff that a 14-year-old shouldn’t be sending,” she said. She blocked him on all her accounts. In Venmo messages viewed by The Times, Mr. Justin pleaded with her to unblock him, sending $159.18, then $100, and finally $368.50 with the message, “sorry this is all I have left i’m broke.” Mr. Majury said he texted Mr. Justin’s cellphone, told him that Ava was a minor, and demanded that he stop contacting her. At that point Mr. Justin’s efforts turned sinister. In a series of text messages that made their way to Ava, and which the Majury family showed The Times, he asked one of Ava’s male classmates whether he had access to a “strap,” or gun, shared plans to assault her, and wrote, “i could just breach the door with a shotgun i think.” The classmate’s mother declined an interview request. When Ava learned of the threatening messages, she called the classmate who had received them. He confirmed that he had gotten them, and forwarded others to her. Fearful, she showed her parents. They researched Mr. Justin’s identity, saw that he lived hundreds of miles away, and reassured her that “he was one of these keyboard cowboys,” Mr. Majury said. \n", + " “I wasn’t sending anything of my body,’’ Ava said. “It was just pictures of my face, which is what I assume that he was paying for. My whole thing is my pretty smile — that’s my content.” She said Mr. Justin paid about $300 for two photos, via the Venmo digital wallet app.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " After that, Mr. Justin messaged Ava on Venmo with a breakdown of what he would pay for “booty pics” and photos of her feet, “stuff that a 14-year-old shouldn’t be sending,” she said. She blocked him on all her accounts. In Venmo messages viewed by The Times, Mr. Justin pleaded with her to unblock him, sending $159.18, then $100, and finally $368.50 with the message, “sorry this is all I have left i’m broke.”\n", " Evidence\n", "\n", "\n", + "\n", + " Mr. Majury said he texted Mr. Justin’s cellphone, told him that Ava was a minor, and demanded that he stop contacting her.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " At that point Mr. Justin’s efforts turned sinister. In a series of text messages that made their way to Ava, and which the Majury family showed The Times, he asked one of Ava’s male classmates whether he had access to a “strap,” or gun, shared plans to assault her, and wrote, “i could just breach the door with a shotgun i think.” The classmate’s mother declined an interview request.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " When Ava learned of the threatening messages, she called the classmate who had received them. He confirmed that he had gotten them, and forwarded others to her. Fearful, she showed her parents. They researched Mr. Justin’s identity, saw that he lived hundreds of miles away, and reassured her that “he was one of these keyboard cowboys,” Mr. Majury said. \n", + " Evidence\n", + "\n", + "\n", + "\n", + " “I sort of discredited what could have been a threat.”\n", + " Claim\n", + "\n", + "\n", "\n", - " “I sort of discredited what could have been a threat.” Ava’s bedroom was just inside the door Mr. Justin blasted open.\n", + " Ava’s bedroom was just inside the door Mr. Justin blasted open.\n", " Claim\n", "\n", "\n", "\n", - " “All I remember was, I heard it, I felt it in my chest, and I looked up, and there was a hole in my door from the fragments,” she said. She ran through a connecting bathroom to her brothers’ room, clutching a blanket, water bottle and her cellphone. Mr. Majury bolted from bed and ran shouting to the foyer, where he said debris still floated in the air. Mrs. Majury followed, dialing 911 on her phone. Outside a gangly teenager wearing what looked like a blue Walmart worker’s vest, protective earplugs and safety glasses stood on the front lawn. He turned to escape and Mr. Majury sprinted forward but fell, gashing his knee. The gunman paused, struggling to clear his jammed weapon, then ran away. Mr. Majury retrieved his handgun, and was standing at the front door awaiting the police when Mr. Justin returned. Mr. Majury said he ordered the teenager to drop the shotgun, and when he instead pointed it at him, Mr. Majury fired.\n", + " “All I remember was, I heard it, I felt it in my chest, and I looked up, and there was a hole in my door from the fragments,” she said. She ran through a connecting bathroom to her brothers’ room, clutching a blanket, water bottle and her cellphone.\n", + " Lead\n", + "\n", + "\n", + "\n", + " Mr. Majury bolted from bed and ran shouting to the foyer, where he said debris still floated in the air. Mrs. Majury followed, dialing 911 on her phone. Outside a gangly teenager wearing what looked like a blue Walmart worker’s vest, protective earplugs and safety glasses stood on the front lawn. He turned to escape and Mr. Majury sprinted forward but fell, gashing his knee. The gunman paused, struggling to clear his jammed weapon, then ran away. Mr. Majury retrieved his handgun, and was standing at the front door awaiting the police when Mr. Justin returned. Mr. Majury said he ordered the teenager to drop the shotgun, and when he instead pointed it at him, Mr. Majury fired.\n", " Lead\n", "\n", "\n", @@ -28208,37 +38557,117 @@ "\n", "\n", "\n", - " “The subject was most likely a stalker that resulted from her daughter’s extensive social media involvement,” the Collier County Sheriff’s Office report read, citing statements to them from Mrs. Majury. “Since her daughter’s involvement with social media, multiple subjects have attempted to ascertain her family’s address in the past.” Mrs. Majury provided them with contact information for Mr. Justin, the report said. The Collier County Sheriff’s Office told local media at the time that a man had been shot and killed by the resident of a home in Raffia Preserve after firing a gun into the home, in an attempted home invasion robbery. The office did not name the gunman. The Majurys said police told them that Mr. Justin was carrying two cellphones that contained thousands of photographs of Ava and hundreds of hours of her videos. Collier County Sheriff Kevin Rambosk and investigators from his office did not respond to requests for interviews. “This remains an active investigation and there are no updates,” Karie Partington, a sheriff’s office spokeswoman, said in an email. The gunman’s identity was confirmed by his father, Justin Dominic. Mr. Dominic, a software engineer who is divorced from Mr. Justin’s mother, said that before the divorce the family had lived in the United States and then had moved to Mr. Dominic’s native India. When his parents split up, Mr. Justin chose to move back to the U.S. with his mother, his father said, recalling their move as around 2015. Mr. Dominic, who said he had spoken with investigators, recalled his son as a good student who did well in math at Mount Hebron High School in Ellicott City. “He was a nice kid. I’m at a loss for words,” he said in an interview. “I don’t know what went bad with him. He made a bad choice.” After the shooting the Majurys, reeling, moved in with friends. A few days later Mrs. Majury received an invitation from a would-be agent for Ava to visit Los Angeles, meet other influencers, and attend a couple of red carpet events. One was for “Glo-Up Girls,” a line of makeover-ready dolls advertised on a YouTube channel featuring six teenage influencers “living in a mansion and taking on sensational Glo-Up challenges.”\n", + " “The subject was most likely a stalker that resulted from her daughter’s extensive social media involvement,” the Collier County Sheriff’s Office report read, citing statements to them from Mrs. Majury. “Since her daughter’s involvement with social media, multiple subjects have attempted to ascertain her family’s address in the past.” Mrs. Majury provided them with contact information for Mr. Justin, the report said.\n", " Evidence\n", "\n", "\n", - "\n", - " “It was a nice distraction, absolutely,” Mrs. Majury said.\n", - " Claim\n", + "\n", + " The Collier County Sheriff’s Office told local media at the time that a man had been shot and killed by the resident of a home in Raffia Preserve after firing a gun into the home, in an attempted home invasion robbery. The office did not name the gunman.\n", + " Evidence\n", "\n", "\n", "\n", - " After the Majurys returned home, their homeowners’ association sent a letter to their landlord demanding their eviction because, among other reasons, Ava’s social media venture had attracted an intruder to the property. In early August, Ava received messages on Venmo from a man calling her “baby girl,” offering to pay $1,000 a month for her phone number. Her parents discovered that the man’s name matches that of a registered sex offender, arrested previously for soliciting a 14-year-old girl.\n", + " The Majurys said police told them that Mr. Justin was carrying two cellphones that contained thousands of photographs of Ava and hundreds of hours of her videos.\n", " Evidence\n", "\n", "\n", - "\n", - " Mrs. Majury remembers thinking, “We can’t live like this.”\n", - " Claim\n", + "\n", + " Collier County Sheriff Kevin Rambosk and investigators from his office did not respond to requests for interviews. “This remains an active investigation and there are no updates,” Karie Partington, a sheriff’s office spokeswoman, said in an email.\n", + " Evidence\n", "\n", "\n", "\n", - " Mr. Majury said he was advised by the police that under Florida’s “stand your ground” law governing justifiable use of deadly force, he was not subject to prosecution. But just to be safe, he contacted a lawyer, James Scarmozzino, to represent him. Mr. Scarmozzino connected the family to other lawyers who organized a business centered on Ava’s potential earnings. Michael Marino, an entertainment lawyer in New York, created an enterprise, AGM Creations, for Ava, and signed an agreement with the Majurys for a percentage of future revenues. Mr. Marino turned to a friend, Lanny Davis, a Washington lawyer and crisis manager whose public relations firm is now representing Ava.\n", + " The gunman’s identity was confirmed by his father, Justin Dominic. Mr. Dominic, a software engineer who is divorced from Mr. Justin’s mother, said that before the divorce the family had lived in the United States and then had moved to Mr. Dominic’s native India. When his parents split up, Mr. Justin chose to move back to the U.S. with his mother, his father said, recalling their move as around 2015.\n", " Evidence\n", "\n", "\n", - "\n", - " The shooting continues to reverberate.\n", + "\n", + " Mr. Dominic, who said he had spoken with investigators, recalled his son as a good student who did well in math at Mount Hebron High School in Ellicott City. “He was a nice kid. I’m at a loss for words,” he said in an interview. “I don’t know what went bad with him. He made a bad choice.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " After the shooting the Majurys, reeling, moved in with friends. A few days later Mrs. Majury received an invitation from a would-be agent for Ava to visit Los Angeles, meet other influencers, and attend a couple of red carpet events. One was for “Glo-Up Girls,” a line of makeover-ready dolls advertised on a YouTube channel featuring six teenage influencers “living in a mansion and taking on sensational Glo-Up challenges.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “It was a nice distraction, absolutely,” Mrs. Majury said.\n", + " Claim\n", + "\n", + "\n", + "\n", + " After the Majurys returned home, their homeowners’ association sent a letter to their landlord demanding their eviction because, among other reasons, Ava’s social media venture had attracted an intruder to the property.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In early August, Ava received messages on Venmo from a man calling her “baby girl,” offering to pay $1,000 a month for her phone number. Her parents discovered that the man’s name matches that of a registered sex offender, arrested previously for soliciting a 14-year-old girl.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mrs. Majury remembers thinking, “We can’t live like this.”\n", + " Claim\n", + "\n", + "\n", + "\n", + " Mr. Majury said he was advised by the police that under Florida’s “stand your ground” law governing justifiable use of deadly force, he was not subject to prosecution. But just to be safe, he contacted a lawyer, James Scarmozzino, to represent him. Mr. Scarmozzino connected the family to other lawyers who organized a business centered on Ava’s potential earnings.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Michael Marino, an entertainment lawyer in New York, created an enterprise, AGM Creations, for Ava, and signed an agreement with the Majurys for a percentage of future revenues. Mr. Marino turned to a friend, Lanny Davis, a Washington lawyer and crisis manager whose public relations firm is now representing Ava.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The shooting continues to reverberate.\n", " Claim\n", "\n", "\n", "\n", - " The boy who received Mr. Justin’s messages about his plans to attack Ava still attends high school with her. In December, Ava told her parents that he was following and watching her. The family visited the high school to report the matter. Last month, another classmate sent her a video the boy had made of himself firing a gun at a shooting range, her mother said. Unnerved, Ava withdrew from school this month and now attends class from home. Mr. Scarmozzino filed a petition in Collier County Circuit Court seeking an injunction for protection against stalking. A hearing is set for Feb. 28, and Ava will testify. Ava is still on social media, with her parents’ support. Mrs. Majury said she did not want “sick individuals” to force Ava off the platforms. “Why should we allow them to stop her? Maybe she’s meant to bring awareness to all this,” Mrs. Majury said. Ava has not told her followers what happened. “I don’t want it to go out negatively and people think I attracted him,” she said. Her greater worry is that other troubled people will “make it a contest to see who can get here first,’’ and she acknowledged that sometimes at night, trying to fall asleep after the shooting, “I’d think, ‘I don’t want to do this anymore.’” But by morning, “I thought of all the benefits.’’ “Most people would say the money. And yeah, it’s a huge benefit. But it’s the experience. I got to go to L.A., the people that I met,” she said. “Just being able to make other people smile is what I like, the enjoyment of seeing the impact I made on some people’s lives. “I’d post a video at night, close my eyes, and in the morning it was exciting to see how many views I got.” Her father interjected: “It’s like Christmas every day, because then you see it build.” “I think we just had to allow her to make a decision and sort of support her. I think it’s going to help her heal. It sounds corny, but I don’t know what else you would do it for.”\n", + " The boy who received Mr. Justin’s messages about his plans to attack Ava still attends high school with her. In December, Ava told her parents that he was following and watching her. The family visited the high school to report the matter. Last month, another classmate sent her a video the boy had made of himself firing a gun at a shooting range, her mother said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Unnerved, Ava withdrew from school this month and now attends class from home. Mr. Scarmozzino filed a petition in Collier County Circuit Court seeking an injunction for protection against stalking. A hearing is set for Feb. 28, and Ava will testify.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Ava is still on social media, with her parents’ support. Mrs. Majury said she did not want “sick individuals” to force Ava off the platforms. “Why should we allow them to stop her? Maybe she’s meant to bring awareness to all this,” Mrs. Majury said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Ava has not told her followers what happened. “I don’t want it to go out negatively and people think I attracted him,” she said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Her greater worry is that other troubled people will “make it a contest to see who can get here first,’’ and she acknowledged that sometimes at night, trying to fall asleep after the shooting, “I’d think, ‘I don’t want to do this anymore.’” But by morning, “I thought of all the benefits.’’\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Most people would say the money. And yeah, it’s a huge benefit. But it’s the experience. I got to go to L.A., the people that I met,” she said. “Just being able to make other people smile is what I like, the enjoyment of seeing the impact I made on some people’s lives.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “I’d post a video at night, close my eyes, and in the morning it was exciting to see how many views I got.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Her father interjected: “It’s like Christmas every day, because then you see it build.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “I think we just had to allow her to make a decision and sort of support her. I think it’s going to help her heal. It sounds corny, but I don’t know what else you would do it for.”\n", " Evidence\n", "\n", "
" @@ -28262,7 +38691,7 @@ { "data": { "text/html": [ - "

nytimes\\trevor-noah-russia-ukraine.txt

" + "

trevor-noah-russia-ukraine.txt

" ], "text/plain": [ "" @@ -28275,34 +38704,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-aa159081e7320b1a\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-aa159081e7320b1a\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-aa159081e7320b1a\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-aa159081e7320b1a\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "54f76b6720f54717901745a288030ac0", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00\n", "\n", "\n", - " Russia continued to threaten to invade Ukraine on Thursday despite claims that its forces would be pulling back from the border. “I’m not going to lie, guys: It wouldn’t be a surprise if Russia was being sneaky,” Trevor Noah said. “I mean, this is the same country that hides dolls inside bigger dolls. Do you know how sick you have to be to do that?”\n", + " Russia continued to threaten to invade Ukraine on Thursday despite claims that its forces would be pulling back from the border.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “I’m not going to lie, guys: It wouldn’t be a surprise if Russia was being sneaky,” Trevor Noah said. “I mean, this is the same country that hides dolls inside bigger dolls. Do you know how sick you have to be to do that?”\n", " Evidence\n", "\n", "\n", @@ -28402,7 +38819,22 @@ "\n", "\n", "\n", - " “Secondly, can you imagine that, staging a chemical attack on yourself to justify your invasion? That’s pretty messed up, especially for the Russian soldiers who have to carry out the mission: [imitating Russian soldier] ‘So we launch this on ourselves but this is fake, yes?’ [imitating another Russian soldier] ‘Yeah, we will find out when bomb explodes. Mystery, excitement.’” — TREVOR NOAH “And you know, people, as erratic as the Russians’ actions might seem, you understand what they’re doing right now, right? They’re playing chess. This is literally what chess is all about: [imitating chess player] ‘Oh, I’m moving forward. I’m moving backwards. I’m attacking. No, I’m not. The horse is going this way, then it turns.’ This is what Russia is doing — and the Russians love playing chess. They’ve been designed for this moment. Meanwhile, the rest of us, we don’t play chess anymore. We love dumb games now. We’re like, ‘Uh, I need a five-letter word that ends in d-e. Plate? No.’” — TREVOR NOAH “Lindell has a plan to support the Canadian truckers, and you’ll never guess what it is — send them a bunch of MyPillows.” — STEPHEN COLBERT, on MyPillow C.E.O. Mike Lindell “Lindell loaded up a truck with 10,000 pillows — almost as many as on the bed in your great-aunt’s guest room.” — STEPHEN COLBERT\n", + " “Secondly, can you imagine that, staging a chemical attack on yourself to justify your invasion? That’s pretty messed up, especially for the Russian soldiers who have to carry out the mission: [imitating Russian soldier] ‘So we launch this on ourselves but this is fake, yes?’ [imitating another Russian soldier] ‘Yeah, we will find out when bomb explodes. Mystery, excitement.’” — TREVOR NOAH\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “And you know, people, as erratic as the Russians’ actions might seem, you understand what they’re doing right now, right? They’re playing chess. This is literally what chess is all about: [imitating chess player] ‘Oh, I’m moving forward. I’m moving backwards. I’m attacking. No, I’m not. The horse is going this way, then it turns.’ This is what Russia is doing — and the Russians love playing chess. They’ve been designed for this moment. Meanwhile, the rest of us, we don’t play chess anymore. We love dumb games now. We’re like, ‘Uh, I need a five-letter word that ends in d-e. Plate? No.’” — TREVOR NOAH\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Lindell has a plan to support the Canadian truckers, and you’ll never guess what it is — send them a bunch of MyPillows.” — STEPHEN COLBERT, on MyPillow C.E.O. Mike Lindell\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Lindell loaded up a truck with 10,000 pillows — almost as many as on the bed in your great-aunt’s guest room.” — STEPHEN COLBERT\n", " Evidence\n", "\n", "\n", @@ -28412,7 +38844,22 @@ "\n", "\n", "\n", - " “Mike told The Daily Beast his backup plan was to fly a helicopter over the border and drop the pillows from the sky. Then he claimed he was trolling the reporter. But at this point, how would we have any way of knowing when you’re joking or not?” — JIMMY KIMMEL “OK, so the Canadian border guards are stopping him from driving into the country, so he’s playing it safe by using a helicopter to violate their airspace. Good thing he’s got those 10,000 pillows — they can cushion the fall when the Canadian air force shoots his [expletive] down.” — STEPHEN COLBERT “And another question, why are you sending pillows to Canada? They have pillows. I think that’s where Canadian geese come from, Canada.” — JIMMY KIMMEL Jordan Klepper went straight to the source and talked with Canadian truckers protesting the Covid-19 vaccine mandate on Thursday’s “Daily Show.”\n", + " “Mike told The Daily Beast his backup plan was to fly a helicopter over the border and drop the pillows from the sky. Then he claimed he was trolling the reporter. But at this point, how would we have any way of knowing when you’re joking or not?” — JIMMY KIMMEL\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “OK, so the Canadian border guards are stopping him from driving into the country, so he’s playing it safe by using a helicopter to violate their airspace. Good thing he’s got those 10,000 pillows — they can cushion the fall when the Canadian air force shoots his [expletive] down.” — STEPHEN COLBERT\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “And another question, why are you sending pillows to Canada? They have pillows. I think that’s where Canadian geese come from, Canada.” — JIMMY KIMMEL\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Jordan Klepper went straight to the source and talked with Canadian truckers protesting the Covid-19 vaccine mandate on Thursday’s “Daily Show.”\n", " Evidence\n", "\n", "\n", @@ -28441,7 +38888,7 @@ { "data": { "text/html": [ - "

nytimes\\trump-archives-white-house.txt

" + "

trump-archives-white-house.txt

" ], "text/plain": [ "" @@ -28454,34 +38901,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-db2e298af817f8b2\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-db2e298af817f8b2\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-db2e298af817f8b2\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-db2e298af817f8b2\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "982bb019434c4090b36fc7b0cb562add", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " WASHINGTON — The National Archives confirmed on Friday that it had found classified information among material that President Donald J. Trump had taken with him to his home in Florida when he left office last year and that it had consulted with the Justice Department about the matter. The agency “has identified items marked as classified national security information within the boxes,” according to a letter posted on the National Archives and Record Administration’s website. Last month, the archives retrieved 15 boxes that Mr. Trump took with him to his Mar-a-Lago home from the White House residence when his term ended. The boxes included material subject to the Presidential Records Act, which requires that all documents and records pertaining to official business be turned over to the archives. The items in the boxes included documents, mementos, gifts and letters. The archives did not describe the classified material it found other than to say that it was “classified national security information.” Because the National Archives “identified classified information in the boxes,” the agency “has been in communication with the Department of Justice,” said the letter, written by David S. Ferriero, the national archivist, and sent to Representative Carolyn B. Maloney, Democrat of New York and the chairwoman of the House Oversight Committee, who has been scrutinizing how Mr. Trump handled presidential records. Mr. Trump made attacking Hillary Clinton’s mishandling of national security materials a centerpiece of his 2016 presidential campaign. The latest revelations about Mr. Trump’s own laxity with classified information and his haphazard adherence to federal record-keeping laws have drawn cries of hypocrisy from Democrats. Asked how Republicans would square Mr. Trump’s criticism of Ms. Clinton with his own record, a spokesman for the Republican National Committee, which at one point approved a resolution condemning Ms. Clinton for using a private email server while she was secretary of state, did not respond. The New York Times reported last week that among the documents that were sent back to the National Archives were some that archivists believed were classified, and that the agency had consulted with the Justice Department about the discovery.\n", + " WASHINGTON — The National Archives confirmed on Friday that it had found classified information among material that President Donald J. Trump had taken with him to his home in Florida when he left office last year and that it had consulted with the Justice Department about the matter.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The agency “has identified items marked as classified national security information within the boxes,” according to a letter posted on the National Archives and Record Administration’s website.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Last month, the archives retrieved 15 boxes that Mr. Trump took with him to his Mar-a-Lago home from the White House residence when his term ended. The boxes included material subject to the Presidential Records Act, which requires that all documents and records pertaining to official business be turned over to the archives.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The items in the boxes included documents, mementos, gifts and letters. The archives did not describe the classified material it found other than to say that it was “classified national security information.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Because the National Archives “identified classified information in the boxes,” the agency “has been in communication with the Department of Justice,” said the letter, written by David S. Ferriero, the national archivist, and sent to Representative Carolyn B. Maloney, Democrat of New York and the chairwoman of the House Oversight Committee, who has been scrutinizing how Mr. Trump handled presidential records.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mr. Trump made attacking Hillary Clinton’s mishandling of national security materials a centerpiece of his 2016 presidential campaign. The latest revelations about Mr. Trump’s own laxity with classified information and his haphazard adherence to federal record-keeping laws have drawn cries of hypocrisy from Democrats.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Asked how Republicans would square Mr. Trump’s criticism of Ms. Clinton with his own record, a spokesman for the Republican National Committee, which at one point approved a resolution condemning Ms. Clinton for using a private email server while she was secretary of state, did not respond.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The New York Times reported last week that among the documents that were sent back to the National Archives were some that archivists believed were classified, and that the agency had consulted with the Justice Department about the discovery.\n", " Evidence\n", "\n", "\n", @@ -28610,7 +39077,12 @@ "\n", "\n", "\n", - " Focusing attention on a new element of the issue, the National Archives said in its letter on Friday that the Trump White House had failed to turn over records that included “certain social media records.” The Trump White House, the archives said, failed to take “any steps to capture deleted content from any Trump Administration social media account other than @realDonaldTrump or @POTUS.” The accounts in question included those for aides such as Andrew Giuliani, Chad Gilmartin, Ivanka Trump, Kayleigh McEnany, Kellyanne Conway, Mark Meadows and Peter Navarro that the archives said contained presidential records.\n", + " Focusing attention on a new element of the issue, the National Archives said in its letter on Friday that the Trump White House had failed to turn over records that included “certain social media records.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The Trump White House, the archives said, failed to take “any steps to capture deleted content from any Trump Administration social media account other than @realDonaldTrump or @POTUS.” The accounts in question included those for aides such as Andrew Giuliani, Chad Gilmartin, Ivanka Trump, Kayleigh McEnany, Kellyanne Conway, Mark Meadows and Peter Navarro that the archives said contained presidential records.\n", " Evidence\n", "\n", "\n", @@ -28620,7 +39092,12 @@ "\n", "\n", "\n", - " Mr. Ferriero also wrote that “some White House staff conducted official business using nonofficial electronic messaging accounts that were not copied or forwarded into their official electronic messaging accounts.” The archives said it was in the process of obtaining some of those records. Among those staff members was Mr. Meadows, Mr. Trump’s former chief of staff, who recently turned over hundreds of pages of documents to the committee investigating the Jan. 6 attack on the Capitol, some of which came from his personal cellphone. The committee said it had questions about why Mr. Meadows had used a personal cellphone, a Signal account and two personal Gmail accounts to conduct official business, and whether he had properly turned over all of the relevant records from those accounts to the National Archives.\n", + " Mr. Ferriero also wrote that “some White House staff conducted official business using nonofficial electronic messaging accounts that were not copied or forwarded into their official electronic messaging accounts.” The archives said it was in the process of obtaining some of those records.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Among those staff members was Mr. Meadows, Mr. Trump’s former chief of staff, who recently turned over hundreds of pages of documents to the committee investigating the Jan. 6 attack on the Capitol, some of which came from his personal cellphone. The committee said it had questions about why Mr. Meadows had used a personal cellphone, a Signal account and two personal Gmail accounts to conduct official business, and whether he had properly turned over all of the relevant records from those accounts to the National Archives.\n", " Evidence\n", "\n", "\n", @@ -28630,7 +39107,27 @@ "\n", "\n", "\n", - " In June 2018, the archives “learned from an article in Politico that textual presidential records were being torn up by former President Trump and that White House staff were attempting to tape them back together,” the letter said. The letter added, referring to the National Archives and Records Administration: “The White House Counsel’s Office indicated that they would address the matter. After the end of the Trump administration, NARA learned that additional paper records that had been torn up by former President Trump were included in the records transferred to us. Although White House staff during the Trump administration recovered and taped together some of the torn-up records, a number of other torn-up records that were transferred had not been reconstructed by the White House.” In a statement on Friday night, Mr. Trump said the material had been turned over to the archives as part of “an ordinary and routine process” and suggested that efforts by Democrats to raise questions about his handling of the documents were a scam. “The fake news is making it seem like me, as the president of the United States, was working in a filing room,” he said. The confirmation by the archives that it had found classified information in the material could present the Justice Department with choices about how to proceed. It could open a criminal investigation into whether Mr. Trump and his aides mishandled classified information, as it did in Ms. Clinton’s case. Such an investigation would be highly complex, in part because, as president, Mr. Trump had the ability to easily declassify whatever information he wanted. He could argue that he declassified the materials he took with him before he left the White House.\n", + " In June 2018, the archives “learned from an article in Politico that textual presidential records were being torn up by former President Trump and that White House staff were attempting to tape them back together,” the letter said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The letter added, referring to the National Archives and Records Administration: “The White House Counsel’s Office indicated that they would address the matter. After the end of the Trump administration, NARA learned that additional paper records that had been torn up by former President Trump were included in the records transferred to us. Although White House staff during the Trump administration recovered and taped together some of the torn-up records, a number of other torn-up records that were transferred had not been reconstructed by the White House.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In a statement on Friday night, Mr. Trump said the material had been turned over to the archives as part of “an ordinary and routine process” and suggested that efforts by Democrats to raise questions about his handling of the documents were a scam. “The fake news is making it seem like me, as the president of the United States, was working in a filing room,” he said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The confirmation by the archives that it had found classified information in the material could present the Justice Department with choices about how to proceed. It could open a criminal investigation into whether Mr. Trump and his aides mishandled classified information, as it did in Ms. Clinton’s case.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Such an investigation would be highly complex, in part because, as president, Mr. Trump had the ability to easily declassify whatever information he wanted. He could argue that he declassified the materials he took with him before he left the White House.\n", " Evidence\n", "\n", "\n", @@ -28650,23 +39147,48 @@ "\n", "\n", "\n", - " Mr. Trump’s handling of government documents has come under growing scrutiny. A book scheduled to be released in October by a Times reporter revealed how staff members in the White House residence periodically discovered wads of printed paper clogging a toilet, leading them to believe that Mr. Trump had tried to flush them. The former president’s use of cellphones to conduct official business also could have led to large gaps in the official White House logs of his calls on Jan. 6, 2021, hindering the House select committee’s investigation into the Capitol riot. If Mr. Trump did not preserve cellphone records and failed to turn them over to the National Archives, that could also be a violation of the law. Ms. Maloney, the New York Democrat, had warned as early as December 2020 that she believed the Trump administration was not complying with the Presidential Records Act. She wrote a letter to Mr. Ferriero, the national archivist, expressing what she called “grave concerns” that the outgoing administration “may not be adequately preserving records and may be disposing of them.” Weeks after the Capitol riot, Ms. Maloney requested voluminous materials from the archives, including documents and communications before, during and after the Jan. 6 attack pertaining to the counting of electoral votes and planned demonstrations and violence. Then, last week, Ms. Maloney announced that she was starting an investigation, after The Washington Post reported that Mr. Trump had been destroying documents and moving boxes to his property in Florida instead of turning them over to the archives. Ms. Maloney said on Friday that the letter from the archives “confirmed that potentially many more Trump Administration records, including direct messages sent by senior officials on multiple social media platforms, are missing.”\n", + " Mr. Trump’s handling of government documents has come under growing scrutiny. A book scheduled to be released in October by a Times reporter revealed how staff members in the White House residence periodically discovered wads of printed paper clogging a toilet, leading them to believe that Mr. Trump had tried to flush them.\n", " Evidence\n", "\n", "\n", - "\n", - " She added, “These new revelations deepen my concern about former President Trump’s flagrant disregard for federal records laws and the potential impact on our historical record.” \n", - " Claim\n", + "\n", + " The former president’s use of cellphones to conduct official business also could have led to large gaps in the official White House logs of his calls on Jan. 6, 2021, hindering the House select committee’s investigation into the Capitol riot. If Mr. Trump did not preserve cellphone records and failed to turn them over to the National Archives, that could also be a violation of the law.\n", + " Evidence\n", "\n", - "
" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, + "\n", + "\n", + " Ms. Maloney, the New York Democrat, had warned as early as December 2020 that she believed the Trump administration was not complying with the Presidential Records Act. She wrote a letter to Mr. Ferriero, the national archivist, expressing what she called “grave concerns” that the outgoing administration “may not be adequately preserving records and may be disposing of them.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Weeks after the Capitol riot, Ms. Maloney requested voluminous materials from the archives, including documents and communications before, during and after the Jan. 6 attack pertaining to the counting of electoral votes and planned demonstrations and violence.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Then, last week, Ms. Maloney announced that she was starting an investigation, after The Washington Post reported that Mr. Trump had been destroying documents and moving boxes to his property in Florida instead of turning them over to the archives.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Ms. Maloney said on Friday that the letter from the archives “confirmed that potentially many more Trump Administration records, including direct messages sent by senior officials on multiple social media platforms, are missing.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " She added, “These new revelations deepen my concern about former President Trump’s flagrant disregard for federal records laws and the potential impact on our historical record.” \n", + " Claim\n", + "\n", + "" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, { "name": "stdout", "output_type": "stream", @@ -28679,7 +39201,7 @@ { "data": { "text/html": [ - "

nytimes\\trump-investigation-letitia-james.txt

" + "

trump-investigation-letitia-james.txt

" ], "text/plain": [ "" @@ -28692,34 +39214,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-74308ba7348d46ac\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-74308ba7348d46ac\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-74308ba7348d46ac\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-74308ba7348d46ac\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "e96790fa682a450197962ef4307f8004", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " The New York attorney general can question Donald J. Trump and two of his adult children under oath as part of a civil inquiry into his business practices, a judge ruled on Thursday — the latest in a string of legal defeats Mr. Trump has suffered since leaving office. The ruling came just three days after a court filing by the attorney general, Letitia James, in the same matter revealed that Mr. Trump’s longtime accounting firm had cut ties with him and had essentially retracted a decade’s worth of his financial statements. Ms. James’s inquiry, and a parallel criminal investigation by the Manhattan district attorney, are both examining whether Mr. Trump used those statements to improperly inflate the value of his assets so he could receive favorable loans. Lawyers for the Trump family had sought to prohibit Ms. James, a Democrat, from interviewing Mr. Trump, Donald Trump Jr. and Ivanka Trump. They had argued that Ms. James was politically biased against Mr. Trump and was inappropriately using her civil inquiry to aid the district attorney’s criminal investigation, which she is also participating in.\n", + " The New York attorney general can question Donald J. Trump and two of his adult children under oath as part of a civil inquiry into his business practices, a judge ruled on Thursday — the latest in a string of legal defeats Mr. Trump has suffered since leaving office.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The ruling came just three days after a court filing by the attorney general, Letitia James, in the same matter revealed that Mr. Trump’s longtime accounting firm had cut ties with him and had essentially retracted a decade’s worth of his financial statements. \n", + " Evidence\n", + "\n", + "\n", + "\n", + " Ms. James’s inquiry, and a parallel criminal investigation by the Manhattan district attorney, are both examining whether Mr. Trump used those statements to improperly inflate the value of his assets so he could receive favorable loans. \n", + " Evidence\n", + "\n", + "\n", + "\n", + " Lawyers for the Trump family had sought to prohibit Ms. James, a Democrat, from interviewing Mr. Trump, Donald Trump Jr. and Ivanka Trump. They had argued that Ms. James was politically biased against Mr. Trump and was inappropriately using her civil inquiry to aid the district attorney’s criminal investigation, which she is also participating in.\n", " Evidence\n", "\n", "\n", @@ -28839,7 +39357,12 @@ "\n", "\n", "\n", - " Thursday’s ruling was the latest in a notable legal losing streak for Mr. Trump, which has included several rebukes from the United States Supreme Court. Since he left office, Mr. Trump has lost the battle to withhold his financial records from the Manhattan district attorney, to block a congressional committee from inspecting his White House records as part of an investigation into the Jan. 6 attack on the Capitol and to appeal the results of the 2020 presidential election. For Mr. Trump, the fallout from some of these decisions could be significant, exposing him to civil and criminal liability as he has come under investigation from at least three prosecutors, in addition to Ms. James. Not only are the authorities in New York scrutinizing Mr. Trump; the district attorney in Atlanta has convened a grand jury as part of an investigation into the former president’s attempts to overturn the 2020 election results in Georgia. \n", + " Thursday’s ruling was the latest in a notable legal losing streak for Mr. Trump, which has included several rebukes from the United States Supreme Court. Since he left office, Mr. Trump has lost the battle to withhold his financial records from the Manhattan district attorney, to block a congressional committee from inspecting his White House records as part of an investigation into the Jan. 6 attack on the Capitol and to appeal the results of the 2020 presidential election. \n", + " Evidence\n", + "\n", + "\n", + "\n", + " For Mr. Trump, the fallout from some of these decisions could be significant, exposing him to civil and criminal liability as he has come under investigation from at least three prosecutors, in addition to Ms. James. Not only are the authorities in New York scrutinizing Mr. Trump; the district attorney in Atlanta has convened a grand jury as part of an investigation into the former president’s attempts to overturn the 2020 election results in Georgia. \n", " Evidence\n", "\n", "\n", @@ -28859,7 +39382,37 @@ "\n", "\n", "\n", - " The ruling does not mean that Ms. James will automatically receive the answers she is seeking. Mr. Trump and his children can invoke their constitutional right not to incriminate themselves, as Mr. Trump’s other adult son, Eric Trump, did when questioned by the attorney general’s office in October 2020. The Trump family also intends to appeal the decision, according to the spokeswoman. The judge’s decision followed a fiery virtual hearing in State Supreme Court in Manhattan on Thursday, during which lawyers for Mr. Trump and the attorney general made their cases. Several times, Mr. Trump’s lawyers became so heated that Justice Engoron and his law clerk had to call for a timeout — raising their hands in the shape of a T, a gesture more often seen at a sporting event than in a courtroom. Although Ms. James signaled in court papers that she had amassed significant evidence against Mr. Trump’s family business — she has accused the Trump Organization of engaging in “fraudulent or misleading” practices — she has said that she needs to question Mr. Trump and his children before determining her next move. Mr. Trump and his children sought to block the questioning, and Ms. James responded in a court filing last month, arguing that there was “heightened need” for testimony from the three family members. She said that by questioning them, she would be able to determine who was responsible for the misstatements and omissions that the company made in its financial documents. Because Ms. James’s inquiry is civil, she cannot bring criminal charges. If she finds evidence of wrongdoing, she can file a lawsuit against Mr. Trump, his company or others involved in the business. In last month’s filing, Ms. James said that her lawyers had not yet reached a final decision on a lawsuit but argued that “the grounds for conducting the investigation are beyond reproach.” On Monday, Ms. James released a letter in which Mr. Trump’s accounting firm, Mazars USA, declared that Mr. Trump’s financial statements from 2011-20 were not reliable. Mr. Trump provided those financial statements, which include various disclaimers noting that they are unaudited, to his lenders and at least one insurance company. They are central to both the civil and criminal inquiries into Mr. Trump. Mazars said in the letter that it had not “as a whole” found material discrepancies between the information the Trump Organization provided and the actual value of Mr. Trump’s assets, something that Mr. Trump’s lawyers asserted had effectively rendered the civil and criminal investigations “moot.”\n", + " The ruling does not mean that Ms. James will automatically receive the answers she is seeking. Mr. Trump and his children can invoke their constitutional right not to incriminate themselves, as Mr. Trump’s other adult son, Eric Trump, did when questioned by the attorney general’s office in October 2020. The Trump family also intends to appeal the decision, according to the spokeswoman.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The judge’s decision followed a fiery virtual hearing in State Supreme Court in Manhattan on Thursday, during which lawyers for Mr. Trump and the attorney general made their cases. Several times, Mr. Trump’s lawyers became so heated that Justice Engoron and his law clerk had to call for a timeout — raising their hands in the shape of a T, a gesture more often seen at a sporting event than in a courtroom.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Although Ms. James signaled in court papers that she had amassed significant evidence against Mr. Trump’s family business — she has accused the Trump Organization of engaging in “fraudulent or misleading” practices — she has said that she needs to question Mr. Trump and his children before determining her next move.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mr. Trump and his children sought to block the questioning, and Ms. James responded in a court filing last month, arguing that there was “heightened need” for testimony from the three family members. She said that by questioning them, she would be able to determine who was responsible for the misstatements and omissions that the company made in its financial documents.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Because Ms. James’s inquiry is civil, she cannot bring criminal charges. If she finds evidence of wrongdoing, she can file a lawsuit against Mr. Trump, his company or others involved in the business. In last month’s filing, Ms. James said that her lawyers had not yet reached a final decision on a lawsuit but argued that “the grounds for conducting the investigation are beyond reproach.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " On Monday, Ms. James released a letter in which Mr. Trump’s accounting firm, Mazars USA, declared that Mr. Trump’s financial statements from 2011-20 were not reliable. Mr. Trump provided those financial statements, which include various disclaimers noting that they are unaudited, to his lenders and at least one insurance company. They are central to both the civil and criminal inquiries into Mr. Trump. \n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mazars said in the letter that it had not “as a whole” found material discrepancies between the information the Trump Organization provided and the actual value of Mr. Trump’s assets, something that Mr. Trump’s lawyers asserted had effectively rendered the civil and criminal investigations “moot.”\n", " Evidence\n", "\n", "\n", @@ -28874,7 +39427,17 @@ "\n", "\n", "\n", - " The criminal investigation, which is similarly focused on whether Mr. Trump used those statements to mislead his lenders about the value of his hotels, golf clubs and other properties, is being led by Alvin Bragg, the Manhattan district attorney who inherited it when he took office in January. Last year, under Mr. Bragg’s predecessor, Cyrus R. Vance Jr., Manhattan prosecutors separately indicted the Trump Organization and its longtime chief financial officer, Allen H. Weisselberg, accusing them of conducting a yearslong scheme to evade taxes by compensating employees with special off-the-books benefits such as apartment rentals and luxury cars. Mr. Trump’s lawyers said that the criminal inquiry, which also involves investigators from Ms. James’s office, would improperly benefit if the attorney general’s office questioned Mr. Trump and his children in the civil inquiry. \n", + " The criminal investigation, which is similarly focused on whether Mr. Trump used those statements to mislead his lenders about the value of his hotels, golf clubs and other properties, is being led by Alvin Bragg, the Manhattan district attorney who inherited it when he took office in January.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Last year, under Mr. Bragg’s predecessor, Cyrus R. Vance Jr., Manhattan prosecutors separately indicted the Trump Organization and its longtime chief financial officer, Allen H. Weisselberg, accusing them of conducting a yearslong scheme to evade taxes by compensating employees with special off-the-books benefits such as apartment rentals and luxury cars.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mr. Trump’s lawyers said that the criminal inquiry, which also involves investigators from Ms. James’s office, would improperly benefit if the attorney general’s office questioned Mr. Trump and his children in the civil inquiry. \n", " Evidence\n", "\n", "\n", @@ -28884,7 +39447,12 @@ "\n", "\n", "\n", - " After maintaining a neutral posture during the hearing, Justice Engoron was blunt in his ruling, which also directed the former president to provide the attorney general with documents she sought in her subpoena. Addressing the argument that Ms. James was improperly using the civil investigation to bolster the criminal inquiry, he noted that the Trumps had not been asked to appear before a grand jury.\n", + " After maintaining a neutral posture during the hearing, Justice Engoron was blunt in his ruling, which also directed the former president to provide the attorney general with documents she sought in her subpoena.\n", + " Claim\n", + "\n", + "\n", + "\n", + " Addressing the argument that Ms. James was improperly using the civil investigation to bolster the criminal inquiry, he noted that the Trumps had not been asked to appear before a grand jury.\n", " Claim\n", "\n", "\n", @@ -28918,7 +39486,7 @@ { "data": { "text/html": [ - "

nytimes\\tyshawn-sorey-rothko-chapel.txt

" + "

tyshawn-sorey-rothko-chapel.txt

" ], "text/plain": [ "" @@ -28931,34 +39499,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-9733e21c2ad88f0b\n" + "Using custom data configuration default-9733e21c2ad88f0b\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-9733e21c2ad88f0b\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-9733e21c2ad88f0b\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" - ] - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "be9412f086bf431e8c7dbda4b4373be5", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " Before Tyshawn Sorey composed a note of his latest work, commemorating the 50th anniversary of the Rothko Chapel in Houston, he spent hours inside its octagonal temple containing more than a dozen dark canvases. Immersing himself in Mark Rothko’s fields of seeming black, Sorey noticed that the paintings shifted subtly over time — and that time itself appeared to dissolve. The colors changed to match the sun coming through the chapel’s skylight. When he would go outside and return, his adjusting eyes made it feel as though the works were coming to life. Few people can give Rothko the time or space to perceive what Sorey saw. But “Monochromatic Light (Afterlife),” something of a sonic distillation of what he experienced, might give them an idea. Written for the chapel’s 50th anniversary — and delayed a year because of the pandemic — his new work will premiere there on Saturday, ahead of a staged presentation at the Park Avenue Armory in New York this fall. The piece is in part a tribute to one of Sorey’s heroes, the composer Morton Feldman, whose “Rothko Chapel” was written in 1971 for the building, a project by the arts philanthropists Dominique and John de Menil. Feldman’s piece — scored for percussion, celesta, viola, choir and soprano — was an abstract analogue to Rothko’s canvases. Deceptively formless, it is music to be inhabited. But near the end, the viola plays what Feldman called a “quasi-Hebraic melody” that he composed as a teenager, an invocation of and memorial to his (and Rothko’s) heritage. The Feldman is “a special piece,” said Sarah Rothenberg, the artistic director of the presenting organization DaCamera, which, with the chapel, commissioned Sorey’s premiere. “It’s a remarkable synergy between space and music that has become a kind of ambassador.” In conceiving a 50th-anniversary commission, a new ambassador was desired. Sorey came to mind, Rothenberg said, because of how he engages with the history of Black Americans — a parallel to the chapel’s civil rights-minded mission. And his style, she knew, had been shaped by Feldman. Sorey, 41, was first exposed to Feldman’s music in college, when he heard his teacher Anton Vishio practicing “Piano.” “It was just beautiful,” Sorey said, adding that the music, its sonorities and its patience “really spoke to me more than anything else I was listening to at the time. Pretty much any composition I’ve written is in some ways inspired by Morton Feldman. It’s hard to shake off such an influence.” Along with other influences, including Roscoe Mitchell, Feldman taught Sorey the goal of reaching a place in music where time no longer seems to exist and a listener can become truly present in the moment. “Every sound has its own world at that point,” Sorey said. “You could talk about the technical parts, but the quality that I want to get out of it is presentness.” For “Monochromatic Light (Afterlife),” he chose virtually the same instrumentation as “Rothko Chapel” — in a way that the director Peter Sellars, who will stage the piece at the Armory, said reflects lineage in music, “how your granddaughter has your grandmother’s eyes.” But in lieu of the quasi-Hebraic melody, Sorey quotes, in his refracted style, the spiritual “Sometimes I Feel Like a Motherless Child.” He added a piano (played by Rothenberg, doubling on celesta) and changed the soprano soloist to a bass, which he felt better matched the tone of the paintings. Sellars recalled that when he went over the score with Sorey for the first time, they looked at the part and, more or less at the same time, said who they wanted to sing it: the bass-baritone Davóne Tines. Sorey has contributed treatments of spirituals to Tines’s “Mass” recital program, a collaboration that began after Tines first heard what would become “Perle Noire: Meditations for Joséphine,” Sorey’s evening-length work inspired by the life of Josephine Baker, written for the soprano Julia Bullock. “I realized he was able to open meaning in text by recreating it in his voice,” Tines said. Together he and Sorey have revisited the catalog of spirituals, because, Tines said, “Tyshawn is able to reveal the truer psychology of what those songs mean.” Feldman referred to “Rothko Chapel” as a “secular service.” While Sorey emphasized that Feldman is just one of the influences on “Monochromatic Light (Afterlife),” the idea of a secular service is what he aims for; it’s why he prefers to call his performances rituals. And it permeates this work, beginning with the first measure: Lasting indefinitely, it is a dissolution of time in which tubular bells resonate at near silence, with pitches of two chords struck at random as the other performers enter the space. “It’s kind of a similar feeling to when I first walked into the chapel,” Sorey said. “It’s almost this cathartic sort of emotion, the moment you get when you walk in there; it’s like a religious experience. So by having the resonant sound happening, and you’re not sure what to make of it — it’s almost a ceremonial, spiritual thing going on. You’re eliminating any sort of external obstacles, for that type of clarity that I think Rothko was always going for in his art.” Once the choir joins later, its members sing without vibrato, staggering their breaths to create seamlessly suspended streams of sound that, Sorey said, are not unlike the paintings surrounding them. “To me, the voices are like these panels,” he added. “The sonorities are expressive, expressing a certain type of emotion, like tragedy or grief. So like Rothko, my sonorities and the way I choose to use these voices is not so much about being abstract as much as expressing this feelingful experience. And I’m seeing the listener being surrounded by these ever-changing emotions.” Few people — about 300 people over two performances — will get to experience the premiere this weekend. But there are plans to release an album of the work on the ECM label, as a follow-up to its 2015 release of “Rothko Chapel,” which featured artists, including Rothenberg, who return for “Monochromatic Light (Afterlife).” Then, in late September, the piece will travel to the Armory, where the audience will be immersed in panels by Julie Mehretu, an artist whose abstractions share preoccupations with Sorey and Rothko. On the surface, this cavernous space could not be more different from the intimate chapel. But, Sellars said, “what’s beautiful about the Armory is, it can create the occasion for something.” He continued: “What Tyshawn is creating is memorial space. Rothko and Feldman created memorial space from silence, from grief, from darkness, where you could feel the presence of erased histories and erased lives that are nonetheless present and moving and speaking within these fields of darkness. ­Feldman and Rothko brought their histories to that space. And I think this group of artists will, too.” Details are still being worked out — such as whether to hide the choir — but at the very least, Sorey said, it will “become more intensified” than the presentation in Houston. “How can we make it more of a ritualistic or ceremonial event?” he added. “How can we intensify the spiritual, metaphysical matter in which the piece is received? That’s what I want: to really magnify that experience.”\n", + " Before Tyshawn Sorey composed a note of his latest work, commemorating the 50th anniversary of the Rothko Chapel in Houston, he spent hours inside its octagonal temple containing more than a dozen dark canvases.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Immersing himself in Mark Rothko’s fields of seeming black, Sorey noticed that the paintings shifted subtly over time — and that time itself appeared to dissolve. The colors changed to match the sun coming through the chapel’s skylight. When he would go outside and return, his adjusting eyes made it feel as though the works were coming to life.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Few people can give Rothko the time or space to perceive what Sorey saw. But “Monochromatic Light (Afterlife),” something of a sonic distillation of what he experienced, might give them an idea. Written for the chapel’s 50th anniversary — and delayed a year because of the pandemic — his new work will premiere there on Saturday, ahead of a staged presentation at the Park Avenue Armory in New York this fall.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The piece is in part a tribute to one of Sorey’s heroes, the composer Morton Feldman, whose “Rothko Chapel” was written in 1971 for the building, a project by the arts philanthropists Dominique and John de Menil. Feldman’s piece — scored for percussion, celesta, viola, choir and soprano — was an abstract analogue to Rothko’s canvases. Deceptively formless, it is music to be inhabited. But near the end, the viola plays what Feldman called a “quasi-Hebraic melody” that he composed as a teenager, an invocation of and memorial to his (and Rothko’s) heritage.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The Feldman is “a special piece,” said Sarah Rothenberg, the artistic director of the presenting organization DaCamera, which, with the chapel, commissioned Sorey’s premiere. “It’s a remarkable synergy between space and music that has become a kind of ambassador.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In conceiving a 50th-anniversary commission, a new ambassador was desired. Sorey came to mind, Rothenberg said, because of how he engages with the history of Black Americans — a parallel to the chapel’s civil rights-minded mission. And his style, she knew, had been shaped by Feldman.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Sorey, 41, was first exposed to Feldman’s music in college, when he heard his teacher Anton Vishio practicing “Piano.” “It was just beautiful,” Sorey said, adding that the music, its sonorities and its patience “really spoke to me more than anything else I was listening to at the time. Pretty much any composition I’ve written is in some ways inspired by Morton Feldman. It’s hard to shake off such an influence.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Along with other influences, including Roscoe Mitchell, Feldman taught Sorey the goal of reaching a place in music where time no longer seems to exist and a listener can become truly present in the moment. “Every sound has its own world at that point,” Sorey said. “You could talk about the technical parts, but the quality that I want to get out of it is presentness.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " For “Monochromatic Light (Afterlife),” he chose virtually the same instrumentation as “Rothko Chapel” — in a way that the director Peter Sellars, who will stage the piece at the Armory, said reflects lineage in music, “how your granddaughter has your grandmother’s eyes.” But in lieu of the quasi-Hebraic melody, Sorey quotes, in his refracted style, the spiritual “Sometimes I Feel Like a Motherless Child.” He added a piano (played by Rothenberg, doubling on celesta) and changed the soprano soloist to a bass, which he felt better matched the tone of the paintings.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Sellars recalled that when he went over the score with Sorey for the first time, they looked at the part and, more or less at the same time, said who they wanted to sing it: the bass-baritone Davóne Tines. Sorey has contributed treatments of spirituals to Tines’s “Mass” recital program, a collaboration that began after Tines first heard what would become “Perle Noire: Meditations for Joséphine,” Sorey’s evening-length work inspired by the life of Josephine Baker, written for the soprano Julia Bullock.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “I realized he was able to open meaning in text by recreating it in his voice,” Tines said. Together he and Sorey have revisited the catalog of spirituals, because, Tines said, “Tyshawn is able to reveal the truer psychology of what those songs mean.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Feldman referred to “Rothko Chapel” as a “secular service.” While Sorey emphasized that Feldman is just one of the influences on “Monochromatic Light (Afterlife),” the idea of a secular service is what he aims for; it’s why he prefers to call his performances rituals. And it permeates this work, beginning with the first measure: Lasting indefinitely, it is a dissolution of time in which tubular bells resonate at near silence, with pitches of two chords struck at random as the other performers enter the space.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “It’s kind of a similar feeling to when I first walked into the chapel,” Sorey said. “It’s almost this cathartic sort of emotion, the moment you get when you walk in there; it’s like a religious experience. So by having the resonant sound happening, and you’re not sure what to make of it — it’s almost a ceremonial, spiritual thing going on. You’re eliminating any sort of external obstacles, for that type of clarity that I think Rothko was always going for in his art.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Once the choir joins later, its members sing without vibrato, staggering their breaths to create seamlessly suspended streams of sound that, Sorey said, are not unlike the paintings surrounding them.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “To me, the voices are like these panels,” he added. “The sonorities are expressive, expressing a certain type of emotion, like tragedy or grief. So like Rothko, my sonorities and the way I choose to use these voices is not so much about being abstract as much as expressing this feelingful experience. And I’m seeing the listener being surrounded by these ever-changing emotions.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Few people — about 300 people over two performances — will get to experience the premiere this weekend. But there are plans to release an album of the work on the ECM label, as a follow-up to its 2015 release of “Rothko Chapel,” which featured artists, including Rothenberg, who return for “Monochromatic Light (Afterlife).”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Then, in late September, the piece will travel to the Armory, where the audience will be immersed in panels by Julie Mehretu, an artist whose abstractions share preoccupations with Sorey and Rothko. On the surface, this cavernous space could not be more different from the intimate chapel. But, Sellars said, “what’s beautiful about the Armory is, it can create the occasion for something.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " He continued: “What Tyshawn is creating is memorial space. Rothko and Feldman created memorial space from silence, from grief, from darkness, where you could feel the presence of erased histories and erased lives that are nonetheless present and moving and speaking within these fields of darkness. ­Feldman and Rothko brought their histories to that space. And I think this group of artists will, too.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Details are still being worked out — such as whether to hide the choir — but at the very least, Sorey said, it will “become more intensified” than the presentation in Houston.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “How can we make it more of a ritualistic or ceremonial event?” he added. “How can we intensify the spiritual, metaphysical matter in which the piece is received? That’s what I want: to really magnify that experience.”\n", " Evidence\n", "\n", "
" @@ -29073,7 +39709,7 @@ { "data": { "text/html": [ - "

nytimes\\uc-berkeley-admissions-court-ruling.txt

" + "

uc-berkeley-admissions-court-ruling.txt

" ], "text/plain": [ "" @@ -29086,20 +39722,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-1d869432ce07d83a\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-1d869432ce07d83a\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-1d869432ce07d83a\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-1d869432ce07d83a\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "35b9ff0b23554291a980df9c3bc4e026", + "model_id": "d811eeb94dfd4b889812d0fb1aef2fc9", "version_major": 2, "version_minor": 0 }, @@ -29111,58 +39741,16 @@ "output_type": "display_data" }, { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "d5b24642c5b944d0ab15200a9e86264f", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " The University of California, Berkeley, said it might have to accept thousands fewer students than planned after a state appellate court ruled that it had to keep enrollment at 2020-21 levels, when the pandemic led to an unusually low number of students at the university. The decision, which would freeze student enrollment at 42,347, is the result of a legal battle with a residents’ group, Save Berkeley’s Neighborhoods, that has accused the university of failing to provide enough on-campus housing while at the same time admitting high numbers of students, many of them from out of state or other countries. Freezing enrollment at that level means the university, already one of the nation’s most selective, would have 3,050 fewer seats for incoming first-year students and transfer students than it had planned for the fall of 2022. Typically, U.C. Berkeley said, it offers admission to about 21,000 first-year and transfer students and about 9,500 of them enroll.\n", + " The University of California, Berkeley, said it might have to accept thousands fewer students than planned after a state appellate court ruled that it had to keep enrollment at 2020-21 levels, when the pandemic led to an unusually low number of students at the university.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The decision, which would freeze student enrollment at 42,347, is the result of a legal battle with a residents’ group, Save Berkeley’s Neighborhoods, that has accused the university of failing to provide enough on-campus housing while at the same time admitting high numbers of students, many of them from out of state or other countries.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Freezing enrollment at that level means the university, already one of the nation’s most selective, would have 3,050 fewer seats for incoming first-year students and transfer students than it had planned for the fall of 2022. Typically, U.C. Berkeley said, it offers admission to about 21,000 first-year and transfer students and about 9,500 of them enroll.\n", " Evidence\n", "\n", "\n", "\n", - " The university, which notified applicants of the decision in an email on Monday, said in a statement that it stands to lose at least $57 million in tuition. To stay at 2020-21 enrollment levels, the university said, it would need to make “a reduction of at least 5,100 in undergraduate admission offers.”\n", + " The university, which notified applicants of the decision in an email on Monday, said in a statement that it stands to lose at least $57 million in tuition.\n", + " Claim\n", + "\n", + "\n", + "\n", + " To stay at 2020-21 enrollment levels, the university said, it would need to make “a reduction of at least 5,100 in undergraduate admission offers.”\n", " Claim\n", "\n", "\n", @@ -29228,17 +39861,42 @@ "\n", "\n", "\n", - " “This court-mandated decrease in enrollment would be a tragic outcome for thousands of students who have worked incredibly hard to gain admission to Berkeley,” the university said. The announcement stirred up anxiety among applicants, who worried that their chances of getting into U.C. Berkeley, the flagship school of the University of California system, had grown even slimmer.\n", + " “This court-mandated decrease in enrollment would be a tragic outcome for thousands of students who have worked incredibly hard to gain admission to Berkeley,” the university said.\n", + " Claim\n", + "\n", + "\n", + "\n", + " The announcement stirred up anxiety among applicants, who worried that their chances of getting into U.C. Berkeley, the flagship school of the University of California system, had grown even slimmer.\n", " Claim\n", "\n", "\n", "\n", - " “I don’t think it is fair, not only because it’s restricting people who really want to go to Berkley from being able to attend,” but also because it “lowers the amount of financial aid lower- and middle-income families can receive,” Kristina Sanchez, a senior at Downtown Magnets High School in Los Angeles, said in an interview.“And that leaves a lot of people, especially people in our school that aren’t the richest of the bunch, at a disadvantage,” she said. Since 2005, U.C. Berkeley has admitted 14,000 students but provided only 1,600 beds, said Phil Bokovoy, president of Save Berkeley’s Neighborhoods, which sued the university in 2018. As a result, students have sought housing in Berkeley’s neighborhoods, moving into apartments that were once rent-controlled and displacing low-income and middle-income residents, Mr. Bokovoy said. “We’ve seen a massive amount of homelessness in Berkeley as a result,” he said. “It’s created a tremendous problem.”\n", + " “I don’t think it is fair, not only because it’s restricting people who really want to go to Berkley from being able to attend,” but also because it “lowers the amount of financial aid lower- and middle-income families can receive,” Kristina Sanchez, a senior at Downtown Magnets High School in Los Angeles, said in an interview.“And that leaves a lot of people, especially people in our school that aren’t the richest of the bunch, at a disadvantage,” she said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Since 2005, U.C. Berkeley has admitted 14,000 students but provided only 1,600 beds, said Phil Bokovoy, president of Save Berkeley’s Neighborhoods, which sued the university in 2018.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " As a result, students have sought housing in Berkeley’s neighborhoods, moving into apartments that were once rent-controlled and displacing low-income and middle-income residents, Mr. Bokovoy said.\n", " Evidence\n", "\n", "\n", + "\n", + " “We’ve seen a massive amount of homelessness in Berkeley as a result,” he said. “It’s created a tremendous problem.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Last August, Judge Brad Seligman of the Superior Court of Alameda County agreed with the group that the university “continued to increase and quickly exceeded” its enrollment projections.\n", + " Claim\n", + "\n", + "\n", "\n", - " Last August, Judge Brad Seligman of the Superior Court of Alameda County agreed with the group that the university “continued to increase and quickly exceeded” its enrollment projections. He also said the university could not go forward with the Upper Hearst Project, a plan for new housing and academic space for faculty members, postdoctoral researchers and graduate students.\n", + " He also said the university could not go forward with the Upper Hearst Project, a plan for new housing and academic space for faculty members, postdoctoral researchers and graduate students.\n", " Claim\n", "\n", "\n", @@ -29253,7 +39911,12 @@ "\n", "\n", "\n", - " On Feb. 10, an appellate court declined to order a stay on the lower court’s decision, meaning that the university would have to abide by the Superior Court’s order to freeze enrollment. “The Regents have not shown that they ‘would suffer irreparable harm outweighing the harm that would be suffered by the other party,’” the appellate court said.\n", + " On Feb. 10, an appellate court declined to order a stay on the lower court’s decision, meaning that the university would have to abide by the Superior Court’s order to freeze enrollment.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “The Regents have not shown that they ‘would suffer irreparable harm outweighing the harm that would be suffered by the other party,’” the appellate court said.\n", " Evidence\n", "\n", "\n", @@ -29263,7 +39926,22 @@ "\n", "\n", "\n", - " “Other than to claim that either they or their counsel did not understand the nature of the judgment from which the appeal is taken, they offer no explanation for this lengthy delay,” the court stated. In their appeal to the State Supreme Court on Monday, lawyers for the Regents requested an immediate stay and argued that freezing enrollment “would have a catastrophic impact on U.C. Berkeley’s ability to admit low-income, underrepresented students.” The residents’ group said it was trying to avoid a housing crisis like the one at the University of California, Santa Barbara, where students have been forced to sleep in cars or hotels. Mr. Bokovoy, who has lived in Berkeley since 1983, said his organization had repeatedly tried to meet with university officials to work out a solution outside of the courts but was rebuffed.\n", + " “Other than to claim that either they or their counsel did not understand the nature of the judgment from which the appeal is taken, they offer no explanation for this lengthy delay,” the court stated.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In their appeal to the State Supreme Court on Monday, lawyers for the Regents requested an immediate stay and argued that freezing enrollment “would have a catastrophic impact on U.C. Berkeley’s ability to admit low-income, underrepresented students.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The residents’ group said it was trying to avoid a housing crisis like the one at the University of California, Santa Barbara, where students have been forced to sleep in cars or hotels.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mr. Bokovoy, who has lived in Berkeley since 1983, said his organization had repeatedly tried to meet with university officials to work out a solution outside of the courts but was rebuffed.\n", " Evidence\n", "\n", "\n", @@ -29273,7 +39951,27 @@ "\n", "\n", "\n", - " “That’s all we’ve ever asked for from the beginning,” Mr. Bokovoy said. “But they’ve refused to sit down with us to talk about it.” Dan Mogulof, a spokesman for the university, said that administrators have met with city leaders who support the university’s building plans. He said that enrollment is not determined by U.C. Berkeley, but by the Regents and the Legislature, which has called on the state’s public universities to accept more students from California. Mr. Mogulof said that the university’s efforts to build more housing have been stymied by lawsuits from community groups, a development he described as “ironic.” “We are in the midst of a very aggressive and very expensive housing initiative, where we’re going to be constructing student housing on every university-owned piece of property,” Mr. Mogulof said. “It’s hard to proceed with that when you’re getting sued by the very people who say they want these projects.”\n", + " “That’s all we’ve ever asked for from the beginning,” Mr. Bokovoy said. “But they’ve refused to sit down with us to talk about it.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Dan Mogulof, a spokesman for the university, said that administrators have met with city leaders who support the university’s building plans.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " He said that enrollment is not determined by U.C. Berkeley, but by the Regents and the Legislature, which has called on the state’s public universities to accept more students from California.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mr. Mogulof said that the university’s efforts to build more housing have been stymied by lawsuits from community groups, a development he described as “ironic.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “We are in the midst of a very aggressive and very expensive housing initiative, where we’re going to be constructing student housing on every university-owned piece of property,” Mr. Mogulof said. “It’s hard to proceed with that when you’re getting sued by the very people who say they want these projects.”\n", " Evidence\n", "\n", "
" @@ -29297,7 +39995,7 @@ { "data": { "text/html": [ - "

nytimes\\ukraine-conflict-russia-military.txt

" + "

ukraine-conflict-russia-military.txt

" ], "text/plain": [ "" @@ -29310,34 +40008,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-b23caedf28beebc6\n" + "Using custom data configuration default-b23caedf28beebc6\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-b23caedf28beebc6\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-b23caedf28beebc6\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" - ] - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "17b65e3e2cef44c18493532060a940a6", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " STANYTSIA LUHANSKA, Ukraine — Residents near Ukraine’s front line rushed into basements for cover Thursday as exchanges of artillery fire with Russian-backed separatists reached their most intense level in months, an ominous development amid Western fears that Russia might use the fighting as a pretext to invade Ukraine. As the United States and Russia traded conflicting accounts over whether Russian forces were really pulling back from the Ukrainian border, as Moscow has insisted, the separatists claimed they had come under fire from the Ukrainians. That is precisely the sort of incident Western officials have warned Russia might try to use to justify military action. At the White House, President Biden said “every indication we have is they’re prepared to go into Ukraine, attack Ukraine.” He said the United States had “reason to believe” that Russia was “engaged in a false flag operation to have an excuse to go in.” Secretary of State Antony J. Blinken made an unscheduled trip to New York, where he told the United Nations Security Council that American intelligence “indicates clearly” that Russian forces surrounding the country from three sides “are preparing to launch an attack against Ukraine in the coming days.”\n", + " STANYTSIA LUHANSKA, Ukraine — Residents near Ukraine’s front line rushed into basements for cover Thursday as exchanges of artillery fire with Russian-backed separatists reached their most intense level in months, an ominous development amid Western fears that Russia might use the fighting as a pretext to invade Ukraine.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " As the United States and Russia traded conflicting accounts over whether Russian forces were really pulling back from the Ukrainian border, as Moscow has insisted, the separatists claimed they had come under fire from the Ukrainians. That is precisely the sort of incident Western officials have warned Russia might try to use to justify military action.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " At the White House, President Biden said “every indication we have is they’re prepared to go into Ukraine, attack Ukraine.” He said the United States had “reason to believe” that Russia was “engaged in a false flag operation to have an excuse to go in.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Secretary of State Antony J. Blinken made an unscheduled trip to New York, where he told the United Nations Security Council that American intelligence “indicates clearly” that Russian forces surrounding the country from three sides “are preparing to launch an attack against Ukraine in the coming days.”\n", " Evidence\n", "\n", "\n", @@ -29464,7 +40170,27 @@ "\n", "\n", "\n", - " Russia continued to insist Thursday that it had no plans to invade, issuing new updates about troop withdrawals and dismissing the American invasion warnings as “information terrorism.” The Russian government also published a lengthy response to American proposals made last month to ease tensions, maintaining the Kremlin’s push to regain a sphere of influence in Eastern Europe and issuing a vague warning of new military deployments. If the United States does not accede to its demands, the document said, “Russia will be forced to respond, including through the implementation of measures of a military-technical character.” In eastern Ukraine on Thursday, where a kindergarten was shelled, the spike in violence evoked the sort of scenario that Western leaders have been warning of amid the enormous Russian troop buildup surrounding Ukraine. President Vladimir V. Putin of Russia this week repeated his false claim that Ukraine was carrying out a “genocide” against Russian speakers in the country’s east, while the Russian authorities announced an investigation into supposed “mass graves” of Russian-speaking victims of Ukrainian forces. And on Thursday, the Kremlin’s spokesman, Dmitri S. Peskov, offered an ominous assessment. “The excessive concentration of Ukrainian forces near the contact line, together with possible provocations, can pose terrible danger,” he said.\n", + " Russia continued to insist Thursday that it had no plans to invade, issuing new updates about troop withdrawals and dismissing the American invasion warnings as “information terrorism.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The Russian government also published a lengthy response to American proposals made last month to ease tensions, maintaining the Kremlin’s push to regain a sphere of influence in Eastern Europe and issuing a vague warning of new military deployments. If the United States does not accede to its demands, the document said, “Russia will be forced to respond, including through the implementation of measures of a military-technical character.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In eastern Ukraine on Thursday, where a kindergarten was shelled, the spike in violence evoked the sort of scenario that Western leaders have been warning of amid the enormous Russian troop buildup surrounding Ukraine.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " President Vladimir V. Putin of Russia this week repeated his false claim that Ukraine was carrying out a “genocide” against Russian speakers in the country’s east, while the Russian authorities announced an investigation into supposed “mass graves” of Russian-speaking victims of Ukrainian forces.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " And on Thursday, the Kremlin’s spokesman, Dmitri S. Peskov, offered an ominous assessment. “The excessive concentration of Ukrainian forces near the contact line, together with possible provocations, can pose terrible danger,” he said.\n", " Evidence\n", "\n", "\n", @@ -29484,7 +40210,27 @@ "\n", "\n", "\n", - " When Russia annexed Crimea in 2014, it did so after claiming that Russian speakers there were threatened by the pro-Western revolution in Kyiv, which the Kremlin described as a fascist coup. And in 2008, Russia invaded Georgia after the Georgian Army moved into a Russian-backed separatist enclave there. The skirmishing in Eastern Europe between Ukrainian forces and Kremlin-backed separatists is longstanding, but Thursday’s violence was the worst since a cease-fire was reached two years ago. The combatants exchanged not just shells but accusations. The Ukrainian military said three adult civilians had been wounded at the kindergarten, and on the other side, a Russian-backed separatist leader claimed Ukraine had launched mortar fire “barbarically and cynically.” The artillery fire began in the early morning and did not let up with the advent of evening. The sharp crack of explosions echoed off buildings and flashes of light from incoming shells silhouetted trees. The days of whiplash developments made unmistakable the volatility of a crisis that American officials fear could lead to an assault by one of the world’s most powerful militaries against Ukraine, Europe’s second-biggest country, a development younger Europeans never thought they would see.\n", + " When Russia annexed Crimea in 2014, it did so after claiming that Russian speakers there were threatened by the pro-Western revolution in Kyiv, which the Kremlin described as a fascist coup. And in 2008, Russia invaded Georgia after the Georgian Army moved into a Russian-backed separatist enclave there.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The skirmishing in Eastern Europe between Ukrainian forces and Kremlin-backed separatists is longstanding, but Thursday’s violence was the worst since a cease-fire was reached two years ago.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The combatants exchanged not just shells but accusations. The Ukrainian military said three adult civilians had been wounded at the kindergarten, and on the other side, a Russian-backed separatist leader claimed Ukraine had launched mortar fire “barbarically and cynically.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The artillery fire began in the early morning and did not let up with the advent of evening. The sharp crack of explosions echoed off buildings and flashes of light from incoming shells silhouetted trees.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The days of whiplash developments made unmistakable the volatility of a crisis that American officials fear could lead to an assault by one of the world’s most powerful militaries against Ukraine, Europe’s second-biggest country, a development younger Europeans never thought they would see.\n", " Evidence\n", "\n", "\n", @@ -29494,7 +40240,62 @@ "\n", "\n", "\n", - " Whatever his true intentions, the diplomatic and military crisis has also become an intense battle of public messaging, with both Moscow and Washington deploying vivid imagery and rhetoric to discredit the other side. Secretary of Defense Lloyd J. Austin III said at a meeting of his NATO counterparts in Brussels that Russia continued to move troops closer to Ukraine’s borders. He said it was also adding combat aircraft and stocking up on blood supplies in anticipation of casualties on the battlefield. “I know firsthand that you don’t do these sorts of things for no reason,” said Mr. Austin, a retired four-star Army general. “And you certainly don’t do them if you’re getting ready to pack up and go home.” Early Friday morning, soon after arriving in Munich for an annual security conference, the State Department’s spokesman said Mr. Blinken had accepted a proposal to meet with the Russian foreign minister, Sergey V. Lavrov, late next week. The spokesman, Ned Price, did not provide a time or place for the meeting, the two diplomats’ second in two months, except to say it would not happen if Russia further invaded Ukraine. “If they do invade in the coming days, it will make clear they were never serious about diplomacy,” Mr. Price said in the statement. Although there are some 150,000 Russian troops surrounding Ukraine, Russia has cast the deployments as little more than military drills. On Thursday, international reporters were invited to visit Belarus — a close Kremlin ally — to see for themselves. There, amid the roar of Russian and Belarusian firepower, they were treated to some mocking comments directed at Western intelligence agencies by Belarus’s strongman leader, Aleksandr G. Lukashenko. “There will be no invasion tomorrow,” Mr. Lukashenko said as the military drills were staged at a desolate military training ground southeast of Minsk, the country’s capital. “Are you still entertaining this crazy idea?” Mr. Lukashenko was scheduled to meet with Mr. Putin in Moscow on Friday, and pledged that he was willing to keep Russian troops in his country for “as long as necessary.” Western officials say the Russian troops gathered in Belarus are part of what makes the current invasion threat so dire, allowing the Kremlin to attack from the north as well as from the Russian mainland to the east and from Crimea and the Black Sea to the south. A key question now is whether Russia will continue its diplomatic engagement with the West. While Mr. Putin and Mr. Lavrov held a flurry of meetings and calls with their Western counterparts in recent weeks, there were no more such interactions on the calendar for the coming days. Mr. Blinken said that the State Department was “evaluating” the Russian document delivered to Washington on Thursday and that he had proposed to Mr. Lavrov that the two meet in Europe next week. The State Department spokesman said the Russians had responded with proposed meeting dates for late next week, “which we are accepting, provided there is no further Russian invasion of Ukraine.”\n", + " Whatever his true intentions, the diplomatic and military crisis has also become an intense battle of public messaging, with both Moscow and Washington deploying vivid imagery and rhetoric to discredit the other side.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Secretary of Defense Lloyd J. Austin III said at a meeting of his NATO counterparts in Brussels that Russia continued to move troops closer to Ukraine’s borders. He said it was also adding combat aircraft and stocking up on blood supplies in anticipation of casualties on the battlefield.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “I know firsthand that you don’t do these sorts of things for no reason,” said Mr. Austin, a retired four-star Army general. “And you certainly don’t do them if you’re getting ready to pack up and go home.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Early Friday morning, soon after arriving in Munich for an annual security conference, the State Department’s spokesman said Mr. Blinken had accepted a proposal to meet with the Russian foreign minister, Sergey V. Lavrov, late next week. \n", + " Evidence\n", + "\n", + "\n", + "\n", + " The spokesman, Ned Price, did not provide a time or place for the meeting, the two diplomats’ second in two months, except to say it would not happen if Russia further invaded Ukraine. “If they do invade in the coming days, it will make clear they were never serious about diplomacy,” Mr. Price said in the statement.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Although there are some 150,000 Russian troops surrounding Ukraine, Russia has cast the deployments as little more than military drills. On Thursday, international reporters were invited to visit Belarus — a close Kremlin ally — to see for themselves. There, amid the roar of Russian and Belarusian firepower, they were treated to some mocking comments directed at Western intelligence agencies by Belarus’s strongman leader, Aleksandr G. Lukashenko.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “There will be no invasion tomorrow,” Mr. Lukashenko said as the military drills were staged at a desolate military training ground southeast of Minsk, the country’s capital. “Are you still entertaining this crazy idea?”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mr. Lukashenko was scheduled to meet with Mr. Putin in Moscow on Friday, and pledged that he was willing to keep Russian troops in his country for “as long as necessary.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Western officials say the Russian troops gathered in Belarus are part of what makes the current invasion threat so dire, allowing the Kremlin to attack from the north as well as from the Russian mainland to the east and from Crimea and the Black Sea to the south.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " A key question now is whether Russia will continue its diplomatic engagement with the West. While Mr. Putin and Mr. Lavrov held a flurry of meetings and calls with their Western counterparts in recent weeks, there were no more such interactions on the calendar for the coming days.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mr. Blinken said that the State Department was “evaluating” the Russian document delivered to Washington on Thursday and that he had proposed to Mr. Lavrov that the two meet in Europe next week.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The State Department spokesman said the Russians had responded with proposed meeting dates for late next week, “which we are accepting, provided there is no further Russian invasion of Ukraine.”\n", " Evidence\n", "\n", "\n", @@ -29514,31 +40315,35 @@ "\n", "\n", "\n", - " “We welcome the readiness of the United States for appropriate consultations,” the document said. “However, this work cannot replace the settlement of the key problems posed by Russia.” Among Russia’s demands was that NATO militaries halt all cooperation with Ukraine and remove all Western weaponry delivered to the country in recent years to help it defend against Russia and Russian-backed separatists. The document also repeated Russia’s central demands for “security guarantees” that Mr. Putin first described last November, including that NATO assure that Ukraine would never join the alliance and that it would pull back troops stationed in countries that joined the alliance after 1997. “Our ‘red lines’ and fundamental security interests are being ignored, and Russia’s inalienable right to assure them is being rejected,” the document said. Western leaders have rejected the demand to pull back troops or bar certain countries from NATO, but have hinted at the possibility of Ukraine itself swearing off membership in the alliance. And while the letter reiterated recent denials by Russian officials of any plans to invade Ukraine, it also warned of an unspecified military response if those demands were not met, one that analysts have interpreted as the potential deployment of advanced missile systems in a new, more threatening posture. “No ‘Russian invasion of Ukraine’, which the United States and its allies have officially been announcing since last fall, is happening, nor is one being planned,” the document said. But if the United States does not provide “firm, legally binding guarantees of our security,” it said, “Russia will be forced to respond, including through the implementation of measures of a military-technical character.”\n", + " “We welcome the readiness of the United States for appropriate consultations,” the document said. “However, this work cannot replace the settlement of the key problems posed by Russia.”\n", " Evidence\n", "\n", - "
" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "\n", - "\n" - ] - }, - { - "data": { - "text/html": [ - "

nytimes\\ukraine-donald-trump-beijing-olympics.txt

" + "\n", + "\n", + " Among Russia’s demands was that NATO militaries halt all cooperation with Ukraine and remove all Western weaponry delivered to the country in recent years to help it defend against Russia and Russian-backed separatists. The document also repeated Russia’s central demands for “security guarantees” that Mr. Putin first described last November, including that NATO assure that Ukraine would never join the alliance and that it would pull back troops stationed in countries that joined the alliance after 1997.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Our ‘red lines’ and fundamental security interests are being ignored, and Russia’s inalienable right to assure them is being rejected,” the document said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Western leaders have rejected the demand to pull back troops or bar certain countries from NATO, but have hinted at the possibility of Ukraine itself swearing off membership in the alliance.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " And while the letter reiterated recent denials by Russian officials of any plans to invade Ukraine, it also warned of an unspecified military response if those demands were not met, one that analysts have interpreted as the potential deployment of advanced missile systems in a new, more threatening posture.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “No ‘Russian invasion of Ukraine’, which the United States and its allies have officially been announcing since last fall, is happening, nor is one being planned,” the document said. But if the United States does not provide “firm, legally binding guarantees of our security,” it said, “Russia will be forced to respond, including through the implementation of measures of a military-technical character.”\n", + " Evidence\n", + "\n", + "
" ], "text/plain": [ "" @@ -29547,59 +40352,39 @@ "metadata": {}, "output_type": "display_data" }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Using custom data configuration default-b5f66c37f815c44f\n" - ] - }, { "name": "stdout", "output_type": "stream", "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-b5f66c37f815c44f\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "\n", + "\n", + "\n" ] }, { "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "11d25a3ccefb4c01bf214eb5e72ad90f", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00ukraine-donald-trump-beijing-olympics.txt" + ], "text/plain": [ - " 0%| | 0/1 [00:00" ] }, "metadata": {}, "output_type": "display_data" }, { - "name": "stdout", + "name": "stderr", "output_type": "stream", "text": [ - "Dataset text downloaded and prepared to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-b5f66c37f815c44f\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4. Subsequent calls will reuse this data.\n" + "Using custom data configuration default-b5f66c37f815c44f\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-b5f66c37f815c44f\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "45fc62aec0064c1287ba5dbe942617c7", + "model_id": "adc08d8011e84851af4467d2c24d0ffc", "version_major": 2, "version_minor": 0 }, @@ -29611,23 +40396,16 @@ "output_type": "display_data" }, { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "d6bdf2cd43b942ebbc1c94e40b86b3fb", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " (Want to get this newsletter in your inbox? Here’s the sign-up.) Good evening. Here’s the latest at the end of Thursday.\n", + " (Want to get this newsletter in your inbox? Here’s the sign-up.) \n", + " Lead\n", + "\n", + "\n", + "\n", + " Good evening. Here’s the latest at the end of Thursday.\n", " Lead\n", "\n", "\n", @@ -29709,17 +40537,47 @@ "\n", "\n", "\n", - " Exchanges of artillery fire up and down the front line between Ukraine and Russian-backed separatist forces reached their most intense level in months. The Ukrainian military said shelling there damaged a kindergarten and wounded three adult civilians. Perhaps most worrisome, separatists claimed that they had come under fire from the Ukrainians — precisely the sort of incident Western officials have warned that Russia might try to use to justify military action. Moscow has long invoked what it says is its obligation to protect ethnic Russians in eastern Ukraine. President Biden warned that the threat of an attack remained “very high.” Secretary of State Antony Blinken told the U.N. Security Council that Russia’s ground and air forces “are preparing to launch an attack against Ukraine in the coming days.” 2. The New York attorney general can question Donald J. Trump, Ivanka Trump and Donald Trump Jr., in a civil inquiry, a judge ruled. The inquiry by the attorney general, Letitia James, and a parallel criminal investigation led by the Manhattan district attorney are examining whether Trump improperly inflated the value of his assets to receive favorable loans.\n", + " Exchanges of artillery fire up and down the front line between Ukraine and Russian-backed separatist forces reached their most intense level in months. The Ukrainian military said shelling there damaged a kindergarten and wounded three adult civilians.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Perhaps most worrisome, separatists claimed that they had come under fire from the Ukrainians — precisely the sort of incident Western officials have warned that Russia might try to use to justify military action. Moscow has long invoked what it says is its obligation to protect ethnic Russians in eastern Ukraine.\n", " Evidence\n", "\n", "\n", + "\n", + " President Biden warned that the threat of an attack remained “very high.” Secretary of State Antony Blinken told the U.N. Security Council that Russia’s ground and air forces “are preparing to launch an attack against Ukraine in the coming days.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " 2. The New York attorney general can question Donald J. Trump, Ivanka Trump and Donald Trump Jr., in a civil inquiry, a judge ruled.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The inquiry by the attorney general, Letitia James, and a parallel criminal investigation led by the Manhattan district attorney are examining whether Trump improperly inflated the value of his assets to receive favorable loans.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Trump has long invented facts and figures about his wealth. Now, dropped by his accountants, he is making new claims about his net worth.\n", + " Claim\n", + "\n", + "\n", "\n", - " Trump has long invented facts and figures about his wealth. Now, dropped by his accountants, he is making new claims about his net worth. 3. The Omicron surge seems to be slowing in much of the world, but the W.H.O. said it was keeping an eye on an Omicron subvariant.\n", + " 3. The Omicron surge seems to be slowing in much of the world, but the W.H.O. said it was keeping an eye on an Omicron subvariant.\n", " Claim\n", "\n", "\n", "\n", - " New cases worldwide dropped 19 percent from Feb. 7 to Feb. 13 compared with the week before. But, the agency added, the drop in testing rates around the world means global case numbers might not reflect the true spread of the virus. The W.H.O. also cautioned that the subvariant of Omicron, BA.2, which scientists believe is even more contagious, appeared to be “steadily increasing” and was now the dominant variant in China, India, Pakistan, Bangladesh and the Philippines.\n", + " New cases worldwide dropped 19 percent from Feb. 7 to Feb. 13 compared with the week before. But, the agency added, the drop in testing rates around the world means global case numbers might not reflect the true spread of the virus.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The W.H.O. also cautioned that the subvariant of Omicron, BA.2, which scientists believe is even more contagious, appeared to be “steadily increasing” and was now the dominant variant in China, India, Pakistan, Bangladesh and the Philippines.\n", " Evidence\n", "\n", "\n", @@ -29734,12 +40592,42 @@ "\n", "\n", "\n", - " Cancer patients, transplant recipients and others highly vulnerable to Covid feel abandoned as their neighbors, and their government, seek a return to normal. 4. A confrontation between protesters and the police is looming in Ottawa.\n", + " Cancer patients, transplant recipients and others highly vulnerable to Covid feel abandoned as their neighbors, and their government, seek a return to normal.\n", + " Claim\n", + "\n", + "\n", + "\n", + " 4. A confrontation between protesters and the police is looming in Ottawa.\n", " Claim\n", "\n", "\n", "\n", - " Ontario’s police force gathered outside Ottawa’s city center in an apparent preparation to end the trucker protests that have stalled traffic there for three weeks. The police have distributed written notices to the protesters, warning them to leave or face penalties. Crews of workers put up wire fencing around the Parliament building. “It is high time that these illegal and dangerous activities stop, including here in Ottawa,” Prime Minister Justin Trudeau said. Many protesters vowed to stay put. One said the protest leaders’ instructions were to remain in their trucks, lock the doors and not open them for anyone, including the police. 5. Spotify lured Joe Rogan with a $200 million deal, double initial reports. It made the company a podcasting giant, but controversy followed. To propel the music streaming platform into an all-purpose audio juggernaut, executives viewed Rogan — a no-holds-barred comedian and sports commentator — as the star it needed. Spotify’s stock price jumped 17 percent the week the deal was announced in 2020. The move brought a wave of concern inside the company over Rogan’s sometimes divisive content. Last month, the issue exploded: 270 scientists wrote to Spotify about Covid misinformation on Rogan’s show, and Neil Young, the rock icon, demanded that Spotify remove his music. Now Spotify faces the sort of cultural storm that has engulfed Facebook, Twitter and YouTube.\n", + " Ontario’s police force gathered outside Ottawa’s city center in an apparent preparation to end the trucker protests that have stalled traffic there for three weeks. The police have distributed written notices to the protesters, warning them to leave or face penalties. Crews of workers put up wire fencing around the Parliament building.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “It is high time that these illegal and dangerous activities stop, including here in Ottawa,” Prime Minister Justin Trudeau said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Many protesters vowed to stay put. One said the protest leaders’ instructions were to remain in their trucks, lock the doors and not open them for anyone, including the police.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " 5. Spotify lured Joe Rogan with a $200 million deal, double initial reports. It made the company a podcasting giant, but controversy followed.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " To propel the music streaming platform into an all-purpose audio juggernaut, executives viewed Rogan — a no-holds-barred comedian and sports commentator — as the star it needed. Spotify’s stock price jumped 17 percent the week the deal was announced in 2020.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The move brought a wave of concern inside the company over Rogan’s sometimes divisive content. Last month, the issue exploded: 270 scientists wrote to Spotify about Covid misinformation on Rogan’s show, and Neil Young, the rock icon, demanded that Spotify remove his music. Now Spotify faces the sort of cultural storm that has engulfed Facebook, Twitter and YouTube.\n", " Evidence\n", "\n", "\n", @@ -29749,7 +40637,12 @@ "\n", "\n", "\n", - " Dry conditions are expected to continue into the spring and beyond, the National Oceanic and Atmospheric Administration said. A continuation of La Niña, a climate pattern that influences weather worldwide, will contribute to what are expected to be higher than normal temperatures and lower than normal precipitation over much of the West through May. Warmer than normal temperatures are also expected across most of the Eastern half of the country over the next three months. Wetter than normal conditions are forecast for the Ohio Valley, and it’s likely that drought will develop in Florida.\n", + " Dry conditions are expected to continue into the spring and beyond, the National Oceanic and Atmospheric Administration said. A continuation of La Niña, a climate pattern that influences weather worldwide, will contribute to what are expected to be higher than normal temperatures and lower than normal precipitation over much of the West through May.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Warmer than normal temperatures are also expected across most of the Eastern half of the country over the next three months. Wetter than normal conditions are forecast for the Ohio Valley, and it’s likely that drought will develop in Florida.\n", " Evidence\n", "\n", "\n", @@ -29759,17 +40652,47 @@ "\n", "\n", "\n", - " The prima ballerina of figure skating was expected to lead a Russian sweep of the medals in women’s singles. But after reports that she had tested positive for a banned substance several weeks before the Games, that task turned out to be too much. Valieva, 15, finished fourth, after a disastrous sequence of falls and stumbles. Her Russian teammate Anna Shcherbakova, 17, the reigning world champion, won gold with a smooth and poignant performance. In other events, Canada beat the U.S. in women’s hockey for gold; the U.S. men’s curling team’s bid for a second gold medal ended after a loss in the semifinal to Britain; and Mikaela Shiffrin will leave Beijing without an individual medal. 8. Half a century ago, a presence like Faith Ringgold’s had to fight to exist in the mainstream art world. Now, there’s a place for it — that she created. A survey of the artist’s 40-year-career, which fills three floors of the New Museum in New York City, is about “not just how to survive as a Black person in a racist world, but how, as a woman, to thrive in any world at all,” our co-chief art critic Holland Cotter writes. What once made Ringgold, 91, an outlier, “puts her front and center now.”\n", + " The prima ballerina of figure skating was expected to lead a Russian sweep of the medals in women’s singles. But after reports that she had tested positive for a banned substance several weeks before the Games, that task turned out to be too much. Valieva, 15, finished fourth, after a disastrous sequence of falls and stumbles.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Her Russian teammate Anna Shcherbakova, 17, the reigning world champion, won gold with a smooth and poignant performance.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In other events, Canada beat the U.S. in women’s hockey for gold; the U.S. men’s curling team’s bid for a second gold medal ended after a loss in the semifinal to Britain; and Mikaela Shiffrin will leave Beijing without an individual medal.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " 8. Half a century ago, a presence like Faith Ringgold’s had to fight to exist in the mainstream art world. Now, there’s a place for it — that she created.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " A survey of the artist’s 40-year-career, which fills three floors of the New Museum in New York City, is about “not just how to survive as a Black person in a racist world, but how, as a woman, to thrive in any world at all,” our co-chief art critic Holland Cotter writes. What once made Ringgold, 91, an outlier, “puts her front and center now.”\n", " Evidence\n", "\n", "\n", "\n", - " Also in New York: A landmark exhibition of drawings by Jacques-Louis David, the chief propagandist of the French Revolution, stages the ultimate showdown of culture and politics. 9. “I’ve always wanted to prove that I can do all kinds of things.”\n", + " Also in New York: A landmark exhibition of drawings by Jacques-Louis David, the chief propagandist of the French Revolution, stages the ultimate showdown of culture and politics.\n", " Claim\n", "\n", "\n", + "\n", + " 9. “I’ve always wanted to prove that I can do all kinds of things.”\n", + " Claim\n", + "\n", + "\n", + "\n", + " Sam Waterston has had a long and varied career, from Shakespeare in the Park to “The Newsroom” and “Grace and Frankie.” But he remains best known for “Law & Order.” The actor originally signed on for only one season as district attorney Jack McCoy. But over 16 seasons, he became synonymous with the series, which was canceled in 2010.\n", + " Evidence\n", + "\n", + "\n", "\n", - " Sam Waterston has had a long and varied career, from Shakespeare in the Park to “The Newsroom” and “Grace and Frankie.” But he remains best known for “Law & Order.” The actor originally signed on for only one season as district attorney Jack McCoy. But over 16 seasons, he became synonymous with the series, which was canceled in 2010. Now it’s back, and so is Waterston — partly as a courtesy to Dick Wolf, the series’s creator, partly as a kind of victory lap. “It’s nice to come back and just witness the thing we made,” Waterston said.\n", + " Now it’s back, and so is Waterston — partly as a courtesy to Dick Wolf, the series’s creator, partly as a kind of victory lap. “It’s nice to come back and just witness the thing we made,” Waterston said.\n", " Evidence\n", "\n", "\n", @@ -29784,12 +40707,27 @@ "\n", "\n", "\n", - " The tiny, iridescent Ormyrus labotus always seemed suspicious for a parasitoid wasp. Such wasps lay their eggs on or inside other insects and arthropods, and the larvae eat their way out. But Ormyrus labotus had been observed laying its eggs in more than 65 different species of insects — far more than one or a few. Entomologists were right to be suspicious. DNA samples have revealed that Ormyrus labotus is actually a complex of at least 16 genetically distinct species that are essentially indistinguishable to the eye. The findings are the latest to reveal supposedly generalist parasitic insect species as complexes of many species. Scientists are certain there are more.\n", + " The tiny, iridescent Ormyrus labotus always seemed suspicious for a parasitoid wasp. Such wasps lay their eggs on or inside other insects and arthropods, and the larvae eat their way out. But Ormyrus labotus had been observed laying its eggs in more than 65 different species of insects — far more than one or a few.\n", " Evidence\n", "\n", "\n", + "\n", + " Entomologists were right to be suspicious. DNA samples have revealed that Ormyrus labotus is actually a complex of at least 16 genetically distinct species that are essentially indistinguishable to the eye. The findings are the latest to reveal supposedly generalist parasitic insect species as complexes of many species. Scientists are certain there are more.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Have a revealing night.\n", + " Claim\n", + "\n", + "\n", "\n", - " Have a revealing night. Your Evening Briefing is posted at 6 p.m. Eastern. Want to catch up on past briefings? You can browse them here.\n", + " Your Evening Briefing is posted at 6 p.m. Eastern.\n", + " Claim\n", + "\n", + "\n", + "\n", + " Want to catch up on past briefings? You can browse them here.\n", " Claim\n", "\n", "\n", @@ -29823,7 +40761,7 @@ { "data": { "text/html": [ - "

nytimes\\ukraine-russia-separatists-shelling.txt

" + "

ukraine-russia-separatists-shelling.txt

" ], "text/plain": [ "" @@ -29836,34 +40774,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-b8b26294ef7a9eaf\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-b8b26294ef7a9eaf\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-b8b26294ef7a9eaf\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-b8b26294ef7a9eaf\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "a5afd777b64745daa53807f3d4c5959e", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " NOVOTOSHKIVSKE, Ukraine — Artillery shells struck a ring of frontline towns in eastern Ukraine Friday, blowing out windows, hitting schools, homes and military positions — and stirring fears that the escalation here is only the prelude to direct Russian military action. “I have a small baby,” said Nadya Lapygina, a resident of Staryi Aidar, one of several dozen towns hit by artillery and mortar fire on Friday on the northern border of the breakaway separatist region. “You have no idea how scary it is to hide him from the shelling.” They huddled under the stairs in their home and were unharmed through two volleys on Thursday morning and Friday afternoon, Ms. Lapygina said. The fighting between government soldiers and Russian-backed separatists in eastern Ukraine began Thursday and has not let up, with several dozen towns and villages on the government-controlled side being shelled, the authorities and aid groups said. Ukrainian military officials and the minister of defense confirmed the pickup in shelling, saying Russian-backed separatists had fired 84 times with heavy weaponry on Thursday and Friday. Eastern Ukraine, poor, remote and stuck in a grinding, eight-year-old war, is now looking increasingly like the flash point that could ignite a wider conflict. That fear was only reinforced by a video message from Russian separatists on Friday that warned without evidence of an impending Ukrainian military offensive and urged residents in the self-proclaimed Donetsk People’s Republic to evacuate to Russia.\n", + " NOVOTOSHKIVSKE, Ukraine — Artillery shells struck a ring of frontline towns in eastern Ukraine Friday, blowing out windows, hitting schools, homes and military positions — and stirring fears that the escalation here is only the prelude to direct Russian military action.\n", " Evidence\n", "\n", "\n", - "\n", - " The video was denounced by Kyiv as a baseless provocation.\n", - " Claim\n", + "\n", + " “I have a small baby,” said Nadya Lapygina, a resident of Staryi Aidar, one of several dozen towns hit by artillery and mortar fire on Friday on the northern border of the breakaway separatist region. “You have no idea how scary it is to hide him from the shelling.”\n", + " Evidence\n", "\n", "\n", "\n", - " Western governments have issued warnings on virtually a daily basis of the risks of a Russian invasion, after the Kremlin massed troops near Ukraine’s borders and demanded sweeping security concessions from NATO and the United States, which were largely rejected. Russian officials say they have no plans to invade but have not slowed the massing of what Western officials say are as many as 190,000 troops around Ukraine’s borders. U.S. officials said they were keeping a close watch on the violence in eastern Ukraine, out of concern that Russia could use the escalation and the danger it poses to ethnic Russians and other civilians as a pretext to invade. Russian officials present a starkly different view of the fighting in the east. Russia’s foreign minister, Sergey V. Lavrov, said on Friday that Moscow was concerned about “a sharp increase in shelling in eastern Ukraine,” which he blamed on the Ukrainian forces. “The Kyiv regime has been violating its responsibilities for several years,” he said. “Every time we agree on new measures to help impose a cease-fire, Kyiv sabotages them.” Out in eastern Ukraine, a cold rain fell on lingering patches of snow, and few people ventured out Friday on the streets in villages along the northern edge of the line of contact that separates the two sides. Explosions rang out from time to time, as the combatants exchanged fire. “It makes you think maybe it’s time to run,” said Tatyana Neiman, a nurse and single mother in the village of Vrubivka, surveying the blown-out windows of her house after a shell landed nearby. Fortunately, it hit while she was on a work shift and her 10-year-old son, Bogdan, was quarantining with Covid at a friend’s home. “I am on my own,” she said. “I am raising him on my own. And now he is afraid.” A total of 12 houses in the village were damaged by shelling Friday morning, said Proliska, a local nongovernmental group affiliated with the United Nations High Commissioner for Refugees, which was providing aid to affected families throughout the day.\n", + " They huddled under the stairs in their home and were unharmed through two volleys on Thursday morning and Friday afternoon, Ms. Lapygina said. The fighting between government soldiers and Russian-backed separatists in eastern Ukraine began Thursday and has not let up, with several dozen towns and villages on the government-controlled side being shelled, the authorities and aid groups said.\n", " Evidence\n", "\n", "\n", - "\n", - " A few doors away, Valentina Melnichenko, 72, a retired warehouse clerk, was watching television Friday morning when a shell landed in her back yard, obliterating a small brick outbuilding. Her husband, who died a few years ago, had built it, she said. “Now, it’s destroyed,” she said, with tears in her eyes.\n", - " Lead\n", + "\n", + " Ukrainian military officials and the minister of defense confirmed the pickup in shelling, saying Russian-backed separatists had fired 84 times with heavy weaponry on Thursday and Friday.\n", + " Evidence\n", "\n", "\n", "\n", - " Impact craters, about a yard deep and encircled by sprays of black earth on the snow, pocked yards and the playground of a school.\n", + " Eastern Ukraine, poor, remote and stuck in a grinding, eight-year-old war, is now looking increasingly like the flash point that could ignite a wider conflict. That fear was only reinforced by a video message from Russian separatists on Friday that warned without evidence of an impending Ukrainian military offensive and urged residents in the self-proclaimed Donetsk People’s Republic to evacuate to Russia.\n", " Evidence\n", "\n", "\n", "\n", - " Explosions had sheared branches from trees and shattered windows.\n", + " The video was denounced by Kyiv as a baseless provocation.\n", " Claim\n", "\n", "\n", "\n", - " Olena Yaryna, the principal of the town’s school, said the shell hit the playground at about 10:30 a.m., breaking windows but doing little other damage. She and the teachers herded the children into the hallways, away from the windows, and had them lie flat on the floor. “That’s how we lived through it,” Ms. Yarnya said. “I absolutely don’t understand why they shelled us.” She added, “The children got very scared and the parents even more.” Fighting in eastern Ukraine is not unusual, with periodic flare-ups throughout the war years. Yet, local people say the recent increase is the most severe in two years, since a tentative and oft-violated cease-fire took effect. And it comes amid an escalation that has seen Russia announce major military exercises this weekend that will feature the launch of ballistic and cruise missiles, as well as a test of its strategic nuclear forces — the land-based launchers, bombers and warships used to deliver nuclear weapons — and naval exercises on the Black Sea. The Defense Ministry said the drills were planned in advance, and the Kremlin spokesman, Dmitri S. Peskov, denied that they were intended to raise tensions.\n", + " Western governments have issued warnings on virtually a daily basis of the risks of a Russian invasion, after the Kremlin massed troops near Ukraine’s borders and demanded sweeping security concessions from NATO and the United States, which were largely rejected. Russian officials say they have no plans to invade but have not slowed the massing of what Western officials say are as many as 190,000 troops around Ukraine’s borders.\n", " Evidence\n", "\n", "\n", - "\n", - " But they are coming at a critical juncture in the standoff over Ukraine.\n", - " Rebuttal\n", + "\n", + " U.S. officials said they were keeping a close watch on the violence in eastern Ukraine, out of concern that Russia could use the escalation and the danger it poses to ethnic Russians and other civilians as a pretext to invade.\n", + " Evidence\n", "\n", "\n", "\n", - " “People are scared,” said Vera Voitenko, 62, a Red Cross volunteer in the village of Novotoshkivske, about a mile from the frontline. She said people would leave if they could, “but who is waiting for us, and where?” The deputy principal of the school in this village, Natalia Dotsenko, said she was woken by an artillery barrage early Thursday morning. Though occasional explosions are commonplace near the front, she said the sustained firing was different, adding: “We understand something dangerous is coming.”\n", + " Russian officials present a starkly different view of the fighting in the east. Russia’s foreign minister, Sergey V. Lavrov, said on Friday that Moscow was concerned about “a sharp increase in shelling in eastern Ukraine,” which he blamed on the Ukrainian forces.\n", " Evidence\n", "\n", "\n", - "\n", - " But she said there was nothing more they could do to prepare for the onslaught, if it should come. The children had been drilled: Three siren blasts mean fire, and that they should leave the building; one long siren means incoming artillery fire, and that they should hurry to the basement bomb shelter.\n", - " Rebuttal\n", + "\n", + " “The Kyiv regime has been violating its responsibilities for several years,” he said. “Every time we agree on new measures to help impose a cease-fire, Kyiv sabotages them.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Out in eastern Ukraine, a cold rain fell on lingering patches of snow, and few people ventured out Friday on the streets in villages along the northern edge of the line of contact that separates the two sides.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Explosions rang out from time to time, as the combatants exchanged fire. “It makes you think maybe it’s time to run,” said Tatyana Neiman, a nurse and single mother in the village of Vrubivka, surveying the blown-out windows of her house after a shell landed nearby.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Fortunately, it hit while she was on a work shift and her 10-year-old son, Bogdan, was quarantining with Covid at a friend’s home. “I am on my own,” she said. “I am raising him on my own. And now he is afraid.”\n", + " Evidence\n", "\n", "\n", "\n", - " Older children are instructed to grab first graders and kindergartners under the armpits and carry them into the basement. In artillery drills and several instances of actual, incoming artillery, the students performed well, Ms. Dotsenko said. Her face was pinched with worry as she described the drill, and she nervously clenched her hands. “You cannot explain fear with words,” she said. Out on the streets, muddy rivulets flowed between potholes. Many of the two- and three-story brick buildings bore the scars of earlier artillery strikes.\n", + " A total of 12 houses in the village were damaged by shelling Friday morning, said Proliska, a local nongovernmental group affiliated with the United Nations High Commissioner for Refugees, which was providing aid to affected families throughout the day.\n", " Evidence\n", "\n", "\n", "\n", - " Friday morning, as artillery fire echoed through the town, Sofia Sakhibgarayeva, 55, a house cleaner wearing a red hat, leopard print coat and purple mittens, walked up the middle of the deserted street, saying she was going grocery shopping.\n", + " A few doors away, Valentina Melnichenko, 72, a retired warehouse clerk, was watching television Friday morning when a shell landed in her back yard, obliterating a small brick outbuilding. Her husband, who died a few years ago, had built it, she said. “Now, it’s destroyed,” she said, with tears in her eyes.\n", " Lead\n", "\n", "\n", "\n", - " “It’s hard on the nerves,” she admitted, but said she didn’t want to succumb to worry. “Look at my mittens,” she said. “Don’t you think they are pretty?”\n", + " Impact craters, about a yard deep and encircled by sprays of black earth on the snow, pocked yards and the playground of a school.\n", " Evidence\n", "\n", - "
" + "\n", + "\n", + " Explosions had sheared branches from trees and shattered windows.\n", + " Claim\n", + "\n", + "\n", + "\n", + " Olena Yaryna, the principal of the town’s school, said the shell hit the playground at about 10:30 a.m., breaking windows but doing little other damage. She and the teachers herded the children into the hallways, away from the windows, and had them lie flat on the floor.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “That’s how we lived through it,” Ms. Yarnya said. “I absolutely don’t understand why they shelled us.” She added, “The children got very scared and the parents even more.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Fighting in eastern Ukraine is not unusual, with periodic flare-ups throughout the war years. Yet, local people say the recent increase is the most severe in two years, since a tentative and oft-violated cease-fire took effect.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " And it comes amid an escalation that has seen Russia announce major military exercises this weekend that will feature the launch of ballistic and cruise missiles, as well as a test of its strategic nuclear forces — the land-based launchers, bombers and warships used to deliver nuclear weapons — and naval exercises on the Black Sea.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The Defense Ministry said the drills were planned in advance, and the Kremlin spokesman, Dmitri S. Peskov, denied that they were intended to raise tensions.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " But they are coming at a critical juncture in the standoff over Ukraine.\n", + " Rebuttal\n", + "\n", + "\n", + "\n", + " “People are scared,” said Vera Voitenko, 62, a Red Cross volunteer in the village of Novotoshkivske, about a mile from the frontline. She said people would leave if they could, “but who is waiting for us, and where?”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The deputy principal of the school in this village, Natalia Dotsenko, said she was woken by an artillery barrage early Thursday morning. Though occasional explosions are commonplace near the front, she said the sustained firing was different, adding: “We understand something dangerous is coming.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " But she said there was nothing more they could do to prepare for the onslaught, if it should come. The children had been drilled: Three siren blasts mean fire, and that they should leave the building; one long siren means incoming artillery fire, and that they should hurry to the basement bomb shelter.\n", + " Rebuttal\n", + "\n", + "\n", + "\n", + " Older children are instructed to grab first graders and kindergartners under the armpits and carry them into the basement. In artillery drills and several instances of actual, incoming artillery, the students performed well, Ms. Dotsenko said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Her face was pinched with worry as she described the drill, and she nervously clenched her hands. “You cannot explain fear with words,” she said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Out on the streets, muddy rivulets flowed between potholes. Many of the two- and three-story brick buildings bore the scars of earlier artillery strikes.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Friday morning, as artillery fire echoed through the town, Sofia Sakhibgarayeva, 55, a house cleaner wearing a red hat, leopard print coat and purple mittens, walked up the middle of the deserted street, saying she was going grocery shopping.\n", + " Lead\n", + "\n", + "\n", + "\n", + " “It’s hard on the nerves,” she admitted, but said she didn’t want to succumb to worry. “Look at my mittens,” she said. “Don’t you think they are pretty?”\n", + " Evidence\n", + "\n", + "
" ], "text/plain": [ "" @@ -30049,7 +41067,7 @@ { "data": { "text/html": [ - "

nytimes\\ukraine-russia-us-troops.txt

" + "

ukraine-russia-us-troops.txt

" ], "text/plain": [ "" @@ -30062,34 +41080,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-74b4b8063e7fb116\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-74b4b8063e7fb116\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-74b4b8063e7fb116\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-74b4b8063e7fb116\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "6f2ebae42fd0436f8bc125db85a5f25f", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00\n", "\n", "\n", - " Since the beginning of the standoff, President Biden has been clear that he will not allow American troops to come into direct combat with Russians. Why has the U.S., a country that has intervened all over the world in various contexts, taken that powerful option off the table? David E. Sanger, a White House and national security correspondent for The New York Times. While recent Russian rhetoric has stoked hopes of a diplomatic solution, U.S. and NATO officials have accused Moscow of further building up troops. President Biden’s opposition to sending U.S. forces into Ukraine reflects the mood of a war-wary Washington, as well as concerns about Russia’s nuclear arsenal. Here’s a guide to the causes behind the Ukraine crisis and where it might be headed.\n", + " Since the beginning of the standoff, President Biden has been clear that he will not allow American troops to come into direct combat with Russians.\n", + " Claim\n", + "\n", + "\n", + "\n", + " Why has the U.S., a country that has intervened all over the world in various contexts, taken that powerful option off the table?\n", + " Claim\n", + "\n", + "\n", + "\n", + " David E. Sanger, a White House and national security correspondent for The New York Times.\n", + " Claim\n", + "\n", + "\n", + "\n", + " While recent Russian rhetoric has stoked hopes of a diplomatic solution, U.S. and NATO officials have accused Moscow of further building up troops.\n", + " Claim\n", + "\n", + "\n", + "\n", + " President Biden’s opposition to sending U.S. forces into Ukraine reflects the mood of a war-wary Washington, as well as concerns about Russia’s nuclear arsenal.\n", + " Claim\n", + "\n", + "\n", + "\n", + " Here’s a guide to the causes behind the Ukraine crisis and where it might be headed.\n", " Claim\n", "\n", "" @@ -30196,7 +41199,7 @@ { "data": { "text/html": [ - "

nytimes\\us-history-censorship.txt

" + "

us-history-censorship.txt

" ], "text/plain": [ "" @@ -30209,34 +41212,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-3f4ea0fcc0049816\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-3f4ea0fcc0049816\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-3f4ea0fcc0049816\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-3f4ea0fcc0049816\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "6b58a2dd79d64c1aacdab3971a98343c", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " There is a dangerous censoriousness pulsing through American society. In small towns and big cities alike, would-be commissars are fighting, in the name of a distinct minority of Americans, to stifle open discussion and impose their views on the community at large. Dissenters, when they speak out, are hounded, ostracized and sometimes even forced from their jobs. Defenders of this push for censorship say they are simply working to protect the nation’s children from prejudice, psychological distress and inappropriate material. “To say there were slaves is one thing, but to talk in detail about how slaves were treated, and with photos, is another,” said Tina Descovich, a leader of Moms for Liberty, a conservative group that seeks to enshrine “parental rights” into law. Descovich was speaking to The Washington Post in defense of Ron DeSantis, the governor of Florida, who is spearheading an effort to censor educators who teach, or even raise, certain politically incorrect issues in their classrooms. One of these bills would give parents and state regulators broad authority to ban books or teachings that cause “discomfort” in students, and would put lessons on “the Civil War, the expansion of the United States to its present boundaries, the world wars, and the civil rights movement” under careful review. Another would permit parents to sue school districts that “encourage classroom discussions” on “sexual orientation or gender identity” in “primary grade levels or in a manner that is not age-appropriate or developmentally appropriate for students.” Critics say this language is so broad as to effectively outlaw any discussion of L.G.B.T. people in elementary school classrooms, or at the very least, strongly discourage teachers from raising those issues, regardless of context. Pushed by militantly conservative activists — and heeding the demands of an increasingly censorious group of conservative voters — Republican lawmakers are, in states across the country, introducing bills that suppress debate and stifle discussion in favor of the rote memorization of approved facts. Last month, for example, the Indiana House of Representatives approved a bill — not yet signed into law — that would limit what teachers can say regarding race, history and politics in the state’s classrooms. Under the law, schools could be held liable for mentioning any one of several “divisive concepts,” including the idea that “any individual should feel discomfort, guilt, anguish responsibility, or any other form of psychological distress on account of the individual’s sex, race, ethnicity, religion, color, national origin or political affiliation.” The bill would allow parents to allege a violation, file a complaint, sue and even collect damages (up to $1,000). It would also, in the name of transparency, create curriculum review committees for parents and require schools and teachers to post lists of material on websites for parents to inspect. In South Carolina, lawmakers have introduced a bill — known as the Freedom from Ideological Coercion and Indoctrination Act — that would prohibit any state-funded institution from stating that “a group or an individual, by virtue of his or her race, ethnicity, sex, sexual orientation, national origin, heritage, culture, religion, or political belief is inherently racist, sexist, bigoted, ignorant, biased, fragile, oppressive, or contributive to any oppression, whether consciously or unconsciously.” If signed into law, this bill could make it illegal, for instance, for teachers and college professors in the state to criticize members of a white supremacist group since that affiliation might count as a “political belief.” Schools that “repeatedly distort or misrepresent verifiable historical facts” or “omit relevant and important context” or “advertise or promote ideologies or sociopolitical causes or organizations” could face a loss of state funding, state accreditation or tax-exempt status. As for what these violations would actually look like? The bill does not say. The most disturbing efforts to monitor schools and teachers for wrong-think involve actual surveillance. Bills introduced in Iowa and Mississippi would install classroom cameras that would stream lessons over the internet for anyone to observe. The Iowa bill, which died in committee this week, would have forced schools to place cameras in all K-12 classrooms, except for physical education and special-needs classes. Teachers and other staff members who obstructed cameras or failed to keep them in working order would face fines of up to 5 percent of their weekly pay for each infraction. According to PEN America, more than half of the “educational gag orders” moving through state legislatures include a mandatory punishment for those found in violation.\n", + " There is a dangerous censoriousness pulsing through American society. In small towns and big cities alike, would-be commissars are fighting, in the name of a distinct minority of Americans, to stifle open discussion and impose their views on the community at large. Dissenters, when they speak out, are hounded, ostracized and sometimes even forced from their jobs.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Defenders of this push for censorship say they are simply working to protect the nation’s children from prejudice, psychological distress and inappropriate material. “To say there were slaves is one thing, but to talk in detail about how slaves were treated, and with photos, is another,” said Tina Descovich, a leader of Moms for Liberty, a conservative group that seeks to enshrine “parental rights” into law. Descovich was speaking to The Washington Post in defense of Ron DeSantis, the governor of Florida, who is spearheading an effort to censor educators who teach, or even raise, certain politically incorrect issues in their classrooms.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " One of these bills would give parents and state regulators broad authority to ban books or teachings that cause “discomfort” in students, and would put lessons on “the Civil War, the expansion of the United States to its present boundaries, the world wars, and the civil rights movement” under careful review. Another would permit parents to sue school districts that “encourage classroom discussions” on “sexual orientation or gender identity” in “primary grade levels or in a manner that is not age-appropriate or developmentally appropriate for students.” Critics say this language is so broad as to effectively outlaw any discussion of L.G.B.T. people in elementary school classrooms, or at the very least, strongly discourage teachers from raising those issues, regardless of context.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Pushed by militantly conservative activists — and heeding the demands of an increasingly censorious group of conservative voters — Republican lawmakers are, in states across the country, introducing bills that suppress debate and stifle discussion in favor of the rote memorization of approved facts.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Last month, for example, the Indiana House of Representatives approved a bill — not yet signed into law — that would limit what teachers can say regarding race, history and politics in the state’s classrooms. Under the law, schools could be held liable for mentioning any one of several “divisive concepts,” including the idea that “any individual should feel discomfort, guilt, anguish responsibility, or any other form of psychological distress on account of the individual’s sex, race, ethnicity, religion, color, national origin or political affiliation.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The bill would allow parents to allege a violation, file a complaint, sue and even collect damages (up to $1,000). It would also, in the name of transparency, create curriculum review committees for parents and require schools and teachers to post lists of material on websites for parents to inspect.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In South Carolina, lawmakers have introduced a bill — known as the Freedom from Ideological Coercion and Indoctrination Act — that would prohibit any state-funded institution from stating that “a group or an individual, by virtue of his or her race, ethnicity, sex, sexual orientation, national origin, heritage, culture, religion, or political belief is inherently racist, sexist, bigoted, ignorant, biased, fragile, oppressive, or contributive to any oppression, whether consciously or unconsciously.” If signed into law, this bill could make it illegal, for instance, for teachers and college professors in the state to criticize members of a white supremacist group since that affiliation might count as a “political belief.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Schools that “repeatedly distort or misrepresent verifiable historical facts” or “omit relevant and important context” or “advertise or promote ideologies or sociopolitical causes or organizations” could face a loss of state funding, state accreditation or tax-exempt status. As for what these violations would actually look like? The bill does not say.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The most disturbing efforts to monitor schools and teachers for wrong-think involve actual surveillance. Bills introduced in Iowa and Mississippi would install classroom cameras that would stream lessons over the internet for anyone to observe. The Iowa bill, which died in committee this week, would have forced schools to place cameras in all K-12 classrooms, except for physical education and special-needs classes. Teachers and other staff members who obstructed cameras or failed to keep them in working order would face fines of up to 5 percent of their weekly pay for each infraction.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " According to PEN America, more than half of the “educational gag orders” moving through state legislatures include a mandatory punishment for those found in violation.\n", " Evidence\n", "\n", "\n", @@ -30365,7 +41380,7 @@ { "data": { "text/html": [ - "

nytimes\\wall-street-hotel.txt

" + "

wall-street-hotel.txt

" ], "text/plain": [ "" @@ -30378,34 +41393,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-9170484f35a39f8a\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-9170484f35a39f8a\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-9170484f35a39f8a\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-9170484f35a39f8a\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "3ad058f9920d44238cc2bdbf9cfc9c0b", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00\n", "\n", "\n", - " In the late 18th century, the Tontine Building, on Manhattan’s Wall Street, was a tavern and coffeehouse — and the site of the New York Stock Exchange. Next month, the onetime trading center will reopen as the Wall Street Hotel, a 180-room boutique whose current owners, the Paspaleys, an Australian pearl production family, hope to make it more of a cultural hub. When it came to choosing art for the hotel, they partnered with the APY Art Centre Collective, an Indigenous-led organization dedicated to promoting Australian Aboriginal art. Examples of commissioned works — among them prints of paintings inspired by constellations by Matjangka Norris and layered land- and dreamscapes by Betty Muffler, who favors black and red ocher — appear throughout. After taking a self-guided tour, guests can have a cappuccino or cocktail in the all-day lounge, which is appointed with plush velvet seating, or explore the Financial District by complimentary Vélosophy bike. Rooms from $499, thewallsthotel.com. The Los Angeles milliner Nick Fouquet was researching cowboy boots and pondering an expansion into footwear when he received a call from Lucchese, the revered Texas boot brand founded in 1883, about collaborating. “It was very serendipitous — a sign,” says Fouquet, who created headpieces for fashion houses Givenchy and Rochas before launching his own line a decade ago. And the partnership made sense: Both brands champion homegrown craftsmanship while aiming to update the idea of Americana. “There are an enormous number of similarities in the anatomy and construction, too. We have band blocks; they have lasts,” says Fouquet, who visited Lucchese’s archives in El Paso and saw lasts made for John Wayne, Gregory Peck and Jane Russell. In the end, the labels gave some classic Lucchese models a ’70s spin, coming up with eight new styles including stacked-heel boots in topstitched leather and tonal suede and snappy two-tone loafers, as well as a handful of printed silk neckerchiefs and (of course) cowboy-inspired hats. And yet, Fouquet promises, “the pieces will be as much at home on the streets of Paris as on a ranch.” Accessories from $240; footwear from $895, nickfouquet.com and lucchese.com. Nicole Rudick’s illustrated biography of nouveau réalisme artist Niki de Saint Phalle, “What Is Now Known Was Once Only Imagined,” takes its title from a (perhaps intentionally) misquoted snippet of William Blake’s “The Marriage of Heaven and Hell” (1790) that appears in one of Saint Phalle’s typically rococo doodles. The line is also the perfect tag for the provocateur’s particular brand of 20th-century aestheticism. “I would spend my life questioning,” she wrote in a 1992 note addressed to her dead mother. “I would fall in love with the question mark.” Such voracious curiosity led to her various autodidactic pursuits as a painter, draftsperson, sculptor — she is probably best known for her Gaudí-inspired installation, “The Tarot Garden,” in Pescia Fiorentina, Tuscany — writer, filmmaker, gardener and perfumer. In her subtitle, Rudick (who has contributed to T) refers to the book as “an (auto)biography,” as it is comprised almost entirely of hundreds of Saint Phalle’s colorful sketches and a trove of her letters, essays and marginalia, in which the artist rhapsodizes on, among other things, adolescent love (she met her future husband, the writer Harry Mathews, at age 11), mental illness and the harlequin fantasies that pervaded her daily life. The result is an intimate scrapbook of the life of one of the century’s most inventive artists. $45, sigliopress.com. Having cut her teeth at such influential galleries as Paula Cooper and Paul Kasmin, Polina Berlin is now opening her own, on Manhattan’s Upper East Side. With a leafy backyard garden and abundant natural light, the 2,000-square-foot space, once the parlor floor of a townhouse, retains its homey feel. And this is fitting since Berlin hopes the gallery will foster close bonds. “The artists in Paula’s program have such admiration for each other and push each other to ignite new ideas,” says Berlin. “It would be very satisfying to have that happen in my space.” The gallery’s inaugural show, titled “Emotional Intelligence” and opening next week, features various riffs on kinship. It includes work by 10 artists, including a painting of three semiabstract nudes by Loie Hollowell and another of a figure holding an umbrella that reads “God is Gorgeous” by Shannon Cartier Lucy. Berlin sees the show as a kind of mission statement. “These artists are so sensitive to how people are treated,” she says. “And if I can in some modest way make the art world better for the people I work with, then I feel the accountability to do that.” “Emotional Intelligence” runs from Feb. 22 to March 26, polinaberlingallery.com. When it comes to sourcing supplies for small home projects — retiling a backsplash, say, or papering a single wall — it can feel like your options are either Home Depot (practical but not necessarily inspiring) or a brand’s showroom (obscure pricing, too many choices). It’s partly for this reason that Sarah Zames and Colin Stief, of the Brooklyn-based design studio General Assembly, are opening their first store, Assembly Line, in Boerum Hill this week. The warm, light-flooded space is laid out like a home, with inviting living and dining areas, and filled with furniture and fixtures by designers whom Zames and Stief admire — upholstered oak stools by Vonnegut/Kraft, elegant chrome cabinet knobs by Fort Standard Objects — as well as a tightly edited selection of materials for renovations, which includes Calico wallpapers printed with a range of nature-inspired motifs, glossy zellige tiles from Clé and lime wash paints from Bauwerk. Unlike in many showrooms, every item in the store is clearly priced, and Zames and Stief are available for consultations by appointment. A DIYer might easily come in to look at an Elitis fabric sample but leave with a new bedside lamp — like the great options, with globby, hand-formed stone bases, by the Brooklyn maker Hannah Bigeleisen — or a plan to reimagine an entire room. 373 Atlantic Avenue, assemblyline.co.\n", + " In the late 18th century, the Tontine Building, on Manhattan’s Wall Street, was a tavern and coffeehouse — and the site of the New York Stock Exchange. Next month, the onetime trading center will reopen as the Wall Street Hotel, a 180-room boutique whose current owners, the Paspaleys, an Australian pearl production family, hope to make it more of a cultural hub. When it came to choosing art for the hotel, they partnered with the APY Art Centre Collective, an Indigenous-led organization dedicated to promoting Australian Aboriginal art. Examples of commissioned works — among them prints of paintings inspired by constellations by Matjangka Norris and layered land- and dreamscapes by Betty Muffler, who favors black and red ocher — appear throughout. After taking a self-guided tour, guests can have a cappuccino or cocktail in the all-day lounge, which is appointed with plush velvet seating, or explore the Financial District by complimentary Vélosophy bike. Rooms from $499, thewallsthotel.com.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The Los Angeles milliner Nick Fouquet was researching cowboy boots and pondering an expansion into footwear when he received a call from Lucchese, the revered Texas boot brand founded in 1883, about collaborating. “It was very serendipitous — a sign,” says Fouquet, who created headpieces for fashion houses Givenchy and Rochas before launching his own line a decade ago. And the partnership made sense: Both brands champion homegrown craftsmanship while aiming to update the idea of Americana. “There are an enormous number of similarities in the anatomy and construction, too. We have band blocks; they have lasts,” says Fouquet, who visited Lucchese’s archives in El Paso and saw lasts made for John Wayne, Gregory Peck and Jane Russell. In the end, the labels gave some classic Lucchese models a ’70s spin, coming up with eight new styles including stacked-heel boots in topstitched leather and tonal suede and snappy two-tone loafers, as well as a handful of printed silk neckerchiefs and (of course) cowboy-inspired hats. And yet, Fouquet promises, “the pieces will be as much at home on the streets of Paris as on a ranch.” Accessories from $240; footwear from $895, nickfouquet.com and lucchese.com.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Nicole Rudick’s illustrated biography of nouveau réalisme artist Niki de Saint Phalle, “What Is Now Known Was Once Only Imagined,” takes its title from a (perhaps intentionally) misquoted snippet of William Blake’s “The Marriage of Heaven and Hell” (1790) that appears in one of Saint Phalle’s typically rococo doodles. The line is also the perfect tag for the provocateur’s particular brand of 20th-century aestheticism. “I would spend my life questioning,” she wrote in a 1992 note addressed to her dead mother. “I would fall in love with the question mark.” Such voracious curiosity led to her various autodidactic pursuits as a painter, draftsperson, sculptor — she is probably best known for her Gaudí-inspired installation, “The Tarot Garden,” in Pescia Fiorentina, Tuscany — writer, filmmaker, gardener and perfumer. In her subtitle, Rudick (who has contributed to T) refers to the book as “an (auto)biography,” as it is comprised almost entirely of hundreds of Saint Phalle’s colorful sketches and a trove of her letters, essays and marginalia, in which the artist rhapsodizes on, among other things, adolescent love (she met her future husband, the writer Harry Mathews, at age 11), mental illness and the harlequin fantasies that pervaded her daily life. The result is an intimate scrapbook of the life of one of the century’s most inventive artists. $45, sigliopress.com.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Having cut her teeth at such influential galleries as Paula Cooper and Paul Kasmin, Polina Berlin is now opening her own, on Manhattan’s Upper East Side. With a leafy backyard garden and abundant natural light, the 2,000-square-foot space, once the parlor floor of a townhouse, retains its homey feel. And this is fitting since Berlin hopes the gallery will foster close bonds. “The artists in Paula’s program have such admiration for each other and push each other to ignite new ideas,” says Berlin. “It would be very satisfying to have that happen in my space.” The gallery’s inaugural show, titled “Emotional Intelligence” and opening next week, features various riffs on kinship. It includes work by 10 artists, including a painting of three semiabstract nudes by Loie Hollowell and another of a figure holding an umbrella that reads “God is Gorgeous” by Shannon Cartier Lucy. Berlin sees the show as a kind of mission statement. “These artists are so sensitive to how people are treated,” she says. “And if I can in some modest way make the art world better for the people I work with, then I feel the accountability to do that.” “Emotional Intelligence” runs from Feb. 22 to March 26, polinaberlingallery.com.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " When it comes to sourcing supplies for small home projects — retiling a backsplash, say, or papering a single wall — it can feel like your options are either Home Depot (practical but not necessarily inspiring) or a brand’s showroom (obscure pricing, too many choices). It’s partly for this reason that Sarah Zames and Colin Stief, of the Brooklyn-based design studio General Assembly, are opening their first store, Assembly Line, in Boerum Hill this week. The warm, light-flooded space is laid out like a home, with inviting living and dining areas, and filled with furniture and fixtures by designers whom Zames and Stief admire — upholstered oak stools by Vonnegut/Kraft, elegant chrome cabinet knobs by Fort Standard Objects — as well as a tightly edited selection of materials for renovations, which includes Calico wallpapers printed with a range of nature-inspired motifs, glossy zellige tiles from Clé and lime wash paints from Bauwerk. Unlike in many showrooms, every item in the store is clearly priced, and Zames and Stief are available for consultations by appointment. A DIYer might easily come in to look at an Elitis fabric sample but leave with a new bedside lamp — like the great options, with globby, hand-formed stone bases, by the Brooklyn maker Hannah Bigeleisen — or a plan to reimagine an entire room. 373 Atlantic Avenue, assemblyline.co.\n", " Evidence\n", "\n", "
" @@ -30511,7 +41505,7 @@ { "data": { "text/html": [ - "

nytimes\\walter-dellinger-law-supreme-court.txt

" + "

walter-dellinger-law-supreme-court.txt

" ], "text/plain": [ "" @@ -30524,34 +41518,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-3eac1aaab25160d0\n" + "Using custom data configuration default-3eac1aaab25160d0\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-3eac1aaab25160d0\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-3eac1aaab25160d0\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" - ] - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "1679fe16401e4668bf0abe30a5b03481", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " It would’ve been a hell of a road trip. The plan was to fly to North Carolina in late March, then drive four hours to a small town on the inner banks, where one of America’s founding fathers, James Wilson, spent his last, desperate days hiding out in a local tavern, on the run from the law and his creditors. I am writing a book about Wilson’s singular life and I need to spend some time in the place where he died. My traveling companion was to be Walter Dellinger, the former acting solicitor general, who was born and raised in North Carolina and spent decades teaching constitutional law at Duke Law School. I had reached out to Mr. Dellinger last month to propose he join me — a lark, I thought. Mr. Dellinger was 80 and not in the best of health. He had spent the previous several years caring for his wife of a lifetime, Anne, as dementia took first her mind and then, last spring, her life. He was heartbroken and exhausted. To my surprise, he accepted immediately. For me it was a no-brainer: the chance to spend uninterrupted days in the presence of one of the nation’s most captivating constitutional scholars, and one of the greatest appellate lawyers of his day. What I didn’t fully appreciate, not until I learned of his death early Wednesday morning, was how much the prospect of such a trip excited Mr. Dellinger, too. He was a deeply curious soul, filled with a genuine love of the Constitution but also an openhearted desire to learn more. Eighty years old is not young, and yet the news of Mr. Dellinger’s death still came as a disorienting shock — like the sudden loss of a parent. “I feel like an orphan today,” Garrett Epps, a longtime Supreme Court analyst and one of Mr. Dellinger’s former law students, wrote on Twitter. Mr. Dellinger was a rarity in American law. He was as revered as he was outsized, as warmhearted as he could be intimidating. In his smooth, unhurried Southern drawl you heard his origin story — a “poor white kid from North Carolina,” as he put it, whose widowed mother worked selling men’s clothing to help put him through law school. After a clerkship with the Supreme Court justice Hugo Black, a famous progressive white Southerner, he went to work at Paul Weiss, a Jewish-owned law firm in New York, because, he later said, he was troubled that the other major New York firms refused even to interview Jewish law students for jobs. After more than 20 years teaching at Duke, Mr. Dellinger was tapped by President Bill Clinton to lead the Justice Department’s Office of Legal Counsel, which provides legal advice to the executive branch. In 1996, he was named acting solicitor general, giving him the opportunity to argue regularly at the Supreme Court on behalf of the White House. “When he said things, the justices paid attention,” Mr. Epps told me. “There’s a small group like that; it’s not particularly ideological. Walter had that role.”\n", + " It would’ve been a hell of a road trip. The plan was to fly to North Carolina in late March, then drive four hours to a small town on the inner banks, where one of America’s founding fathers, James Wilson, spent his last, desperate days hiding out in a local tavern, on the run from the law and his creditors. I am writing a book about Wilson’s singular life and I need to spend some time in the place where he died.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " My traveling companion was to be Walter Dellinger, the former acting solicitor general, who was born and raised in North Carolina and spent decades teaching constitutional law at Duke Law School. I had reached out to Mr. Dellinger last month to propose he join me — a lark, I thought. Mr. Dellinger was 80 and not in the best of health. He had spent the previous several years caring for his wife of a lifetime, Anne, as dementia took first her mind and then, last spring, her life. He was heartbroken and exhausted. To my surprise, he accepted immediately.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " For me it was a no-brainer: the chance to spend uninterrupted days in the presence of one of the nation’s most captivating constitutional scholars, and one of the greatest appellate lawyers of his day. What I didn’t fully appreciate, not until I learned of his death early Wednesday morning, was how much the prospect of such a trip excited Mr. Dellinger, too. He was a deeply curious soul, filled with a genuine love of the Constitution but also an openhearted desire to learn more.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Eighty years old is not young, and yet the news of Mr. Dellinger’s death still came as a disorienting shock — like the sudden loss of a parent. “I feel like an orphan today,” Garrett Epps, a longtime Supreme Court analyst and one of Mr. Dellinger’s former law students, wrote on Twitter.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mr. Dellinger was a rarity in American law. He was as revered as he was outsized, as warmhearted as he could be intimidating. In his smooth, unhurried Southern drawl you heard his origin story — a “poor white kid from North Carolina,” as he put it, whose widowed mother worked selling men’s clothing to help put him through law school. After a clerkship with the Supreme Court justice Hugo Black, a famous progressive white Southerner, he went to work at Paul Weiss, a Jewish-owned law firm in New York, because, he later said, he was troubled that the other major New York firms refused even to interview Jewish law students for jobs.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " After more than 20 years teaching at Duke, Mr. Dellinger was tapped by President Bill Clinton to lead the Justice Department’s Office of Legal Counsel, which provides legal advice to the executive branch. In 1996, he was named acting solicitor general, giving him the opportunity to argue regularly at the Supreme Court on behalf of the White House. “When he said things, the justices paid attention,” Mr. Epps told me. “There’s a small group like that; it’s not particularly ideological. Walter had that role.”\n", " Evidence\n", "\n", "\n", @@ -30648,7 +41636,47 @@ "\n", "\n", "\n", - " “There is almost no one in the last 100 years who’s had a more profound impact on the law who didn’t serve on the Supreme Court,” said Neal Katyal, who met Mr. Dellinger as a young lawyer and later served as President Barack Obama’s acting solicitor general, the same job Mr. Dellinger held under Mr. Clinton. “He had this expansive, generous view of the law and what the Constitution means.” When Mr. Katyal was tasked with defending President Obama’s signature health care law, the Affordable Care Act, he relied on Mr. Dellinger’s writings and ideas to make the case, which he ultimately won. “There’s a whole strain of constitutional scholarship which views the Constitution as a set of rigid constraints,” he said. “Walter’s scholarship pushed back on that idea, saying the Constitution is a pragmatic and flexible document intended to empower government to deal with problems.” The Constitution was also the product of a “literally unspeakable compromise” with slaveholders, as Mr. Dellinger was never shy to say, and needed to be understood in that light. In a guest essay for The Times last month, he came out strongly in support of President Biden’s public vow to nominate a Black woman to the Supreme Court. Rejecting Republican complaints that Mr. Biden’s promise was somehow “offensive,” Mr. Dellinger cited the “long and important tradition of presidents taking into consideration the demographic characteristics of prospective justices.” “Our history shows that the process of reaching out to expand the personal backgrounds of the justices has often produced stellar jurists who made historic contributions to the court and our judicial system,” he added. Pamela Karlan, a law professor at Stanford University, recalled Mr. Dellinger’s fondness for a poem by Walt Whitman, “The Wound-Dresser,” that is engraved in the subway station she used when she would visit him in Washington. The poem is about Whitman’s time as a volunteer nurse during the Civil War. “I always thought of Walter as trying to dress the American wound of race,” she said. “He was in there to heal the world.” Poetry was only one art form that moved him. He followed the television series “Mad Men” closely enough to post lengthy late-night comments to online forums about the show. One of his comments led to a round table discussion, hosted by The Wall Street Journal, in which Mr. Dellinger first explained his affection for “Mad Men,” and then — ever the lawyer — pointed out that a chronological gap between seasons had skipped completely over two major national events: the passage of the 1964 Civil Rights Act and that year’s brutal murder of three civil-rights workers in Mississippi. In 1988, Mr. Dellinger was selected to be a fellow at the National Humanities Center, along with Rita Dove, who would later be named U.S. poet laureate. “I remember being so impressed at how authentic he was; a Southerner deeply committed to civil rights,” Ms. Dove told me. “He was always a straight shooter, but his humor was the humor of the blues. You laughed to keep from crying.” Although I was never Mr. Dellinger’s student, I felt as though I earned an honorary degree through our countless email exchanges and hours of phone calls over the years. What struck me in every exchange was his love — unabashed and not at all possessive — of the ideals underlying American democracy. He held neither jealousy of those who knew more than he did nor disdain for those, like me, who knew far less. I called him recently for a piece I was writing on the Equal Rights Amendment, which would prohibit discrimination on the basis of sex. There is a long-running and legally complex dispute over whether the amendment should already be considered part of the Constitution. I found myself torn, but Mr. Dellinger didn’t. His take was, as always, informed by both deep legal training and good common sense. “The tiebreaker for me is the difficulty of amending the Constitution. There are so many ways of making the process harder. My point is, it’s goddamn hard enough.” There is never a good time to lose someone like Walter Dellinger. It is especially gutting right now, as a turbocharged right-wing supermajority on the Supreme Court gears up to obliterate decades of precedent that had pointed the way, however imperfectly, toward a fairer, more equal and more inclusive America. But Mr. Dellinger, a fierce liberal who spent much of his life deep in the former confederacy, was always keenly aware of the forces he was up against. Thankfully he trained a generation of lawyers to think, and to fight, the way he did.\n", + " “There is almost no one in the last 100 years who’s had a more profound impact on the law who didn’t serve on the Supreme Court,” said Neal Katyal, who met Mr. Dellinger as a young lawyer and later served as President Barack Obama’s acting solicitor general, the same job Mr. Dellinger held under Mr. Clinton. “He had this expansive, generous view of the law and what the Constitution means.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " When Mr. Katyal was tasked with defending President Obama’s signature health care law, the Affordable Care Act, he relied on Mr. Dellinger’s writings and ideas to make the case, which he ultimately won. “There’s a whole strain of constitutional scholarship which views the Constitution as a set of rigid constraints,” he said. “Walter’s scholarship pushed back on that idea, saying the Constitution is a pragmatic and flexible document intended to empower government to deal with problems.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The Constitution was also the product of a “literally unspeakable compromise” with slaveholders, as Mr. Dellinger was never shy to say, and needed to be understood in that light. In a guest essay for The Times last month, he came out strongly in support of President Biden’s public vow to nominate a Black woman to the Supreme Court. Rejecting Republican complaints that Mr. Biden’s promise was somehow “offensive,” Mr. Dellinger cited the “long and important tradition of presidents taking into consideration the demographic characteristics of prospective justices.” “Our history shows that the process of reaching out to expand the personal backgrounds of the justices has often produced stellar jurists who made historic contributions to the court and our judicial system,” he added.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Pamela Karlan, a law professor at Stanford University, recalled Mr. Dellinger’s fondness for a poem by Walt Whitman, “The Wound-Dresser,” that is engraved in the subway station she used when she would visit him in Washington. The poem is about Whitman’s time as a volunteer nurse during the Civil War. “I always thought of Walter as trying to dress the American wound of race,” she said. “He was in there to heal the world.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Poetry was only one art form that moved him. He followed the television series “Mad Men” closely enough to post lengthy late-night comments to online forums about the show. One of his comments led to a round table discussion, hosted by The Wall Street Journal, in which Mr. Dellinger first explained his affection for “Mad Men,” and then — ever the lawyer — pointed out that a chronological gap between seasons had skipped completely over two major national events: the passage of the 1964 Civil Rights Act and that year’s brutal murder of three civil-rights workers in Mississippi.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In 1988, Mr. Dellinger was selected to be a fellow at the National Humanities Center, along with Rita Dove, who would later be named U.S. poet laureate. “I remember being so impressed at how authentic he was; a Southerner deeply committed to civil rights,” Ms. Dove told me. “He was always a straight shooter, but his humor was the humor of the blues. You laughed to keep from crying.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Although I was never Mr. Dellinger’s student, I felt as though I earned an honorary degree through our countless email exchanges and hours of phone calls over the years. What struck me in every exchange was his love — unabashed and not at all possessive — of the ideals underlying American democracy. He held neither jealousy of those who knew more than he did nor disdain for those, like me, who knew far less.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " I called him recently for a piece I was writing on the Equal Rights Amendment, which would prohibit discrimination on the basis of sex. There is a long-running and legally complex dispute over whether the amendment should already be considered part of the Constitution. I found myself torn, but Mr. Dellinger didn’t. His take was, as always, informed by both deep legal training and good common sense. “The tiebreaker for me is the difficulty of amending the Constitution. There are so many ways of making the process harder. My point is, it’s goddamn hard enough.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " There is never a good time to lose someone like Walter Dellinger. It is especially gutting right now, as a turbocharged right-wing supermajority on the Supreme Court gears up to obliterate decades of precedent that had pointed the way, however imperfectly, toward a fairer, more equal and more inclusive America. But Mr. Dellinger, a fierce liberal who spent much of his life deep in the former confederacy, was always keenly aware of the forces he was up against. Thankfully he trained a generation of lawyers to think, and to fight, the way he did.\n", " Evidence\n", "\n", "
" @@ -30672,7 +41700,7 @@ { "data": { "text/html": [ - "

nytimes\\watches-obscure-brands-switzerland.txt

" + "

watches-obscure-brands-switzerland.txt

" ], "text/plain": [ "" @@ -30685,20 +41713,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-c5f566e17e8f4d69\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-c5f566e17e8f4d69\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-c5f566e17e8f4d69\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-c5f566e17e8f4d69\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "b94cb95fc41e4ab1b1ddf3f9dfd0cef1", + "model_id": "495b0d71c9664eb2a43886e61e20facc", "version_major": 2, "version_minor": 0 }, @@ -30710,58 +41732,16 @@ "output_type": "display_data" }, { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "e67fe96dd4ea4086bb0169b0ed7ca9bb", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00\n", "\n", "\n", - " Like millions of people before and after him, he gravitated to Rolex, deciding he wanted an Explorer 1016 model from 1977, the year he was born. The watch proved elusive, but the search ignited a passion for wristwatches that Mr. Heileson hadn’t realized he had. “Very quickly, I went down this rabbit hole of military watches,” Mr. Heileson, a patent lawyer based in Northern California, recalled during a recent phone call. Specifically, he developed an interest in timepieces that had been issued to members of the French Navy, also known as Marine Nationale watches. The hunt led him to eBay, various online watch forums and what he described as “French Craigslist-type things.” Eventually, Mr. Heileson landed on a little-known brand called Z.R.C., for Zuccolo Rochet & Cie, a Swiss watch firm founded in 1904 that, like many of its peers, fell on hard times in the 1970s when the advent of cheap Japanese quartz technology put 60,000 mechanical watchmakers in Switzerland out of work. Swiss watch history is littered with great brands that did not survive, or barely survived, the 20th century. “Some didn’t read the signs about changing times,” Aurel Bacs, the Geneva-based auctioneer who heads Phillips’s watch department, said on a recent video call. “Some were bought up and crashed. Some struggled with competition from Asia.”\n", + " Like millions of people before and after him, he gravitated to Rolex, deciding he wanted an Explorer 1016 model from 1977, the year he was born. The watch proved elusive, but the search ignited a passion for wristwatches that Mr. Heileson hadn’t realized he had.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Very quickly, I went down this rabbit hole of military watches,” Mr. Heileson, a patent lawyer based in Northern California, recalled during a recent phone call.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Specifically, he developed an interest in timepieces that had been issued to members of the French Navy, also known as Marine Nationale watches. The hunt led him to eBay, various online watch forums and what he described as “French Craigslist-type things.” Eventually, Mr. Heileson landed on a little-known brand called Z.R.C., for Zuccolo Rochet & Cie, a Swiss watch firm founded in 1904 that, like many of its peers, fell on hard times in the 1970s when the advent of cheap Japanese quartz technology put 60,000 mechanical watchmakers in Switzerland out of work.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Swiss watch history is littered with great brands that did not survive, or barely survived, the 20th century. “Some didn’t read the signs about changing times,” Aurel Bacs, the Geneva-based auctioneer who heads Phillips’s watch department, said on a recent video call. “Some were bought up and crashed. Some struggled with competition from Asia.”\n", " Evidence\n", "\n", "\n", @@ -30840,7 +41872,37 @@ "\n", "\n", "\n", - " A short list of members might include Eterna, an early leader in manufacturing automatic movements; Mathey-Tissot, a chronograph specialist founded in 1886 in the Swiss Jura region; Enicar, a 20th-century maker of rugged sport watches famed for its Sherpa series; and Universal Genève, the brand whose Polerouter model gave the celebrated designer Gerald Genta his start. “There’s a certain nostalgia for these brands because they don’t exist anymore,” Mr. Rohr said. (He, too, is a fan: In 2020, Massena LAB introduced a chronograph called the Uni-Racer, an homage to the Uni-Compax “Big Eye” model made by Universal Genève in the mid-1960s.) Cameron Barr, founder and chief executive of Craft & Tailored, a vintage watch dealer in Los Angeles, said the “bump in interest” in some long-forgotten makers was a reflection of their timeless designs as well as their accessibility, both in terms of pricing and availability. As an example, he referred to the Swiss brand Nivada Grenchen: “They possess that classic late ’60s-’70s sport watch design that’s evergreen,” Mr. Barr said. “Most of these watches sit between $3,500 and $6,500, depending on movement. They’re not cheap, but they’re also not $25,000. You can have fun with it, not be so serious.” Now, partly owing to their popularity on Instagram, some vintage models from obscure brands have the potential to “catch fire and spike in value, like a lesser stock on Nasdaq,” said Eric Wind, a vintage watch dealer based in Palm Beach, Fla. “With Universal Genève, there were watches that were trading for $3,800, but three years later were trading for $40,000,” he added. Even Z.R.C., the little-known brand that Mr. Heileson began to collect, has seen its vintage watches rise in value: For example, a Z.R.C. Securicode model from the early 1960s that likely retailed for less than $100 sold for a total of 35,750 euros ($40,575), including fees, at an online auction in November 2020.\n", + " A short list of members might include Eterna, an early leader in manufacturing automatic movements; Mathey-Tissot, a chronograph specialist founded in 1886 in the Swiss Jura region; Enicar, a 20th-century maker of rugged sport watches famed for its Sherpa series; and Universal Genève, the brand whose Polerouter model gave the celebrated designer Gerald Genta his start.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “There’s a certain nostalgia for these brands because they don’t exist anymore,” Mr. Rohr said. (He, too, is a fan: In 2020, Massena LAB introduced a chronograph called the Uni-Racer, an homage to the Uni-Compax “Big Eye” model made by Universal Genève in the mid-1960s.)\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Cameron Barr, founder and chief executive of Craft & Tailored, a vintage watch dealer in Los Angeles, said the “bump in interest” in some long-forgotten makers was a reflection of their timeless designs as well as their accessibility, both in terms of pricing and availability.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " As an example, he referred to the Swiss brand Nivada Grenchen: “They possess that classic late ’60s-’70s sport watch design that’s evergreen,” Mr. Barr said. “Most of these watches sit between $3,500 and $6,500, depending on movement. They’re not cheap, but they’re also not $25,000. You can have fun with it, not be so serious.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Now, partly owing to their popularity on Instagram, some vintage models from obscure brands have the potential to “catch fire and spike in value, like a lesser stock on Nasdaq,” said Eric Wind, a vintage watch dealer based in Palm Beach, Fla.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “With Universal Genève, there were watches that were trading for $3,800, but three years later were trading for $40,000,” he added.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Even Z.R.C., the little-known brand that Mr. Heileson began to collect, has seen its vintage watches rise in value: For example, a Z.R.C. Securicode model from the early 1960s that likely retailed for less than $100 sold for a total of 35,750 euros ($40,575), including fees, at an online auction in November 2020.\n", " Evidence\n", "\n", "\n", @@ -30850,7 +41912,22 @@ "\n", "\n", "\n", - " If brands were using the same movements, why did some makers triumph and others collapse? Nicholas Manousos, executive director of the Horological Society of New York, said it “boils down to fashion and marketing.” “Every mechanical watch has a barrel, a gear train that you wind up, an escapement, a balance wheel and, on the dial, some hands to tell the time,” Mr. Manousos said. “On top of that, you have to tell some sort of marketing story so that people want to buy it.” Another reason some brands stumbled, said Nathalie Wheldon, owner of Hovigs Supply House, a Los Angeles-based supplier of watch components, has to do with the way they positioned themselves in the years just before quartz watches began flooding the market. “Brands that focused on watches for the masses were the ones that got eaten up the most — because that’s what quartz did, it made owning a watch much more democratic,” she said.\n", + " If brands were using the same movements, why did some makers triumph and others collapse? Nicholas Manousos, executive director of the Horological Society of New York, said it “boils down to fashion and marketing.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Every mechanical watch has a barrel, a gear train that you wind up, an escapement, a balance wheel and, on the dial, some hands to tell the time,” Mr. Manousos said. “On top of that, you have to tell some sort of marketing story so that people want to buy it.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Another reason some brands stumbled, said Nathalie Wheldon, owner of Hovigs Supply House, a Los Angeles-based supplier of watch components, has to do with the way they positioned themselves in the years just before quartz watches began flooding the market.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Brands that focused on watches for the masses were the ones that got eaten up the most — because that’s what quartz did, it made owning a watch much more democratic,” she said.\n", " Evidence\n", "\n", "\n", @@ -30860,44 +41937,94 @@ "\n", "\n", "\n", - " Guillaume Laidet is chief among them. The Paris-based entrepreneur is working with three brands on ambitious comeback efforts. In 2018, he teamed with the Hong Kong-based Montrichard Group to acquire the rights to the Nivada Grenchen logo and name from a Mexican company, Grupo Industrial Omega SA de CV. Two years later, he and his partners at the French-owned Korius Group bought the Swiss movement maker Excelsior Park from the retailer Tourneau. And in November, he began consulting with the Promobe group in Luxembourg to oversee the rebirth of Vulcain, whose Cricket alarm watch earned the nickname “The President’s Watch” because many American presidents have owned one. Mr. Laidet said he wanted to produce affordable modern collections for each label, centered on unabashed re-creations of their best sellers. “It’s easier to take a brand that already has a cool history than to create your own brand,” he said on a recent phone call. (Indeed, Mr. Laidet’s title at Nivada Grenchen is “co-refounder” and chief brand officer.)\n", + " Guillaume Laidet is chief among them. The Paris-based entrepreneur is working with three brands on ambitious comeback efforts. In 2018, he teamed with the Hong Kong-based Montrichard Group to acquire the rights to the Nivada Grenchen logo and name from a Mexican company, Grupo Industrial Omega SA de CV.\n", " Evidence\n", "\n", "\n", - "\n", - " “A lot of brands just need a refresh and to be aligned with the market,” he added.\n", - " Claim\n", + "\n", + " Two years later, he and his partners at the French-owned Korius Group bought the Swiss movement maker Excelsior Park from the retailer Tourneau. And in November, he began consulting with the Promobe group in Luxembourg to oversee the rebirth of Vulcain, whose Cricket alarm watch earned the nickname “The President’s Watch” because many American presidents have owned one.\n", + " Evidence\n", "\n", "\n", "\n", - " By that Mr. Laidet meant the watches must be priced just right, a delicate balance of costs, profit and demand: He said that was in the $750 to $2,500 range for Nivada Grenchen, around $2,275 for Excelsior Park, and as much as $6,800 for Vulcain To meet those price points, he is relying on off-the-shelf manual-wind chronograph movements from Sellita, a supplier based in La Chaux-de-Fonds, Switzerland. “I would love to bring back the EP40 chronograph caliber from Excelsior Park, but I would need a pot of cash and it wouldn’t work as well as the Sellita,” he said. Mr. Laidet’s approach is hardly novel. In the 1980s, on the eve of the mechanical watchmaking renaissance, marketers such as Jean-Claude Biver — the former Omega salesman who acquired the rights to the brand name Blancpain for about $16,000 in 1981 and sold the brand to the Swatch Group in 1992 for $43 million — proved that there was money to be made in reviving dead brands. The rebirth of Panerai in the late 1990s and its subsequent acquisition by Compagnie Financière Richemont in 1997 confirmed the wisdom of such a strategy. Once an obscure maker of timepieces for elite divers in the Italian navy, the Florence, Italy-based brand was resurrected in 1995, when Sylvester Stallone, in Rome to shoot a film, discovered its Luminor model. He commissioned a limited edition with his signature, generating publicity that vaulted the brand into the horological spotlight. “They made a few watches in the ’60s, some in the ’70s and then they more or less said goodbye until somebody said, ‘Hey, that’s a great name,’” Mr. Bacs said. “At the time they revived it, I don’t think they thought it would be such a big thing one day.” Yet for every success story like Blancpain or Panerai, there are scores of brands languishing in horological purgatory. Some once-celebrated makers, including the Swiss brand Cortébert, went bankrupt during the quartz crisis and lost the rights to their names, which now are used to peddle cheap quartz styles. Others were acquired by Chinese companies (in Eterna’s case, by Citychamp Watch & Jewellery Group of Hong Kong, which, in 2013, also acquired Corum, another Swiss maker) and continue to make watches, but have failed to recapture their past glory. Some of the greatest American watchmakers of the past 150 years have had similar experiences. Companies such as Elgin, Gruen and Waltham have been acquired, restarted and traded, but now are not much more than brand names awaiting a savvy marketer or cash-rich opportunist to resuscitate them.\n", + " Mr. Laidet said he wanted to produce affordable modern collections for each label, centered on unabashed re-creations of their best sellers. “It’s easier to take a brand that already has a cool history than to create your own brand,” he said on a recent phone call. (Indeed, Mr. Laidet’s title at Nivada Grenchen is “co-refounder” and chief brand officer.)\n", " Evidence\n", "\n", "\n", "\n", - " Of all the great 20th century brands that lost their way, however, there is one (you may have a good guess by now) whose fate continues to torment vintage watch lovers.\n", + " “A lot of brands just need a refresh and to be aligned with the market,” he added.\n", " Claim\n", "\n", "\n", "\n", - " “Universal Genève is the one that breaks my heart,” Ms. Wheldon wrote in an email following her phone interview. “Its historical ties to Hermès, Patek Philippe (through Henri Stern) and Gerald Genta are all reasons to love this brand.” Mr. Laidet said he tried last summer, and failed, to acquire the rights to Universal Genève, which was purchased in 1989 by Stelux, a Hong Kong-based investment group. It tried to revive the brand about two decades ago, and has done very little with it since.\n", + " By that Mr. Laidet meant the watches must be priced just right, a delicate balance of costs, profit and demand: He said that was in the $750 to $2,500 range for Nivada Grenchen, around $2,275 for Excelsior Park, and as much as $6,800 for Vulcain\n", " Evidence\n", "\n", "\n", - "\n", - " But Mr. Laidet still hopes that, one day, he might be able to introduce a modern version of the Genta-designed Polerouter featuring elements, such as the micro-rotor, that have made it a darling of collectors.\n", - " Rebuttal\n", + "\n", + " To meet those price points, he is relying on off-the-shelf manual-wind chronograph movements from Sellita, a supplier based in La Chaux-de-Fonds, Switzerland. “I would love to bring back the EP40 chronograph caliber from Excelsior Park, but I would need a pot of cash and it wouldn’t work as well as the Sellita,” he said.\n", + " Evidence\n", "\n", "\n", - "\n", - " “Universal Genève would be the dream,” he said. “The unicorn.”\n", - " Claim\n", + "\n", + " Mr. Laidet’s approach is hardly novel. In the 1980s, on the eve of the mechanical watchmaking renaissance, marketers such as Jean-Claude Biver — the former Omega salesman who acquired the rights to the brand name Blancpain for about $16,000 in 1981 and sold the brand to the Swatch Group in 1992 for $43 million — proved that there was money to be made in reviving dead brands.\n", + " Evidence\n", "\n", - "" - ], - "text/plain": [ - "" - ] + "\n", + "\n", + " The rebirth of Panerai in the late 1990s and its subsequent acquisition by Compagnie Financière Richemont in 1997 confirmed the wisdom of such a strategy. Once an obscure maker of timepieces for elite divers in the Italian navy, the Florence, Italy-based brand was resurrected in 1995, when Sylvester Stallone, in Rome to shoot a film, discovered its Luminor model. He commissioned a limited edition with his signature, generating publicity that vaulted the brand into the horological spotlight.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “They made a few watches in the ’60s, some in the ’70s and then they more or less said goodbye until somebody said, ‘Hey, that’s a great name,’” Mr. Bacs said. “At the time they revived it, I don’t think they thought it would be such a big thing one day.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Yet for every success story like Blancpain or Panerai, there are scores of brands languishing in horological purgatory. Some once-celebrated makers, including the Swiss brand Cortébert, went bankrupt during the quartz crisis and lost the rights to their names, which now are used to peddle cheap quartz styles.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Others were acquired by Chinese companies (in Eterna’s case, by Citychamp Watch & Jewellery Group of Hong Kong, which, in 2013, also acquired Corum, another Swiss maker) and continue to make watches, but have failed to recapture their past glory.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Some of the greatest American watchmakers of the past 150 years have had similar experiences. Companies such as Elgin, Gruen and Waltham have been acquired, restarted and traded, but now are not much more than brand names awaiting a savvy marketer or cash-rich opportunist to resuscitate them.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Of all the great 20th century brands that lost their way, however, there is one (you may have a good guess by now) whose fate continues to torment vintage watch lovers.\n", + " Claim\n", + "\n", + "\n", + "\n", + " “Universal Genève is the one that breaks my heart,” Ms. Wheldon wrote in an email following her phone interview. “Its historical ties to Hermès, Patek Philippe (through Henri Stern) and Gerald Genta are all reasons to love this brand.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Mr. Laidet said he tried last summer, and failed, to acquire the rights to Universal Genève, which was purchased in 1989 by Stelux, a Hong Kong-based investment group. It tried to revive the brand about two decades ago, and has done very little with it since.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " But Mr. Laidet still hopes that, one day, he might be able to introduce a modern version of the Genta-designed Polerouter featuring elements, such as the micro-rotor, that have made it a darling of collectors.\n", + " Rebuttal\n", + "\n", + "\n", + "\n", + " “Universal Genève would be the dream,” he said. “The unicorn.”\n", + " Claim\n", + "\n", + "" + ], + "text/plain": [ + "" + ] }, "metadata": {}, "output_type": "display_data" @@ -30914,7 +42041,7 @@ { "data": { "text/html": [ - "

nytimes\\what-to-cook-this-weekend.txt

" + "

what-to-cook-this-weekend.txt

" ], "text/plain": [ "" @@ -30927,34 +42054,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-48ddc962f16c1452\n" + "Using custom data configuration default-48ddc962f16c1452\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-48ddc962f16c1452\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-48ddc962f16c1452\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" - ] - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "72e9314c35e949008e418ec0a9574c6d", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00\n", "\n", "\n", - " And if something goes sideways along the way, either with your cooking or our technology? Please write us: cookingcare@nytimes.com. Someone will get back to you. Or you can write to me: foodeditor@nytimes.com. I’m not the guy to resolve issues. I pass those requests along to our team. But if you’ve got a complaint or a kind word to spare, I read every letter sent. Now, it’s nothing to do with rice pudding or the excellence of preserved black fungus in chile oil, but I still think you ought to take some time this weekend to read Jessica Bennett’s spare and intriguing review of Imogen Crimp’s novel, “A Very Nice Girl,” in The Times. You may hit the bookstore or library after that.\n", + " And if something goes sideways along the way, either with your cooking or our technology? Please write us: cookingcare@nytimes.com. Someone will get back to you. Or you can write to me: foodeditor@nytimes.com. I’m not the guy to resolve issues. I pass those requests along to our team. But if you’ve got a complaint or a kind word to spare, I read every letter sent.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Now, it’s nothing to do with rice pudding or the excellence of preserved black fungus in chile oil, but I still think you ought to take some time this weekend to read Jessica Bennett’s spare and intriguing review of Imogen Crimp’s novel, “A Very Nice Girl,” in The Times. You may hit the bookstore or library after that.\n", " Evidence\n", "\n", "\n", @@ -31105,7 +42214,7 @@ { "data": { "text/html": [ - "

nytimes\\what-to-do-when-you-dont-want-to-run.txt

" + "

what-to-do-when-you-dont-want-to-run.txt

" ], "text/plain": [ "" @@ -31118,34 +42227,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-4566026c5d9136ca\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-4566026c5d9136ca\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-4566026c5d9136ca\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-4566026c5d9136ca\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "261eeb2b0b254c2cafef5012b5a54f1b", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00\n", "\n", "\n", - " On Wednesday, I put on my running gear, went to the bathroom, tucked my phone into my pocket. I was dressed and ready to go. And then, I sat on my bed, looked at my dog, and said “Annie, I would rather not.” I’m not feeling very motivated right now. My goal race is more than two months away, the weather where I live in New Jersey has been less than ideal, and all I see ahead are batches of miles to be run on the same roads I have been running on for most of my adult life. These dips happen, and there are things you can do if you’re in a running rut, whether your goal is to bust right out of it, or just pass the miles until the weather improves or the big race gets close enough to feel in reach. You may laugh, but I get a lot of emails and tweets from people who are struggling to run because of some stabbing pain, and want me to tell them what to do so running can be enjoyable again (go to a doctor GO TO A DOCTOR the answer is always go to a doctor). We’re used to this sport being mildly uncomfortable. If pain is stopping you from getting out the door, it’s the pain that’s the problem, not the running you’re not doing. Because life can be a drag. Family stress, work stress, too much travel, not enough sleep — all of these things can suck the luster out of your running. After I bonked on a long run a few weeks ago, I did this kind of self-check. It didn’t seem to be any of those. But I realized that even though my weekly mileage had increased, I hadn’t increased how much I was eating. (For more on the relationship between exercise and metabolism, here’s a report from Gretchen Reynolds on new research and my guide, How to Feed a Runner.) If you run the same route over and over again, run a different route — or run that route in the opposite direction. Run in the morning? Try running at night (properly lit up, please). I give props to anyone able to run on a treadmill for more than 20 minutes because treadmills make me want to drill holes into my eyeballs. If you’re bored there, hit buttons: Increase the incline, or add in a few doses of running at higher speeds. Or watch something different. When I ran on a treadmill more often, I’d often park myself in front of whatever TV was showing the Phillies game, or “The Price is Right,” depending on what time of day I was there. It helped. Having a destination in mind makes it not just about a run, but checking something off your to-do list. I’ve run to my P.O. box, dropped off/picked up books at a Little Free Library, left something for my mom on her porch. I even once picked up a piece of jewelry I’d had engraved. I think the woman in the full fur coat was surprised to see me in my running clothes next to her at the jewelry counter, but I got my miles in that day. My friend Hollie Sick, who runs the site FueledbyLOLZ, said she had also been feeling unmotivated, so we decided to run together once a week. Even though she’s much (much) faster than me in races, our easy training pace is about the same. We talk about just about everything, and before we know it, our hour run is done. I even introduced her to the joy of running to a Little Free Library. Running with someone else can take your mind off a task that, right now for both of us, seems pretty blah. If you don’t have a running friend who has your pace and schedule, check out your local running store to see if they have a group run. I usually join group runs when I travel to a place I don’t know well. I did this at RunnersWorld Tulsa on a night when their group run was also a scavenger hunt. I had a blast and got a memorable tour of a great city. I have said in this space many times before that you don’t need a ton of gear to run. However, I also realized last week that I had been switching between the same two pairs of running tights that, if you combined their ages, would be a high school sophomore. So I bought two new pairs. I’m not saying you can shop your way out of being unmotivated, but a new piece of gear falls under the same category as “do something different.” It doesn’t have to be something expensive either. It can be a new hat or headband, or nail polish that matches your running shoes. This is also a good time to look for deals as running stores start to clear out winter gear in anticipation of spring and summer running, or are pushing the last of last summer’s stock out the door. I bought two pairs of running shorts for $15 each this way. I’ll be taking them to Florida a week from today, on what I hope will be a magical, sunshine-filled trip to Walt Disney World. I will of course be running while there. Planning these vacation runs has been an opportunity to revisit Disney World’s “jogging” page, which features a photo of runners that is so old that clothing like theirs is now sold as retro gear at Urban Outfitters.\n", + " On Wednesday, I put on my running gear, went to the bathroom, tucked my phone into my pocket. I was dressed and ready to go.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " And then, I sat on my bed, looked at my dog, and said “Annie, I would rather not.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " I’m not feeling very motivated right now. My goal race is more than two months away, the weather where I live in New Jersey has been less than ideal, and all I see ahead are batches of miles to be run on the same roads I have been running on for most of my adult life.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " These dips happen, and there are things you can do if you’re in a running rut, whether your goal is to bust right out of it, or just pass the miles until the weather improves or the big race gets close enough to feel in reach.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " You may laugh, but I get a lot of emails and tweets from people who are struggling to run because of some stabbing pain, and want me to tell them what to do so running can be enjoyable again (go to a doctor GO TO A DOCTOR the answer is always go to a doctor). We’re used to this sport being mildly uncomfortable. If pain is stopping you from getting out the door, it’s the pain that’s the problem, not the running you’re not doing.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Because life can be a drag. Family stress, work stress, too much travel, not enough sleep — all of these things can suck the luster out of your running. After I bonked on a long run a few weeks ago, I did this kind of self-check. It didn’t seem to be any of those. But I realized that even though my weekly mileage had increased, I hadn’t increased how much I was eating. (For more on the relationship between exercise and metabolism, here’s a report from Gretchen Reynolds on new research and my guide, How to Feed a Runner.)\n", + " Evidence\n", + "\n", + "\n", + "\n", + " If you run the same route over and over again, run a different route — or run that route in the opposite direction. Run in the morning? Try running at night (properly lit up, please). I give props to anyone able to run on a treadmill for more than 20 minutes because treadmills make me want to drill holes into my eyeballs. If you’re bored there, hit buttons: Increase the incline, or add in a few doses of running at higher speeds. Or watch something different. When I ran on a treadmill more often, I’d often park myself in front of whatever TV was showing the Phillies game, or “The Price is Right,” depending on what time of day I was there. It helped.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Having a destination in mind makes it not just about a run, but checking something off your to-do list. I’ve run to my P.O. box, dropped off/picked up books at a Little Free Library, left something for my mom on her porch. I even once picked up a piece of jewelry I’d had engraved. I think the woman in the full fur coat was surprised to see me in my running clothes next to her at the jewelry counter, but I got my miles in that day.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " My friend Hollie Sick, who runs the site FueledbyLOLZ, said she had also been feeling unmotivated, so we decided to run together once a week. Even though she’s much (much) faster than me in races, our easy training pace is about the same. We talk about just about everything, and before we know it, our hour run is done. I even introduced her to the joy of running to a Little Free Library. Running with someone else can take your mind off a task that, right now for both of us, seems pretty blah. If you don’t have a running friend who has your pace and schedule, check out your local running store to see if they have a group run. I usually join group runs when I travel to a place I don’t know well. I did this at RunnersWorld Tulsa on a night when their group run was also a scavenger hunt. I had a blast and got a memorable tour of a great city.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " I have said in this space many times before that you don’t need a ton of gear to run. However, I also realized last week that I had been switching between the same two pairs of running tights that, if you combined their ages, would be a high school sophomore. So I bought two new pairs. I’m not saying you can shop your way out of being unmotivated, but a new piece of gear falls under the same category as “do something different.” It doesn’t have to be something expensive either. It can be a new hat or headband, or nail polish that matches your running shoes. This is also a good time to look for deals as running stores start to clear out winter gear in anticipation of spring and summer running, or are pushing the last of last summer’s stock out the door. I bought two pairs of running shorts for $15 each this way.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " I’ll be taking them to Florida a week from today, on what I hope will be a magical, sunshine-filled trip to Walt Disney World. I will of course be running while there. Planning these vacation runs has been an opportunity to revisit Disney World’s “jogging” page, which features a photo of runners that is so old that clothing like theirs is now sold as retro gear at Urban Outfitters.\n", " Evidence\n", "\n", "\n", @@ -31246,7 +42373,12 @@ "
\n", "\n", "\n", - " Run Well! — Jen\n", + " Run Well!\n", + " Claim\n", + "\n", + "\n", + "\n", + " — Jen\n", " Claim\n", "\n", "" @@ -31270,7 +42402,7 @@ { "data": { "text/html": [ - "

nytimes\\what-would-it-mean-to-end-the-covid-state-of-emergency.txt

" + "

what-would-it-mean-to-end-the-covid-state-of-emergency.txt

" ], "text/plain": [ "" @@ -31283,34 +42415,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-2fc4432e39b40ce1\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-2fc4432e39b40ce1\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-2fc4432e39b40ce1\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-2fc4432e39b40ce1\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "2e972150425d4bba86b6dc2a1dcf7467", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " This article is part of the Debatable newsletter. You can sign up here to receive it on Tuesdays and Thursdays. As the Omicron wave recedes from the United States, a new politics of pandemic resignation is setting in. Pundits on late-night television talk of being “done with Covid.” High-profile governors in big blue states — California, New York and New Jersey among them — are lifting indoor mask mandates. And according to a recent poll, 70 percent of Americans agree that “it’s time we accept that Covid is here to stay and we just need to get on with our lives.” And yet what exactly it would mean to “get on with our lives,” and how to do so, remains unclear. Covid case and hospitalization rates are declining almost everywhere in the country, but over 2,300 Americans are still dying every day, more than at any point of the pandemic except last winter. And while the public may want a return to normal, it also does not necessarily want an immediate end to coronavirus restrictions.\n", + " This article is part of the Debatable newsletter. You can sign up here to receive it on Tuesdays and Thursdays.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " As the Omicron wave recedes from the United States, a new politics of pandemic resignation is setting in. Pundits on late-night television talk of being “done with Covid.” High-profile governors in big blue states — California, New York and New Jersey among them — are lifting indoor mask mandates. And according to a recent poll, 70 percent of Americans agree that “it’s time we accept that Covid is here to stay and we just need to get on with our lives.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " And yet what exactly it would mean to “get on with our lives,” and how to do so, remains unclear. Covid case and hospitalization rates are declining almost everywhere in the country, but over 2,300 Americans are still dying every day, more than at any point of the pandemic except last winter. And while the public may want a return to normal, it also does not necessarily want an immediate end to coronavirus restrictions.\n", " Evidence\n", "\n", "\n", @@ -31445,7 +42618,22 @@ "\n", "\n", "\n", - " “The truth is that science doesn’t have an answer for what level of Covid-19 transmission is acceptable in schools before and after masks are removed or what level is acceptable in communities before and after vaccine verification,” Jay K. Varma writes for The Times. “Someone has to decide, and that decision will involve subjective assessments of the risks people will tolerate.” Compliance adds another complicating factor. As Michael Bang Petersen, a professor of political science who advises the Danish government on Covid policy, writes in The Times, “Within the set of legitimate strategies, the choice of strategy is often less important than whether or not people follow and support it.” With vaccines and high-quality masks now widely available, expert opinion about the wisdom of mask mandates is no longer as homogeneous as it once was. Leana Wen, for example, a professor at George Washington University’s Milken Institute School of Public Health, has argued that masks should be optional, not required, even at high rates of community transmission. Those concerned about contracting the virus or transmitting it to others would retain the option of one-way masking, which experts say can still confer good protection. If you are vaccinated, boosted, and wearing a well-fitted N95 or similar mask indoors, “your risk is extremely low,” Joseph Allen, a Covid and ventilation expert at Harvard, told The Atlantic. “I mean, there’s not much else in life that would have as low a risk as that.”\n", + " “The truth is that science doesn’t have an answer for what level of Covid-19 transmission is acceptable in schools before and after masks are removed or what level is acceptable in communities before and after vaccine verification,” Jay K. Varma writes for The Times. “Someone has to decide, and that decision will involve subjective assessments of the risks people will tolerate.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Compliance adds another complicating factor. As Michael Bang Petersen, a professor of political science who advises the Danish government on Covid policy, writes in The Times, “Within the set of legitimate strategies, the choice of strategy is often less important than whether or not people follow and support it.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " With vaccines and high-quality masks now widely available, expert opinion about the wisdom of mask mandates is no longer as homogeneous as it once was. Leana Wen, for example, a professor at George Washington University’s Milken Institute School of Public Health, has argued that masks should be optional, not required, even at high rates of community transmission.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Those concerned about contracting the virus or transmitting it to others would retain the option of one-way masking, which experts say can still confer good protection. If you are vaccinated, boosted, and wearing a well-fitted N95 or similar mask indoors, “your risk is extremely low,” Joseph Allen, a Covid and ventilation expert at Harvard, told The Atlantic. “I mean, there’s not much else in life that would have as low a risk as that.”\n", " Evidence\n", "\n", "\n", @@ -31475,13 +42663,23 @@ "\n", "\n", "\n", - " In recent months, more concerns have also been raised about the potential harms masking might inflict on childhood development. A new study out of Canada, for example, found that the deficit in face perception abilities with masks was more pronounced in children than in adults. “There is a possibility it could impair children’s ability to navigate through social interactions with their peers and teachers, and this could lead to issues forming important relationships,” Erez Freud, the study’s lead author, told The New York Post. In part for these reasons, the United States remains an outlier in recommending masks from the age of 2. The World Health Organization does not recommend masks for children under 5, while the European equivalent of the Centers for Disease Control and Prevention doesn’t recommend them for those under 12.\n", + " In recent months, more concerns have also been raised about the potential harms masking might inflict on childhood development. A new study out of Canada, for example, found that the deficit in face perception abilities with masks was more pronounced in children than in adults. “There is a possibility it could impair children’s ability to navigate through social interactions with their peers and teachers, and this could lead to issues forming important relationships,” Erez Freud, the study’s lead author, told The New York Post.\n", " Evidence\n", "\n", "\n", - "\n", - " Still, some parents find the idea of ending school mask mandates unfathomable in places where Covid continues to disrupt in-person schooling. “The substitute shortage is so bad that parents — and, in New Mexico, members of the National Guard — are being asked to fill in,” The Times columnist Michelle Goldberg wrote at the end of January. “This isn’t a problem that can be fixed with an attitude adjustment.” Some commentators have also pointed out that the evidence that masking harms children is at best inconclusive. “There are few long-term studies on masks and development because we’ve only been wearing them widely in the United States for two years or so (and some places never fully adopted them),” Melody Schreiber writes for The New Republic. “But it’s striking that, two years in, early fears about developmental issues from masks have still not materialized into delays.”\n", - " Counterclaim\n", + "\n", + " In part for these reasons, the United States remains an outlier in recommending masks from the age of 2. The World Health Organization does not recommend masks for children under 5, while the European equivalent of the Centers for Disease Control and Prevention doesn’t recommend them for those under 12.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Still, some parents find the idea of ending school mask mandates unfathomable in places where Covid continues to disrupt in-person schooling. “The substitute shortage is so bad that parents — and, in New Mexico, members of the National Guard — are being asked to fill in,” The Times columnist Michelle Goldberg wrote at the end of January. “This isn’t a problem that can be fixed with an attitude adjustment.”\n", + " Counterclaim\n", + "\n", + "\n", + "\n", + " Some commentators have also pointed out that the evidence that masking harms children is at best inconclusive. “There are few long-term studies on masks and development because we’ve only been wearing them widely in the United States for two years or so (and some places never fully adopted them),” Melody Schreiber writes for The New Republic. “But it’s striking that, two years in, early fears about developmental issues from masks have still not materialized into delays.”\n", + " Counterclaim\n", "\n", "\n", "\n", @@ -31495,7 +42693,12 @@ "\n", "\n", "\n", - " Of all the Covid prevention measures we have at our disposal, vaccines are far and away the most effective at reducing the risk of hospitalization and death. But the U.S. vaccination rate continues to trail that of dozens of other countries, with only 64 percent of the population having received two doses. The politics of changing that statistic have proved prohibitive. The Supreme Court has bound the Biden administration’s hands when it comes to federal vaccine mandates, and a sizable minority of Americans remain so opposed to a Covid vaccination that there is little chance of persuading them.\n", + " Of all the Covid prevention measures we have at our disposal, vaccines are far and away the most effective at reducing the risk of hospitalization and death. But the U.S. vaccination rate continues to trail that of dozens of other countries, with only 64 percent of the population having received two doses.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The politics of changing that statistic have proved prohibitive. The Supreme Court has bound the Biden administration’s hands when it comes to federal vaccine mandates, and a sizable minority of Americans remain so opposed to a Covid vaccination that there is little chance of persuading them.\n", " Evidence\n", "\n", "\n", @@ -31505,7 +42708,17 @@ "\n", "\n", "\n", - " As Sarah Zhang notes in The Atlantic, Covid hospitalizations and deaths are disproportionately concentrated in older populations, and 11 percent of Americans 65 and older still haven’t received a shot — a significantly larger share than in other countries. To change that, experts whom Zhang spoke to recommended that the agency that oversees Medicare provide more direct incentives for vaccination, like making vaccination and booster rates among patients a criterion for determining how much providers are reimbursed and how highly the quality of nursing homes are rated. As Elisabeth Rosenthal points out in The Times, the vaccination rates among children ages 5 to 11 are still alarmingly low. But there is a simple, time-tested way to rectify that: States could mandate vaccination against the coronavirus in schools, just as they already do for measles and chickenpox. And vaccinating the rest of the world is still a vital prevention measure against future waves, Gregg Gonsalves, a Yale epidemiologist and AIDS activist, argues in The Times. “Think of the home we’ve then made for viruses like SARS-CoV-2 by impeding access to vaccines and allowing millions to go without AIDS treatment even now,” he writes. “Variants can emerge from our desire to put it all behind us. No one is truly safe until we all are.”\n", + " As Sarah Zhang notes in The Atlantic, Covid hospitalizations and deaths are disproportionately concentrated in older populations, and 11 percent of Americans 65 and older still haven’t received a shot — a significantly larger share than in other countries. To change that, experts whom Zhang spoke to recommended that the agency that oversees Medicare provide more direct incentives for vaccination, like making vaccination and booster rates among patients a criterion for determining how much providers are reimbursed and how highly the quality of nursing homes are rated.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " As Elisabeth Rosenthal points out in The Times, the vaccination rates among children ages 5 to 11 are still alarmingly low. But there is a simple, time-tested way to rectify that: States could mandate vaccination against the coronavirus in schools, just as they already do for measles and chickenpox. \n", + " Evidence\n", + "\n", + "\n", + "\n", + " And vaccinating the rest of the world is still a vital prevention measure against future waves, Gregg Gonsalves, a Yale epidemiologist and AIDS activist, argues in The Times. “Think of the home we’ve then made for viruses like SARS-CoV-2 by impeding access to vaccines and allowing millions to go without AIDS treatment even now,” he writes. “Variants can emerge from our desire to put it all behind us. No one is truly safe until we all are.”\n", " Evidence\n", "\n", "\n", @@ -31515,7 +42728,22 @@ "\n", "\n", "\n", - " For the state of emergency to end for this vulnerable group, Dorry Segev and William Werbel argue in The Times that blanket restrictions on additional vaccine doses have to be lifted; production of pre-exposure monoclonal antibody treatments has to be scaled up; and, most important, pharmaceutical companies conducting clinical trials for Covid drugs need to include people with weakened immune systems. Immunocompromised people also deserve accommodations that make their lives easier, Ed Yong argues in The Atlantic, much as ramps, accessibility buttons and screen readers have made life easier for disabled people. No immunocompromised person he spoke to wanted a lockdown. What they did want, in addition to better medical treatments, was more work flexibility and better ways of controlling infectious diseases through ventilation standards, mask mandates for essential spaces such as grocery stores and pharmacies that can be tied to case rates, widespread availability of tests, paid sick leave and improved vaccination rates. Yong argues that these changes would benefit everyone in the long run, not just the immunocompromised. But there are selfish reasons for healthy people to support them too. For one thing, the coronavirus evolves rapidly in people with weakened immune systems, so protecting immunocompromised people could guard against future variants. And for another, even healthy people’s immune systems tend to weaken with age. “Everyone’s going to deal with illness at some point in their life,” Maggie Levantovskaya, a writer and literature professor who has lupus, told him. “Don’t you want a better world for yourself when that time comes?”\n", + " For the state of emergency to end for this vulnerable group, Dorry Segev and William Werbel argue in The Times that blanket restrictions on additional vaccine doses have to be lifted; production of pre-exposure monoclonal antibody treatments has to be scaled up; and, most important, pharmaceutical companies conducting clinical trials for Covid drugs need to include people with weakened immune systems.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Immunocompromised people also deserve accommodations that make their lives easier, Ed Yong argues in The Atlantic, much as ramps, accessibility buttons and screen readers have made life easier for disabled people. No immunocompromised person he spoke to wanted a lockdown. What they did want, in addition to better medical treatments, was more work flexibility and better ways of controlling infectious diseases through ventilation standards, mask mandates for essential spaces such as grocery stores and pharmacies that can be tied to case rates, widespread availability of tests, paid sick leave and improved vaccination rates.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Yong argues that these changes would benefit everyone in the long run, not just the immunocompromised. But there are selfish reasons for healthy people to support them too. For one thing, the coronavirus evolves rapidly in people with weakened immune systems, so protecting immunocompromised people could guard against future variants.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " And for another, even healthy people’s immune systems tend to weaken with age. “Everyone’s going to deal with illness at some point in their life,” Maggie Levantovskaya, a writer and literature professor who has lupus, told him. “Don’t you want a better world for yourself when that time comes?”\n", " Evidence\n", "\n", "\n", @@ -31525,7 +42753,27 @@ "\n", "\n", "\n", - " “Vulnerable to the Virus, High-Risk Americans Feel Pain as the U.S. Moves On” [The New York Times] “Post-Omicron Life Can Be Downright Maddening” [The Atlantic] “How to Reclaim Normal Life Without Being ‘Done’” [The Atlantic] “There Will Be No Post-Covid” [The New York Times] “The Covid Emergency Is Ending. Here’s What We Should Do Next.” [Politico]\n", + " “Vulnerable to the Virus, High-Risk Americans Feel Pain as the U.S. Moves On” [The New York Times]\n", + " Claim\n", + "\n", + "\n", + "\n", + " “Post-Omicron Life Can Be Downright Maddening” [The Atlantic]\n", + " Claim\n", + "\n", + "\n", + "\n", + " “How to Reclaim Normal Life Without Being ‘Done’” [The Atlantic]\n", + " Claim\n", + "\n", + "\n", + "\n", + " “There Will Be No Post-Covid” [The New York Times]\n", + " Claim\n", + "\n", + "\n", + "\n", + " “The Covid Emergency Is Ending. Here’s What We Should Do Next.” [Politico]\n", " Claim\n", "\n", "
" @@ -31549,7 +42797,7 @@ { "data": { "text/html": [ - "

nytimes\\women-stem-pandemic.txt

" + "

women-stem-pandemic.txt

" ], "text/plain": [ "" @@ -31562,34 +42810,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-53a513dbd618a502\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-53a513dbd618a502\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-53a513dbd618a502\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-53a513dbd618a502\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "c243dda63300422897e016dad357fcc6", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00\n", "\n", "\n", - " “That first month was really hard,” she recalled of the lockdown. Her infant daughter’s day care was closed, and her 5-year-old was at home instead of at school. With their nanny unable to come to the house, Dr. Stephens tended to her children all day and worked late into the evening. In the fall, when her daughter was set to begin kindergarten, the schools did not reopen. Things eased once the family could safely bring in a nanny, but there was still little time for the deep thought Dr. Stephens had relied on each morning for her work. Over time, she has adjusted her expectations of herself. “Maybe I’m at 80 percent as opposed to 100 percent, but I can get things done at 80 percent to some extent,” she said. “It’s not great, it’s not my best, but it’s enough for now.”\n", + " “That first month was really hard,” she recalled of the lockdown. Her infant daughter’s day care was closed, and her 5-year-old was at home instead of at school. With their nanny unable to come to the house, Dr. Stephens tended to her children all day and worked late into the evening. In the fall, when her daughter was set to begin kindergarten, the schools did not reopen.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Things eased once the family could safely bring in a nanny, but there was still little time for the deep thought Dr. Stephens had relied on each morning for her work. Over time, she has adjusted her expectations of herself.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Maybe I’m at 80 percent as opposed to 100 percent, but I can get things done at 80 percent to some extent,” she said. “It’s not great, it’s not my best, but it’s enough for now.”\n", " Evidence\n", "\n", "\n", @@ -31719,7 +42998,22 @@ "
\n", "\n", "\n", - " Add to that the emotional upheaval and stress of the pandemic, the protests over structural racism, worry about children’s mental health and education, and the lack of time to think or work, and an already unsustainable situation becomes unbearable. “The confluence of all of these factors creates this perfect storm. People are at their breaking point,” said Michelle Cardel, an obesity researcher at the University of Florida. “My big fear is that we are going to have a secondary epidemic of loss, particularly of early career women in STEM.” Female scientists were struggling even before the pandemic. It was not unusual for them to hear that women were not as smart as men, or that a woman who was successful must have received a handout along the way, said Daniela Witten, a biostatistician at the University of Washington in Seattle. Some things are changing, she said, but only with great effort, and at a glacial pace. The career ladder is particularly steep for mothers. Even during maternity leave, they are expected to keep up with lab work, teaching requirements, publications and mentoring of graduate students. When they return to work, most do not have affordable child care.\n", + " Add to that the emotional upheaval and stress of the pandemic, the protests over structural racism, worry about children’s mental health and education, and the lack of time to think or work, and an already unsustainable situation becomes unbearable.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “The confluence of all of these factors creates this perfect storm. People are at their breaking point,” said Michelle Cardel, an obesity researcher at the University of Florida. “My big fear is that we are going to have a secondary epidemic of loss, particularly of early career women in STEM.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Female scientists were struggling even before the pandemic. It was not unusual for them to hear that women were not as smart as men, or that a woman who was successful must have received a handout along the way, said Daniela Witten, a biostatistician at the University of Washington in Seattle. Some things are changing, she said, but only with great effort, and at a glacial pace.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The career ladder is particularly steep for mothers. Even during maternity leave, they are expected to keep up with lab work, teaching requirements, publications and mentoring of graduate students. When they return to work, most do not have affordable child care.\n", " Evidence\n", "\n", "\n", @@ -31729,7 +43023,17 @@ "
\n", "\n", "\n", - " The path is even rockier for scientists of color, like Dr. Stephens, who encounter other biases in the workplace — in everyday reactions, professional reviews or promotions — and now have to cope with the disproportionate impact of the pandemic on Black and Latino communities. Dr. Stephens said a close friend, also a Black scientist, had five family members who contracted Covid-19. The year has been a “pause” for everyone, Dr. Stephens added, and universities should find a way to help scientists when the pandemic ends — perhaps by adding an extra year to the time allotted to them to earn tenure.\n", + " The path is even rockier for scientists of color, like Dr. Stephens, who encounter other biases in the workplace — in everyday reactions, professional reviews or promotions — and now have to cope with the disproportionate impact of the pandemic on Black and Latino communities.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Dr. Stephens said a close friend, also a Black scientist, had five family members who contracted Covid-19.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The year has been a “pause” for everyone, Dr. Stephens added, and universities should find a way to help scientists when the pandemic ends — perhaps by adding an extra year to the time allotted to them to earn tenure.\n", " Evidence\n", "\n", "\n", @@ -31739,7 +43043,17 @@ "\n", "\n", "\n", - " “It’s sort of like if you’re drowning, and the university tells you, ‘Don’t worry if it takes you an extra year to get back to shore,’” Dr. Witten said. “It’s like, ‘Hey, that’s not helpful. I need a flotation device.’” Compounding the frustration are the outdated notions about how to help women in science. But social media has allowed women to share some of those concerns and find allies to organize and call out injustice when they see it, said Jessica Hamerman, an immunologist at the Benaroya Research Institute in Seattle. “People are just much less likely to sit quietly, and listen to biased statements that affect them.” In November, for example, a controversial study on female scientists was published in the influential journal Nature Communications, suggesting that having female mentors would hinder the career of young scientists and recommending that the young women instead seek out men to help them.\n", + " “It’s sort of like if you’re drowning, and the university tells you, ‘Don’t worry if it takes you an extra year to get back to shore,’” Dr. Witten said. “It’s like, ‘Hey, that’s not helpful. I need a flotation device.’”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Compounding the frustration are the outdated notions about how to help women in science. But social media has allowed women to share some of those concerns and find allies to organize and call out injustice when they see it, said Jessica Hamerman, an immunologist at the Benaroya Research Institute in Seattle. “People are just much less likely to sit quietly, and listen to biased statements that affect them.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " In November, for example, a controversial study on female scientists was published in the influential journal Nature Communications, suggesting that having female mentors would hinder the career of young scientists and recommending that the young women instead seek out men to help them.\n", " Evidence\n", "\n", "\n", @@ -31759,12 +43073,22 @@ "\n", "\n", "\n", - " Nearly 7,600 scientists signed a petition calling on the journal to retract the paper — which it did on Dec. 21. The study arrived at a time when many female scientists were already worried about the pandemic’s effect on their careers, and already on edge and angry with a system that offered them little support.\n", + " Nearly 7,600 scientists signed a petition calling on the journal to retract the paper — which it did on Dec. 21.\n", + " Claim\n", + "\n", + "\n", + "\n", + " The study arrived at a time when many female scientists were already worried about the pandemic’s effect on their careers, and already on edge and angry with a system that offered them little support.\n", " Claim\n", "\n", "\n", "\n", - " “It’s been an incredibly difficult time to be a woman in science,” said Leslie Vosshall, a neuroscientist at Rockefeller University in New York. “We’re already on the ground, we’re already on our knees — and then the paper just comes and kicks us to say: ‘We have the solution, let’s move the graduate students to a senior man.’” Some people on Twitter suggested that the Nature Communications paper had been retracted because a “feminist mob” had demanded it, but in fact the paper was “a dumpster fire of data,” Dr. Vosshall said.\n", + " “It’s been an incredibly difficult time to be a woman in science,” said Leslie Vosshall, a neuroscientist at Rockefeller University in New York. “We’re already on the ground, we’re already on our knees — and then the paper just comes and kicks us to say: ‘We have the solution, let’s move the graduate students to a senior man.’”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Some people on Twitter suggested that the Nature Communications paper had been retracted because a “feminist mob” had demanded it, but in fact the paper was “a dumpster fire of data,” Dr. Vosshall said.\n", " Evidence\n", "\n", "\n", @@ -31784,7 +43108,27 @@ "\n", "\n", "\n", - " A couple of years ago, Rockefeller University invited the news anchor Rachel Maddow to present a prestigious prize. On her way into the auditorium, Ms. Maddow pointed to a wall adorned with pictures of Lasker Award and Nobel Prize winners — all male — affiliated with the university. At least four women at the university had also won prestigious prizes, but their photographs were not on display. “What’s up with the dude wall?” Ms. Maddow asked. And Dr. Vosshall, who had walked past the wall a thousand times, suddenly saw it differently. She realized it sent the wrong message, overtly or not, to all the high school, undergraduate and graduate students who routinely walked past it. “Once you notice a dude wall, you see them everywhere,” she said. “They’re in every auditorium, every hallway, every departmental office, every conference room.” Rockefeller University eventually agreed to replace the display with one that is more representative of the institution’s history. The pictures were taken down on Nov. 11, Dr. Vosshall announced on Twitter, and will be replaced by a more inclusive set. Departments at Yale University and Brigham and Women’s Hospital in Boston have also reconsidered their dude walls, Dr. Vosshall said. “There are some traditions that should not be perpetuated.”\n", + " A couple of years ago, Rockefeller University invited the news anchor Rachel Maddow to present a prestigious prize. On her way into the auditorium, Ms. Maddow pointed to a wall adorned with pictures of Lasker Award and Nobel Prize winners — all male — affiliated with the university. At least four women at the university had also won prestigious prizes, but their photographs were not on display.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “What’s up with the dude wall?” Ms. Maddow asked. And Dr. Vosshall, who had walked past the wall a thousand times, suddenly saw it differently. She realized it sent the wrong message, overtly or not, to all the high school, undergraduate and graduate students who routinely walked past it.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “Once you notice a dude wall, you see them everywhere,” she said. “They’re in every auditorium, every hallway, every departmental office, every conference room.”\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Rockefeller University eventually agreed to replace the display with one that is more representative of the institution’s history. The pictures were taken down on Nov. 11, Dr. Vosshall announced on Twitter, and will be replaced by a more inclusive set.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Departments at Yale University and Brigham and Women’s Hospital in Boston have also reconsidered their dude walls, Dr. Vosshall said. “There are some traditions that should not be perpetuated.”\n", " Evidence\n", "\n", "" @@ -31808,7 +43152,7 @@ { "data": { "text/html": [ - "

nytimes\\yosemite-falls.txt

" + "

yosemite-falls.txt

" ], "text/plain": [ "" @@ -31821,34 +43165,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "Using custom data configuration default-8f4806c7926efb6b\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-8f4806c7926efb6b\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + "Using custom data configuration default-8f4806c7926efb6b\n", + "Reusing dataset text (C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-8f4806c7926efb6b\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "9d113cd7377844309fd77649b2dd3bdf", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/1 [00:00
\n", "\n", - " The remnants of two storm systems that converged in drought-stricken California this week helped pump new life into one of Yosemite National Park’s most popular attractions: Yosemite Falls. “We had quite a storm,” the park said in an Instagram post on Tuesday, after more than six inches of rain fell over a 36-hour period. The park encompasses more than 747,000 acres along the central western slopes of the Sierra Nevada mountain range in east-central California. Although the park said it did not have direct measurements, it said that “sensors suggest a few feet of snow fell at the higher elevations,” and that the snow level for much of the storm “was high,” which caused rivers and creeks “to rise substantially.” The Merced River at the Pohono Bridge rose 8.5 feet, the park said, noting it was 1.5 feet below flood stage. At 2,425 feet high, Yosemite Falls is the tallest waterfall in North America. Its peak flow usually occurs in May, after most of the park’s snow melts, but by August it often slows to a trickle or is completely dry. Storms in the late fall can help restore the falls. Video showed the nearly dry falls on Saturday, followed by a gushing flow of water by Tuesday. “It was great to see so much water back in the not only Yosemite Falls, but our region’s rivers and streams too,” said Tony McDaniel, a spokesman for the Yosemite Mariposa County Tourism Bureau. He said the falls look like how they would in the spring. “The rain was very welcomed, and to see Yosemite not only bursting with fall colors, but also rushing water again, is a beautiful sight to see, and I think everyone in the region is happy for it,” he said. The rainfall was the result of two storms that converged in the Bay Area, bringing floods, high winds and some much-needed rain to California, which has wrestled with large wildfires and severe drought conditions that have been brought on by climate change. “It’s a rare event,” Brian Ochs, a meteorologist with the National Weather Service in Hanford, Calif., said of the heavy rainfall. “It’s not just in October or anytime during the year.”\n", + " The remnants of two storm systems that converged in drought-stricken California this week helped pump new life into one of Yosemite National Park’s most popular attractions: Yosemite Falls.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “We had quite a storm,” the park said in an Instagram post on Tuesday, after more than six inches of rain fell over a 36-hour period. The park encompasses more than 747,000 acres along the central western slopes of the Sierra Nevada mountain range in east-central California.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Although the park said it did not have direct measurements, it said that “sensors suggest a few feet of snow fell at the higher elevations,” and that the snow level for much of the storm “was high,” which caused rivers and creeks “to rise substantially.” The Merced River at the Pohono Bridge rose 8.5 feet, the park said, noting it was 1.5 feet below flood stage.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " At 2,425 feet high, Yosemite Falls is the tallest waterfall in North America. Its peak flow usually occurs in May, after most of the park’s snow melts, but by August it often slows to a trickle or is completely dry. Storms in the late fall can help restore the falls.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Video showed the nearly dry falls on Saturday, followed by a gushing flow of water by Tuesday.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “It was great to see so much water back in the not only Yosemite Falls, but our region’s rivers and streams too,” said Tony McDaniel, a spokesman for the Yosemite Mariposa County Tourism Bureau. He said the falls look like how they would in the spring. “The rain was very welcomed, and to see Yosemite not only bursting with fall colors, but also rushing water again, is a beautiful sight to see, and I think everyone in the region is happy for it,” he said.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " The rainfall was the result of two storms that converged in the Bay Area, bringing floods, high winds and some much-needed rain to California, which has wrestled with large wildfires and severe drought conditions that have been brought on by climate change.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " “It’s a rare event,” Brian Ochs, a meteorologist with the National Weather Service in Hanford, Calif., said of the heavy rainfall. “It’s not just in October or anytime during the year.”\n", " Evidence\n", "\n", "\n", "\n", - " He said part of the reason for the replenished flow was the parched soil from the past few months. “The dry soil may have been less likely to absorb the water,” he said.\n", + " He said part of the reason for the replenished flow was the parched soil from the past few months.\n", + " Claim\n", + "\n", + "\n", + "\n", + " “The dry soil may have been less likely to absorb the water,” he said.\n", " Claim\n", "\n", "\n", @@ -31952,7 +43307,17 @@ "\n", "\n", "\n", - " We did ask for rain We begged and pleaded for it And boy did it come\n", + " We did ask for rain\n", + " Claim\n", + "\n", + "\n", + "\n", + " We begged and pleaded for it\n", + " Claim\n", + "\n", + "\n", + "\n", + " And boy did it come\n", " Claim\n", "\n", "\n", @@ -31995,18 +43360,960 @@ } ], "source": [ + "dfs = []\n", + "\n", "for filename in glob(\"datagen/nytimes/*.txt\"):\n", " try:\n", - " display(HTML(\"

\"+filename.split(\"/\")[-1]+\"

\"))\n", + " name = filename.split(\"/\")[-1].split(\"\\\\\")[-1]\n", + " display(HTML(\"

\"+name+\"

\"))\n", " articles_dataset = load_dataset(\"text\", data_files={\"valid\":[filename]})['valid'].filter(lambda example: example['text'])\n", " lst = []\n", " for i, out in enumerate(tqdm(pipe(KeyDataset(articles_dataset, \"text\")))):\n", " print(articles_dataset[i]['text'], out)\n", " lst.append((articles_dataset[i]['text'], out))\n", "\n", - " displayAnnots(lst)\n", + " df = displayAnnots(lst)\n", + " df[\"source\"] = name\n", + " dfs.append(df)\n", " except UnicodeDecodeError: print(\"UnicodeDecodeError\")" ] + }, + { + "cell_type": "code", + "execution_count": 18, + "id": "e57b7509", + "metadata": { + "ExecuteTime": { + "end_time": "2022-02-21T07:36:15.007903Z", + "start_time": "2022-02-21T07:36:14.942212Z" + } + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
textlabelscorestartendsource
0In 2019 a wave of anti-abortion laws swept thi...Evidence0.9837200528abortion-florida-15-week-ban
1Though most of these laws were quickly blocked...Evidence0.934319528908abortion-florida-15-week-ban
2Three years later, American reproductive right...Evidence0.6223589081214abortion-florida-15-week-ban
3It might seem curious, then, that legislators ...Evidence0.94686612141722abortion-florida-15-week-ban
4One of this year’s unmistakable trends in anti...Evidence0.99186917222394abortion-florida-15-week-ban
.....................
3893And boy did it comeClaim0.98292825542573yosemite-falls
3894But the record rains will not end California’s...Rebuttal0.88037725732636yosemite-falls
3895Last week, Gov. Gavin Newsom extended the stat...Claim0.54148126362769yosemite-falls
3896This has been California’s second driest year ...Evidence0.47904927692925yosemite-falls
3897Severe drought conditions, worsened by climate...Claim0.47842429253080yosemite-falls
\n", + "

3898 rows × 6 columns

\n", + "
" + ], + "text/plain": [ + " text label score \\\n", + "0 In 2019 a wave of anti-abortion laws swept thi... Evidence 0.983720 \n", + "1 Though most of these laws were quickly blocked... Evidence 0.934319 \n", + "2 Three years later, American reproductive right... Evidence 0.622358 \n", + "3 It might seem curious, then, that legislators ... Evidence 0.946866 \n", + "4 One of this year’s unmistakable trends in anti... Evidence 0.991869 \n", + "... ... ... ... \n", + "3893 And boy did it come Claim 0.982928 \n", + "3894 But the record rains will not end California’s... Rebuttal 0.880377 \n", + "3895 Last week, Gov. Gavin Newsom extended the stat... Claim 0.541481 \n", + "3896 This has been California’s second driest year ... Evidence 0.479049 \n", + "3897 Severe drought conditions, worsened by climate... Claim 0.478424 \n", + "\n", + " start end source \n", + "0 0 528 abortion-florida-15-week-ban \n", + "1 528 908 abortion-florida-15-week-ban \n", + "2 908 1214 abortion-florida-15-week-ban \n", + "3 1214 1722 abortion-florida-15-week-ban \n", + "4 1722 2394 abortion-florida-15-week-ban \n", + "... ... ... ... \n", + "3893 2554 2573 yosemite-falls \n", + "3894 2573 2636 yosemite-falls \n", + "3895 2636 2769 yosemite-falls \n", + "3896 2769 2925 yosemite-falls \n", + "3897 2925 3080 yosemite-falls \n", + "\n", + "[3898 rows x 6 columns]" + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df = pd.concat(dfs, ignore_index=True)\n", + "df.source = df.source.str.split(\".\").str.get(0)\n", + "df" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "id": "db115ff1", + "metadata": { + "ExecuteTime": { + "end_time": "2022-02-21T07:39:19.613148Z", + "start_time": "2022-02-21T07:39:19.529979Z" + } + }, + "outputs": [], + "source": [ + "df.to_csv(\"datagen/nytimes/pseudo.csv\", index=False)" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "id": "6ca5574e", + "metadata": { + "ExecuteTime": { + "end_time": "2022-03-01T01:14:46.225360Z", + "start_time": "2022-03-01T01:14:46.180322Z" + } + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
textlabelscorestartendsource
0In 2019 a wave of anti-abortion laws swept thi...Evidence0.9837200528abortion-florida-15-week-ban
1Though most of these laws were quickly blocked...Evidence0.934319528908abortion-florida-15-week-ban
2Three years later, American reproductive right...Evidence0.6223589081214abortion-florida-15-week-ban
3It might seem curious, then, that legislators ...Evidence0.94686612141722abortion-florida-15-week-ban
4One of this year’s unmistakable trends in anti...Evidence0.99186917222394abortion-florida-15-week-ban
.....................
3893And boy did it comeClaim0.98292825542573yosemite-falls
3894But the record rains will not end California’s...Rebuttal0.88037725732636yosemite-falls
3895Last week, Gov. Gavin Newsom extended the stat...Claim0.54148126362769yosemite-falls
3896This has been California’s second driest year ...Evidence0.47904927692925yosemite-falls
3897Severe drought conditions, worsened by climate...Claim0.47842429253080yosemite-falls
\n", + "

3898 rows × 6 columns

\n", + "
" + ], + "text/plain": [ + " text label score \\\n", + "0 In 2019 a wave of anti-abortion laws swept thi... Evidence 0.983720 \n", + "1 Though most of these laws were quickly blocked... Evidence 0.934319 \n", + "2 Three years later, American reproductive right... Evidence 0.622358 \n", + "3 It might seem curious, then, that legislators ... Evidence 0.946866 \n", + "4 One of this year’s unmistakable trends in anti... Evidence 0.991869 \n", + "... ... ... ... \n", + "3893 And boy did it come Claim 0.982928 \n", + "3894 But the record rains will not end California’s... Rebuttal 0.880377 \n", + "3895 Last week, Gov. Gavin Newsom extended the stat... Claim 0.541481 \n", + "3896 This has been California’s second driest year ... Evidence 0.479049 \n", + "3897 Severe drought conditions, worsened by climate... Claim 0.478424 \n", + "\n", + " start end source \n", + "0 0 528 abortion-florida-15-week-ban \n", + "1 528 908 abortion-florida-15-week-ban \n", + "2 908 1214 abortion-florida-15-week-ban \n", + "3 1214 1722 abortion-florida-15-week-ban \n", + "4 1722 2394 abortion-florida-15-week-ban \n", + "... ... ... ... \n", + "3893 2554 2573 yosemite-falls \n", + "3894 2573 2636 yosemite-falls \n", + "3895 2636 2769 yosemite-falls \n", + "3896 2769 2925 yosemite-falls \n", + "3897 2925 3080 yosemite-falls \n", + "\n", + "[3898 rows x 6 columns]" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df = pd.read_csv(\"datagen/nytimes/pseudo.csv\")\n", + "df" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "id": "4550c257", + "metadata": { + "ExecuteTime": { + "end_time": "2022-03-01T01:14:48.800665Z", + "start_time": "2022-03-01T01:14:48.795665Z" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + "'In 2019 a wave of anti-abortion laws swept this country — a common enough event in the United States, where hundreds of such laws have passed during the last decade. But these grabbed the public’s attention in a way many others hadn’t. Georgia banned abortion after about six weeks of pregnancy, or about two weeks after a missed menstrual period. Ohio, Mississippi, Louisiana and Kentucky did the same, while Missouri banned the procedure at eight weeks. Alabama went the furthest, banning virtually all abortions in the state.'" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.text[0]" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "id": "30565497", + "metadata": { + "ExecuteTime": { + "end_time": "2022-03-01T01:14:50.439969Z", + "start_time": "2022-03-01T01:14:50.405713Z" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + "source\n", + "ukraine-russia-us-troops 0.531266\n", + "uc-berkeley-admissions-court-ruling 0.585473\n", + "apple-face-computers 0.597108\n", + "smartphones-iphone-android 0.612055\n", + "ezra-klein-podcast-alex-tabarrok 0.622424\n", + " ... \n", + "babies-work-meeting 0.931796\n", + "oddity-ceramics-surrealism-art 0.939738\n", + "flight-attendants-covid 0.944585\n", + "rokia-kone-jacknife-lee-bamanan-review 0.944797\n", + "wall-street-hotel 0.966689\n", + "Name: score, Length: 159, dtype: float64" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.groupby(\"source\").score.mean().sort_values()" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "id": "073928a2", + "metadata": { + "ExecuteTime": { + "end_time": "2022-03-01T01:14:52.214938Z", + "start_time": "2022-03-01T01:14:52.194974Z" + }, + "scrolled": false + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + " In the last 48 hours, President Vladimir V. Putin of Russia and his officials say they have ordered back a good number of troops who were engaged in military exercises on the border with Ukraine. But there hasn’t been a lot of change on the ground.\n", + " Evidence\n", + "\n", + "\n", + "\n", + " Since the beginning of the standoff, President Biden has been clear that he will not allow American troops to come into direct combat with Russians.\n", + " Claim\n", + "\n", + "\n", + "\n", + " Why has the U.S., a country that has intervened all over the world in various contexts, taken that powerful option off the table?\n", + " Claim\n", + "\n", + "\n", + "\n", + " David E. Sanger, a White House and national security correspondent for The New York Times.\n", + " Claim\n", + "\n", + "\n", + "\n", + " While recent Russian rhetoric has stoked hopes of a diplomatic solution, U.S. and NATO officials have accused Moscow of further building up troops.\n", + " Claim\n", + "\n", + "\n", + "\n", + " President Biden’s opposition to sending U.S. forces into Ukraine reflects the mood of a war-wary Washington, as well as concerns about Russia’s nuclear arsenal.\n", + " Claim\n", + "\n", + "\n", + "\n", + " Here’s a guide to the causes behind the Ukraine crisis and where it might be headed.\n", + " Claim\n", + "\n", + "
" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "\n", + "\n" + ] + } + ], + "source": [ + "test = df[df.source=='ukraine-russia-us-troops']\n", + "doc = {\n", + " \"text\": test.text.sum(),\n", + " \"ents\": [dict(start=int(row[\"start\"]), end=int(row[\"end\"]), label=row[\"label\"]) for i, row in test.iterrows()],\n", + "}\n", + "\n", + "labels = ['Lead', 'Position', 'Evidence', 'Claim', 'Concluding Statement', 'Counterclaim', 'Rebuttal']\n", + "colors = [\"#ACDDDE\", \"#CAF1DE\", \"#E1F8DC\", \"#FEF8DD\", \"#FFE7C7\", \"#F7D8BA\", \"#D6CDEA\"]\n", + "options = {\"ents\": labels, \"colors\": dict(zip(labels, colors))}\n", + "displacy.render(doc, style=\"ent\", options=options, manual=True, jupyter=True)\n", + "print('\\n\\n')" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "id": "df2f0f08", + "metadata": { + "ExecuteTime": { + "end_time": "2022-03-01T01:14:54.849077Z", + "start_time": "2022-03-01T01:14:54.836112Z" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + "0.7670386684061288" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.groupby(\"source\").score.mean().mean()" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "id": "e9ced7f2", + "metadata": { + "ExecuteTime": { + "end_time": "2022-03-01T01:14:56.384875Z", + "start_time": "2022-03-01T01:14:56.370865Z" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + "count 3898.000000\n", + "mean 0.760480\n", + "std 0.197714\n", + "min 0.217844\n", + "25% 0.594941\n", + "50% 0.807805\n", + "75% 0.945076\n", + "max 0.995302\n", + "Name: score, dtype: float64" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.score.describe()" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "id": "cda78196", + "metadata": { + "ExecuteTime": { + "end_time": "2022-03-01T01:14:58.664192Z", + "start_time": "2022-03-01T01:14:57.916313Z" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "import seaborn as sns\n", + "sns.boxplot(x=df.score)" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "id": "e072db0a", + "metadata": { + "ExecuteTime": { + "end_time": "2022-03-01T01:14:59.813238Z", + "start_time": "2022-03-01T01:14:59.682937Z" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "sns.stripplot(x=df.score)" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "id": "065508f7", + "metadata": { + "ExecuteTime": { + "end_time": "2022-03-01T01:15:01.391831Z", + "start_time": "2022-03-01T01:15:01.251500Z" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 19, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "sns.violinplot(x=df.score)" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "id": "c9576448", + "metadata": { + "ExecuteTime": { + "end_time": "2022-03-01T01:15:02.961575Z", + "start_time": "2022-03-01T01:15:02.851763Z" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 20, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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OkGozyVyxeYsYW/aj696KYMGD+G+++7DJv94ZgV5lcSnfOtb32Ly5Mk4Du/Es2OJzAlnARVuxL/9Hbp06cKsWTNxueRirtlCjoDF50yYMIFwOMycOXPQNieR8gvkOnSZKh4hZ9sCfG4Hj/70EfLz800nEqdAClgc1w033EAwGGTu3LlgdxLpMdx0JPFZloVv+7vYo0089LOfUVZWZjqROEVSwOKEbr75ZgKBAC+//DKWy0+s81mmI4ljuHe/j71xH/fcey/nnHOO6TjiNEgBixNSSjF58mT279/P8hUrsNy5JAp6mI4lAOeBzbgObGbixIlceeWVpuOI0yQfwokvZLfbmTZtGn379MVftRBbsN50pA7P3rgPz64VjBw5kltuucV0HHEGpIDFSfl8PmbPfpiignz8295GxUKmI3VYKtyIv2ohPXv2ZNq0adjtdtORxBmQAhatUlJSwuzZD+O0InirFsrZciYkYvi3v43P7eThhx7C7/ebTiTOkBSwaLV+/foxZcoU7I01uPasMR2nY9Eab9Ui7OEGZkx/kO7du5tOJFJAClickiuuuIJrrrkGd+16HIerTcfpMFz71uE4sovbbrtN9vVtR6SAxSmbPHkylf3746teioo0mY7T7tkP78K9by2XX345EyZMMB1HpJAUsDhlLpeLGdOn43E68FUtkvngNqRCDfirF9O3bz/uvvtuuZBmOyMFLE5Lly5duOeeKdiaD+Dat850nPYpESOn6h1yfB5mzZqJ2+02nUikmBSwOG3jx4/nsssuw13zgVzuPtW0xrNjCSp0hOkPPkiXLl1MJxJtQApYnJE777yTzqWd8VUvhkTUdJx2w7l/I87D1Xzve99j6NChpuOINiIFLM6I3+9n2rQfQ6QZ9+5VpuO0C/amWjx7VnLRRRcxceJE03FEG5ICFmds0KBBXPdv/4br4BbsjftMx8lqKhrEV7WQrl27cd9998mHbu2cFLBIiRtvvJGu3brj27kMEjHTcbKTtvDuWISTOP81ayY5OTmmE4k2JgUsUsLj8TD1vnuTUxF7ZCridLj2rsXeWMOUu++moqLCdByRBlLAImWGDBnChK9/HdeBzdibak3HySr2hr24az7giiuu4IorrjAdR6SJFLBIqZtvvplOpaV4d74HVsJ0nKygokH81Ysp79WLO++803QckUZSwCKlvF4vU+6+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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "sns.violinplot(x=df.groupby(\"source\").score.mean())" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "id": "fc1b5923", + "metadata": { + "ExecuteTime": { + "end_time": "2022-03-01T01:15:05.416106Z", + "start_time": "2022-03-01T01:15:04.440743Z" + } + }, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAmQAAANcCAYAAADxT7PIAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjQuMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/MnkTPAAAACXBIWXMAAAsTAAALEwEAmpwYAACqR0lEQVR4nOzdd3gc5bn+8e+j3rtcJFuWG+4FI4zBCQESQktCOoTQ0pxCCMnvpJ+cJCe9knBIAjEtQKgJEJohlFCMAeOCjbstXGXLVrHV62rf3x+7NrIl25K8u7Mr3Z/r0mXt7MzsI8l6de/MW8w5h4iIiIh4J87rAkRERESGOgUyEREREY8pkImIiIh4TIFMRERExGMKZCIiIiIeS/C6gBNRUFDgSktLvS5DRCJoxYoVNc65Qq/rCAW1YSJDy7Har5gOZKWlpSxfvtzrMkQkgsxsh9c1hIraMJGh5Vjtl25ZioiIiHhMgUxERETEYwpkIiIiIh5TIBMRERHxmAKZiIiIiMcUyEREREQ8pkAmIiIi4jEFMhERERGPKZCJiIiIeEyBTERERMRjCmQiIiIiHlMgExEREfGYApmIiIiIxxTIRERERDymQCYiIiLiMQUyEREREY8pkImIiIh4TIFMRERExGMKZCIiIiIeUyATERER8ZgCmYiIiIjHFMhEREREPKZAJiIiIuIxBTIRERERjymQiYiIiHhMgUxERETEYwpkIiIiIh5TIBMRERHxmAKZiIiIiMcUyEREREQ8pkAmIiIi4jEFMhERERGPKZCJiIiIeEyBTERERMRjCmQiIiIiHlMgExEREfGYApmIiIiIxxTIRERERDymQCYiIiLiMQUyEREREY8pkImIiIh4TIFMRERExGMKZCIiIiIeUyATERER8ZgCmYiIiIjHFMhEREREPKZAJiIiIuIxBTIRERERjymQiYiIiHhMgUxERETEYwpkIiIiIh5TIBMRERHxWILXBQx1vi4/ze1dJCfG8eKmajKSEzhjfD5xcQZAc7uPO5Zso7yqiXOmDOdDs4oOOzYhPu7Qvwdtq2nmjiXbaG7v4rLTRjMmP527XttBXUsHHzm5mJNLcgHYWdvMP1dUgBlnTixgxY4D1Da1s7i8hsbWTsBo9XUxf3wBH5g5gkVr9jIyJ5XPv2ss+RnJPL9hH3cs2U55VSP56cl887xJnD15GABPr63k9iXbSU6I4wvvHseZJxWyfPt+bn7pbVo7uijOTWV3XSul+emU5KVR3dQOzrFqVz3nTh3OF98z/rDv0+tba/nDs5vYc6CN+HgjLTGO3XVtdDnH5BGZTC3KojAjhe21zSzdtp+Wdh8dXY6EeKMoO4Xk+HiSk+KYMjKLj58yimlF2YfO3dTuI96MbTVN/Pjx9WyvacbvHHnpSXzpzHG0dPp5ak0lu+ta8fn9jC3IYG5pHvsa28hKSWRGcTYFmcnMKcklPs5oaveRGGe8trUWn9/PvHH5pCYGftXiDG5/ZRv3vLGTpPg4LpoxkhU7D7B6Zx0Ox7xx+eRnJPPipipqmzpIToxnzphc8tIScQ6mFWfxankthZnJnDmxgGXbD7Budz0Vda2MK8wgPg5efbuWhDjjS2eOxYfx6MoKDrT4GJaZxJzSPCaPyGThy1upbeoA5+hy4AAj8O9BEwrTufvzpzEyOzV0/+FFJGLafV08taaSDp/jghkjyExJpLPLz9Kt+8lISWD26Jxej6tv6eT+ZTs50NLJR04uZtKIzEPPVTe2c8/SHTS2+fj4KaOYMjIrQl/N4GfOuePvFaXKysrc8uXLvS5jwJ5aU8n/PLqWmqYOkhPiaPf5AZg/IZ+7P3sacXHGFbctZfGWmkPHjCtMJzM5gb0NbexraCcjOYGmdh9zS/P4w6WzyUhK4Ozfv8j+5g4A4s2Ii4POrsDPOc5g1qgcHLBqV92A6i7KTiE/I5k1u+t7PPfDD07hoRW7Wben4bDt6UlxNHf4+/wayQlxfGDmSLbVNPPWrjp8IfxvmhAHD3zxDGaPzuEH/1rDA8t24Q/zr0F8nJGcEEdZaS4vb645/gFRZP1PziMtKXreu5nZCudcmdd1hEKst2ESefWtnfzlxXI2VjbynpMKufqM0kNv4Ltrbvcx/9f/oa6lE4CslAQe+vIZfOnvK3i7uhmA86YN5+bLT8HsneM7u/xccMNiyquaAEhKiOOhL53BjFHZtHV28b7rX6LiQOuh5x75yhmHvcF9eXM1f3mxnA6fnykjs9hR28LwrBSuPWcCpQXpYfu+xIpjtV8KZB5pavcx7xfP09Tu6/X5C2eMYP2eBrbXtvT5nOdMHsYHZ43kGw+sDlWZg1ZWSgIjspLZXNXsdSlR79OnjebnH5npdRmHKJDJUFLf2klivB16U3T5rUt5pfydN3XXvXci3zj3pB7Hfeeht3hg2a7Dtg3LTKaqsf2wbf994RS+cOa4Q49f3FTF1XcsO2yfzJQEfvTBqbyxbT8PLq847Lmrzyjlxx+aBsCO2mbed/1Lhy4AdFeUncKL3zqbpISh3VPqWO3X0P7OeGhnbctRwxjAojV7+xXGIHDFKz89+URLGxIa2nwKY3303Pp9XpcgMiS0dnTR2RW4k9Dh83Pd/W9y8k+eYc5Pn+XG57ewv7njsDAG8Mibu3s91/aanu3bkWEM4OeLNnDlbUt55M0K2n1dpCTG99insc3HN//xVo8wBrB8x/5Dn7+0ubrXMAawp76NN3ceOGzb0q21fOaON7jsltf597q9vR43lETPfYhBpLqxnd11rUwvyjqsb1d3E4dnMCIrhb0NbT2eS4gzfAO4h3ba2DyGZSaTl5bI/uBlapETVd3Y4XUJIoOSc44l5bWUVzXy2tu1PLexirSkeL513iTizHh01R4A2jr9/P7ZzcyfUEBmSgKNbe+8md+5v4XbXtnG59419tC2FTv209rZ1ec6Xt5Sw8tbavjH8gru+fxpjMxOobK+59+m3qzb3UB9SyfZaYmML8w46n5xBkU57/RHrTjQwhW3v0FHsKvOa1tr+eeXzuCUMbnsa2jjm/9YzSvlNUwryuI3H5vF1KLB31dNgSzE/rZkGz9ftIHOLkdxTip3f24uSQlx/GLRBjZUNnLmxAK+c8Fk0pISuO3qMn6xaAPba1qYOzaXjOREslMT2bC3gec3VB3zddKTAu9iUpPiae3s4ozxBfzwg1O54IbFh/oMiIRC33v+iUh/fP+Rtdz3xs7DtjW2+fjRY+v40MyiHvtvrWnmfy6aynceeuuwATi/eXojnygbRVZKIttqmvnULUsPBZ3+ePXtWt6qqCctqedVsqNxgAtWM39CAR+aVcRjqwNB8mDf6Pg446tnT2B0Xtqh417YVH1Yjc7BM+v3Mqckh2vuXcny7YGraWt3N/C1+9/kuf/3nn5/PbFGgSyE6ls6+cVTGw9dst1d18r1z25m5/4W3qoIdIDfVtOM38FPPzydaUXZ3PP5eYedY/O+Rh69s+cl6DiDySOyaO7w8fE5o7j2vRMPe945x//8a63CmIhIDNjX0NYjjB3kHAzPTjlsW1J8HKePz6c4J5U7lmxjw97GQ8+1+/zUNXeSlZLIv9ftHVAYO+jDf17Sr/2njMgkJy0JCNxyXdLtlmq7z8/X3zeRS08tYcQRX09pfhpHKslL48rb3zgUxg4qr2qioS3w9Q1mCmQhVN3U3uMXYXttM2t3Hz7i8IVNR7/69cNH17Jrf2uP7TNH5fCva+Yfetza0cVzG/YRH2fkpCXyvYfXsKOffc5E+iI/Tc2ESKjV9NKf66A4g/bOLv7fuRN5fHUl6ckJfO2cCbR3dtHa0cXHThnFz57ccGj/k0tyKAkGnJFHBJ/+6k9nmcR4457Pz+WRNyvYXtNCRnI8tc2Hd3HYUNnQI4wBvGtCAZeeOpoHlu/COXjv5GGMyEo5bFaBgyaPyBz0YQwUyEJqwrAMpozMYkPlOwHsQ7OKqG5sZ1/DO798k4Zn9nY4AJv3NfXYNiYvjd98bAYQmHvsfx9fz71Ld9IVHCF75PxRIqF05sRCr0sQGXR27O/5BjopPtB/2O/gztd2kJ+exDPfOJP61k4+d+dyttU0k5mSwG8+NpNffnQGz63fx/hhGXyp27yNF84Yyd2v7+hxlSkcSvLSOPv3L1PfevQ7Mzv3t+D3ux5Tc5gZv/rYTK5730Q6fY6S/DQeD97q7G5YZjL/96mTQ157NNIoyxD722dO5fJ5JcyfkM9PLp7GF949jt9+fBYFGYHRjycNz+B/PjC112Pvfm07rR09O2Lu2N/CJQtfZ/O+Rm59ZRt3v77jUBgDhTEJr111uvIqAoFuKb2NXhyI0vyec3KdNjb/sDkRa5s7eOKtSv7rwdVsC75uY5uP7z+yho/OKea2q0/l+xdOIS896dAxifFx3H71qSQfZ3qJ+J5Tl/Xb29XNxwxjABsqG3lq7dFHUI7MTj10de/sycMYnvXOTAFJ8XHccOlsXt9ay92v76B+kHfJ0RWyEBuelcLPPjzj0GNfl58NlQ1MGpHBefnD+c4Fk3u99Lps+37+59F1Rz3vgZZOvvfwW3T1feCMSEjUtR59ehaRoWLhy2/zu2c20+HzM3t0DrdffephQai/phZl8eWzxrPw5a10+R2njc1j/sR8Fh8xrcVfXiw/7A4LBP4e1LV0Mjwr0Pl+494GKva3cvr4fFIS47n+mc34nTt09yQlMY62zsO708wZk8umvY00tIX/93vT3gYumjnyuPtlJCfwr2vmc9drO2hq83H+9BH8vwdXHxrx+deX3ubJr72b7NTBeftSgSzE6ls6qWluPzT893fPbObml94GYEl5LbvrWvnbZ+b2OO75Psz1tH5PY7+GMouEwviCow9lFxkKdte18qunNh66erVqVx03v/Q2379wygmd9zvnT+Zz7xpLU5uP0oJ06ls7eXB5BVuDM+kfbWqkmaOyGZ4V6Jf1syfWc+sr2wDIT0/i8nlj+Nur2w/b/7pzJvDrf28+bNvGvY2HTZ8RTqeOzevzviOzU/nO+ZOBwDJz3affqDjQyl9feptvB58fbBTIQuiOJdv41VMbaff5mToyi7995tQe98Rf3FTdY7TIrYu3snDx1uOev8OnMCaRl5GiZkKGth21zT2WVzsYmk5UQUbyoS4t2amJLPrau3lxUxUJcXEs3VbLLYu3Hbb/nJIcrjqjlBc2VTGuIJ3blrzzfG1zR68Txf7miDAGDDiMJcYZM0fnHLoCt3JnHQAZyfHkpCXR3ukPrE3czbHmJzuWyvqeA9z++tJWPjCzaFDOS6aWNkSqG9v5RXD+MYD1lQ3c+J9yinJS2F33zn+qvPQkUrvNhFzX0sFv/r2pT2spHmUCZJGw2lrVc6CJyFAypySXgowkapreGUH4/qnDw/JaKYnxnD89cHtvVF4qd766g47g7P25aYnUNLVz3f2rABiZlcKRqx+mJPbsO9bbn47u6yf3R6ffkZmScOhOz976NuIMhgWv2N30Yjm/fnrTof3njs07bELYvvr6/W/yr1U9O/l3Occjb1Ywtaj3vtixTJ36Q6TiQEuPJSO21TTzvQunkJMWuBqWlBDHDz8wlcRus/fXNnec0JwxIuG264A69cvQlpIYz98/fxrnTRvO7NE5/PiDU/nkqaPD/rqTR2Txzy+fzqfmlvDZ+WO5YMZIdnabFqmyoe2wTvAAXz17Ah8/ZdQxz1uQkcQPLppCUvBvUW5a//pkvfp27aHPR2SnMCwrBeccv1i0gT8+t4Wk+DjGFaTz5bPGc8sV/V92dvWuul7D2EHqQybHNL04m6LsFPZ0u9993rThzCnJ5bXvvpe1e+qZUJhBbnoSHT4/P3psHY+8WUFhZjKjc1PZdaDnpVmRaNDUrlvlIpNHZPHXAYSLg6oa29hZ28KMUdkkJ/R9JvyZo3KYOSoHgI/f9GrP54tzmFyWScWBVi6aMZL3TR3OrNE5/HNFz3UnD6pp6uCmF98+dOWtv6MXp/dyu/DZ9ftY+PI7XW+21jRz5sRCsvsZ9gBqm48+R9vYgnQuO21Mv88ZCxTIQiQxPo67P38a1z+7md0HWvngrCIunxf4T5OaFM+ppe90arx9ybZDMzTv2t9KQlzv44+PN79Y9+c1F5mES5fTFVyRE3Hnq9v56RPr8fkdwzKTuftzpzFpxNHnozyaeePyWb7j8PnFPnZKMedPH8nW6ia21zbT0NrJb7rdMjya7hcP+vMbnpYYx6VzD7862OHz80wvA9PW7q7n9PH5/Th7wBnjC3pc4Igz8LvAxLfHm9IjVsVcIDOzBcACgJKSEo+rOdz4wgz+fNmc4+638ohfqKMtJB5/jEXGj7yqpjAm4ZIc3/d383J80dyGSeg1tnXyy6c2HGrLqxrb+f0zm1h45bGvtpVXNfLnF96mtrmDj80p5uLZxXzprPEs3lLN6op6DPjIyYEwdsNzW/jDc4GO+6lJ8b3OZxkqLZ1+vvfwWk4fV0BGcgJrd9fzzX+u7jE1h1lgao+2zi5SEvvXhqQkxvPPL5/Bba9sY3tNM89vrDrUz/rVt2u567UdfPms8cc+SQyKuUDmnFsILAQoKyuLuhxyoLmDxIQ4MpKP/q09ZUxur+8muvvAzJE8+VblUZ9vatfcUBIZiYP03ahXor0Nk9A60NzZYw6wPb2MHuyupcPHpQtfPzSI4OXN1aQkxnPetBE8+tV3sbW6iYzkBIZlpbC1uok/Pv/OKMpwhrGDuvyOL969nC1VTT36ThtQnJtKU5uPT9+6lPg447r3TuRrR6y/fDxFOan8zwemsmhNJc9vPHy5wberB+dAI7W0IdLZ5edr973JnJ89y5yfPsv1zxz9kvFn3zWWT59WQmpiPKNyU+ntjuX/XXryMf8QHhjkMxZL9MjUtBciA1aSn8as0TmHbfvQrKJjHrN06/7DRnQCh71BH1eYcWhU4/8+vr7HSMu+OpH3WusrG3uEMQjcrUlNjKMuOIN/l99x/bOb2dfLfGp9cfq4/B4XON43JTwjXL2mQBYi/1hewWOr9+Bc4H76//2nnFW76nrdNzE+jp9/ZAb/+6Fp7Gto6zHlxdiCdOLijKvPKO1XDeML0pk/Pp+/feZUTh2TO7AvROQIvS3xIiJ9d9tVZXxmfilnnlTITz88nS+8e9wx9y/O7TlNxKhetgEs376/z3UkxBmJ3dZMOt4A/9ReptA4npK8NLZU9Zyjbem22l72Pr7c9CTu+txczppUyOzROfzqozM4f/qIAZ0r2umtb4hs3tfYc9veRmYf8c7ooHZfFz97cn2PdxgFGUn88qOBpZeunDeGp9ZWsmt/30Zgvl3TzNs1zXR2Of582Rw+8KdXqGo8+mgVkb7ITRv48jAiEpj89UcfnNbn/U8ansmCM8dx6+Kt+B1MHZnF59419rB9Hl+9h1v7MKF4d0frk3ykxHgjMT6OD8wcyWtv1/aYBWBGcRZb9jXR1i3RTR2ZyckluTyysvfRnXUtnXT4/CQN4LLcnJLcXle4GWwUyELkPZMKD1uuIjHeOGPC0UeXtHZ09VhDrCgnhRe/efah/7Cfv2t5n8NYd29s38/pv/4PXX385RM5lqrGgd1qEJGB+/6FU7j6jFL2N3cwrSgLs3eubK3eVcfX7n9zwLcqj6ezy9HZ1cWDyys4b+pwdte14neQlhTPLz4yg9PG5XHO7146tH9CnPHnT59CYrxxz9KdvZ7zh4+u44WNVdwxBILVQCmQhcjZk4bxi4/M4K7XtpOWFM/X3juRUbmBFezbOrto7/QfNh9LTloSZ55UyMubqw9t+/gpo3l01W5uX7Id5/xs3DvwjosKYxIqja3qrygyUDVN7WSnJh42IXhfFeWkHprlvryqkT8+t4V9DW1kpSSGLYwd6Zn1+w6N4m/p6OKepTtYsX3/Yesq+/yOJ1bv4dr3TmTWqGxWV9T3eq4XNlVTXtXEhGFaH7c3CmQhdNlpJVx22uHD2G9dvJXrn91Ma2cX508bwR8umX1oCPCfLjuZm198m7W762ls83H74q00RWCEjEh/1Ld1HH8nETnM3vo2vvj3FazeVRfsijKTc6cOp62zi/9+ZC2Pr97D8OxkfvSBabzvOMswtfu6uOyWpcfsgpKUEBeWVV+OzH0rdxxg2fYDPfbLD67HectVZdzw3BZW7jjAjv0ttBzxN618XyOpSfEUD2A5pcFOnfrDaGt1Ez97cgMtHV04B0+t3cvdr+049HxWSiLfPn8yJw3P5M1ddQpjEpUSTM2ESH/9+umNrA4O7Kpp6uBb/1xNW2cXN7/0Ng+trKCjy8+u/a1ce9+bx50pf/n2Az3CWFL84cPzTx+bR0ne0UNOaX4ap4/LO+rzfdXbmsopiXF8cOZInl2/jxc3VfOpuSWUVzf1CGMZyQl86Z6VvOvX/+HXT2884VoGG10hC6NNe3t29N9Q2dBj2+sDHH0iEglTe1kmRUSO7ci2vq6lk731bazcWXfY9tbOLjbsbWDeuN77HL++tZavP7Cqx/aOI5LRS1tqOG/q8MPWuuxu5/4WfvyhaSzffoDOY3RpSU2MP+x25EHZqYnUH6X7wtzSPL50zwqWlAf+lqUlxfcYsJadkkB9sN+0c3DTi2/zybLRjC3QKO6D9NY3jE4dm0fKEcOG3zOpsMd+04qyI1WSSL+lJel9m0h/HdnWjy1IZ0x+GnNLD5+SKC0p/qhvevx+x389uJrqI66OpSf3PvN9SX7aUevxO7j6jmV0+h29L9YXuNI1pZclna48fQzzjzFI7SMnFx8KY0CPK2PAYSMyD6qsG/gaznvqWvnpE+v5xgOreGVLzYDPE00UyMKoICOZ2686lVPG5DKuMJ3vXTCZi2cX99jvu+dPJi1Jy9NIdErq57InIgLfeN9JfHb+WEry0jh7UiG3XFmGmfGFM8fxqbmjSU+KZ3xhOn/59ByyUnpfgLux3cfuI0JLZnICze09A09yQtyhNZIB0o/xN+Vo18faOv2sPMr8mV85awLxvSS5H140ldz0nlPjHDnh+ZFrd47MTuGU0oHNl9nW2cUnbn6N217ZxiNv7uaK25eypDz2Q5ne+obZGRMKOGNCwTH3yU1P4u7Pnca19648bDFVkWhwypgcr0sQiTkpifH88INT+eEHpx62PTkhnl9+dCa//OjM454jOzWR2aNzDptkfOLwjB63PUfnplKSn3b4VarOLn724em89nYti7dU95hmqT927m9henE2H5pdzCNv7j60PSkhjo+eUkx6cgITh2Wwparp0PZrz57ATS+9TUtHF6X5afzxktms2V3PI2/upjAjmWvOnkBywsDe7L22tfawoOocPLSygvnH+Vsb7RTIosQpY3JZ/J1zqG5s52v3v8kb244++3JhZjI1je1MGpHJyaNzuG/ZrghWKkNNSZ76eIh45c+fnsNPH1/Pusp63jWhgM/OH8uH/rTkUD+vhDjj5itO4VdPHd5J3jkoK83l8nlj+Mo9K1i0Zm+Pc3/n/En8c0UFb1e/M7N+nNFj9ZgLp48E4LsXTGbzvkbW7WkgLSme//nAVHKCE0f/80tn8MDynRxo6eTDs4uZNCKTz7xrLJV1rYwvzCAuzhhXmNHrXaL+KkhP7rkto+e2WKNAFkXi44wR2Sn86VMnc/qvek7sGmfwh0tmH/YfurapnWc37Oux7tmJMqPHPDfJCcZVZ5Ti63I8s34fFQcGfv//aMbkp5KaGH/MOdiyUhJISYxnWFYy1Q3t1Ld29to/IRqkJsbT6evCF6PTwmWnJPRYh09EIqc4J5WbrzjlsG0PfHEety7eRofPz5VnjGFaUTafmlvC4m59qU4uyWHyiEDftP++aCrLdxygquGdvmhXn1HKl8+awOzRuXz+zmU0d3SREGd8/6IpbK1q4pXyGtKS4rnstDF88tTRAAzPSuHJr72bHbXN5GckH7bGZHZaIgvOHH9YnRnJCUwc3rNP2omaMSqbj84p5uGVgat1o/NS+ez8scc5KvqZi9TscmFQVlbmli9f7nUZYfGP5bv4yRPraWzzcXJJDledPob5EwopzOz5LmBvfRsPLt/F/uYOUhPjGVuQTlJCHA+trOCNrbX4nGNkdiqThmeyu66VxvZO9hxoO6wfQVpSPK0dXTgC77j+56IpvLSlhm01TUwtyqJsTB7vnzbi0Nwxzjme21DF5n2NvOekQvY3d/C9h9ewu66VaUVZnDmxgFffru11gsCEuMPXUEtPimdsYTofPXkUV54+hoT4OP743CZufnEr7T4/1u0d23smFnDn507rcc4n39rDfz24mjafHwNyUhM40PrOJfo4g6T4uMOCW1K8MSo3jZ37W4iPg9TEBJo7fHR2OeLN6HKOlIQ4Th2bS1NbF+sqGzhtbB5fPms8D7yxk8dWVx76HibHQ0JCPMkJcZwzeThVDW1MHJ7JNWdPIC0pnsY2H/sa2nhxUxUPLq9g5/4WjEAI9/kd8XFw2dwSRuemcs/SXezY3wIEOtl+4pTRbNrXwLJtBw77mSXGW6+L+3aXm5pAUmI8VQ3tpCXF09yPqVVmFmfx84/MZMao6Bp0YmYrnHNlXtcRCoO5DZPIe3lzNYvWVDI6L40rTh9zWN805xwbKhuorG9jbEE64wrfmZy1oa2TVTvrmDwi89Ci5bFg3Z56aps6mDcuf0BLMnnhWO2XAlkUa+vsoqGtk2GZof8F8XX5ebu6iZK8NFKDo+ia2n1srGxg0ohMMo/SyfRYnHO0+/yHJr49qMPXxbo9DWSlJJKcGEdhZjKb9jYyJj+N9k4/BRnJxB3ZA/QIDW2dJCfEHbPPQVtnF+v21FOan35oksKXN1eTlZLA7JJA59GapnY27W1gelHOoZUT2joD7wwT4uNwzlHX0kluehJ+vztuXR0+Pwlxdtz9uvP7HWv31JOfkUxxTipvVzeRn5506NI/QH1rJ36/O6yzbLuvi8Y2HymJ8RiBEL21ppk4C8zoXdfSic/vjjvhYl1LB51djtSkeLZVNzMmP5Ws1NhZr1KBTERilQKZiAwaCmQiEquO1X7FxjU+ERERkUFMgUxERETEYwpkIiIiIh5TIBMRERHxmAKZiIiIiMcUyEREREQ8pkAmIiIi4jEFMhERERGPKZCJiIiIeEyBTERERMRjCmQiIiIiHlMgExEREfGYApmIiIiIxxTIRERERDymQCYiIiLiMQUyEREREY8pkImIiIh4TIFMRERExGMKZCIiIiIeUyATERER8ZgCmYiIiIjHFMhEREREPKZAJiIiIuIxBTIRERERjymQiYiIiHhMgUxERETEYwpkIiIiIh5TIBMRERHxmAKZiIiIiMcUyEREREQ8pkAmIiIi4jEFMhERERGPKZCJiIiIeEyBTERERMRjCmQiIiIiHlMgExEREfGYApmIiIiIxxTIRERERDymQCYiIiLiMQUyEREREY8pkImIiIh4TIFMRERExGMKZCIiIiIeUyATERER8ZgCmYiIiIjHFMhEREREPKZAJiIiIuIxBTIRERERjymQiYiIiHhMgUxERETEYwpkIiIiIh5TIBMRERHxmDnnvK5hwMysGtjhdR1AAVDjdREDoLojKxbrjsaaxzjnCr0uIhSipA2Lxp9xX6juyFLdoXHU9iumA1m0MLPlzrkyr+voL9UdWbFYdyzWLP0Tqz9j1R1Zqjv8dMtSRERExGMKZCIiIiIeUyALjYVeFzBAqjuyYrHuWKxZ+idWf8aqO7JUd5ipD5mIiAw5ZpYDXOac+8sAjp0NFDnnFp3A628HypxzNWb238BlQBfgB77onFs60HNLbNIVMhlUzCzB6xpEJCbkAF8Z4LGzgQtDUYSZnQ58AJjjnJsJvA/YdYLnVDsYgxTIxHNmlm5mT5rZajNba2aXmNmpZvZqcNsbZpZpZilmdoeZrTGzN83s7ODxV5vZP8zsceCZ4PluN7Nlwf0u9vhLFJHo8ytgvJmtMrPfmtm3gm3GW2b2vwBm9hEze84CRprZZjMrAX4CXBI89hIz+7GZffPgiYPtWGnw83+Z2QozW2dmC3qpYyRQ45xrB3DO1Tjn9gSPVTs4hChFSzQ4H9jjnLsIwMyygTeBS5xzy8wsC2gFrgNwzs0ws8kEGp2Tguc4HZjpnNtvZr8A/uOc+2zwtsQbZvacc645wl+XiESv7wLTnXOzzez9wMeBuYABj5nZmc65R8zsY8A1BNqpHznndprZDwncbvwqgJn9+Biv89lgu5QKLDOzh5xztd2efwb4oZltBp4DHnDOvWRmScADqB0cMnSFTKLBGuB9ZvZrM3s3UAJUOueWATjnGpxzPuBdwN3BbRsJTKh5sCF61jm3P/j5+4Hvmtkq4EUgJXhOEZHevD/48SawEpgMTAw+dy3wPaDdOXffAM79NTNbDbwOjO52XgCcc03AKcACoBp4wMyuBiahdnBI0RUy8ZxzbrOZnUKgT8YvCbxj7G20iR3jNN3f9RnwMefcptBVKSKDmAG/dM79tZfnigl0tB9uZnHOOX8v+/g4/AJHCoCZnUWgT9jpzrkWM3vx4HPdOee6CISmF81sDXAVgWCodnAI0RUy8ZyZFQEtzrm/A78D5gFFZnZq8PnMYCfVl4FPB7edRODdXm+Nzb+Ba83MgvueHP6vQkRiTCOQGfz838BnzSwDwMyKzWxYsN25g8AIyA3A/+vlWIDtwJzgsXOAscHt2cCBYBibTKBtO4yZTTKz7lfNZhO46rURtYNDiq6QSTSYAfzWzPxAJ/BlAu/ubgz2u2gl8C7zL8DNwXeQPuBq51x7sL3p7qfAH4G3go3RdgKjmEREAHDO1ZrZEjNbCzwF3Au8FmxPmoDLgS8Bi51zi4O3/paZ2ZPAC7xzO/CXwEPAlQf3ATYHX+Zp4Etm9haB0PR6L6VkEGjrcgi0a+XAAudch5ldgtrBIUPzkImIiIh4TLcsRURERDymQCYiIiLiMQUyEREREY8pkImIiIh4TIFMRERExGMKZCIiIiIeUyATERER8ZgCmYiIiIjHFMhEREREPKZAJiIiIuIxBTIRERERjymQiYiIiHhMgUxERETEYwpkIiIiIh5L8LqAE1FQUOBKS0u9LkNEImjFihU1zrlCr+sIBbVhIkPLsdqvmA5kpaWlLF++3OsyRCSCzGyH1zWEitowkaHlWO2XblmKiIiIeEyBTERERMRjCmQiIiIiHlMgExEREfGYApmIiIiIxxTIRIaY4tElmNlxP4pHl3hdqoicgElTp5OVk9frx6Sp070uT44Q09NeiEj/7anYxSV/ffW4+z3wxTMiUE3sMbMU4GUgmUAb+k/n3I/MLA94ACgFtgOfdM4d8KpOkco9e7jwN0/2+tyib18U4WrkeHSFTESkf9qBc5xzs4DZwPlmNg/4LvC8c24i8HzwsYhInyiQiYj0gwtoCj5MDH444GLgzuD2O4EPR746EYlVCmQiIv1kZvFmtgqoAp51zi0FhjvnKgGC/w47yrELzGy5mS2vrq6OWM0iEt0UyERE+sk51+Wcmw2MAuaaWZ97SDvnFjrnypxzZYWFg2JJThEJAQUyEZEBcs7VAS8C5wP7zGwkQPDfKu8qE5FYo0AmItIPZlZoZjnBz1OB9wEbgceAq4K7XQU86kmBIhKTNO2FiEj/jATuNLN4Am9qH3TOPWFmrwEPmtnngJ3AJ7wsUkRiS1gDmZl9A/g8gRFIa4DPAGkcZa4eM/se8DmgC/iac+7f4axPRKS/nHNvASf3sr0WeG/kKxKRwSBstyzNrBj4GlDmnJsOxAOXcpS5esxsavD5aQT6Y/wl+A5UREREZFALdx+yBCDVzBIIXBnbw9Hn6rkYuN851+6c2waUA3PDXJ+IiIiI58IWyJxzu4HfEehLUQnUO+ee4ehz9RQDu7qdoiK47TCaw0dEREQGm7D1ITOzXAJXvcYCdcA/zOzyYx3SyzbXY4NzC4GFAGVlZT2eFxERkWNrbm0lKyev1+dGFhWxaf3aCFck4ezU/z5gm3OuGsDMHgbOIDhXj3Ou8oi5eiqA0d2OH0XgFqeIiIiEkPP7tfB4lAlnH7KdwDwzSzMzIzD6aANHn6vnMeBSM0s2s7HAROCNMNYnIiIiEhXCdoXMObfUzP4JrAR8wJsEbjVm0MtcPc65dWb2ILA+uP81zrmucNUnIiIiEi3COg+Zc+5HwI+O2NzOUebqcc79HPh5OGsSERGRo1P/Mm9opn4RERE5RP3LvKG1LEVEREQ8pkAmIiIi4jEFMhERERGPKZCJiIiIeEyBTESkH8xstJm9YGYbzGydmV0X3P5jM9ttZquCHxd6XauIxA6NshQR6R8f8F/OuZVmlgmsMLNng8/9wTn3Ow9rE5EYpUAmItIPzrlKoDL4eaOZbQCKva1KRGKdblmKiAyQmZUCJwNLg5u+amZvmdntZpZ7lGMWmNlyM1teXV0dqVJFJMopkImIDICZZQAPAV93zjUANwHjgdkErqD9vrfjnHMLnXNlzrmywsLCSJUrIlFOgUxEpJ/MLJFAGLvHOfcwgHNun3OuyznnB24B5npZo4jEFgUyEZF+MDMDbgM2OOeu77Z9ZLfdPgJowT8R6TN16hcR6Z/5wBXAGjNbFdz2feBTZjYbcMB24IteFCcisUmBTESkH5xzrwDWy1OLIl2LiAweumUpIiIi4jEFMhERERGPKZCJiIiIeEyBTERERMRjCmQiIiIiHlMgExEREfGYApmIiIiIx8IayMwsx8z+aWYbzWyDmZ1uZnlm9qyZbQn+m9tt/++ZWbmZbTKz88JZm4iIiEi0CPcVshuAp51zk4FZwAbgu8DzzrmJwPPBx5jZVOBSYBpwPvAXM4sPc30iIiIingtbIDOzLOBMAmu+4ZzrcM7VARcDdwZ3uxP4cPDzi4H7nXPtzrltQDlanFdERESGgHBeIRsHVAN3mNmbZnarmaUDw51zlQDBf4cF9y8GdnU7viK47TBmtsDMlpvZ8urq6jCWLyIiIhIZ4QxkCcAc4Cbn3MlAM8Hbk0fR29pwrscG5xY658qcc2WFhYWhqVRERETEQ+EMZBVAhXNuafDxPwkEtH1mNhIg+G9Vt/1Hdzt+FLAnjPWJiPSbmY02sxeCA5XWmdl1we1HHbAkInI8YQtkzrm9wC4zmxTc9F5gPfAYcFVw21XAo8HPHwMuNbNkMxsLTATeCFd9IiID5AP+yzk3BZgHXBMclNTrgCURkb5ICPP5rwXuMbMkYCvwGQIh8EEz+xywE/gEgHNunZk9SCC0+YBrnHNdYa5PRKRfgn1fD/aDbTSzDQT6u14MnBXc7U7gReA7HpQoIjEorIHMObcKKOvlqfceZf+fAz8PZ00iIqFiZqXAycBSjhiwZGbDjnLMAmABQElJSYQqFZFop5n6RUQGwMwygIeArzvnGvp6nAYmiUhvFMhERPrJzBIJhLF7nHMPBzcfbcCSiMhxKZCJiPSDmRmBCa83OOeu7/bU0QYsiYgcV58CmZnN78s2EZFYcQLt2nzgCuAcM1sV/LgQ+BVwrpltAc4NPhYR6ZO+duq/kcAcYsfbJiISKwbUrjnnXqH3iazhKAOWRESO55iBzMxOB84ACs3s/3V7KgvQwt8iEnPUrolINDreFbIkICO4X2a37Q3Ax8NVlIhIGKldE5Goc8xA5px7CXjJzP7mnNsRoZpERMJG7ZqIRKO+9iFLNrOFQGn3Y5xz54SjKBGRCFC7JiJRo6+B7B/AzcCtgJYzEpHBQO2aiESNvgYyn3PuprBWIiISWWrXRCRq9HVi2MfN7CtmNtLM8g5+hLUyEZHwUrsmIlGjr1fIDs4+/a1u2xwwLrTliIhEjNo1kX5qbm0lK+fo71tGFhWxaf3aCFY0ePQpkDnnxoa7EBGRSFK7JtJ/zu/nwt88edTnF337oghWM7j0KZCZ2ZW9bXfO3RXackREIkPtmohEk77esjy12+cpBJYHWQmo4RKRWKV2TUSiRl9vWV7b/bGZZQN3h6UiEZEIULsmItGkr6Msj9QCTAxlISIiHlO7JiKe6WsfsscJjD6CwOK7U4AHw1WUiEi4DbRdM7PbgQ8AVc656cFtPwa+AFQHd/u+c25RqGsWkcGrr33Iftftcx+wwzlXEYZ6ROQEFI8uYU/FLq/LiBUDbdf+BvyJnn3N/uCc+13P3UVEjq+vfcheMrPhvNMJdkv4ShKRgdpTsYtL/vrqMfd54ItnRKia6DbQds0597KZlYatMBEZkvrUh8zMPgm8AXwC+CSw1Mw+Hs7CRETCKQzt2lfN7C0zu93Mco/xugvMbLmZLa+urj7abiJ9MmnqdLJy8nr9aG5p8bo86Ye+3rL8b+BU51wVgJkVAs8B/zzegWYWDywHdjvnPhBcmuQBoBTYDnzSOXcguO/3gM8RWOj3a865f/frqxER6bsBt2u9uAn4KYE+aT8Ffg98trcdnXMLgYUAZWVlrrd9RPqqcs+eo07U+uA1Z0W2GDkhfR1lGXew0Qqq7cex1wEbuj3+LvC8c24i8HzwMWY2FbgUmAacD/wlGOZERMLhRNq1wzjn9jnnupxzfuAWYG4oChSRoaOvjc/TZvZvM7vazK4GngSOO4LIzEYBFwG3dtt8MXBn8PM7gQ93236/c67dObcNKEeNmoiEz4Datd6Y2chuDz8CaDE/EemXY96yNLMJwHDn3LfM7KPAuwADXgPu6cP5/wh8G8jstm24c64SwDlXaWbDgtuLgde77VcR3HZkTQuABQAlJSV9KEFE5B0n2q6Z2X3AWUCBmVUAPwLOMrPZBG5Zbge+GJbiRWTQOl4fsj8C3wdwzj0MPAxgZmXB5z54tAPN7OA8PSvM7Kw+1GK9bOvRv0L9L0TkBP2RAbZrwWM+1cvm20JaoYgMOccLZKXOubeO3OicW96HYd/zgQ+Z2YUE1onLMrO/A/vMbGTw6thI4GAfjgpgdLfjRwF7+vJFiIj0w4m0ayIiYXG8PmQpx3gu9VgHOue+55wb5ZwrJdBZ/z/OucuBx4CrgrtdBTwa/Pwx4FIzSzazsQSWMHnjOPWJiPTXgNs1EZFwOV4gW2ZmXzhyo5l9DlgxwNf8FXCumW0Bzg0+xjm3jsCyJeuBp4FrnHNdA3wNEZGjCUe7JiJyQo53y/LrwCNm9mneaajKgCQCI4n6xDn3IvBi8PNa4L1H2e/nwM/7el4RkQH4OiFo10Skp+bWVrJy8np9bmRREZvWawDy0RwzkDnn9gFnmNnZwPTg5iedc/8Je2UiImGgdk0kfJzff9SJahd9+6IIVxNb+rqW5QvAC2GuRUQkYtSuiUg0GdCs1CIiIiISOgpkIiIiIh5TIBMRERHxmAKZiIiIiMcUyEREREQ8pkAmIiIi4jEFMpEYUDy6BDM77oeEn5ndbmZVZra227Y8M3vWzLYE/831skYRiT19modMRLy1p2IXl/z11ePu98AXz4hANUPe34A/AXd12/Zd4Hnn3K/M7LvBx9/xoDYRiVG6QiYi0g/OuZeB/Udsvhi4M/j5ncCHI1mTiMQ+XSETETlxw51zlQDOuUozG3a0Hc1sAbAAoKSkJELlSSybNHU6lXv29Ppcc0tLhKuRcFEgExGJIOfcQmAhQFlZmfO4HIkBlXv2HHV9yAevOSuyxUjY6JaliMiJ22dmIwGC/1Z5XI+IxBgFMhGRE/cYcFXw86uARz2sRURikAKZiEg/mNl9wGvAJDOrMLPPAb8CzjWzLcC5wcciIn2mPmQiHioeXcKeil1elyH94Jz71FGeem9ECxGRQUWBTMRDml9MRERAtyxFREREPKdAJiIiIuIxBTIRERERj4UtkJnZaDN7wcw2mNk6M7suuP2oi/Ca2ffMrNzMNpnZeeGqTWSg+rrId/FozcAuIiJ9F85O/T7gv5xzK80sE1hhZs8CV9PLIrxmNhW4FJgGFAHPmdlJzrmuMNYo0i997oT/5TMxswhUJCIig0HYAllwXbeDa7s1mtkGoJjAIrxnBXe7E3gR+E5w+/3OuXZgm5mVA3MJzPcjElv8Po2eFBGRPotIHzIzKwVOBpZyxCK8wMFFeIuB7hMyVQS3HXmuBWa23MyWV1dXh7Vuiby+3hJMSErRrUMRERk0wj4PmZllAA8BX3fONRzjNk5vT/RYeFcL80aXvk5sWjRqNLt37Tzufv2ZlyuUtw77Wp+IiEg4hDWQmVkigTB2j3Pu4eDmfWY20jlXecQivBXA6G6HjwL2hLM+OXFR36dKtw5FRCQGhC2QWeCv723ABufc9d2eOrgI7684fBHex4B7zex6Ap36JwJvhKs+iTAFIxERkaMK5xWy+cAVwBozWxXc9n0CQezB4IK8O4FPADjn1pnZg8B6AiM0r9EISxERERkKwjnK8hV67xcGR1mE1zn3c+Dn4apJ+k6LXouIiESOFheXXg25Ra/jEjRvmJwwM9sONAJdgM85V+ZtRSISKxTIREB93CSUznbO1XhdhIjEFq1lKSIiIuIxBTIRkdBxwDNmtsLMFvS2gya3FpHeKJANQX2ZDV9EBmS+c24OcAFwjZmdeeQOzrmFzrky51xZYWFh5CsUkaikPmRDUF867KuvlEj/Oef2BP+tMrNHCKzH+7K3VYlILNAVMhGREDCzdDPLPPg58H5grbdViUis0BUyEZHQGA48ErzlnwDc65x72tuSJFpMmjqdyj1HXw1wZFERm9Yrv/fmWN+7wfR9UyATEQkB59xWYJbXdUh0qtyzhwt/8+RRn1/07YsiWE1sOdb3bjB933TLUkRERMRjCmQiIiIiHlMgExEREfGY+pCJiIh4rLm1laycvN6fa2mJcDWRd6yO+0Ph6wcFMhEREc85v/+oHdcfvOasyBbjgWN13B8KXz/olqWIiIiI5xTIBpG+LImkZZFERESij25ZDiJ9WRIJtCySiIhE3lDvJ3c8CmQiIiISdkO9n9zx6JZlDNCtSBERkcFNV8higG5FioiIDG4KZCIiIn10rPmy2js7SU5M7PU59ZGS44m6QGZm5wM3APHArc65X3lckohIn6j9GvyON1/WR/7wzFGfEzmWqOpDZmbxwJ+BC4CpwKfMbKq3VYWP+oaJDB5Drf0SkdCKtitkc4Fy59xWADO7H7gYWO9pVWGivmEig8qQar9EJLSi6goZUAzs6va4IrgtpujKl8iQNCjaLxHxhjnnvK7hEDP7BHCec+7zwcdXAHOdc9d222cBsCD4cBKwKeKF9lQA1HhdxACo7siKxbqjseYxzrlCr4s4Ul/ar+D2aGvDovFn3BeqO7JUd2gctf2KtluWFcDobo9HAYcNZ3HOLQQWRrKo4zGz5c65Mq/r6C/VHVmxWHcs1uyh47ZfEH1tWKz+jFV3ZKnu8Iu2W5bLgIlmNtbMkoBLgcc8rklEpC/UfonIgEXVFTLnnM/Mvgr8m8Cw8dudc+s8LktE5LjUfonIiYiqQAbgnFsELPK6jn6KmtsP/aS6IysW647Fmj2j9iuiVHdkqe4wi6pO/SIiIiJDUbT1IRMREREZchTIRERERDymQCYiIiLiMQUyEREREY8pkImIiIh4TIFMRERExGMKZCIiIiIeUyATERER8ZgCmYiIiIjHFMhEREREPKZAJiIiIuIxBTIRERERjymQiYiIiHhMgUxERETEYwpkIiIiIh5TIBMRERHxmAKZiIiIiMcUyEREREQ8pkAmIiIi4jEFMhERERGPKZCJiIiIeEyBTERERMRjCV4XcCIKCgpcaWmp12WISAStWLGixjlX6HUdoaA2TGRoOVb7FdOBrLS0lOXLl3tdhohEkJnt8LqGUFEbJjK0HKv90i1LEREREY8pkImIiIh4TIFMRERExGMKZCJDUHlVE8u376fd1+V1KSLiEeccm/c1sqaiHl+X3+tyhryY7tQvIv1356vb+dFj6wCYPTqHe79wGmlJagpEhpI9da1ce9+brNhxAIDRean84ZOzKSvN87iyoUtXyESGkBc3VfGjx9Zx7tTh/PTD03mroo7/fmSt12WJSAQ1tHVy+W1L2bS3kR9/cCp/vGQ28WZcdutSVuzY73V5Q1ZEApmZpZjZG2a22szWmdn/9rKPmdn/mVm5mb1lZnMiUZvIUOHr8vPzJzdQmp/Gny+bwxXzxrDgzPE8umo3O2tbvC5PRCLkV09tZHtNM7deVcbV88fy4ZOLeejLZ1CUncJX7llJfUun1yUOSZG6QtYOnOOcmwXMBs43s3lH7HMBMDH4sQC4KUK1iQwJj63ew5aqJr5z/mSSEgK/+p+ZX0p8nHH7km0eVycikbBlXyP3vbGTq88Yy7xx+Ye252ckc+On5lDT1MEfntvsYYVDV0QCmQtoCj5MDH64I3a7GLgruO/rQI6ZjYxEfSJDwd9f38G4wnTOnz7i0LbhWSl8YGYRD62ooMOnTr0ig93NL20lNTGer54zocdzM0Zl84lTRnHv0p3sqWv1oLqhLWJ9yMws3sxWAVXAs865pUfsUgzs6va4IrhNRE7Qxr0NrNxZx2VzSzCzw567YPoIGtt9LN+uviMig1lTu49Fayq5eHYReelJve7z1XMm4HD86YXyCFcnEQtkzrku59xsYBQw18ymH7GL9Tyqx1U0zGyBmS03s+XV1dVhqFRk8PnH8gqS4uP46JxRPZ6bP6GApIQ4/rOxyoPKRCRSnnxrD62dXXz8lNFH3WdUbhofP2U0D62ooL5VfckiKeKjLJ1zdcCLwPlHPFUBdP9fMgrY08vxC51zZc65ssLCQbG+sEhY+f2ORWsqOfOkwl7fFacnJ3D6uHwFMpFB7h/LKxhfmM6ckpxj7nfZ3BLafX4eW7U7MoUJELlRloVmlhP8PBV4H7DxiN0eA64MjracB9Q75yojUZ/IYLa6oo7K+jYunDHiqPucNamQrTXN7Fa/EZFBqaqxjeU7DvCRk4t7dFs40vTiLKaMzOKB5buOuZ+EVqSukI0EXjCzt4BlBPqQPWFmXzKzLwX3WQRsBcqBW4CvRKg2kUHtqbV7SYw33jtl+FH3KRsTmAxyZXCSSBEZXBZvrgHgrEnDjruvmXFJ2SjW7m5g496GcJcmQRGZnts59xZwci/bb+72uQOuiUQ9IkPJc+v3cfr4ArJTE4+6z+SRmaQkxrFy5wE+OKsogtWJSCS8vKWagoxkpo7M6tP+F80s4n+fWM+/1+5j8oi+HSMnRjP1iwxi22ua2VrTzHsnH/tdcWJ8HDNH5bByZ11kChORiOnyO17eXM2ZJxUQF3fs25UHFWYmM6ckl2c37A1zdXKQApnIIPbCpkBH/bP7cJtiTkku6/fU09apBcdFBpO1u+s50NLJe07q30C4c6cOZ+3uBvUtjRAFMpFB7IVN1YwrTKckP+24+84pyaGzy7Fuj/qMiAwmb2wLzDF4xviCfh33/qmBfqfPrd8X8pqkJwUykUGqrbOL17fWctZJx786BjCtOBuADZUKZANlZtvNbI2ZrTKz5V7XIwKwYscBSvLSKMxM7tdx4wozGFuQzkubNednJESkU7+IRN6KHQfo8Pl598S+vSsuyk4hMyVBgezEne2cq/G6CBEA5xwrdh7gXRP6d3XsoDPG5/OvN3fT2eUnMV7XcMJJ312RQeqV8hoS4oy5Y/P6tL+ZMWVEFhv3Noa5MhGJlIoDrVQ3th93MtijmT+hgOaOLt6qqA9tYdKDApnIIPXKlhrmlOSSntz3C+FTRmaysbIBv7/HqmXSNw54xsxWmNmC3nbQ8m8SSSt3BuYWPLkkd0DHnz4uHzN4tVwXfcNNgUxkEDrQ3MHaPfXM7+dtiskjs2ju6KLigEZVDdB859wc4ALgGjM788gdtPybRNLKHQdIS4pn8ojMAR2fm57E1JFZLHlbgSzcFMhEBqHXttbiHLyrj/3HDpoSnDRyvfqRDYhzbk/w3yrgEWCutxXJULe6op4ZxdkknED/r9PH5bNyZx3tPk2JE04KZCKD0CvlNWQkJzBrVHa/jps4LAOAt6ubwlHWoGZm6WaWefBz4P3AWm+rkqGsy+/YuLeBaUX9aweOVFaaS4fPrylxwkyBTGQQWlJew7xx+f1+V5yenMDI7BTerlIgG4DhwCtmthp4A3jSOfe0xzXJELa1uom2Tj/Ti09s6aM5wf5nWus2vDTthcggs2t/CztqW/jMGaUDOn58YYaukA2Ac24rMMvrOkQOWrsnMDLyRK+QDctKoTgnlTe1tFpY6QqZyCCzJDgaqr/9xw4aX5jO29XNOKeRliKxbN3uBpIT4hhfmH7C55ozJvfQiE0Jj4gEMjMbbWYvmNkGM1tnZtf1ss9ZZlYfnOF6lZn9MBK1iQw2r5TXMCIrhfGFGQM6fvywDJrafVQ1toe4MhGJpHV7Gpg8IvOEOvQfNKckh8r6NirrNQI7XCJ1hcwH/Jdzbgowj8Bw8Km97LfYOTc7+PGTCNUmMmj4/Y5X365l/oQCzGxA5zgY5NSPTCR2OedYt6eeqSd4u/Kgd/qR1YXkfNJTRAKZc67SObcy+HkjsAEojsRriwwl6ysb2N/cwbsm5g/4HIcCmfqRicSsPfVtNLT5mFp0Yh36D5palEVKYpxuW4ZRxPuQmVkpcDKwtJenTzez1Wb2lJlNO8rxmuVa5CgWbwn0H5s/fmD9xwCGZyWTnhTP29XNoSpLRCJs877AEmiThg9sQtgjJcbHMbM4R4EsjCIayMwsA3gI+Lpz7sgJTVYCY5xzs4AbgX/1dg7Nci1ydIu3VDN5RCbDslIGfA4zY3ReGjv3t4SwMhGJpM3BNWlPGj6wvqS9OXlMDut2N2iC2DCJWCAzs0QCYewe59zDRz7vnGtwzjUFP18EJJrZwN/miwwxLR0+lm8/wJknnfgblTH5CmQisWzzviaGZSaTk5YUsnPOLM6ho8vP5r3qzhAOkRplacBtwAbn3PVH2WdEcD/MbG6wttpI1CcyGLy+tZaOLj9nTgxFIEtn5/4WLTIuEqO2VDVyUohuVx40ozgwQODg/GYSWpG6QjYfuAI4p9u0Fhea2ZfM7EvBfT4OrA3Ocv1/wKVOEyGJ9NnLm2tISYyjrDT3hM9VkpdGh8/Pvsa2EFQmIpHk9zu27GsKeSAbnZdKVkoCa3YrkIVDRGbqd869AhxzDL5z7k/AnyJRj8hg9PKWak4bm09KYvwJn6skLw2AHbUtjMxOPeHziUjkVBxopbWzK6T9xyDQv3R6cTZrFcjCQjP1iwwCFQda2FrdHJL+YxDoQwaws1b9yERizabgCMuJIb5CBoHblhsrG+ns8of83EOdApnIIPDy5sB0F+85KTTjYIpyUomPM3XsF4lBB6e8CPUVMoBpxdmBjv3B15DQUSATGQRe2lzFyOyBL5d0pMT4OIpzUtmhQCYSc7bsa6QoO4XMlMSQn/tQx37dtgw5BTKRGNfW2cXLm2t475RhA14uqTcleWnsrNXksCKxZtO+Jk4aEfrblQBj8tLITFbH/nBQIBOJcUvKa2jt7OLcqSNCet6S/DRdIRsAM4s3szfN7Amva5Ghx9fl5+3q0I+wPCguzphalMXa3UfO7S4nSoFMJMY9u34fGckJzBuXF9LzjslLo66lk/rWzpCedwi4jsB6vSIRt3N/Cx0+PxOHhb7/2EEzirPZUNmATx37Q0qBTCSG+f2O5zZU8Z5JhSQnnPh0F90dHGm5S1fJ+szMRgEXAbd6XYsMTVuqArPoh+sKGcCMUdm0+/yHXktCQ4FMJIa9uauOmqZ23j91eMjPXZKXDgTmIpM++yPwbeColw7MbIGZLTez5dXV1RErTIaG8mBIGh/GK2TTitSxPxwUyERi2DPr95IQZ5w1aVjIz10SvEK2Y7869veFmX0AqHLOrTjWfs65hc65MudcWWFhaOaNEzno4AjLjOTwzfs+riCd9KR4BbIQUyATiVHOOZ5dv4/TxuWRnRr64e0ZyQnkpydpcti+mw98yMy2A/cTWCru796WJEPNlqomJoTxdiW807FfIy1DS4FMJEZtqGxka3Uz508L7ejK7kry0zQ5bB85577nnBvlnCsFLgX+45y73OOyZAjx+x1vVzeFtUP/QdOLs9lQ2UiXX0tOh4oCmUiM+teq3STEGRfNLArba5TkpakPmUiM2F3XSltneEdYHjS9KJvWzi62Vqtjf6hEJJCZ2Wgze8HMNpjZOjO7rpd9zMz+z8zKzewtM5sTidpEYlGX3/Hoqt2cNWkYeelJYXud0blp7G1o0/D2fnLOveic+4DXdcjQsqXq4BqWkblCBrB2j25bhkqkrpD5gP9yzk0B5gHXmNnUI/a5AJgY/FgA3BSh2kRizmtv17KvoZ2PnFwc1tcZnZdKl99RWd8W1tcRkRO3ZV/gatWEwvD2IQMYX5hOSmKcJogNoYgEMudcpXNuZfDzRgKTJh75l+Ri4C4X8DqQY2YjI1GfSKx55M3dZCYn8N4poR9d2d3o3OBcZAd021Ik2m2pamJYZjLZaaEf5HOkhPg4pozM0kjLEOp3IDOzh8zsIjMbUJgzs1LgZGDpEU8VA7u6Pa6gZ2gTGfJaO7p4em0lF84YSUpiaCeDPdKoYCCr2N8a1teJNifazol4YUtVU0RuVx40vSib9Xsa8Ktjf0gMpLG5CbgM2GJmvzKzyX090MwygIeArzvnjrzO2duqyD1+yppUUYa6p9ZW0tzRxYfDfLsSYGROCnE2JK+QDbidE/GCc463q5qYUBjBQFacRWO7T2vehki/A5lz7jnn3KeBOcB24Fkze9XMPmNmR71OGnzuIeAe59zDvexSAYzu9ngUsKeX19ekijKk3fnqdsYXpod87creJMbHMTI7lYoDQ+sK2UDbORGv7G1oo6ndF/Y5yLrTjP2hNdDbjvnA1cDngTeBGwg0XM8eZX8DbgM2OOeuP8ppHwOuDI62nAfUO+cqB1KfyGD15s4DrK6o5+ozSgn8WoXfqNzUIbmeZX/bOREvHezQH4kpLw46aXgmSfFxGmkZIv1eW8HMHgYmA3cDH+wWmh4ws+VHOWw+cAWwxsxWBbd9HygBcM7dDCwCLgTKgRbgM/2tTWSw+9ur28lMTuCjc0ZF7DVH56WxeMvQ6h4wwHZOxDMHF/qOZCBLSohj0ohM1mmkZUgMZLGrW51zi7pvMLNk51y7c66stwOcc6/Qex+x7vs44JoB1CMyJFQ1trFoTSWXzxtDehjXqTvSqNxU9jW00+7rIjkhvIMIoki/2zkRL5VXNZKXnkR+RnJEX3d6cRZPrd2Lcy5iV+0Hq4HcsvxZL9teO9FCROTY7nl9J51djitPL43o6x6c+mL30OpHpnZOYsqWfU1MiODVsYOmFWVT19I55PqZhkOf32ab2QgC01CkmtnJvHPFKwtIC0NtIhJU39rJHUu2ce7U4YwtSI/oa4/OOzgXWSvjIjiCywtq5yQWOefYUtXEB2ZGfurOgzP2r9tTf6itkIHpz32P8wh0cB0FdO+Y30igP5iIhMkdS7bR0ObjuvdOjPhrj8pNBaBiaEx9oXZOYk5NUwf1rZ0R7T920OQRmcTHGWt3N3D+dM3lfiL6HMicc3cCd5rZx5xzD4WxJhHppr61k9te2cb7pw4/9G40koZnpZAYb+waApPDqp2TWPTOGpaRm/LioJTEeCYOy9BIyxDozy3Ly51zfwdKzez/Hfn8MaazEJETcNsr22hs8/H1953kyevHxxnFOalD4gqZ2jmJReXBEZZe9CGDwG3LFzdVqWP/CepPp/6DHVcygMxePkQkxKoa27j9lW2cP20EU4uyPKtjVG4au4ZGp121cxJzNu9rJDMlgWGZkR1hedD0oixqmjqoamz35PUHi/7csvxr8N//DV85ItLdb57eRLuvi2+fP8nTOkbnpfLMun2e1hAJauckFm2sbGTKiCzPrk4d7EqxpqKe4VNTPKlhMBjI4uK/MbMsM0s0s+fNrMbMLg9HcSJD2cqdB/jnigo+965xno9uHJWbRm1zBy0dPk/riJSBtHNmlmJmb5jZajNbZ2YKdRJ2fr9j495Gpoz07gLulJFZmKF+ZCdoIPOQvT+4MPgHCKw/eRLwrZBWJTLE+f2OHz+2jmGZyXz1nAlel9NtpOWQuG0JA2vn2oFznHOzgNnA+cFl4ETCZnddK03tPiaP9K5LQ3pyAuMLM1irGftPyEAC2cGFdS8E7nPO7Q9hPSIC3PXadt6qqOd7F04mI4Kz8h/NobnIhs6alv1u51xAU7fjEwEXpvpEANhQGQhBk0d428VxelEWa3bXeVpDrBtIIHvczDYCZcDzZlYItIW2LJGha2t1E796eiNnTSrkw7OLvS4HeGe2/iF0hWxA7ZyZxQfX660CnnXOLe1lnwVmttzMlldXD601QiX0Nu5txCyw0LeXZo3OYV9DO3vrFQcGqt+BzDn3XeB0oMw51wk0AxeHujCRoajL7/ivf6wmOSGeX39sZtQMIS/ISCIlMW7IXCEbaDvnnOtyzs0mMLHsXDOb3ss+C51zZc65ssLCwhBXLkPNhsoGxuSlRXR9297MGp0DwOqKOk/riGUD/QlOITBPT/fj7wpBPSJD2l9eKOfNnXXccOlshmdFz2glMwtOfTE0AlnQgNs551ydmb0InA+sDUNtIgDBDv3e9R87aOrILBLijNW76jhv2givy4lJAxlleTfwO+BdwKnBj7LjHHO7mVWZWa8Nk5mdZWb1ZrYq+PHD/tYlEute3FTF9c9t5uLZRXxoVpHX5fQwOjd1yNyyHGA7V2hmOcHPU4H3ARvDW6kMZS0dPrbXNjN5hPeBLCUxnikjs3SF7AQM5ApZGTDVOdefzqp/A/7Esd9dLnbOfWAA9YjEvB21zXztvjeZPCKLX300em5VdjcqN40VOw54XUakDKSdG0lg2aV4Am92H3TOPRGW6kSAzfuacA4mezjlRXezRmfz6Jt78PsdcXHR14ZFu4F06l8L9Ot6pHPuZUCjMUV6UdfSwRfuWk5cnLHwilNITYr3uqRejc5LpaHNR31rp9elRMJA2rm3nHMnO+dmOuemO+d+EqbaRIB3RlhOiYIrZACzRuXQ2O5ja03T8XeWHgZyhawAWG9mbxCYdwcA59yHTrCW081sNbAH+KZzbl1vO5nZAmABQElJyQm+pIi3mtp9XH3HMrbXtPC3z5x6aHqJaPTOSMsWslMjv8h5hIWrnRMJmY2VDaQnxR+aJ9Brs4Md+1ftqmfCsOi4ahdLBhLIfhzqIoCVwBjnXJOZXQj8C5jY247OuYXAQoCysjLN8SMxq7WjiwV3LWfN7nr+8uk5nDGhwOuSjmlU7sG5yFqZVjToA9mPvS5A5Hje2l3PtKLsqLk9OK4wg4zkBFbvquPjp4zyupyYM5BpL14CtgOJwc+XEQhUA+acazg4oaJzbhGQaGbR/ddJ5ATUNrXzqVte57Wttfz24zNjYlTS6LyDs/UP/pGW4WjnREKps8vP+j0NzBwVPW+O4uOMGcXZ6tg/QAMZZfkF4J/AX4Obiglc0RowMxthwV7MZjY3WFftiZxTJFptq2nmYze9yobKBm769Cl8dE5svJPMTk0kMzlhSIy0DEc7JxJKm/Y20u7zMzN4mzBazBqdw4bKBto6u7wuJeYM5JblNcBcYCmAc26LmQ071gFmdh9wFlBgZhXAjwguTeKcuxn4OPBlM/MBrcCl/RzdJBITHl5Zwf/8ay2JCXHc+4XTOGVMntcl9ZmZUZybOlQmh+13OycSSQevQs2KoitkALNHZ9PZ5dhQ2cDJJblelxNTBhLI2p1zHQeH5QcnTTxmeHLOfeo4z/+JwLQYIoPSrv0t/OrpjTz5ViVzS/P446WzKcqJjo64/TE6L42dtUMikPW7nROJpLd21ZOTlkhJlA0EOjRj/646BbJ+Gkgge8nMvg+kmtm5wFeAx0NblsjgUNvUzp9eKOee13diBv917kl85ewJxEdJJ9z+GpWbypLyGpxzUTlXWgipnZOotrqijpmjcqLu93BEVgrDMpNZXVHvdSkxZyCB7LvA54A1wBeBRcCtoSxKJNa1dPi4bfE2/vryVlo6fHyybDRff99JjMiOnuWQBmJ0bhotHV0caOkkLz3J63LCSe2cRK3Wji62VDVx7tThXpfSg5kxa3QOq3fVeV1KzOl3IHPO+c3sX8C/nHPVoS9JJHZ1dvm5f9kubnhuCzVN7Zw3bTjfOm/SoJmT5+A8abv2twzqQKZ2TqLZuj31dPkdM0fleF1Kr2aPzuHZ9fuob+kkOy3R63JiRp9HWVrAj82shsD6bJvMrFrrToqAc44n3trDude/xP/8ay3jCtJ56Mtn8NcrygZNGAMOTUA5WBcZVzsnseDg7cBo69B/0KxgUFyl6S/6pT/TXnwdmA+c6pzLd87lAacB883sG+EoTiQWvFpew8V/XsJX732T5IR4br+6jAe+OI9Txgy+Dq3vXCEbtFNffB21cxLlVu+qC/TVyorOLhCzRmdjBiuHztq3IdGfW5ZXAuc652oObnDObTWzy4FngD+EujiRaLZ2dz2/fnoji7fUUJyTyu8/MYsPn1wcsx32+yIjOYGCjCR21DZ7XUq4qJ2TqLdix4GofsOXmZLIpOGZrNypQNYf/Qlkid0bqYOcc9VmppvEckLaOrvY19BGTVMHtU3t1LV00t7lp6vLj8/vSIgzslITyUpJJDstkeKcVIZnpXgSfnbUNvO7Zzbz+Oo95KQl8oOLpnD5vDGkJEbnouChNrYgna01gzaQqZ2TqLa7rpXdda184d1jvS7lmE4Zk8ujq/bQ5XeD+k1qKPUnkHUM8DmRQ+pbO1m3p571exrYVtPM9tpmtte0sKe+lf5OBZwYb4zKTWNcQTpTi7KYVpTFtKJsRuWmhmUoeFVjGzc+X859b+wkMT6Or549gQXvGUdWytD6O12an86LmwdtP3e1cxLVlm3bD0BZaXRPKn3KmFzuWbqTLVWNTB6R5XU5MaE/gWyWmTX0st2A6LyRLZ6rbmznlfJqFm+uYcXOA+zoNqlodmoipQXpnFqaS2nBKIpzUinITKYgPZnc9ESSE+KJjzPi4wxfl5/GNh8NbZ0caOlk94FWdu5vYef+Zrbsa+KFTVX4g4FuWGYyp47NY25pHmWluUwekXVC79B27W/htle2cf+ynXR2OT41dzRfO2di1PbfCLexhen8Y0UFTe0+MpIHMnNOVBtwO2dmo4G7gBGAH1jonLsh9CXKULZs+34ykhOYMjK6Q87BW6ordhxQIOujPremzrmhcT9GTti+hjb+9eZuHlu9h3V7An/b8tKTmFuaxyfLRjO9OJtpRVkUZCT367z5x9i/rbOLTXsbeWt3Pcu372fZtv08+VYlAJkpCZwyJpeyMbnMGZPL7NE5pCUd+79+Y1sn/9lYxSNv7mbxlhriDC6eXcw1Z09gbEF6v+oebMYFv/7tNc1ML47OUV4DdYLtnA/4L+fcSjPLBFaY2bPOufUhKk+EZdv3M2dMbtTfBizJS6MgI4kVOw7w6dPGeF1OTBh0b2/FO6t31XHTi2/zzPq9+B2cXJLDt86bxJkTC5lWlEVcGBuQlMR4Zo3OYdboHK6YF/jlrzjQwrLt+3lj2wGWb9/Pi5sCt9ni44zS/DTGF2ZQnJtKZkoiyQlxNLR2Ut3UzrrdDWyuasQ5KMpO4YtnjuOK08cwMjv2ljoKh9JgINs2CAPZiXDOVQKVwc8bzWwDgUXJFcgkJPY3d7B5XxMfmlXkdSnHZWbMKcnVSMt+UCCTE7ZlXyM/fXIDL2+uJislgQVnjueTZaMYV5jhaV2jctMYlZvGR04eBUB9Sycrdx1g5Y4DbN7XSHlVE0vKa2ju6AIgKSGOvLQkThqRyQUzRnDG+ALKxuSGNUjGotL8dwKZ9M7MSoGTCS5OfsRzC4AFACUlJZEtTGLaa2/XAnD6+AKPK+mbU8bk8sz6fdQ0tff7jshQFJFAZma3Ax8Aqpxz03t53oAbgAuBFuBq59zKSNQmA9fc7uN3z2zirtd2kJ4Uz3cvmMynTyshM0o7uWenJXL2pGGcPWnYYdv9fkdHl5/khLioWxcuGqUkxlOUnaJAdhRmlgE8BHzdOdejP5pzbiGwEKCsrEwLlkufvVJeQ0ZyQtROCHukg/3IVu44wPunjfC4mugXqStkfwP+RKDDa28uACYGP04Dbgr+K1HqzZ0H+MYDq9ixv4VPzS3hm++fFLNL6cTFGSlx6iLZH2ML0xXIehGcGuMh4B7n3MNe1yODy6tv1zBvXD4J8f2Z090704uzSYw3VuxUIOuLiPxUnXMvA/uPscvFwF0u4HUgx8xGRqI26R/nHH996W0+fvNrdHY57vvCPH7xkRkxG8ZkYMYWKJAdKXil/zZgg3Pueq/rkcFl1/4WdtS2MH9Cvtel9FlKYjzTi7PVj6yPoiVmFwO7uj2uCG7rwcwWmNlyM1teXT1o50KKSq0dXVx3/yp++dRGzp82gqe+/m7mjYudxkFCpzQ/nfrWTg40a2qubuYDVwDnmNmq4MeFXhclg8Mr5YH5iudPiI3+YwedUpLL6op6Onx+r0uJetESyHrruNNr3wrn3ELnXJlzrqywsDDMZclBtU3tXLLwNR5/aw/fOm8Sf7rs5CE3Iaq8Y1xhoGP/IJ6xv9+cc68458w5N9M5Nzv4scjrumRweGFjFUXZKUwc5u1gqf46ZUwuHT4/6/bUe11K1IuWQFYBjO72eBSwx6Na5Ai761r5xF9fY9PeRhZeUcY1Z09Q5/chTiMtRSKn3dfFK+U1nD15WMy1vXO6TRArxxYtgewx4EoLmAfUB+f0EY+VVzXy8Ztepbqxnb9//jTOnTrc65IkCozOSyM+ztiuQCYSdku37qelo4v3Thl2/J2jzPCsFEblpiqQ9UGkpr24DzgLKDCzCuBHQCKAc+5mYBGBKS/KCUx78ZlI1CXHtnZ3PVfctpSE+Dge/OLpUb9Uh0ROYnwcJXlpukImEgH/2VhFckIcp4+Lrf5jB80tzePFzdX4/U7zOh5DRAKZc+5Tx3neAddEohbpm/V7Grj8tqWkJyVw7xdOY0z+0F4uSHoaW5DO29VNXpchMqg553huwz7mTyggNSk2p+eZNz6fh9/czWYtNH5M0XLLUqLIpr2NXH7bUlIT47nvC/MUxqRXE4dlsLW6GV+XRk+JhMua3fVUHGjl/OmxO4/X6cHR+K8HVxqQ3imQyWHKqxr59K2vkxBn3PuFeZTkp3ldkkSpk4Zn0tHlZ3tti9eliAxai9bsJSHOeH8M998dnZfGqNxUXtuqQHYsCmRyyO66Vj5961LAuG/BPMYW6MqYHN2kEZlAYC1TEQk95xxPra3kjAkF5KTF9uTbp4/LZ+m2/fj9Wi3saBTIBIC6lg6uuv0NWtq7uPtzcxnv8cLgEv3GF2ZgBpsUyETCYu3uBnbUtnBhDN+uPOj08fnUtXSyYW+P5V0lSIFMaOvs4nN3LmdnbQsLryzTaErpk9SkeMbkpbFZgUwkLB5aWUFSQhwXzIj9lQQPrurymvqRHZUC2RDX5Xd87b43WbnzAH+4ZDanj9dSSNJ3Jw3PZNNeBTKRUOvw+Xl01W7OnTqc7NTYXxWlKCeVMflpCmTHoEA2hDnn+J9H1/LM+n386ANTuWhm7L8Lk8iaNCKT7bUttHV2eV2KyKDywqYqDrR08vE5o7wuJWTePbGA17bWqr04CgWyIezG/5Rz79KdfOk947l6/livy5EYNK0omy6/Y6OukomE1P1v7KQwM5l3T4zNyWB7c87kYbR0dLF0236vS4lKCmRD1P1v7OT6Zzfz0TnFfOf8SV6XIzFqWlGgv+Ha3Vo4WCRUdtQ28+Lmaj41t4SE+MHzZ/qM8QWkJMbxwsYqr0uJSoPnJy199vyGffz3v9Zy5kmF/PpjM2NusVqJHqNyU8lOTWTdHgUykVD5++s7iDPjsrklXpcSUimJ8cwfX8DzG/cRWKBHulMgG2JW7jzANfeuZFpRFjd9eg6Jg+jdl0SemTG9OIu1uzWUXSQUmtp9PLBsF+dNG86I7BSvywm5c6YMY9f+Vk2X0wv9NR5C3q5u4nN/W8bwrBRuv/pU0pMjspSpDHLTi7LZtLeRziG+hJKZ3W5mVWa21utaJHbd8/oOGtp8fPHM8V6XEhbnTRtBfJzx6Ko9XpcSdRTIhoiqhjauvO0N4uOMuz47l4KMZK9LkkFienE2HV1+NlYO+Xe8fwPO97oIiV1tnV3csngb755YwKzROV6XExYFGYGBCo+t2qNZ+48QsUBmZueb2SYzKzez7/by/FlmVm9mq4IfP4xUbYNdQ1snV9+xjAMtHdx+9alaLFxCas6YXCBwO3woc869DGj4mAzY31/fQU1TO185a4LXpYTVh2cXs7uulWXb9evSXUQCmZnFA38GLgCmAp8ys6m97LrYOTc7+PGTSNQ22LV1dvH5vy1n875Gbrr8FGaOyvG6JBlkirJTGJGVwoodQzuQ9ZWZLTCz5Wa2vLq62utyJErUt3Ry43/KOfOkwkE/Qff7pw0nPSme+97Y6XUpUSVSV8jmAuXOua3OuQ7gfuDiCL32kNXZ5ecr96xk2Y79/OGS2bznpEKvS5JByMyYMyZnyF8h6yvn3ELnXJlzrqywUL+TEvCnF7bQ0NbJd8+f7HUpYZeWlMClc0t4/K1Kdu1v8bqcqBGpQFYM7Or2uCK47Uinm9lqM3vKzKb1diK9u+wbv9/xzX+s5j8bq/jZh6fzwVlFXpckg9icklwqDrRS1dDmdSkiMWft7npuX7KdS8pGM7VoaKwl/Pl3jyXO4LZXtnldStSIVCDrbaKrI3vzrQTGOOdmATcC/+rtRHp3eXx+v+MHj67l0VV7+Pb5k/j0aWO8LkkGuVOC/cjeUJ8QkX7xdfn53sNryE1L4nsXTPG6nIgZmZ3KR04u5t43drK9ptnrcqJCpAJZBTC62+NRwGFjXp1zDc65puDni4BEMxs8a0ZESJff8d2H3+LepTv58lnj+fJ7BufQaYkuM4qzyUxOYEl5jdeleMbM7gNeAyaZWYWZfc7rmiT63bFkO2t21/PjD00lOy32FxHvj/96/ySS4uP41j9XD/lpcyBygWwZMNHMxppZEnAp8Fj3HcxshAWnjDezucHatCx8P3R2+fnWP1bz4PIKvnbOBL593iTNwi8RkRAfx7zx+bwyhAOZc+5TzrmRzrlE59wo59xtXtck0W1NRT2//fcmzp06nItmjPS6nIgbnpXCzz8ynWXbD/D1B1YN+UXHIzIzqHPOZ2ZfBf4NxAO3O+fWmdmXgs/fDHwc+LKZ+YBW4FKntRX6rLGtk6/cs5LFW2r45vtP4qvnTPS6JBli3j2xgGfX72NnbQsl+WlelyMS1RrbOvnqfSvJz0jiN0N4CbuLZxezr6GNXyzayOpddXxwVhGzRmVTnJNGUU4KeelJQ+Z7E7Gp2oO3IRcdse3mbp//CfhTpOoZTPbUtfL5O5ezaV8jv/7YDC45dXCtfyaxYf6EQA+Dl7ZUc0W++i2KHI3f7/j2P9+i4kArDyyYR256ktcleWrBmeOZXpzNjc+Xc8vLW/F1mzA2JTGOmcU5XHVGKRfOGDGow5nWzolxr2yp4Wv3v0mHz89tV5Vx1qRhXpckQ9S4gnRK89N4dv0+rpinQCZyNDc8v4Wn1u7l+xdOpqw0z+tyosIZ4ws4Y3wBTe0+ttc0s7uulT11rVQcaOXZ9fu45t6VnHlSIb/7xEyGZQ6+NT5BgSxmdXb5+dN/yrnxP1uYMCyDmy4/hfGFGV6XJUOYmXH+9JHcungr9S2dQ66DskhfPLZ6Dzc8v4VPnDKKL7x7nNflRJ2M5ASmF2czvTj70Lb/vnAK9yzdwc8XbeBjN73KPZ+bNyi7RWgtyxi0aW8jH/nLEm54fgsfnl3MI1+ZrzAmUeH86SPw+R3Pb9zndSkiUefNnQf45j9WM7c0j599ZPqgvv0WSnFxxhWnl/LAgtNpbPNxycLXqKxv9bqskFMgiyEdPj9/fqGcD974CpV1bdx8+Slcf8ls0pN1oVOiQ6Azbir/WrXn+DuLDCHlVY185m/LGJGVwk2XzyE5Id7rkmLOrNE53Pv5eTS2+fjs35bT1O7zuqSQUiCLES9uquL8G17mt//exPumDuOZb5zJ+dNHeF2WyGHMjI+fMorFW6q1JIpI0O66Vq647Q0S4uK4+3Nzyc9I9rqkmDW1KIs/f3oOm/c18tV7V9LlHzyTMSiQRbntNc18/s5lXH3HMpyD268u4y+fPkW/0BK1PnnqaAx4YNmu4+4rMtjVNLVzxW1LaWr3cddn5zImP93rkmLee04q5KcXT+fFTdX86qkNXpcTMrrXFaXqWjq46aW3ueOV7STGG9+7YDKfmT+WpARlaIluxTmpnDN5GPcs3cGXzxqvW+oyZO1raOOyW15nT10rd332tCGzTmUkXHZaCZv3NXLL4m1MGpHFx08Z5XVJJ0x/3aNMc7uPG5/fwrt//QILX97KB2cV8cI3z+KL7xmvMCYx45qzJ3CgpZO7XtvhdSkinthR28wn//oae+vbuOuzpzF3rKa3CLUfXDSF+RPy+f7Da1ix44DX5Zww/YWPEm2dXdyxZBvv+e0L/P7Zzcwbn8/T153J7z85i2FZg3POFRm8Ti7J5T0nFfLXl9+mtqnd63JEIuqlzdV88MZXqGvp5O7PK4yFS0J8HH++bA4jc1L44t0r2F0X2yMvFcg8Vt/SyZ/+s4V3/fo//O/j65k4LJOHv3IGt1xZxqQRmV6XJzJgP7hoCs3tPn7yxHqvSxGJiNaOLn65aAOfueMNinJSefyr72JOSa7XZQ1qOWlJ3HplGe2dXXz6ltfZW9/mdUkDps4dHlm7u55/LN/FP1ZU0NLRxXtOKuSL7xnH6ePyNTeNDAoTh2fylbMmcMPzWzhjfL6W9JJBq6qxjUff3MOtr2xlX0M7l546mh9+cCppSfoTGwkTh2dy5+fmcuVtb3DZLa9z34J5DI/BO0v63xJBu/a38O91e3lo5W42VDaQFB/HRTNHsuDMcUwZqc6eMvhce84EVu48wH8/spbs1CRN1SIxr62zi017G9m0t5ENextYU1HPip0HcA7mjcvjxk/N0S1KD8wpyeVvnzmVq25/gw/96RVuvvwUTo6xq5PmXGTm8DCz84EbgHjgVufcr4543oLPXwi0AFc751Ye65xlZWVu+fLlYar4xFU1trGmop4l5bW8uLmKrdXNAMwclc0nThnFB2cVkZM2tBeVlcGvvrWTq+94g9W76vjaeydyzdkTSIwfeG8JM1vhnCsLYYkhc7x27kjR3oYNdR0+P5v3NbK6oo41FfW8VVHP5n2Nhxa/TkmMY9KILM46qZCLZo7kpOHqZuK1DZUNfOGu5VTWt/H5d4/lmrMnkJUSPcu4Hav9ikggM7N4YDNwLlABLAM+5Zxb322fC4FrCQSy04AbnHOnHeu8XjdmzjlaO7vYU9fKrv2t7Nzfwq79LWyvbWbN7nr2NQQ6MyclxHHa2DzOmjSMsycVMk7LHMkQ09Lh4/sPr+Ffq/YwKjeVq88o5f1TRzA6L7Xft+ijNZD1pZ07ktdtmLyjrbOL8qom1lc28FYwgG2obKSjyw9AdmoiM0dlM3NUNtOKspkyMouSvDTi49TFJNrUt3Tyi0UbeGD5LrJSEvhE2WgunDGCGcU5ns9WEA2B7HTgx86584KPvwfgnPtlt33+CrzonLsv+HgTcJZzrvJo5+1PY7ZoTSUtHV34ncM5R5efQ5/7HXT5XfAxdDlHl9/R1tlFa0cXLZ1dtHV00dLRRXOHj/3NHRxo7qC2uYN2n/+w10lJjKMkL42pI7OYMSqHGcXZzCjOJjVJy2SIvLipiv97fgsrd9YBkJuWyIxROfzwA1OZMKxvb1SiOJAdt507kgJZZDy7fh/7Gtpo9/lp6+yivbOL1s4uaps62NfYxp66NnbUNnNw0vfAAtdZzByVEwhhxTkDevMg3lq7u56bXnybZ9fvo6PLT3JCHJNHZlGck8LwrBRy05JISYwjOSGelMQ4zp06grz08N61Olb7Fak+ZMVA92m7KwhcBTvePsXAYYHMzBYAC4IPm4LBzWsFQM3BB5uAZ72rpT8OqzuGqO7ICWvNO4BVwN39O2xMGEoJhb60c9HYhsXi/0sIc93rgAfCc2p9vyPrsLo3e1hI0FHbr0gFst7eVhx5aa4v++CcWwgsDEVRoWJmy6PxHfvxqO7IisW6Y7FmD8VkGxarP2PVHVmqO/widTO1Ahjd7fEoYM8A9hERiVZqw0RkwCIVyJYBE81srJklAZcCjx2xz2PAlRYwD6g/Vv8xEZEo05d2TkSkVxG5Zemc85nZV4F/ExgOfrtzbp2ZfSn4/M3AIgIjLMsJTHvxmUjUFiJRc/uhn1R3ZMVi3bFYsyeO1s55XFZfxOrPWHVHluoOs4jNQyYiIiIivdNaliIiIiIeUyATERER8ZgCmYiIiIjHFMhEREREPKZAJiIiIuIxBTIRERERjymQiYiIiHhMgUxERETEYwpkIiIiIh5TIBMRERHxmAKZiIiIiMcUyEREREQ8pkAmIiIi4jEFMhERERGPKZCJiIiIeEyBTERERMRjCmQiIiIiHlMgExEREfGYApmIiIiIxxTIRERERDymQCYiIiLiMQUyEREREY8pkImIiIh4LMHrAk5EQUGBKy0t9boMEYmgFStW1DjnCr2uIxTUhokMLcdqv2I6kJWWlrJ8+XKvyxCRCDKzHV7XECpqw0SGlmO1X7plKSIiIuIxBTIRERERjymQiYiIiHhMgUxERETEYwpkIiIiIh5TIBMRERHxmAKZiIiIiMcUyEREREQ8pkAmIiIi4jEFMhERERGPKZCJiIiIeCym17KUoePGG2+kvLzc6zJOyO7duwEoLi72rIYJEyZw7bXXevb6IhJZfWk7+9M2qQ0JHwUyiQnl5eWsWruBrrQ8r0sZsPiWegD2tnvzaxffst+T1xUR7/Sl7exr26Q2JLwUyCRmdKXl0Tr5Qq/LGLDUjYsAPPsaDr6+iAwtx2s7+9o2qQ0JL/UhExEREfGYApmIiIiIxxTIRERERDymQCYiIiLiMQUyEREREY8pkImIiIh4TIFMRERExGMKZCIiIiIeUyATERER8ZgCmYiIiIjHFMhEREREPKZAJiIiIuIxBTIRERERjymQiYiIiHhMgUxERETEYwpkIiIiIh5TIBMRERHxmAKZiIiIiMcUyEREREQ8pkAmIiIi4jEFMhERERGPKZCJiIiIeEyBTERERMRjCmQiIiIiHlMgExEREfGYAlmI3Xjjjdx4441elyFyQvT/WCS09DvVf0Pte5bgdQGDTXl5udcliJww/T8WCS39TvXfUPue6QqZiIiIiMcUyEREREQ8pkAmIiIi4jEFMhERERGPKZCJiIiIeEyBTERERMRjCmQiIiIiHlMgExEREfGYApmIiIiIxxTIRERERDymQCYiIiLiMQUyEREREY8pkImIiIh4TIFMRERExGMKZCIiIiIeUyATERER8ZgCmYiIiIjHFMhEREREPKZAJiIiIuIxBTIRERERjymQiYiIiHhMgUxERETEYwpkIiIiIh5TIBMREemD2tpavva1r1FbW9vvYzo7O8NY2eBWW1vLF77wBS644ALKy8sP297fn0c0UyATERHpgzvvvJM1a9Zw11139fuYffv2hbGywe3OO+9ky5YttLa28rOf/eyw7f39eUQzBTIREZHjqK2t5emnn8Y5x9NPP92nqzLdj9m/f7+ukg1AZ2cnTz311KHH27dvp7y8fEA/j2iX4HUBg83u3btpbW3luuuu87qUQaW8vJy4Dud1GTEtrq2B8vLGPv3fLC8vJzU1NQJVicSGO++8E7/fD0BXVxd33XUX3/jGN/p8jHOOzZs3R/xvQyjbzv60IaFQXl6Oz+frEWR/9rOfMXPmzH7/PKJdzF0hM7MFZrbczJZXV1d7XY6ISL+oDYtNzz33HD6fDwCfz8ezzz7br2MOHif909HR0WPb9u3bB/TziHYxd4XMObcQWAhQVlYWdZdMiouLAbjhhhs8rmRwue6661ixVX0wToQ/JYsJ44b36f+mrvCGT7S3YdK7973vfSxatAifz0dCQgLnnntuv44ByM/Pj/jfhlC2nf1pQ0Lhuuuuo6KiosftyNLSUmbOnNnvn0e0i7krZCIiIpF21VVXERcX+JMZHx/PlVde2a9jzIzhw4eHtcbBaPjw4SQmJh627Qc/+MGAfh7RToFMRETkOPLz8zn//PMxM84//3zy8/P7dUxeXl6PYCHHl5iYyAUXXHDocWlpKRMmTBjQzyPaxdwtSxERES9cddVVbN++vV9XYw4eo/5jA3fVVVexYcMGKioq+MEPfnDY9v7+PKKZApmIiEgf5Ofn83//938DOkb9MgcuPz+fW265pdft/f15RDPdshQRERHxmAKZiIiIiMcUyEREREQ8pkAmIiIi4jEFMhERERGPKZCJiIiIeEyBTERERMRjCmQiIiIiHlMgExEREfGYApmIiIiIxxTIRERERDym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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "import matplotlib.pyplot as plt\n", + "f, axes = plt.subplots(5,2, figsize=(10,15), sharex=True)\n", + "\n", + "for i,f in enumerate([sns.stripplot, sns.histplot, sns.kdeplot, sns.boxplot, sns.violinplot]):\n", + " for j,d in enumerate([df.score, df.rename(columns=dict(score=\"textualScore\")).groupby(\"source\").textualScore.mean()]):\n", + " f(x=d, ax=axes[i, j])" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "id": "d7416024", + "metadata": { + "ExecuteTime": { + "end_time": "2022-03-01T01:15:09.658600Z", + "start_time": "2022-03-01T01:15:09.634763Z" + } + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
textualScore
00.813205
10.685687
20.809620
30.800835
40.731424
......
1540.772159
1550.844647
1560.714356
1570.670670
1580.797801
\n", + "

159 rows × 1 columns

\n", + "
" + ], + "text/plain": [ + " textualScore\n", + "0 0.813205\n", + "1 0.685687\n", + "2 0.809620\n", + "3 0.800835\n", + "4 0.731424\n", + ".. ...\n", + "154 0.772159\n", + "155 0.844647\n", + "156 0.714356\n", + "157 0.670670\n", + "158 0.797801\n", + "\n", + "[159 rows x 1 columns]" + ] + }, + "execution_count": 22, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.groupby(\"source\").score.mean().reset_index()[[\"score\"]].rename(columns={\"score\":\"textualScore\"})" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "id": "85a141b7", + "metadata": { + "ExecuteTime": { + "end_time": "2022-03-01T01:15:11.770203Z", + "start_time": "2022-03-01T01:15:11.634824Z" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 23, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "ax = sns.boxplot(data=df[[\"score\"]]) #, x=\"score\")\n", + "sns.boxplot(data=df.groupby(\"source\").score.mean().reset_index()[[\"score\"]].rename(columns={\"score\":\"textualScore\"}), ax=ax)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "41b67db4", + "metadata": {}, + "outputs": [], + "source": [] } ], "metadata": { diff --git a/research/Textual Testing.ipynb b/research/Textual Testing.ipynb new file mode 100644 index 00000000..b36a9c1f --- /dev/null +++ b/research/Textual Testing.ipynb @@ -0,0 +1,417 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "id": "4a78d82e", + "metadata": { + "ExecuteTime": { + "end_time": "2022-03-07T03:27:38.301693Z", + "start_time": "2022-03-07T03:27:18.115656Z" + } + }, + "outputs": [], + "source": [ + "from transformers import pipeline\n", + "from transformers import AutoTokenizer\n", + "from transformers import DataCollatorWithPadding\n", + "from transformers import AutoModelForSequenceClassification, TrainingArguments, Trainer\n", + "from transformers import PreTrainedModel\n", + "from transformers.pipelines.pt_utils import KeyDataset\n", + "import torch\n", + "\n", + "from tqdm.auto import tqdm\n", + "\n", + "from datasets import Dataset, DatasetDict, load_dataset\n", + "from datasets import load_metric\n", + "\n", + "from sklearn.model_selection import train_test_split\n", + "from sklearn.metrics import cohen_kappa_score\n", + "\n", + "import pandas as pd\n", + "import numpy as np\n", + "import logging\n", + "from glob import glob\n", + "from os import path\n", + "import functools\n", + "\n", + "from IPython.display import HTML, display\n", + "\n", + "import spacy\n", + "from spacy import displacy" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "be541981", + "metadata": { + "ExecuteTime": { + "end_time": "2022-03-07T03:28:09.424819Z", + "start_time": "2022-03-07T03:27:38.338574Z" + } + }, + "outputs": [], + "source": [ + "model_checkpoint = \"distilbert-base-uncased\"\n", + "category_codes = dict(enumerate(['Claim', 'Concluding Statement', 'Counterclaim', 'Evidence', 'Lead', 'Position', 'Rebuttal']))\n", + "tokenizer = AutoTokenizer.from_pretrained(model_checkpoint, use_fast=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "c6e2a9d2", + "metadata": { + "ExecuteTime": { + "end_time": "2022-03-07T03:28:10.509952Z", + "start_time": "2022-03-07T03:28:09.459056Z" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + "DistilBertForSequenceClassification(\n", + " (distilbert): DistilBertModel(\n", + " (embeddings): Embeddings(\n", + " (word_embeddings): Embedding(30522, 768, padding_idx=0)\n", + " (position_embeddings): Embedding(512, 768)\n", + " (LayerNorm): LayerNorm((768,), eps=1e-12, elementwise_affine=True)\n", + " (dropout): Dropout(p=0.1, inplace=False)\n", + " )\n", + " (transformer): Transformer(\n", + " (layer): ModuleList(\n", + " (0): TransformerBlock(\n", + " (attention): MultiHeadSelfAttention(\n", + " (dropout): Dropout(p=0.1, inplace=False)\n", + " (q_lin): Linear(in_features=768, out_features=768, bias=True)\n", + " (k_lin): Linear(in_features=768, out_features=768, bias=True)\n", + " (v_lin): Linear(in_features=768, out_features=768, bias=True)\n", + " (out_lin): Linear(in_features=768, out_features=768, bias=True)\n", + " )\n", + " (sa_layer_norm): LayerNorm((768,), eps=1e-12, elementwise_affine=True)\n", + " (ffn): FFN(\n", + " (dropout): Dropout(p=0.1, inplace=False)\n", + " (lin1): Linear(in_features=768, out_features=3072, bias=True)\n", + " (lin2): Linear(in_features=3072, out_features=768, bias=True)\n", + " )\n", + " (output_layer_norm): LayerNorm((768,), eps=1e-12, elementwise_affine=True)\n", + " )\n", + " (1): TransformerBlock(\n", + " (attention): MultiHeadSelfAttention(\n", + " (dropout): Dropout(p=0.1, inplace=False)\n", + " (q_lin): Linear(in_features=768, out_features=768, bias=True)\n", + " (k_lin): Linear(in_features=768, out_features=768, bias=True)\n", + " (v_lin): Linear(in_features=768, out_features=768, bias=True)\n", + " (out_lin): Linear(in_features=768, out_features=768, bias=True)\n", + " )\n", + " (sa_layer_norm): LayerNorm((768,), eps=1e-12, elementwise_affine=True)\n", + " (ffn): FFN(\n", + " (dropout): Dropout(p=0.1, inplace=False)\n", + " (lin1): Linear(in_features=768, out_features=3072, bias=True)\n", + " (lin2): Linear(in_features=3072, out_features=768, bias=True)\n", + " )\n", + " (output_layer_norm): LayerNorm((768,), eps=1e-12, elementwise_affine=True)\n", + " )\n", + " (2): TransformerBlock(\n", + " (attention): MultiHeadSelfAttention(\n", + " (dropout): Dropout(p=0.1, inplace=False)\n", + " (q_lin): Linear(in_features=768, out_features=768, bias=True)\n", + " (k_lin): Linear(in_features=768, out_features=768, bias=True)\n", + " (v_lin): Linear(in_features=768, out_features=768, bias=True)\n", + " (out_lin): Linear(in_features=768, out_features=768, bias=True)\n", + " )\n", + " (sa_layer_norm): LayerNorm((768,), eps=1e-12, elementwise_affine=True)\n", + " (ffn): FFN(\n", + " (dropout): Dropout(p=0.1, inplace=False)\n", + " (lin1): Linear(in_features=768, out_features=3072, bias=True)\n", + " (lin2): Linear(in_features=3072, out_features=768, bias=True)\n", + " )\n", + " (output_layer_norm): LayerNorm((768,), eps=1e-12, elementwise_affine=True)\n", + " )\n", + " (3): TransformerBlock(\n", + " (attention): MultiHeadSelfAttention(\n", + " (dropout): Dropout(p=0.1, inplace=False)\n", + " (q_lin): Linear(in_features=768, out_features=768, bias=True)\n", + " (k_lin): Linear(in_features=768, out_features=768, bias=True)\n", + " (v_lin): Linear(in_features=768, out_features=768, bias=True)\n", + " (out_lin): Linear(in_features=768, out_features=768, bias=True)\n", + " )\n", + " (sa_layer_norm): LayerNorm((768,), eps=1e-12, elementwise_affine=True)\n", + " (ffn): FFN(\n", + " (dropout): Dropout(p=0.1, inplace=False)\n", + " (lin1): Linear(in_features=768, out_features=3072, bias=True)\n", + " (lin2): Linear(in_features=3072, out_features=768, bias=True)\n", + " )\n", + " (output_layer_norm): LayerNorm((768,), eps=1e-12, elementwise_affine=True)\n", + " )\n", + " (4): TransformerBlock(\n", + " (attention): MultiHeadSelfAttention(\n", + " (dropout): Dropout(p=0.1, inplace=False)\n", + " (q_lin): Linear(in_features=768, out_features=768, bias=True)\n", + " (k_lin): Linear(in_features=768, out_features=768, bias=True)\n", + " (v_lin): Linear(in_features=768, out_features=768, bias=True)\n", + " (out_lin): Linear(in_features=768, out_features=768, bias=True)\n", + " )\n", + " (sa_layer_norm): LayerNorm((768,), eps=1e-12, elementwise_affine=True)\n", + " (ffn): FFN(\n", + " (dropout): Dropout(p=0.1, inplace=False)\n", + " (lin1): Linear(in_features=768, out_features=3072, bias=True)\n", + " (lin2): Linear(in_features=3072, out_features=768, bias=True)\n", + " )\n", + " (output_layer_norm): LayerNorm((768,), eps=1e-12, elementwise_affine=True)\n", + " )\n", + " (5): TransformerBlock(\n", + " (attention): MultiHeadSelfAttention(\n", + " (dropout): Dropout(p=0.1, inplace=False)\n", + " (q_lin): Linear(in_features=768, out_features=768, bias=True)\n", + " (k_lin): Linear(in_features=768, out_features=768, bias=True)\n", + " (v_lin): Linear(in_features=768, out_features=768, bias=True)\n", + " (out_lin): Linear(in_features=768, out_features=768, bias=True)\n", + " )\n", + " (sa_layer_norm): LayerNorm((768,), eps=1e-12, elementwise_affine=True)\n", + " (ffn): FFN(\n", + " (dropout): Dropout(p=0.1, inplace=False)\n", + " (lin1): Linear(in_features=768, out_features=3072, bias=True)\n", + " (lin2): Linear(in_features=3072, out_features=768, bias=True)\n", + " )\n", + " (output_layer_norm): LayerNorm((768,), eps=1e-12, elementwise_affine=True)\n", + " )\n", + " )\n", + " )\n", + " )\n", + " (pre_classifier): Linear(in_features=768, out_features=768, bias=True)\n", + " (classifier): Linear(in_features=768, out_features=7, bias=True)\n", + " (dropout): Dropout(p=0.2, inplace=False)\n", + ")" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "model_path = r\"models_gitignored/distilbert-base-uncased-finetuned-sentence-classification/checkpoint-12626\"\n", + "loaded_model = AutoModelForSequenceClassification.from_pretrained(model_path, id2label=category_codes)\n", + "loaded_model" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "ac18ee20", + "metadata": { + "ExecuteTime": { + "end_time": "2022-03-07T03:28:10.930951Z", + "start_time": "2022-03-07T03:28:10.546955Z" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "pipe = pipeline(\"text-classification\", model=loaded_model, tokenizer=tokenizer)\n", + "pipe" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "02c07019", + "metadata": { + "ExecuteTime": { + "end_time": "2022-03-07T03:28:13.133917Z", + "start_time": "2022-03-07T03:28:10.964957Z" + } + }, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Using custom data configuration default-d6e247263eac0dbb\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Downloading and preparing dataset text/default to C:\\Users\\Prannaya\\.cache\\huggingface\\datasets\\text\\default-d6e247263eac0dbb\\0.0.0\\08f6fb1dd2dab0a18ea441c359e1d63794ea8cb53e7863e6edf8fc5655e47ec4...\n" + ] + }, + { + "data": { + "application/vnd.jupyter.widget-view+json": { + "model_id": "ea386f02da3941dcbf5e38bb7d50f4a2", + "version_major": 2, + "version_minor": 0 + }, + "text/plain": [ + " 0%| | 0/1 [00:00