Tin C.
Tin C.
@nodesocket I have some clues on this problem. The `_get_collection_fields` function is called when Redash refreshes the data schema https://github.com/getredash/redash/blob/ecb9adf903842694ab01479727709064296ea029/redash/query_runner/mongodb.py#L218-L220 which makes use of `$natural` operator for sorting. However, when...
@nodesocket I would like to give a try on fixing it. You can contact me via [email protected]
@felixwang9817 I would like to give a try on this feature. Do I needa join the Feat Ops Bi-Weekly meeting for discussion?
@martiansideofthemoon Is the question generation module somehow broken? For https://github.com/martiansideofthemoon/squash-generation/blob/4b409e41ee94178ebfc722a2c3362636d60d6240/question-generation/interact.py#L90-L92 my code kept generating special token and trapped into an infinite loop
I am running `./squash/pipeline.sh` with **gpt2** ``` echo 'Generating questions ... pipenv run python question-generation/interact.py \ --filename squash/temp/$KEY/input.pkl \ --model_type gpt2 \ --key $KEY ```
@martiansideofthemoon There're 2 problems that I found in the code: 1) The field `inst['question']` is re-named and being cleared before passing into the function `build_qa_only_input_from_segments` https://github.com/martiansideofthemoon/squash-generation/blob/a979abae9fb2fca392156ba99c3a6fb9bc3d80b6/question-generation/interact.py#L61-L65 2) There's a minimum...
@gairom This could happen if somewhere in your application / other applications flush the Redis DB, especially if your Redis Server is shared by multiple apps.
@skaravad I've created a fork / PR for that. It would be nice if you can help me to do some end-to-end testings on your side.
@sidvenu I have created a fork on https://github.com/tim5go/redash/tree/bug/cassandra-json-serialization and PR on https://github.com/getredash/redash/pull/5185 Feel free to clone it, test it if the bug is gone when you connect to your own...
A bat file is clearly designed for Windows OS only. You should study what's inside the bat file and convert it into shell script ^^ And actually the bat file...