Skip to content

Commit

Permalink
[easy][extension][py][hf] add unintended-removed comma (#839)
Browse files Browse the repository at this point in the history
[easy][extension][py][hf] add unintended-removed comma


comma was mistakenly removed. Adding it back in.

For context: Doesn't break anything because in python you can
concatenate strings without using the + operator by simply placing them
adjacent to each other, like this:

```
"string1" "string2"
```

---
Stack created with [Sapling](https://sapling-scm.com). Best reviewed
with
[ReviewStack](https://reviewstack.dev/lastmile-ai/aiconfig/pull/839).
* #840
* __->__ #839
  • Loading branch information
Ankush-lastmile authored Jan 10, 2024
2 parents 07fa979 + b21ee4b commit 19bd1a3
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,8 @@ def refine_pipeline_creation_params(model_settings: Dict[str, Any]) -> List[Dict
"device",
"framework",
"feature_extractor",
"stride_length_s" "tokenizer",
"stride_length_s",
"tokenizer",
}

pipeline_creation_params: Dict[str, Any] = {}
Expand Down

0 comments on commit 19bd1a3

Please sign in to comment.