bep40 commited on
Commit
e6a00b8
·
verified ·
1 Parent(s): 7d9bace

Update ML Intern artifact metadata

Browse files
Files changed (1) hide show
  1. README.md +20 -0
README.md CHANGED
@@ -11,3 +11,23 @@ tags:
11
  # V.AI STUDIO - AI Product Search
12
 
13
  Nền tảng tìm kiếm sản phẩm thông minh với công nghệ AI.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
  # V.AI STUDIO - AI Product Search
12
 
13
  Nền tảng tìm kiếm sản phẩm thông minh với công nghệ AI.
14
+
15
+ <!-- ml-intern-provenance -->
16
+ ## Generated by ML Intern
17
+
18
+ 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.
19
+
20
+ - Try ML Intern: https://smolagents-ml-intern.hf.space
21
+ - Source code: https://github.com/huggingface/ml-intern
22
+
23
+ ## Usage
24
+
25
+ ```python
26
+ from transformers import AutoModelForCausalLM, AutoTokenizer
27
+
28
+ model_id = 'bep40/V.AISTUDIO'
29
+ tokenizer = AutoTokenizer.from_pretrained(model_id)
30
+ model = AutoModelForCausalLM.from_pretrained(model_id)
31
+ ```
32
+
33
+ For non-causal architectures, replace `AutoModelForCausalLM` with the appropriate `AutoModel` class.