nova commited on
Commit
345824c
·
verified ·
1 Parent(s): a1820ae

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -10,10 +10,10 @@ token = os.environ.get("HF_TOKEN")
10
 
11
  print("Cargando Lumin Nano 2.1 (GGUF Optimized)...")
12
 
13
- # Cargar tokenizer como siempre
14
  tokenizer = AutoTokenizer.from_pretrained(model_id, token=token, trust_remote_code=True)
15
 
16
- # Cargar modelo GGUF nativamente con transformers
17
  model = AutoModelForCausalLM.from_pretrained(
18
  model_id,
19
  gguf_file=gguf_file,
 
10
 
11
  print("Cargando Lumin Nano 2.1 (GGUF Optimized)...")
12
 
13
+
14
  tokenizer = AutoTokenizer.from_pretrained(model_id, token=token, trust_remote_code=True)
15
 
16
+
17
  model = AutoModelForCausalLM.from_pretrained(
18
  model_id,
19
  gguf_file=gguf_file,