Activity Feed

AI & ML interests

None defined yet.

Recent Activity

cbensimon 
updated a Space 4 days ago
kadirnar 
posted an update 14 days ago
view post
Post
1713
What can you do with the VyvoTTS library?

- You can train a model in a language it has never been trained in using the PT model. There’s no need for large datasets.
- With the PT model, you can easily replicate the voice of any character you want. Just 1k samples are enough.
- You can add emotion support with a small dataset.

Github: https://github.com/Vyvo-Labs/VyvoTTS
HuggingFace: Vyvo

Limits on PRO account

46
#88 opened about 1 year ago by
moonslink
ZennyKenny 
posted an update 26 days ago
Vokturz 
posted an update about 1 month ago
view post
Post
400
🤗 A Transformers.js Playground

I just created a new spaces to test models directly in the browser using Transformers.js. You can pick any model from a list (mainly from the onnx-community), or just load the one you desire :) It also allows you to choose among different quantizations!

Currently the following pipelines are supported
- feature-extraction
- image-classification
- text-generation
- text-classification
- text-to-speech
- zero-shot-classification

Vokturz/transformers-js-playground
cbensimon 
posted an update 3 months ago
view post
Post
3586
🚀 ZeroGPU now supports PyTorch native quantization via torchao

While it hasn’t been battle-tested yet, Int8WeightOnlyConfig is already working flawlessly in our tests.

Let us know if you run into any issues — and we’re excited to see what the community will build!

import spaces
from diffusers import FluxPipeline
from torchao.quantization.quant_api import Int8WeightOnlyConfig, quantize_

pipeline = FluxPipeline.from_pretrained(...).to('cuda')
quantize_(pipeline.transformer, Int8WeightOnlyConfig()) # Or any other component(s)

@spaces.GPU
def generate(prompt: str):
    return pipeline(prompt).images[0]
·