Nissan Pow

Results 21 issues of Nissan Pow

Test case below. ``` var Heap = require('heap'); var cmp = function (A, B) { return B - A; }; var L = [3, 1, 2]; Heap.heapify(L, cmp); while (L.length)...

Currently `step-functions trigger` allows specifying parameters to invoke the step function, but not `step-functions create` (the default set of parameters is `{}`). This PR allows specifying parameters when calling `step-functions...

Is there a way to stop a task in a service by its task ID (obtained from `fargate service ps`)? I thought I could use `fargate task stop` but that...

I tried generating a coverage report using `pytest --cov-report=html --cov srmb` and got `RecursionError: maximum recursion depth exceeded`: ``` INTERNALERROR> Traceback (most recent call last): INTERNALERROR> File "/Users/pownissa/anaconda3/lib/python3.7/site-packages/_pytest/main.py", line 257,...

I am trying to convert the `proposerAddress` back to bech32 format, but when I do so it doesn't match the validator address showing up on mintscan. ``` const tendermintClient =...

Question ❓

### Description Unable to view DAG. ``` DAG encountered an unexpected error. This should not happen and might be caused by unexpected data. ``` ### Steps to Reproduce 1. Navigate...

Trying to view the documentation on how to setup with Fargate, but the link to `terraform-aws-trino` is broken. Did you mean [terraform-aws-presto](https://github.com/Lewuathe/terraform-aws-presto)?

Running `./dataset.py download --dataset wikidata` produces the following error: ``` subprocess.CalledProcessError: Command 'wget -O data/external/wikidata-claims_instance-of.jsonl https://s3-us-west-2.amazonaws.com/pinafore-us-west-2/qanta-jmlr-datasets/wikidata-claims_instance-of.jsonl' returned non-zero exit status 8. ```

What is the correct way to limit the number features? Sort of similar to the max_features in SciKit's CountVectorizer. I was looking at the API for the BayesClassifier and it...

Help/Questions

The `train_dolly.py` file seems to still be on V1 since `DEFAULT_TRAINING_DATASET` is set to `tatsu-lab/alpaca`. What needs to be changed to train V2?