Skip to content
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
4 changes: 3 additions & 1 deletion src/sentiment.jl
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ function pad_sequences(l, maxlen=500)
push!(res, ele)
end
return res
end
else
length(1) > maxlen || throw("String length exceeds maximum length")
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

length(1) => length(l)?

Also, why are we checking this condition again? length(l) > maxlen

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should the checking condition be &&? even in that case?

end
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
end
end

Indentation

end

function read_weights(filename=sentiment_weights)
Expand Down