rssdev10

Results 29 comments of rssdev10

Check this way - [`merge!(dtm1::DocumentTermMatrix{T}, dtm2::DocumentTermMatrix{T}) where {T}`](https://github.com/JuliaText/TextAnalysis.jl/blob/master/src/dtm.jl#L360)

Hi, I'm trying to make TextModels compilable again. Result of testing: ```text Test Summary: | Pass Error Total Time All tests | 93 3 96 23.4s 📂 crf.jl | 3...

fixed in https://github.com/JuliaText/TextAnalysis.jl/pull/276/commits/57781294ab34136ee67eba0abb5e6c9b1a0fb733

Thanks, this is really good that you implemented this function. At the same time, RoR is still a good sample of how to organize dynamic components of the path. The...

@quinnj for real testing here we need an active API KEY. I think it is possible to add some tests if there is a way to enable real use of...

Hi, yes, we are working with OpenAPI.jl. E.g. there is the specification - https://github.com/OpenSesame/GptSearchPlugin/blob/main/resources/dev-openai/.well-known/openapi.yaml `openapi-generator` can be installed by different ways - https://openapi-generator.tech/docs/installation/ or be used directly as a openapi-generator-cli...

Actually I see two scenarios here: 1. Keep the generated with OpenAPI code as is. And implement a service with components based on Genie (routing, security, logging). 2. Implement new...

Thanks, the case with `route("/components/*") do params ... end` looks good. The only point I want to add here - the value of `params["_"]` must be sanitized by default (at...

JULIA_DEBUG can be enabled with the patch #84 . But I see more fundamental problems - trying to combine filtering based on levels and exceptional filtering specified by JULIA_DEBUG. There...

Actually Web APIs primary means usage of some exchange format like JSON or XML. Just as example - https://market.mashape.com/ or open API initiative https://www.openapis.org/ But in both cases it requires...