Add pipeline tag and library name (#1)
Browse files- Add pipeline tag and library name (43d66d6e93393c52556efa741f63fbd417ea4d30)
Co-authored-by: Niels Rogge <[email protected]>
README.md
CHANGED
@@ -1,12 +1,15 @@
|
|
1 |
---
|
2 |
-
|
|
|
3 |
datasets:
|
4 |
- wangkevin02/LMSYS-USP
|
5 |
language:
|
6 |
- en
|
7 |
-
|
8 |
-
|
|
|
9 |
---
|
|
|
10 |
# User Simulator Model
|
11 |
|
12 |
## Overview
|
@@ -50,14 +53,24 @@ model.eval()
|
|
50 |
|
51 |
# Define conversation messages
|
52 |
user_profile = """
|
53 |
-
You have a knack for planning exciting adventures, particularly when it comes to exploring new destinations on a budget. Your current focus is on organizing a cost-effective vacation to a warm, beach-filled location. You're actively seeking recommendations for such a getaway, with a particular interest in places like Phuket, Thailand. You're keen on discovering the must-visit spots in Phuket without breaking the bank, and you're looking for advice on how to make the most of your trip within your budget constraints. Your love for travel is evident in your habit of meticulously planning vacations in advance, ensuring you maximize both the experience and the value for money
|
|
|
|
|
54 |
""".strip()
|
55 |
messages = [
|
56 |
[
|
57 |
-
{"role": "system", "content": f"You are engaging in a conversation with an AI assistant. Your profile is:
|
|
|
|
|
|
|
|
|
58 |
],
|
59 |
[
|
60 |
-
{"role": "system", "content": f"You are engaging in a conversation with an AI assistant. Your profile is:
|
|
|
|
|
|
|
|
|
61 |
{"role": "user", "content": "I want to go on vacation to a warm place. Do you have any recommendations?"},
|
62 |
{"role": "assistant", "content": "Sure! If you like beaches, Maldives or Bali are great options. If you're into culture, consider Tuscany in Italy or Santorini in Greece. Which type of destination do you prefer?"},
|
63 |
]
|
@@ -95,8 +108,6 @@ print(f"Generated response: {responses}")
|
|
95 |
|
96 |
## Citation
|
97 |
|
98 |
-
|
99 |
-
|
100 |
If you find this model useful, please cite:
|
101 |
|
102 |
```plaintext
|
@@ -109,5 +120,4 @@ If you find this model useful, please cite:
|
|
109 |
primaryClass={cs.CL},
|
110 |
url={https://arxiv.org/abs/2502.18968},
|
111 |
}
|
112 |
-
```
|
113 |
-
|
|
|
1 |
---
|
2 |
+
base_model:
|
3 |
+
- meta-llama/Meta-Llama-3-8B
|
4 |
datasets:
|
5 |
- wangkevin02/LMSYS-USP
|
6 |
language:
|
7 |
- en
|
8 |
+
license: mit
|
9 |
+
pipeline_tag: text-generation
|
10 |
+
library_name: transformers
|
11 |
---
|
12 |
+
|
13 |
# User Simulator Model
|
14 |
|
15 |
## Overview
|
|
|
53 |
|
54 |
# Define conversation messages
|
55 |
user_profile = """
|
56 |
+
You have a knack for planning exciting adventures, particularly when it comes to exploring new destinations on a budget. Your current focus is on organizing a cost-effective vacation to a warm, beach-filled location. You're actively seeking recommendations for such a getaway, with a particular interest in places like Phuket, Thailand. You're keen on discovering the must-visit spots in Phuket without breaking the bank, and you're looking for advice on how to make the most of your trip within your budget constraints. Your love for travel is evident in your habit of meticulously planning vacations in advance, ensuring you maximize both the experience and the value for money.
|
57 |
+
|
58 |
+
Your personality shines through in your conscientious approach to planning, where every detail is considered and nothing is left to chance. You're open-minded and adventurous, always eager to dive into new experiences and embrace what each destination has to offer. Your inquisitive nature means you're always asking questions, seeking out the best advice to enhance your journeys. You communicate with an informal and friendly style, making it easy for others to share their knowledge and insights with you. This combination of traits makes you not only a savvy traveler but also a delightful companion on any adventure.
|
59 |
""".strip()
|
60 |
messages = [
|
61 |
[
|
62 |
+
{"role": "system", "content": f"You are engaging in a conversation with an AI assistant. Your profile is:
|
63 |
+
{user_profile}
|
64 |
+
You can say anything you want, either based on the profile or something brand new.
|
65 |
+
|
66 |
+
"},
|
67 |
],
|
68 |
[
|
69 |
+
{"role": "system", "content": f"You are engaging in a conversation with an AI assistant. Your profile is:
|
70 |
+
{user_profile}
|
71 |
+
You can say anything you want, either based on the profile or something brand new.
|
72 |
+
|
73 |
+
"},
|
74 |
{"role": "user", "content": "I want to go on vacation to a warm place. Do you have any recommendations?"},
|
75 |
{"role": "assistant", "content": "Sure! If you like beaches, Maldives or Bali are great options. If you're into culture, consider Tuscany in Italy or Santorini in Greece. Which type of destination do you prefer?"},
|
76 |
]
|
|
|
108 |
|
109 |
## Citation
|
110 |
|
|
|
|
|
111 |
If you find this model useful, please cite:
|
112 |
|
113 |
```plaintext
|
|
|
120 |
primaryClass={cs.CL},
|
121 |
url={https://arxiv.org/abs/2502.18968},
|
122 |
}
|
123 |
+
```
|
|