Skip to content

Commit

Permalink
docs: model release
Browse files Browse the repository at this point in the history
  • Loading branch information
MinSiThu committed Oct 25, 2023
1 parent cadbec5 commit acfb9bf
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@
A speech command ai library for Burmese language

Read the documentation [Here](https://burmese-voice.vercel.app/).
Download the model [Here](https://github.com/MinSiThu/burmese-voice/releases).

The library currently can classify **4** burmese words by voice and one additional noise.
The library currently can classify **6** burmese words by voice and one additional noise.
The voices are
- Go (သွား)
- Stop (ရပ်)
Expand Down
6 changes: 4 additions & 2 deletions docs/docs/intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ First, install burmese-voice in browser with the following script tag.

### Download the model package.

Download the model package [here](/).
Download the model package [here](https://github.com/MinSiThu/burmese-voice/releases).

Include the model path as absolute path.

```html
<!DOCTYPE html>
Expand All @@ -35,7 +37,7 @@ Download the model package [here](/).
let burmeseVoice;
async function main(){
const URL = "http://localhost:8000/models/";
const URL = "http://localhost:8000/models/"; // must be aboluste URL
burmeseVoice = new BurmeseVoice(URL)
await burmeseVoice.load();
console.log(burmeseVoice.getLabels());
Expand Down
Binary file modified example/.DS_Store
Binary file not shown.
Binary file added example/models/.DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "burmese-voice",
"version": "1.0.1",
"version": "1.0.2",
"description": "A vocie command ai library for Burmese language",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit acfb9bf

Please sign in to comment.