danhtran2mind commited on
Commit
3ccb5d3
·
verified ·
1 Parent(s): e541eec

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +17 -1
README.md CHANGED
@@ -12,6 +12,8 @@ licence: license
12
  license: mit
13
  language:
14
  - vi
 
 
15
  ---
16
 
17
  # Model Card for Qwen-3-0.6B-it-Medical-LoRA
@@ -27,7 +29,21 @@ It has been trained using [TRL](https://github.com/huggingface/trl).
27
  This model was trained with SFT.
28
 
29
 
30
- ## Inference Usage
 
 
 
 
 
 
 
 
 
 
 
 
 
 
31
 
32
  ```python
33
  import torch
 
12
  license: mit
13
  language:
14
  - vi
15
+ datasets:
16
+ - tmnam20/ViMedAQA
17
  ---
18
 
19
  # Model Card for Qwen-3-0.6B-it-Medical-LoRA
 
29
  This model was trained with SFT.
30
 
31
 
32
+ ## Usage
33
+
34
+ ### HuggingFace Authentication
35
+ ```python
36
+ import os
37
+ from huggingface_hub import login
38
+
39
+ # Set the Hugging Face API token
40
+ os.environ["HUGGINGFACEHUB_API_TOKEN"] = "<your_huggingface_token>"
41
+
42
+ # # Initialize API
43
+ login(os.environ.get("HUGGINGFACEHUB_API_TOKEN"))
44
+ ```
45
+
46
+ ### Inference
47
 
48
  ```python
49
  import torch