Chandra Kiran G
Chandra Kiran G
I'm trying to implement this. I wrote a function named `reverse` and put that in `src/abstractdataframe/reverse.jl`. But when I try to use my function, it didn't get recognized. But I...
> I'm trying to implement this. I wrote a function named `reverse` and put that in `src/abstractdataframe/reverse.jl`. But when I try to use my function, it didn't get recognized. But...
Hey @bfortuner, Can I make a PR for this? I'm just a beginner wanted to start contributing ot Open Source.
Sure! Will clean up in the next commit.
- Deleted the files from TextModels.jl that are unnecessary. - Add a utility function for padding the batches for sequence data (Very naively implemented, as a starting point though) ```julia...
- fastai's way of encoding data doesn't include the removal of stop words (and Jeremy recommends it). So, I removed the stop word removal step. - I've added a `vocab_size`...
```julia julia> data, blocks = load(datarecipes()["imdb"]) ((mapobs(loadfile, ObsView(::MLDatasets.FileDataset{typeof(identity), String}, ::Vector{Int64})), mapobs(parentname, ObsView(::MLDatasets.FileDataset{typeof(identity), String}, ::Vector{Int64}))), (Paragraph(), Label{String}(["neg", "pos"]))) julia> task = TextClassificationSingle(blocks, data) SupervisedTask(Paragraph -> Label{String}) julia> model = FastAI.taskmodel(task, FastText.LanguageModel(false,...
The changes have been merged to #258.
> Can you explain a bit more what you mean by "sequence of batches" so I can wrap my head around it? Yeah, even I didn't get it. Batches don't...
Yeah, I think the approach Lorenz suggested should be "the way" to achieve this batch-wise encoding. But, where do we encode this? Will this be a part of the initial...