This commit is contained in:
Muhammad Fakhar-e-Iqbal Abdullah 2024-02-14 01:09:41 +00:00 committed by GitHub
commit 2121715786
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 10015 additions and 10010 deletions

View File

@ -922,7 +922,7 @@
],
"source": [
"x,y = to_cpu(dls.train.one_batch())\n",
"activs = learn.model(x)\n",
"activs = TensorBase(learn.model(x))\n",
"activs.shape"
]
},

File diff suppressed because one or more lines are too long

View File

@ -153,9 +153,11 @@
}
],
"source": [
"tok = Tokenizer.from_folder(path)\n",
"spacy = WordTokenizer()\n",
"tok = Tokenizer(spacy)\n",
"tok.setup(txts)\n",
"toks = txts.map(tok)\n",
"toks[0]"
]
},