Tomtom84 commited on
Commit
f4a47ee
·
2 Parent(s): 092245f 14c5384

Merge branch 'main' of https://huggingface.co/spaces/Tomtom84/dev-mode-python

Browse files
Files changed (1) hide show
  1. app.py +5 -2
app.py CHANGED
@@ -6,8 +6,11 @@ import io
6
  interface = outetts.Interface(
7
  config=outetts.ModelConfig.auto_config(
8
  model=outetts.Models.VERSION_1_0_SIZE_1B,
9
- backend=outetts.Backend.LLAMACPP,
10
- quantization=outetts.LlamaCppQuantization.FP16
 
 
 
11
  )
12
  )
13
 
 
6
  interface = outetts.Interface(
7
  config=outetts.ModelConfig.auto_config(
8
  model=outetts.Models.VERSION_1_0_SIZE_1B,
9
+ # For llama.cpp backend
10
+ #backend=outetts.Backend.LLAMACPP,
11
+ #quantization=outetts.LlamaCppQuantization.FP16
12
+ # For transformers backend
13
+ backend=outetts.Backend.HF,
14
  )
15
  )
16