Matzan commited on
Commit
c08e478
verified
1 Parent(s): 3b79d2e

Update ML Intern artifact metadata

Browse files
Files changed (1) hide show
  1. README.md +24 -0
README.md CHANGED
@@ -1,3 +1,7 @@
 
 
 
 
1
  # 馃 Desktop Agent Aut贸nomo (Sin Censura)
2
 
3
  Agente de escritorio aut贸nomo con VLM multimodal sin censura.
@@ -69,3 +73,23 @@ python agent.py --model "Matzan/desktop-agent-dpo" --task "New task"
69
  3. Reentrena modelo
70
  4. Repite
71
  ```
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - ml-intern
4
+ ---
5
  # 馃 Desktop Agent Aut贸nomo (Sin Censura)
6
 
7
  Agente de escritorio aut贸nomo con VLM multimodal sin censura.
 
73
  3. Reentrena modelo
74
  4. Repite
75
  ```
76
+
77
+ <!-- ml-intern-provenance -->
78
+ ## Generated by ML Intern
79
+
80
+ This model repository was generated by [ML Intern](https://github.com/huggingface/ml-intern), an agent for machine learning research and development on the Hugging Face Hub.
81
+
82
+ - Try ML Intern: https://smolagents-ml-intern.hf.space
83
+ - Source code: https://github.com/huggingface/ml-intern
84
+
85
+ ## Usage
86
+
87
+ ```python
88
+ from transformers import AutoModelForCausalLM, AutoTokenizer
89
+
90
+ model_id = 'Matzan/desktop-agent-uncensored'
91
+ tokenizer = AutoTokenizer.from_pretrained(model_id)
92
+ model = AutoModelForCausalLM.from_pretrained(model_id)
93
+ ```
94
+
95
+ For non-causal architectures, replace `AutoModelForCausalLM` with the appropriate `AutoModel` class.