├── .gitignore ├── .vscode └── launch.json ├── Program.cs ├── README.md ├── classes └── snac.cs ├── examples └── lined_tokens.txt ├── imgs ├── cs.png ├── gen.png └── python.png ├── outputs └── tara.wav ├── samples ├── tara_1.wav └── tara_2.wav ├── scripts ├── exportsd.py └── make_unnormed_torchsharp.py ├── snac └── 24khz │ └── config.json ├── tara.csproj └── tara.sln /.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | obj/ 3 | *.bin 4 | *.exe 5 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/TaraSharp/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/TaraSharp/HEAD/Program.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/TaraSharp/HEAD/README.md -------------------------------------------------------------------------------- /classes/snac.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/TaraSharp/HEAD/classes/snac.cs -------------------------------------------------------------------------------- /examples/lined_tokens.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/TaraSharp/HEAD/examples/lined_tokens.txt -------------------------------------------------------------------------------- /imgs/cs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/TaraSharp/HEAD/imgs/cs.png -------------------------------------------------------------------------------- /imgs/gen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/TaraSharp/HEAD/imgs/gen.png -------------------------------------------------------------------------------- /imgs/python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/TaraSharp/HEAD/imgs/python.png -------------------------------------------------------------------------------- /outputs/tara.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/TaraSharp/HEAD/outputs/tara.wav -------------------------------------------------------------------------------- /samples/tara_1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/TaraSharp/HEAD/samples/tara_1.wav -------------------------------------------------------------------------------- /samples/tara_2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/TaraSharp/HEAD/samples/tara_2.wav -------------------------------------------------------------------------------- /scripts/exportsd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/TaraSharp/HEAD/scripts/exportsd.py -------------------------------------------------------------------------------- /scripts/make_unnormed_torchsharp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/TaraSharp/HEAD/scripts/make_unnormed_torchsharp.py -------------------------------------------------------------------------------- /snac/24khz/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/TaraSharp/HEAD/snac/24khz/config.json -------------------------------------------------------------------------------- /tara.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/TaraSharp/HEAD/tara.csproj -------------------------------------------------------------------------------- /tara.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/TaraSharp/HEAD/tara.sln --------------------------------------------------------------------------------