You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+53Lines changed: 53 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,6 +23,59 @@ distributions.</p>
23
23
24
24
<palign="center">Published for <imgsrc="https://raw.githubusercontent.com/anythingcodes/slack-emoji-for-techies/gh-pages/emoji/tux.png"align="top"width="24" /> with :gift_heart: by Snapcrafters</p>
25
25
26
+
## OpenVINO™ AI Plugins
27
+
28
+
This snap contains support for AI features including:
29
+
30
+
- Music Separation
31
+
- Noise Suppression
32
+
- Music Generation and Continuation
33
+
- Transcription
34
+
- Super Resolution
35
+
36
+
The plugins come installed out-of-the-box and support running on Intel hardware only (CPU, GPU, and NPU). Instructions for using each of the features can be found in the [upstream GitHub repository](https://github.com/intel/openvino-plugins-ai-audacity/tree/main/doc/feature_doc).
37
+
38
+
> [!IMPORTANT]
39
+
> The models (which are roughly 6.2 GiB in size total) are NOT built into the snap. To use the AI features you must download and install them from the command line. Note that downloading the models may take several minutes or longer, depending on the speed of your internet connection. Please be patient!
40
+
41
+
To ease the process of downloading and installing the models, an interactive command is available within the snap that can be invoked like so:
42
+
43
+
```shell
44
+
sudo audacity.fetch-models
45
+
```
46
+
47
+
This will provide you with an interactive menu where you can select the model you wish to download and install. Alternatively, if you wish to enable all of the AI features, you can simply pass the `--batch` flag:
48
+
49
+
```shell
50
+
sudo audacity.fetch-models --batch
51
+
```
52
+
53
+
54
+
> [!IMPORTANT]
55
+
> Please ensure you are in the `render` Unix group on your system in order to access Intel accelerators for the plugins (Intel GPU and NPU).
56
+
To check your current groups, please run the following from a terminal:
57
+
58
+
```shell
59
+
groups
60
+
```
61
+
62
+
If you do not see `render` listed in the output, you may add your current user with the following:
63
+
64
+
```shell
65
+
sudo usermod -a -G render $USER
66
+
```
67
+
68
+
Now log out and back in to ensure your active session has the `render` group included.
69
+
70
+
To ensure the device nodes have appropriate group permissions set, you may also run:
71
+
72
+
```shell
73
+
sudo chown root:render /dev/accel/accel*
74
+
sudo chmod g+rw /dev/accel/accel*
75
+
sudo chown root:render /dev/dri/render*
76
+
sudo chmod g+rw /dev/dri/render*
77
+
```
78
+
26
79
## How to contribute to this snap
27
80
28
81
Thanks for your interest! Below you find instructions to help you contribute to this snap.
0 commit comments