This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Component | Price | Link | |
|---|---|---|---|
| Crucial 8GB Single DDR4 2400 | $31.99 | https://www.amazon.com/gp/product/B01BIWKP58/ref=ppx_yo_dt_b_asin_title_o00_s00?ie=UTF8&psc=1 | |
| Seagate 2.5 HDD | NA | NA |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Component | Price | Link | |
|---|---|---|---|
| AMD Ryzen 3 3200G | $99.99 | https://www.amazon.com/gp/product/B07STGHZK8/ref=ppx_yo_dt_b_asin_title_o01_s00?ie=UTF8&psc=1 | |
| Thermal Pad | $12.95 | https://www.amazon.com/gp/product/B07CK9SHZG/ref=ppx_yo_dt_b_asin_title_o03_s01?ie=UTF8&psc=1 | |
| Crucial 16GB DDR4 2400 SODIMM | $64.40 | https://www.amazon.com/gp/product/B019FRBHZ0/ref=ppx_yo_dt_b_asin_title_o00_s00?ie=UTF8&psc=1 | |
| ASRock DESKMINI A300W | $153.99 | https://www.newegg.com/asrock-deskmini-a300w/p/N82E16856158064?Item=N82E16856158064 | |
| Crucial P1 500GB NVMe | $56.99 | https://www.newegg.com/crucial-p1-500gb/p/N82E16820156200?Item=N82E16820156200 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import nltk | |
| with open('sample.txt', 'r') as f: | |
| sample = f.read() | |
| sentences = nltk.sent_tokenize(sample) | |
| tokenized_sentences = [nltk.word_tokenize(sentence) for sentence in sentences] | |
| tagged_sentences = [nltk.pos_tag(sentence) for sentence in tokenized_sentences] | |
| chunked_sentences = nltk.batch_ne_chunk(tagged_sentences, binary=True) |