Skip to content

Commit

Permalink
🚨 Fix lint (#447)
Browse files Browse the repository at this point in the history
Introduced by #442
  • Loading branch information
coyotte508 authored Jan 19, 2024
1 parent cbb4b86 commit 6c70a72
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/tasks/src/library-ui-elements.ts
Original file line number Diff line number Diff line change
Expand Up @@ -541,12 +541,12 @@ transcriptions = asr_model.transcribe(["file.wav"])`,

const mlAgents = (model: ModelData) => [`mlagents-load-from-hf --repo-id="${model.id}" --local-dir="./downloads"`];

const sentis = (model: ModelData) => [
const sentis = (/* model: ModelData */) => [
`string modelName = "[Your model name here].sentis";
Model model = ModelLoader.Load(Application.streamingAssetsPath + "/" + modelName);
IWorker engine = WorkerFactory.CreateWorker(BackendType.GPUCompute, model);
// Please see provided C# file for more details
`
`,
];

const mlx = (model: ModelData) => [
Expand Down

0 comments on commit 6c70a72

Please sign in to comment.