Instructions to use akhbar/chatterbox-tts-norwegian with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Chatterbox
How to use akhbar/chatterbox-tts-norwegian with Chatterbox:
# pip install chatterbox-tts import torchaudio as ta from chatterbox.tts import ChatterboxTTS model = ChatterboxTTS.from_pretrained(device="cuda") text = "Ezreal and Jinx teamed up with Ahri, Yasuo, and Teemo to take down the enemy's Nexus in an epic late-game pentakill." wav = model.generate(text) ta.save("test-1.wav", wav, model.sr) # If you want to synthesize with a different voice, specify the audio prompt AUDIO_PROMPT_PATH="YOUR_FILE.wav" wav = model.generate(text, audio_prompt_path=AUDIO_PROMPT_PATH) ta.save("test-2.wav", wav, model.sr) - Notebooks
- Google Colab
- Kaggle
Update LICENSE
Browse files
LICENSE
CHANGED
|
@@ -1,69 +1,41 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
1.
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
|
| 40 |
-
|
| 41 |
-
|
| 42 |
-
7. Confidentiality
|
| 43 |
-
Both parties shall maintain the confidentiality of any non-public information exchanged in connection with this Agreement and shall not disclose it to third parties without prior consent, except as required by law.
|
| 44 |
-
|
| 45 |
-
8. Warranties and Disclaimers
|
| 46 |
-
8.1. Disclaimer. The Model is provided "AS IS," without warranty of any kind, including merchantability, fitness for a particular purpose, or non-infringement.
|
| 47 |
-
8.2. No Guarantees. Licensor does not guarantee performance metrics or suitability for Licensee’s specific use-case.
|
| 48 |
-
|
| 49 |
-
9. Limitation of Liability
|
| 50 |
-
In no event shall Licensor be liable for any indirect, incidental, special, or consequential damages (including loss of profits or data) arising out of or in connection with this Agreement, even if advised of the possibility of such damages.
|
| 51 |
-
|
| 52 |
-
10. Term and Termination
|
| 53 |
-
10.1. Term. This Agreement remains in effect until terminated.
|
| 54 |
-
10.2. Termination for Cause. Either party may terminate upon material breach if not cured within 30 days of notice.
|
| 55 |
-
10.3. Effects of Termination. Upon termination, Licensee shall cease all use of the Model and destroy or return all copies.
|
| 56 |
-
|
| 57 |
-
11. Governing Law
|
| 58 |
-
This Agreement shall be governed by and construed in accordance with the laws of [Jurisdiction], without regard to conflict-of-law principles.
|
| 59 |
-
|
| 60 |
-
12. Miscellaneous
|
| 61 |
-
12.1. Entire Agreement. This Agreement constitutes the entire understanding between the parties.
|
| 62 |
-
12.2. Amendments. Any amendments must be in writing and signed by both parties.
|
| 63 |
-
12.3. Notices. Notices shall be sent to the addresses above.
|
| 64 |
-
|
| 65 |
-
IN WITNESS WHEREOF, the parties have executed this Commercial License Agreement as of the Effective Date.
|
| 66 |
-
|
| 67 |
-
Licensor: ______________________ Date: ____________
|
| 68 |
-
|
| 69 |
-
Licensee: ______________________ Date: ____________
|
|
|
|
| 1 |
+
NonCommercial-Personal-Educational 1.0.0
|
| 2 |
+
|
| 3 |
+
1. Definitions
|
| 4 |
+
“License” : This NonCommercial-Personal-Educational 1.0.0 license text.
|
| 5 |
+
“Licensor” : The copyright owner or entity granting rights under this License.
|
| 6 |
+
“You” : Any individual or legal entity exercising rights granted under this License.
|
| 7 |
+
“Model” : The AI model (including code, weights, documentation) made available under this License.
|
| 8 |
+
“Personal Use” : Use of the Model for your own private, non‑commercial activities (e.g., experimenting at home, personal projects).
|
| 9 |
+
“Educational Use” : Use of the Model within a recognized educational institution for teaching, coursework, research, or academic demonstration.
|
| 10 |
+
|
| 11 |
+
2. Grant of Rights
|
| 12 |
+
Subject to the terms and conditions of this License, the Licensor hereby grants You a **non‑exclusive**, **non‑transferable**, **revocable** license to:
|
| 13 |
+
a. **Run** the Model for your own Personal Use or within an Educational Use setting.
|
| 14 |
+
b. **Modify** the Model’s source code or weights **solely** for your own Personal or Educational Use.
|
| 15 |
+
|
| 16 |
+
3. Restrictions
|
| 17 |
+
You may **not**:
|
| 18 |
+
a. Redistribute, sublicense, upload, publish or otherwise make the Model or any derivative works available to any third party.
|
| 19 |
+
b. Use the Model, or any derivatives, for any commercial purposes (including internal commercial use, offering services or products to third parties, or any use intended for monetary compensation or business advantage).
|
| 20 |
+
c. Remove or alter any copyright, patent, trademark, or other proprietary notices on the Model.
|
| 21 |
+
|
| 22 |
+
4. Reservation of Rights
|
| 23 |
+
All rights not expressly granted herein are **reserved** by the Licensor.
|
| 24 |
+
For any commercial licensing inquiries (including redistribution, product/service bundling, or paid offerings), please contact the Licensor to enter into a separate commercial license agreement.
|
| 25 |
+
|
| 26 |
+
5. Term and Termination
|
| 27 |
+
a. This License is effective until terminated.
|
| 28 |
+
b. Your rights under this License automatically terminate if You fail to comply with any term.
|
| 29 |
+
c. Upon termination, You must cease all use of the Model and destroy all copies in your possession.
|
| 30 |
+
|
| 31 |
+
6. Disclaimer of Warranty
|
| 32 |
+
The Model is provided “AS IS”, without warranty of any kind, express or implied, including but not limited to warranties of merchantability, fitness for a particular purpose, or non‑infringement.
|
| 33 |
+
|
| 34 |
+
7. Limitation of Liability
|
| 35 |
+
In no event will the Licensor be liable for any direct, indirect, incidental, special, or consequential damages arising out of or in connection with this License or the use of the Model.
|
| 36 |
+
|
| 37 |
+
8. Governing Law
|
| 38 |
+
This License is governed by the laws of [Your Jurisdiction], without regard to its conflict of laws principles.
|
| 39 |
+
|
| 40 |
+
9. Entire Agreement
|
| 41 |
+
This License constitutes the entire agreement between You and the Licensor with respect to the Model and supersedes all prior or contemporaneous understandings.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|