Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove reference to library for tokenization in example code #34

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ The TF-IDF Transformer accepts a variety of inputs for the raw documents that on
Raw documents can simply be provided as tokenized documents.

```julia
using MLJ, MLJText, TextAnalysis
using MLJ, MLJText, WordTokenizers

docs = ["Hi my name is Sam.", "How are you today?"]
tfidf_transformer = TfidfTransformer()
Expand Down Expand Up @@ -61,7 +61,7 @@ BM25 is an approach similar to that of TF-IDF in terms of representing documents
This transformer is used in much the same way as the `TfidfTransformer`.

```julia
using MLJ, MLJText, TextAnalysis
using MLJ, MLJText, WordTokenizers

docs = ["Hi my name is Sam.", "How are you today?"]
bm25_transformer = BM25Transformer()
Expand Down Expand Up @@ -94,7 +94,7 @@ The `MLJText` package also offers a way to represent documents using the simpler

### Usage
```julia
using MLJ, MLJText, TextAnalysis
using MLJ, MLJText, WordTokenizers

docs = ["Hi my name is Sam.", "How are you today?"]
count_transformer = CountTransformer()
Expand Down
Loading