agent_info
sequence | agent_turn
sequencelengths 2
46
| dialogue_acts
sequence | utterance
sequencelengths 2
46
| items
sequence | template_name
stringclasses 6
values | template
stringclasses 6
values | rendered_input
stringlengths 196
2.59k
| rendered_output
stringlengths 0
585
|
---|---|---|---|---|---|---|---|---|
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
1444,
1900
]
} | [
1,
0,
0,
1
] | {
"intent": [
"",
"",
"",
""
],
"price": [
-1,
-1,
-1,
-1
]
} | [
"Hello.",
"Good Morning",
"",
""
] | {
"Category": [
"housing",
"housing"
],
"Images": [
"housing/6125963619_0.jpg",
"housing/6125963619_0.jpg"
],
"Price": [
1900,
1900
],
"Description": [
"ABSW Studio Apartment Available,Located in Southside, Berkeley, historically and popularly known as the epicenter of college life at Cal. Take pleasure in outdoor activities at your convenience by being just blocks away from Underhill Field and the historic People's Park. Eat up at the nearby Berkeley dining commons -- Crossroads or Cafe 3 -- or visit the Durant Food Court located on Telegraph Ave for a wide variety of ethnic cuisines.,ABSW Apartments is the ideal place for students desiring that perfect mix of campus life and local social activities!,-Charming & classic architecture (originally built in 1931) -- Recently renovated!",
"ABSW Studio Apartment Available,Located in Southside, Berkeley, historically and popularly known as the epicenter of college life at Cal. Take pleasure in outdoor activities at your convenience by being just blocks away from Underhill Field and the historic People's Park. Eat up at the nearby Berkeley dining commons -- Crossroads or Cafe 3 -- or visit the Durant Food Court located on Telegraph Ave for a wide variety of ethnic cuisines.,ABSW Apartments is the ideal place for students desiring that perfect mix of campus life and local social activities!,-Charming & classic architecture (originally built in 1931) -- Recently renovated!,-Seismically-reinforced building,-Double-pane windows throughout entire building,-Gas range stoves,www.abswapartments.com/"
],
"Title": [
"ABSW Apartments- Studio Available",
"ABSW Apartments- Studio Available"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $1900.0.
Hello.
Good Morning
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | unknown |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
660,
1100
]
} | [
1,
0,
1,
0,
1,
0,
1,
0,
1,
0,
1,
0,
1,
0,
1,
0,
0,
1
] | {
"intent": [
"intro",
"unknown",
"unknown",
"inquiry",
"inform",
"inquiry",
"disagree",
"init-price",
"inquiry",
"init-price",
"counter-price",
"counter-price",
"inquiry",
"inform",
"unknown",
"unknown",
"offer",
"accept"
],
"price": [
-1,
-1,
-1,
-1,
-1,
-1,
-1,
-1,
-1,
800,
925,
900,
-1,
-1,
-1,
-1,
900,
-1
]
} | [
"Good Morning",
"Good Morning.",
"Are you interested in buying my bike?",
"Yes I am. How old is it?",
"Just a few months, has only been rode about 50 miles",
"Wow, why?",
"It's my wife's, she started working full time now so she doesn't have the time to ride anymore.",
"I can't afford $1100 what is the lowest you can do on it?",
"I can negotiate on the price a little, what were you thinking you can afford?",
"Can you do $800?",
"I am so sorry I don't think I can go that low, could you do $925?",
"How about $900?",
"Yeah I can do that, when woud you like to pick it up?",
"Today if possible.",
"Ok, great, I am home all day today.",
"Sounds good.",
"",
""
] | {
"Category": [
"bike",
"bike"
],
"Images": [
"bike/6144881640_0.jpg",
"bike/6144881640_0.jpg"
],
"Price": [
1100,
1100
],
"Description": [
"Trek Equinox 7 WSD Womens Triathlon Bike,Product Description,*Frame: ZR 9000 Alloy,*Fork: Bontrager Race Lite TT, carbon",
"Trek Equinox 7 WSD Womens Triathlon Bike,Product Description,*Frame: ZR 9000 Alloy,*Fork: Bontrager Race Lite TT, carbon,*Saddle: Bontrager Race FIT TT,*Seat Post: Bontrager Race Lite TTX,*Handlebars: Bontrager Race Bullhorn,*Tires: Bontrager Select, 700x23c,This is my wife's bike bought from the dealer in Jacksonville Florida and moved cross county with us. This bike only has about 50 miles on it"
],
"Title": [
"Trek Equinox woman's triathlon bike",
"Trek Equinox woman's triathlon bike"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $1100.0.
Good Morning
Good Morning.
Are you interested in buying my bike?
Yes I am. How old is it?
Just a few months, has only been rode about 50 miles
Wow, why?
It's my wife's, she started working full time now so she doesn't have the time to ride anymore.
I can't afford $1100 what is the lowest you can do on it?
I can negotiate on the price a little, what were you thinking you can afford?
Can you do $800?
I am so sorry I don't think I can go that low, could you do $925?
How about $900?
Yeah I can do that, when woud you like to pick it up?
Today if possible.
Ok, great, I am home all day today.
Sounds good.
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | seller |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
18,
30
]
} | [
0,
1,
1
] | {
"intent": [
"",
"",
""
],
"price": [
-1,
-1,
-1
]
} | [
"",
"I'm sorry but 14 is too low",
""
] | {
"Category": [
"electronics",
"electronics"
],
"Images": [
"electronics/6114294013_0.jpg",
"electronics/6114294013_0.jpg"
],
"Price": [
30,
30
],
"Description": [
"The NETGEAR High Speed Cable Modem provides a connection to high-speed cable Internet. Item is CABLE MODEM ONLY,Compatible with major Cable Internet Service Providers like Comcast, Charter, Cable Vision, Cox, Time Warner Cable and others",
"The NETGEAR High Speed Cable Modem provides a connection to high-speed cable Internet. Item is CABLE MODEM ONLY,Compatible with major Cable Internet Service Providers like Comcast, Charter, Cable Vision, Cox, Time Warner Cable and others,High-performance - Up to 150 Mbps download and upload speed for streaming HD videos, faster downloads, and high-speed online gaming,No low ballers, cash only and local pickup, Sale is final,Thank you"
],
"Title": [
"NETGEAR DOCSIS 3.0 - High Speed Cable Modem (CMD31T)",
"NETGEAR DOCSIS 3.0 - High Speed Cable Modem (CMD31T)"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $30.0.
I'm sorry but 14 is too low
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | unknown |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
2100,
3500
]
} | [
0,
1
] | {
"intent": [
"",
""
],
"price": [
-1,
-1
]
} | [
"",
""
] | {
"Category": [
"car",
"car"
],
"Images": [
"car/6128924910_0.jpg",
"car/6128924910_0.jpg"
],
"Price": [
3500,
3500
],
"Description": [
"5 speed manual,Clean title in hand,Tags are paid and up to date,Low miles for the year 127,000.,Premium sound system pioneer,head unit with bluetooth",
"5 speed manual,Clean title in hand,Tags are paid and up to date,Low miles for the year 127,000.,Premium sound system pioneer,head unit with bluetooth,connectivity.,MB quarts speakers tweeter all,around,I have all service records all maintenance done and up to date. Including a brand new clutch transmission service with honda genuine fliud recent timing belt replacement waterpump and tensioner seals and gaskets. Super clean inside and out.,I will not take a low offer and i will not waist my time.,Thanks and have a wonderful day."
],
"Title": [
"2003 Honda Civic Lx Low Miles Clean Title Ready To Go!!!",
"2003 Honda Civic Lx Low Miles Clean Title Ready To Go!!!"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $3500.0.
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | unknown |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
210,
350
]
} | [
1,
0,
1,
0,
1,
0,
1,
0
] | {
"intent": [
"intro",
"unknown",
"unknown",
"disagree",
"init-price",
"agree",
"offer",
"accept"
],
"price": [
-1,
-1,
-1,
-1,
200,
200,
200,
-1
]
} | [
"Hi are you interested in the item?",
"I am very much interested, but the price seems a bit steep for me",
"Ok, it's pretty much market value for this item in this condition, but we can talk about it.",
"My kid would enjoy riding it, but I don't see it having that much value over a bike. What if the price was cut in half? I can even pick it up myself.",
"Look, half would mean me losing a lot of money. But I'm looking to get rid of this soon. I can let it go for an even $200 if you can pick it up by Monday.",
"That's understandable. I can understand your position. $200 wouldn't be bad. I can definitely do that.",
"",
""
] | {
"Category": [
"bike",
"bike"
],
"Images": [
"bike/6144799717_0.jpg",
"bike/6144799717_0.jpg"
],
"Price": [
350,
350
],
"Description": [
"John Deere Pedal Tractor w/ Wagon, Die Cast in mint condition. Your child will be over the moon riding this heavy durable tractor with heavy-duty chain system and oversized rubber tires. Comes with cute detachable rear wagon that can tow another child.",
"John Deere Pedal Tractor w/ Wagon, Die Cast in mint condition. Your child will be over the moon riding this heavy durable tractor with heavy-duty chain system and oversized rubber tires. Comes with cute detachable rear wagon that can tow another child."
],
"Title": [
"Kids John Deere Pedal Tractor w/ Wagon (NEW)",
"Kids John Deere Pedal Tractor w/ Wagon (NEW)"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $350.0.
Hi are you interested in the item?
I am very much interested, but the price seems a bit steep for me
Ok, it's pretty much market value for this item in this condition, but we can talk about it.
My kid would enjoy riding it, but I don't see it having that much value over a bike. What if the price was cut in half? I can even pick it up myself.
Look, half would mean me losing a lot of money. But I'm looking to get rid of this soon. I can let it go for an even $200 if you can pick it up by Monday.
That's understandable. I can understand your position. $200 wouldn't be bad. I can definitely do that.
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | buyer |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
836,
1100
]
} | [
1,
0,
1,
0,
1,
0,
1,
1,
0,
0
] | {
"intent": [
"intro",
"unknown",
"init-price",
"unknown",
"unknown",
"counter-price",
"agree",
"offer",
"unknown",
"accept"
],
"price": [
-1,
-1,
1100,
-1,
-1,
650,
650,
650,
-1,
-1
]
} | [
"Hello.",
"yeah, ",
"I'm looking to get rid of this bike. $1100's the price, but I'm willing to negotiate.",
"I'll be honest, I'm looking for a bike, and I need one in the next few seconds. But I'm not exactly sure about this. It says it's a women's bike? Is that for men?",
"It's definitely women's bike, but it's in great condition, and only has about 50 miles on it.",
"I see here that's it's made of carbon? Isn't everything made of carbon? I'll give you 650 for it.",
"Technically, you're right. $650 sounds great. I'll accept that offer.",
"",
"Seems' like we got a deal! My fat will be so happy!",
""
] | {
"Category": [
"bike",
"bike"
],
"Images": [
"bike/6144881640_0.jpg",
"bike/6144881640_0.jpg"
],
"Price": [
1100,
1100
],
"Description": [
"Trek Equinox 7 WSD Womens Triathlon Bike,Product Description,*Frame: ZR 9000 Alloy,*Fork: Bontrager Race Lite TT, carbon",
"Trek Equinox 7 WSD Womens Triathlon Bike,Product Description,*Frame: ZR 9000 Alloy,*Fork: Bontrager Race Lite TT, carbon,*Saddle: Bontrager Race FIT TT,*Seat Post: Bontrager Race Lite TTX,*Handlebars: Bontrager Race Bullhorn,*Tires: Bontrager Select, 700x23c,This is my wife's bike bought from the dealer in Jacksonville Florida and moved cross county with us. This bike only has about 50 miles on it"
],
"Title": [
"Trek Equinox woman's triathlon bike",
"Trek Equinox woman's triathlon bike"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $1100.0.
Hello.
yeah,
I'm looking to get rid of this bike. $1100's the price, but I'm willing to negotiate.
I'll be honest, I'm looking for a bike, and I need one in the next few seconds. But I'm not exactly sure about this. It says it's a women's bike? Is that for men?
It's definitely women's bike, but it's in great condition, and only has about 50 miles on it.
I see here that's it's made of carbon? Isn't everything made of carbon? I'll give you 650 for it.
Technically, you're right. $650 sounds great. I'll accept that offer.
Seems' like we got a deal! My fat will be so happy!
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | buyer |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
11,
12
]
} | [
1,
0,
1,
0,
1,
0,
1,
0,
1,
0,
1,
0,
1
] | {
"intent": [
"intro",
"unknown",
"unknown",
"inquiry",
"disagree",
"inquiry",
"inform",
"init-price",
"inquiry",
"inform",
"unknown",
"offer",
"accept"
],
"price": [
-1,
-1,
-1,
-1,
-1,
-1,
-1,
11,
-1,
-1,
-1,
11,
-1
]
} | [
"Hello",
"Hi, is the charger brand new?",
"Yes",
"I've read that some of these portable chargers can even jump a car, can this one do that?",
"Frankly, I'm not sure but I doubt it...",
"Okay, do you have one? And if so how does it perform?",
"Yes, I got this as a present and I already had one. It's for cell phones primarily and has worked well for me!",
"Great! Can you come down to $11?",
"Sure, that's fair. When can you meet?",
"Now!",
"Alright! See you soon!",
"",
""
] | {
"Category": [
"electronics",
"electronics"
],
"Images": [
"electronics/6128780638_0.jpg",
"electronics/6128780638_0.jpg"
],
"Price": [
12,
12
],
"Description": [
"12000mAh Portable External Battery Charger Power Bank for Cell Phone,Capacity :12000mAh,Powerful energy backup, add hours of power to your digital devices.,Portable, convenience and freedom, power up your digital devices at any time, anywhere.,The use of advanced intelligent protection chip, the overcharge protection, discharge, discharge protection, overload protection chip, short circuit protection, leakage protection, and five heavy security protection.,The lithium-ion polymer, long service life, more safety.,12000mAh capability, powerful with long operation time.",
"12000mAh Portable External Battery Charger Power Bank for Cell Phone,Capacity :12000mAh,Powerful energy backup, add hours of power to your digital devices.,Portable, convenience and freedom, power up your digital devices at any time, anywhere.,The use of advanced intelligent protection chip, the overcharge protection, discharge, discharge protection, overload protection chip, short circuit protection, leakage protection, and five heavy security protection.,The lithium-ion polymer, long service life, more safety.,12000mAh capability, powerful with long operation time.,Perfect power supply for business trip,travel,field work, etc.,Safe and reliable,perfect for using on travelling and outdoor activities.,Compatible with:,iPhone, iPod, Most mobile phones, such as Nokia, Motorola, HTC, Samsung, LG, Blackberry, Sony Ericsson etc,As for special mobile phone or other devices that has a special interface, such as iPhone, iPad etc, the data cable not included, you can connect the portable bank power by using your original USB data cable,Package Include:,1x External Portable Charger,For the first time Use, Please recharge the battery about 12 hours after you receive it , so that it can activate the battery, thank you"
],
"Title": [
"12000 MAH BACK-UP EXTERNAL BATTERY POWERBANK universal portable charge",
"12000 MAH BACK-UP EXTERNAL BATTERY POWERBANK universal portable charge"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $12.0.
Hello
Hi, is the charger brand new?
Yes
I've read that some of these portable chargers can even jump a car, can this one do that?
Frankly, I'm not sure but I doubt it...
Okay, do you have one? And if so how does it perform?
Yes, I got this as a present and I already had one. It's for cell phones primarily and has worked well for me!
Great! Can you come down to $11?
Sure, that's fair. When can you meet?
Now!
Alright! See you soon!
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | buyer |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
2392,
2600
]
} | [
0,
1,
0,
1,
0,
1,
0,
1,
0,
1,
0,
1,
0,
1,
0,
1,
0,
0,
1
] | {
"intent": [
"intro",
"unknown",
"inquiry",
"inform",
"inquiry",
"inform",
"inquiry",
"inform",
"inquiry",
"init-price",
"inquiry",
"disagree",
"inquiry",
"counter-price",
"counter-price",
"insist",
"agree",
"offer",
"accept"
],
"price": [
-1,
-1,
-1,
-1,
-1,
-1,
-1,
-1,
-1,
1800,
-1,
-1,
-1,
-1,
1500,
1800,
-1,
1800,
-1
]
} | [
"What direction do the windows face in the apartment?",
"East",
"What floor is the apartment on?",
"first",
"How many parking places do I get?",
"one",
"What utilities are included in the rent?",
"water ",
"How much are you asking for the rent?",
"$1800",
"Do I have to pay first and last month?",
"No",
"How about a security deposit?",
"Security deposit is $2000",
"I am willing to offer 1800 for the rent but only want to tie up 1500 as a security deposit. Okay?",
"how about 1800 for security deposit?",
"Okay",
"",
""
] | {
"Category": [
"housing",
"housing"
],
"Images": [
"housing/6106746978_0.jpg",
"housing/6106746978_0.jpg"
],
"Price": [
2600,
2600
],
"Description": [
"2 bedrooms, 1 bathroom, spacious and sunny apartment.,Dual pane windows, newer bathroom, granite counter top, painted.,By North Berkeley BART.",
"2 bedrooms, 1 bathroom, spacious and sunny apartment.,Dual pane windows, newer bathroom, granite counter top, painted.,By North Berkeley BART.,Carport included,Laundry in building,One year lease,When replying write your phone number, and describe yourself and your needs."
],
"Title": [
"Beautiful sunny two bedroom apartment in 8 unit building Berkeley",
"Beautiful sunny two bedroom apartment in 8 unit building Berkeley"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $2600.0.
What direction do the windows face in the apartment?
East
What floor is the apartment on?
first
How many parking places do I get?
one
What utilities are included in the rent?
water
How much are you asking for the rent?
$1800
Do I have to pay first and last month?
No
How about a security deposit?
Security deposit is $2000
I am willing to offer 1800 for the rent but only want to tie up 1500 as a security deposit. Okay?
how about 1800 for security deposit?
Okay
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | buyer |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
2400,
4000
]
} | [
1,
0,
1,
0,
1,
0,
1,
0,
1,
1,
0
] | {
"intent": [
"intro",
"unknown",
"init-price",
"counter-price",
"counter-price",
"counter-price",
"counter-price",
"counter-price",
"unknown",
"offer",
"accept"
],
"price": [
-1,
-1,
4000,
2200,
3400,
2400,
3100,
3000,
-1,
3000,
-1
]
} | [
"hello",
"Hi!",
"this is a great car, i'm the original owner... i'm asking 4000",
"The car looks in good shape. But I think if I keep shopping around I can find it for around 2200, how close can you get to that price?",
"i'm willing to negotiate, but 2200 is too low. I was thinking 3400. if you can do cash maybe I can lower",
"I can pay 2400 in cash right now",
"If you can do 3100 ill submit the final offer right now, and drive it over to you. do we have a deal?",
"Make it 3000, pay for a mechanic to inspect it and drive it over and we can make the deal. ",
"done, i'm submitting the price now",
"",
""
] | {
"Category": [
"car",
"car"
],
"Images": [
"car/6133239562_0.jpg",
"car/6133239562_0.jpg"
],
"Price": [
4000,
4000
],
"Description": [
"I have a 2001 toyota rav 4 for sale. white color .,first owner , clean title , lower mileages , just 130k miles.,car runs great , smog passed . with the spare tire and nice cover on the back.",
"I have a 2001 toyota rav 4 for sale. white color .,first owner , clean title , lower mileages , just 130k miles.,car runs great , smog passed . with the spare tire and nice cover on the back.,if you are interesting , please call,.,thanks !"
],
"Title": [
"2001 toyota rav4 clean title low miles 129k runs great",
"2001 toyota rav4 clean title low miles 129k runs great"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $4000.0.
hello
Hi!
this is a great car, i'm the original owner... i'm asking 4000
The car looks in good shape. But I think if I keep shopping around I can find it for around 2200, how close can you get to that price?
i'm willing to negotiate, but 2200 is too low. I was thinking 3400. if you can do cash maybe I can lower
I can pay 2400 in cash right now
If you can do 3100 ill submit the final offer right now, and drive it over to you. do we have a deal?
Make it 3000, pay for a mechanic to inspect it and drive it over and we can make the deal.
done, i'm submitting the price now
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | buyer |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
184,
200
]
} | [
1,
0,
1,
0,
1,
0,
1,
0,
1,
0,
1,
0
] | {
"intent": [
"intro",
"inquiry",
"inform",
"init-price",
"inquiry",
"counter-price",
"counter-price",
"counter-price",
"agree",
"unknown",
"offer",
"accept"
],
"price": [
-1,
-1,
-1,
175,
-1,
180,
190,
185,
185,
-1,
185,
-1
]
} | [
"What would you like to know about the Ipad I am selling?",
"There condition in absolutely fine?",
"Yes. I always kept in a case and only used it about once a month.",
"Okay, well I can give you $175 today for it? Can you do that for me?",
"I was hoping to get a little more. Can you go a bit higher?",
"$180?",
"This is in mint condition with the charger and original box. How about 190?",
"I'm sorry, the most I can spend is $185",
"185 is agreeable. Thanks.",
"Thank you!",
"",
""
] | {
"Category": [
"phone",
"phone"
],
"Images": [
"",
""
],
"Price": [
200,
200
],
"Description": [
"Selling barely used Ipad Mini 2 16gb Cellular, mint condition always kept in a case. Bought it year ago, used it once a month.",
"Selling barely used Ipad Mini 2 16gb Cellular, mint condition always kept in a case. Bought it year ago, used it once a month.,Don't need it, this is why I am selling it. 200 Cash. Box and charger are included."
],
"Title": [
"Ipad Mini 2 16gb Cellular",
"Ipad Mini 2 16gb Cellular"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $200.0.
What would you like to know about the Ipad I am selling?
There condition in absolutely fine?
Yes. I always kept in a case and only used it about once a month.
Okay, well I can give you $175 today for it? Can you do that for me?
I was hoping to get a little more. Can you go a bit higher?
$180?
This is in mint condition with the charger and original box. How about 190?
I'm sorry, the most I can spend is $185
185 is agreeable. Thanks.
Thank you!
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | buyer |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
90,
150
]
} | [
0,
1,
0,
1,
0,
1,
0
] | {
"intent": [
"intro",
"disagree",
"init-price",
"counter-price",
"inquiry",
"counter-price",
"counter-price"
],
"price": [
-1,
-1,
90,
100,
-1,
-1,
120
]
} | [
"Hello, I've taken an interest in your Ikea bed frame. ",
"It is in great condition and not very old",
"I am looking to pay about $90 for it. ",
"I was hoping to get $100 for it. The storage drawers are really useful",
"Do you know what was stored in them previously?",
"No, I don't. I'm sorry. I am listing it for $150. I typed in the wrong number",
"Would you take $120 if I requested you also dropped it off where I live? I am not too far from you. "
] | {
"Category": [
"furniture",
"furniture"
],
"Images": [
"furniture/6145286356_0.jpg",
"furniture/6145286356_0.jpg"
],
"Price": [
150,
150
],
"Description": [
"I am selling a full size ikea malm black bed frame with slatted bed frame and two under the bed storage drawers included. It is only two years old and in great condition.,http://www.ikea.com/us/en/catalog/products/S69009475/#/S09069778",
"I am selling a full size ikea malm black bed frame with slatted bed frame and two under the bed storage drawers included. It is only two years old and in great condition.,http://www.ikea.com/us/en/catalog/products/S69009475/#/S09069778,http://www.ikea.com/us/en/catalog/products/20252718/,http://www.ikea.com/us/en/catalog/products/50285091/"
],
"Title": [
"FULL SIZE IKEA MALM BLACK BED FRAME W/ SLATS AND 2 UNDER BED STORAGE",
"FULL SIZE IKEA MALM BLACK BED FRAME W/ SLATS AND 2 UNDER BED STORAGE"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $150.0.
Hello, I've taken an interest in your Ikea bed frame.
It is in great condition and not very old
I am looking to pay about $90 for it.
I was hoping to get $100 for it. The storage drawers are really useful
Do you know what was stored in them previously?
No, I don't. I'm sorry. I am listing it for $150. I typed in the wrong number
Would you take $120 if I requested you also dropped it off where I live? I am not too far from you.
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | neither |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
117,
155
]
} | [
0,
1
] | {
"intent": [
"",
""
],
"price": [
-1,
-1
]
} | [
"",
""
] | {
"Category": [
"electronics",
"electronics"
],
"Images": [
"electronics/6154492583_0.jpg",
"electronics/6154492583_0.jpg"
],
"Price": [
155,
155
],
"Description": [
"A2 Sound Engines with clear highs and detailed deep bass,Super-Power Wireless - Control Tracks Air from up to 150 feet away",
"A2 Sound Engines with clear highs and detailed deep bass,Super-Power Wireless - Control Tracks Air from up to 150 feet away,Connect to two devices simultaneously, including your phone, tablet or computer. Seamlessly answer an incoming call while watching a movie on your tablet.,Built-in microphone for phone calls enables hands-free calling"
],
"Title": [
"Sol Republic Wireless Bluetooth Headphones",
"Sol Republic Wireless Bluetooth Headphones"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $155.0.
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | unknown |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
30,
40
]
} | [
1,
0,
1,
0,
1,
0,
1,
0,
1,
0,
1,
1,
0,
0
] | {
"intent": [
"intro",
"unknown",
"unknown",
"init-price",
"counter-price",
"counter-price",
"counter-price",
"agree",
"unknown",
"counter-price",
"agree",
"offer",
"agree",
"accept"
],
"price": [
-1,
-1,
-1,
30,
35,
32,
33,
33,
-1,
35,
-1,
35,
35,
-1
]
} | [
"Hi there. I'm trying to get rid of this armoire as soon as possible.",
"The armoire looks pretty nice.",
"It's in pretty good condition. The handle on the right door is missing. That's the only thing wrong with it.",
"I'm sure it will take time and money to replace the handle. I would like to pay $30.",
"The handle doesnt cost much to replace. Home depot has something similar for cheap. How about 35?",
"I hope you're correct, but it will still take some time. I will also need to get it installed, I'm not good with tools. Let's make it 32 dollars.",
"Okay, you have a point. 33 and it's a deal.",
"I will agree to $33 if you can deliver it. ",
"Delivery? That's a bit extra. I would expect you to come pick it up.",
"I don't have a vehicle. I would have to rent something. I will cost much more. If I have to pick it up, I will pay $30. If you deliver it, I will pay you $35.",
"I'll deliver it and accept the 35",
"",
"Great, $35 with delivery. ",
""
] | {
"Category": [
"furniture",
"furniture"
],
"Images": [
"furniture/6107749817_0.jpg",
"furniture/6107749817_0.jpg"
],
"Price": [
40,
40
],
"Description": [
"Thank you for viewing this nice MCM wood armoire. Great for storing clothes, craft items, and more! It measures 38\" wide x 19\" deep x 60\" high. The handle on the right door is missing, but easily replaced.",
"Thank you for viewing this nice MCM wood armoire. Great for storing clothes, craft items, and more! It measures 38\" wide x 19\" deep x 60\" high. The handle on the right door is missing, but easily replaced."
],
"Title": [
"Armoire clothes or other Storage Cabinet PRICED TO SELL!",
"Armoire clothes or other Storage Cabinet PRICED TO SELL!"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $40.0.
Hi there. I'm trying to get rid of this armoire as soon as possible.
The armoire looks pretty nice.
It's in pretty good condition. The handle on the right door is missing. That's the only thing wrong with it.
I'm sure it will take time and money to replace the handle. I would like to pay $30.
The handle doesnt cost much to replace. Home depot has something similar for cheap. How about 35?
I hope you're correct, but it will still take some time. I will also need to get it installed, I'm not good with tools. Let's make it 32 dollars.
Okay, you have a point. 33 and it's a deal.
I will agree to $33 if you can deliver it.
Delivery? That's a bit extra. I would expect you to come pick it up.
I don't have a vehicle. I would have to rent something. I will cost much more. If I have to pick it up, I will pay $30. If you deliver it, I will pay you $35.
I'll deliver it and accept the 35
Great, $35 with delivery.
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | neither |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
276,
300
]
} | [
0,
1,
0,
1
] | {
"intent": [
"",
"",
"",
""
],
"price": [
-1,
-1,
-1,
-1
]
} | [
"Hello. What can I tell you about the headphones?",
"ummm aren't you trying to buy an iphone 6?",
"Strange. It says I'm selling wireless headphones.",
"ok ill give you $50 for them and an iphone 6..."
] | {
"Category": [
"phone",
"phone"
],
"Images": [
"",
""
],
"Price": [
300,
300
],
"Description": [
"Black iPhone 6 looks brand new with screen cover and case with a kickstand. Verizon phone",
"Black iPhone 6 looks brand new with screen cover and case with a kickstand. Verizon phone,Pittsburg. Has extended memory 64 gigs . Has new screen cover and kickstand case ."
],
"Title": [
"Iphone 6",
"Iphone 6"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $300.0.
Hello. What can I tell you about the headphones?
ummm aren't you trying to buy an iphone 6?
Strange. It says I'm selling wireless headphones.
ok ill give you $50 for them and an iphone 6...
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | unknown |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
190,
250
]
} | [
0,
1,
0,
1,
0,
1
] | {
"intent": [
"",
"",
"",
"",
"",
""
],
"price": [
-1,
-1,
-1,
-1,
-1,
-1
]
} | [
"",
"I am asking $250. It is in good shape.",
"Okay",
"I can only accept Cash or PayPal. So it is it deal for $250?",
"yes",
""
] | {
"Category": [
"electronics",
"electronics"
],
"Images": [
"electronics/6152819441_0.jpg",
"electronics/6152819441_0.jpg"
],
"Price": [
250,
250
],
"Description": [
"Cash or PayPal only. Pickup in East Richmond Heights. Serious inquiries only, email with questions. All sales final - no warranty or returns.",
"Cash or PayPal only. Pickup in East Richmond Heights. Serious inquiries only, email with questions. All sales final - no warranty or returns.,Keywords: Technics, 1200, 1200 MK2, Turntable, Vinyl, 33, 45, LPs, DJ"
],
"Title": [
"DJ Gear! Stanton Turntables, Vestax Mixer, Cases",
"DJ Gear! Stanton Turntables, Vestax Mixer, Cases"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $250.0.
I am asking $250. It is in good shape.
Okay
I can only accept Cash or PayPal. So it is it deal for $250?
yes
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | unknown |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
228,
300
]
} | [
1,
0,
1,
0
] | {
"intent": [
"",
"",
"",
""
],
"price": [
-1,
-1,
-1,
-1
]
} | [
"",
"I can't go above $228.",
"Okay, fine. 228",
""
] | {
"Category": [
"furniture",
"furniture"
],
"Images": [
"furniture/6145063936_0.jpg",
"furniture/6145063936_0.jpg"
],
"Price": [
300,
300
],
"Description": [
"We need to sell off some of our office furniture as we need to make some extra room. This is a very new piece fully assembled. We bought it from Coscto Furniture, 3 months back. Here's the link to the actual furniture.,https://www.costco.com/Logan-U-shape-Workstation-with-Adjustable-Bridge.product.100245742.html",
"We need to sell off some of our office furniture as we need to make some extra room. This is a very new piece fully assembled. We bought it from Coscto Furniture, 3 months back. Here's the link to the actual furniture.,https://www.costco.com/Logan-U-shape-Workstation-with-Adjustable-Bridge.product.100245742.html,Hutch includes power bar with two power outlets and two USB plugs which is installed on the back panel of the hutch.,You will need to come and pick up the furniture. House is on first floor with 1 flight of stairs (15 steps). Rate negotiable."
],
"Title": [
"Professional Office Furniture - Hutch",
"Professional Office Furniture - Hutch"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $300.0.
I can't go above $228.
Okay, fine. 228
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | unknown |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
684,
900
]
} | [
0,
1,
0,
1,
0,
1,
0,
1,
0,
0,
1
] | {
"intent": [
"intro",
"init-price",
"counter-price",
"unknown",
"counter-price",
"counter-price",
"counter-price",
"agree",
"unknown",
"offer",
"accept"
],
"price": [
-1,
900,
600,
-1,
675,
725,
684,
684,
-1,
684,
-1
]
} | [
"What would you like to get for this bike?",
"Hi there! I am looking to get $900 for this bike. It is solid pro materials. ",
"It is a good bike but I can't afford that much. Could you accept $600? That should be plenty for a new bike.",
"That seems a little low. It has been freshly cleaned and tunes, and has less than 100 miles on it. It is in excellent shape.",
"Meet me in the middle somewhere? What would you say to $675?",
"Hm, how about $725, and if you could come and pick it up? ",
"I was trying to stay under $700. Could you maybe consider $684?",
"Alright, $684 and if you come to get it yourself sound okay? ",
"That sounds like a deal to me. Thank you. ",
"",
""
] | {
"Category": [
"bike",
"bike"
],
"Images": [
"bike/6154517759_0.jpg",
"bike/6154517759_0.jpg"
],
"Price": [
900,
900
],
"Description": [
"Up for sale is a 2014 Trek Cali SLX 29er in a size 14\" frame,good for riders ~4'11\" - 5'2\",Purchased brand new August of this year, selling to fund a full suspension,WSD Geometry, Alpha Gold Aluminum w/internal front derailleur cable routing, G2 Geometry,Formula DC91 alloy front hub; Formula DC38 alloy rear hub w/Bontrager AT-850 32-hole double-walled rims,Tires",
"Up for sale is a 2014 Trek Cali SLX 29er in a size 14\" frame,good for riders ~4'11\" - 5'2\",Purchased brand new August of this year, selling to fund a full suspension,WSD Geometry, Alpha Gold Aluminum w/internal front derailleur cable routing, G2 Geometry,Formula DC91 alloy front hub; Formula DC38 alloy rear hub w/Bontrager AT-850 32-hole double-walled rims,Tires,Drivetrain,Shimano HG62 11-36, 10 speed,Seatpost,1-1/8\" threadless, semi-integrated, semi-cartridge bearings,Tires swapped to Schwalbe Nobby Nic Front, S-Works Ground Control rear,Ridden less than 100 miles,Freshly cleaned and tuned"
],
"Title": [
"2014 Trek Cali SLX 14\" 29er",
"2014 Trek Cali SLX 14\" 29er"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $900.0.
What would you like to get for this bike?
Hi there! I am looking to get $900 for this bike. It is solid pro materials.
It is a good bike but I can't afford that much. Could you accept $600? That should be plenty for a new bike.
That seems a little low. It has been freshly cleaned and tunes, and has less than 100 miles on it. It is in excellent shape.
Meet me in the middle somewhere? What would you say to $675?
Hm, how about $725, and if you could come and pick it up?
I was trying to stay under $700. Could you maybe consider $684?
Alright, $684 and if you come to get it yourself sound okay?
That sounds like a deal to me. Thank you.
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | buyer |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
395,
430
]
} | [
0,
1,
0,
1,
0,
1,
0,
1,
0,
1
] | {
"intent": [
"intro",
"init-price",
"counter-price",
"counter-price",
"counter-price",
"counter-price",
"unknown",
"unknown",
"offer",
"accept"
],
"price": [
-1,
430,
340,
415,
375,
400,
-1,
-1,
400,
-1
]
} | [
"hello",
"Hello. I am asking 430 for this. It is an amazing subwoofer",
"i'm willing to offer you 340 since it used",
"Sorry, that is too low. It is one of the best on the market and has a lot of power. How about 415",
"that is out of my budget. can you do 375 in cash?",
"How about 400 and I'll deliver it myself. You can blow it up and you can rebuild it.",
"ill accept that!",
"Okay. Go ahead and make the offer please.",
"",
""
] | {
"Category": [
"electronics",
"electronics"
],
"Images": [
"electronics/6153013234_0.jpg",
"electronics/6153013234_0.jpg"
],
"Price": [
430,
430
],
"Description": [
"ITS ONE OF THE BEST CAR AUDIO SUBWOOFER ON THE MARKET. MTX HAS THE BEST CAR AUDIO SUBS. IF YOU WANT A good sub with a lot of power then you should be looking at the MTX RFL 15 INCH SUBWOOFER .THESE SUBS ARE FOR SPL.,MTX RFL 152 Car Audio Competition Subwoofer,Condition:USED,MTX RFL152, 15\" 4,000 Watt SPL Competition subwoofer. The RFL152 is designed for just one purpose, SPL competition - the most extreme car audio sport on the planet. The inverted roll surround is constructed from multi-layer polyester. Its two 3-layer spiders are separated by a die-cast aluminum mounting ring. With the RFL152, if you can blow it up, you can rebuild it. its 56 pounds.,Warranty: None",
"ITS ONE OF THE BEST CAR AUDIO SUBWOOFER ON THE MARKET. MTX HAS THE BEST CAR AUDIO SUBS. IF YOU WANT A good sub with a lot of power then you should be looking at the MTX RFL 15 INCH SUBWOOFER .THESE SUBS ARE FOR SPL.,MTX RFL 152 Car Audio Competition Subwoofer,Condition:USED,MTX RFL152, 15\" 4,000 Watt SPL Competition subwoofer. The RFL152 is designed for just one purpose, SPL competition - the most extreme car audio sport on the planet. The inverted roll surround is constructed from multi-layer polyester. Its two 3-layer spiders are separated by a die-cast aluminum mounting ring. With the RFL152, if you can blow it up, you can rebuild it. its 56 pounds.,Warranty: None,Specifications,Type: SPL Competition Subwoofer,Impedance: Dual 2 Ohm,Recone Kit:NOT Included,http://www.mtx.com,Alpine,kenwood,Polk audio,Mtx audio,jbl,zapco,kicker,audio Control,Sony, pioneer, Rockford Fosgate,q logic, jl audio"
],
"Title": [
"MTX 15 INCH RFL FOR SALE",
"MTX 15 INCH RFL FOR SALE"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $430.0.
hello
Hello. I am asking 430 for this. It is an amazing subwoofer
i'm willing to offer you 340 since it used
Sorry, that is too low. It is one of the best on the market and has a lot of power. How about 415
that is out of my budget. can you do 375 in cash?
How about 400 and I'll deliver it myself. You can blow it up and you can rebuild it.
ill accept that!
Okay. Go ahead and make the offer please.
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | buyer |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
138,
150
]
} | [
1,
0,
1,
0,
1,
0,
1,
0,
0
] | {
"intent": [
"offer",
"inquiry",
"inquiry",
"counter-price",
"inquiry",
"inquiry",
"inquiry",
"inform",
"accept"
],
"price": [
150,
-1,
-1,
-1,
-1,
-1,
-1,
-1,
-1
]
} | [
"",
"I see your asking price, do you have a pick-up that would enable you to get the to my home?",
"I do. I can offer to bring anywhere within the Hayward/Castro Valley area or along 580/13 corridor if needed. Where are you located?",
"I am located in Hayward. I will pay the $150 if you bring them too me.",
"I'm happy to do that. I'm available any day this week to pack them up securely and bring to your location. Do we have a deal?",
"We do. How about tomorrow morning?",
"Sounds great. Please send me your address. Does 10:30am sound okay to you?",
"Yes. I will formally accept the offer",
""
] | {
"Category": [
"furniture",
"furniture"
],
"Images": [
"furniture/6145266604_0.jpg",
"furniture/6145266604_0.jpg"
],
"Price": [
150,
150
],
"Description": [
"I have 6 of these dining chairs. Bought off Craigslist last fall and now wife doesn't like them for our new house. So back into the market they go for someone else to get a deal.",
"I have 6 of these dining chairs. Bought off Craigslist last fall and now wife doesn't like them for our new house. So back into the market they go for someone else to get a deal.,Cash only. Can help deliver to Hayward/Castro Valley or along 580/13 corridor if needed. Cash first.,Email with your name and phone and I'll call you."
],
"Title": [
"Dining Chairs 6",
"Dining Chairs 6"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $150.0.
I see your asking price, do you have a pick-up that would enable you to get the to my home?
I do. I can offer to bring anywhere within the Hayward/Castro Valley area or along 580/13 corridor if needed. Where are you located?
I am located in Hayward. I will pay the $150 if you bring them too me.
I'm happy to do that. I'm available any day this week to pack them up securely and bring to your location. Do we have a deal?
We do. How about tomorrow morning?
Sounds great. Please send me your address. Does 10:30am sound okay to you?
Yes. I will formally accept the offer
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | seller |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
29,
49
]
} | [
1,
0,
1,
0,
1,
0,
1,
1,
0,
0
] | {
"intent": [
"intro",
"inquiry",
"init-price",
"counter-price",
"counter-price",
"counter-price",
"agree",
"offer",
"unknown",
"accept"
],
"price": [
-1,
-1,
5,
35,
-1,
37,
-1,
37,
-1,
-1
]
} | [
"Hey there! Are you interested in this Fashion Optical Kid's Frame Display?",
"Yes. But the price is a bit high. You said the LED is available for additional fee?",
"Yes it would be an additional $5 for the LED lights.",
"i see. so total is around 54. that's still too high. i'll tell you what. i'll give you 35 for the display with the LED ",
"Would you go $40 and ill throw the LED lights in? Its in excellent condition.",
"tell you what. i'll go as high as 37. if we have a deal it's done I'll even come and pick it up ",
"$37 it is! sounds good! ",
"",
"It's done. glad doing business with you",
""
] | {
"Category": [
"furniture",
"furniture"
],
"Images": [
"furniture/6145263859_0.jpg",
"furniture/6145263859_0.jpg"
],
"Price": [
49,
49
],
"Description": [
"This Fashion Optical Kids' Frame Display is in excellent condition, It measures 75\"H x 23.5\"W x 9\"D. It has 3 fixed vertical bars each 36\", plus two wall-mountable bars each 20.5\". Comes with 20 frame clips that can be moved from bar to bar and spaced in any configuration. Additional frame clips available at Fashion Optical. LED lighting is available for an additional fee.",
"This Fashion Optical Kids' Frame Display is in excellent condition, It measures 75\"H x 23.5\"W x 9\"D. It has 3 fixed vertical bars each 36\", plus two wall-mountable bars each 20.5\". Comes with 20 frame clips that can be moved from bar to bar and spaced in any configuration. Additional frame clips available at Fashion Optical. LED lighting is available for an additional fee."
],
"Title": [
"FASHION OPTICAL KIDS' FRAME DISPLAY",
"FASHION OPTICAL KIDS' FRAME DISPLAY"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $49.0.
Hey there! Are you interested in this Fashion Optical Kid's Frame Display?
Yes. But the price is a bit high. You said the LED is available for additional fee?
Yes it would be an additional $5 for the LED lights.
i see. so total is around 54. that's still too high. i'll tell you what. i'll give you 35 for the display with the LED
Would you go $40 and ill throw the LED lights in? Its in excellent condition.
tell you what. i'll go as high as 37. if we have a deal it's done I'll even come and pick it up
$37 it is! sounds good!
It's done. glad doing business with you
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | buyer |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
92,
100
]
} | [
1,
0,
1,
0,
1,
0,
0,
1
] | {
"intent": [
"intro",
"unknown",
"unknown",
"init-price",
"counter-price",
"unknown",
"offer",
"accept"
],
"price": [
-1,
-1,
-1,
82,
90,
-1,
90,
-1
]
} | [
"Hello",
"The bike looks nice. ",
"It's a great bike, but unfortunately my kid outgrew it!",
"My kid can use it. I can only afford $82.",
"It's practically new, little Lucy barely rode it! I'd like to get at least $90 for it. It was quite an expensive purchase.",
"Ok, that's sounds fair.",
"",
""
] | {
"Category": [
"bike",
"bike"
],
"Images": [
"bike/6152177792_0.jpg",
"bike/6152177792_0.jpg"
],
"Price": [
100,
100
],
"Description": [
"Bike for sale. Bought this bike (and another bike for Sale) a few years ago and my kid hardly rode it. Like new condition. Needs some cleaning. Pick up only. Fits ages 8-13.",
"Bike for sale. Bought this bike (and another bike for Sale) a few years ago and my kid hardly rode it. Like new condition. Needs some cleaning. Pick up only. Fits ages 8-13."
],
"Title": [
"Girls Road bike - Trek",
"Girls Road bike - Trek"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $100.0.
Hello
The bike looks nice.
It's a great bike, but unfortunately my kid outgrew it!
My kid can use it. I can only afford $82.
It's practically new, little Lucy barely rode it! I'd like to get at least $90 for it. It was quite an expensive purchase.
Ok, that's sounds fair.
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | buyer |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
59,
65
]
} | [
1,
1,
0,
0,
1
] | {
"intent": [
"",
"",
"",
"",
""
],
"price": [
-1,
-1,
-1,
-1,
-1
]
} | [
"",
"Hi there!",
"Hi, sorry",
"",
"I have a wooden pet house up for sale today"
] | {
"Category": [
"furniture",
"furniture"
],
"Images": [
"",
""
],
"Price": [
65,
65
],
"Description": [
"Medium-sized wooden pet habitat. Can be used just for play, too. Works for cats, dogs, etc. Please text if you'd like pictures. Available for pick-up.",
"Medium-sized wooden pet habitat. Can be used just for play, too. Works for cats, dogs, etc. Please text if you'd like pictures. Available for pick-up.,Thanks!"
],
"Title": [
"Wooden pet house",
"Wooden pet house"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $65.0.
Hi there!
Hi, sorry
I have a wooden pet house up for sale today
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | unknown |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
957,
1595
]
} | [
0,
1,
0,
1,
0,
1,
0,
1,
0,
1,
0,
1,
0,
1,
1
] | {
"intent": [
"offer",
"agree",
"unknown",
"counter-price",
"inquiry",
"inform",
"unknown",
"counter-price",
"inquiry",
"inform",
"counter-price",
"counter-price",
"counter-price",
"unknown",
"reject"
],
"price": [
1200,
1200,
-1,
-1,
-1,
-1,
-1,
-1,
-1,
-1,
1275,
650,
1300,
-1,
-1
]
} | [
"",
"You can't rush this. 1200 is too low",
"Unfortunately I have to pay for all utilities and get rid of a beloved pet due to restrictions.",
"That is unfortunate but this is a pretty awesome home. Because of the utilities I can lower the price to 1400.",
"Is there even a yard or lawn? ",
"There is a small backyard for each unit. It's gated",
"Sewer and trash fees are very high at the moment",
"Okay how about this....half off the security deposit and 1350. ",
"This places comes completely unfurnished? ",
"Yes. It's unfurnished. You can decorate it anyway you like",
"I really appreciate the half off security deposit, thats very generous. Can we work somewhere around 1275?",
"How about a flat 1300 which includes all the utilities and you only pay half (650) for the security deposit?",
"If you're willing to include utilities into that fee, I say a flat 1300 sounds good on my end. ",
"Great. we have a deal then. ",
""
] | {
"Category": [
"housing",
"housing"
],
"Images": [
"",
""
],
"Price": [
1595,
1595
],
"Description": [
"Take a look at this beautiful home featuring 3 bedrooms, 1 bathroom, and approximately 940 square feet. Enjoy the freedom of a virtually maintenance free lifestyle while residing in a great community. This home is professionally managed and maintained by Tricon American Homes. You deserve single family rental living at its best!,One-year lease minimum,Utilities: Resident pays for all utilities including trash, sewer, and water,Animals approved with pet fee and monthly animal rent,Breed Restrictions: Pit Bulls, American Staffordshire Terriers, Rottweilers, Doberman Pinchers, Wolf-Hybrids and Perro de Presa Canarios or any dog that has the above breeds in their lineage are not allowed at any home managed by Tricon American Homes. Applicable only where state law allows.,Maximum three animals allowed,Equal Housing Opportunity",
"Take a look at this beautiful home featuring 3 bedrooms, 1 bathroom, and approximately 940 square feet. Enjoy the freedom of a virtually maintenance free lifestyle while residing in a great community. This home is professionally managed and maintained by Tricon American Homes. You deserve single family rental living at its best!,One-year lease minimum,Utilities: Resident pays for all utilities including trash, sewer, and water,Animals approved with pet fee and monthly animal rent,Breed Restrictions: Pit Bulls, American Staffordshire Terriers, Rottweilers, Doberman Pinchers, Wolf-Hybrids and Perro de Presa Canarios or any dog that has the above breeds in their lineage are not allowed at any home managed by Tricon American Homes. Applicable only where state law allows.,Maximum three animals allowed,Equal Housing Opportunity,Pricing is subject to change without notice. Some pricing may include special offers based on lease terms and date of occupancy.,Security deposit varies based upon credit criteria; however standard security deposit equals one month's rent.,Applicants applying to a home associated with a HOA may be held to higher screening requirements and additional application processes.,Bathrooms: 1 Full,Tricon American Homes (Bay Area),Leasing Team,Call Now:"
],
"Title": [
"Charming Home with an Amazing Ambience (HEMLOCK)",
"Charming Home with an Amazing Ambience (HEMLOCK)"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $1595.0.
You can't rush this. 1200 is too low
Unfortunately I have to pay for all utilities and get rid of a beloved pet due to restrictions.
That is unfortunate but this is a pretty awesome home. Because of the utilities I can lower the price to 1400.
Is there even a yard or lawn?
There is a small backyard for each unit. It's gated
Sewer and trash fees are very high at the moment
Okay how about this....half off the security deposit and 1350.
This places comes completely unfurnished?
Yes. It's unfurnished. You can decorate it anyway you like
I really appreciate the half off security deposit, thats very generous. Can we work somewhere around 1275?
How about a flat 1300 which includes all the utilities and you only pay half (650) for the security deposit?
If you're willing to include utilities into that fee, I say a flat 1300 sounds good on my end.
Great. we have a deal then.
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | seller |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
53,
70
]
} | [
0,
1,
0,
1,
0,
1,
0
] | {
"intent": [
"intro",
"init-price",
"counter-price",
"counter-price",
"counter-price",
"offer",
"accept"
],
"price": [
-1,
70,
40,
65,
60,
60,
-1
]
} | [
"Hello. What type of wood is the table?",
"its american cherry. very nice table and mirror. I would keep it, but it no longer matches the decor in the place I live. I'm asking $70.",
"It sounds nice. Is there any damage to the table? I was hoping to pay closer to $40.",
"its almost like new. I can part with it for $65, and i'm willing to deliver it to your place.",
"If you could do $60 with delivery I think we have a deal.",
"",
""
] | {
"Category": [
"furniture",
"furniture"
],
"Images": [
"furniture/6141017060_0.jpg",
"furniture/6141017060_0.jpg"
],
"Price": [
70,
70
],
"Description": [
"Matching side table and mirror for sale,Table,26 inches wide,26 inches tall",
"Matching side table and mirror for sale,Table,26 inches wide,26 inches tall,51 inches tall,29 1/4 inches wide,Selling because it no longer matches my decor,Feel free to email me with any questions"
],
"Title": [
"Matching table and mirror",
"Matching table and mirror"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $70.0.
Hello. What type of wood is the table?
its american cherry. very nice table and mirror. I would keep it, but it no longer matches the decor in the place I live. I'm asking $70.
It sounds nice. Is there any damage to the table? I was hoping to pay closer to $40.
its almost like new. I can part with it for $65, and i'm willing to deliver it to your place.
If you could do $60 with delivery I think we have a deal.
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | buyer |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
322,
350
]
} | [
1,
0,
1,
0,
1,
0,
1,
0,
1,
0,
1,
0,
0,
1
] | {
"intent": [
"intro",
"unknown",
"init-price",
"inquiry",
"counter-price",
"inquiry",
"inform",
"inquiry",
"inquiry",
"counter-price",
"counter-price",
"unknown",
"offer",
"accept"
],
"price": [
-1,
-1,
350,
-1,
-1,
-1,
-1,
-1,
-1,
300,
325,
-1,
325,
-1
]
} | [
"Hello there, are you interested in my John Deer Pedal Tractor?",
"Yes I am very interested in the tractor!",
"I am asking $350 for the tractor, it's in mint condition so that's a good deal. ",
"What is the retail price of the tractor brand new?",
"It is selling for $500 new, the one I'm selling is still new",
"It's my sons birthday in a few days and I think I want to get this for him. How soon would I be able to get it?",
"I can do it today or anytime this week, I'm off for the week",
"Would you be willing to go any lower for the tractor or is that your final price on it?",
"Well..that's already a really good price. What are you offering? ",
"Would you take 300?",
"How about we meet in the middle, I'll do it for $325",
"That sounds great. It's a deal. I will go ahead and submit the offer",
"",
""
] | {
"Category": [
"bike",
"bike"
],
"Images": [
"bike/6144799717_0.jpg",
"bike/6144799717_0.jpg"
],
"Price": [
350,
350
],
"Description": [
"John Deere Pedal Tractor w/ Wagon, Die Cast in mint condition. Your child will be over the moon riding this heavy durable tractor with heavy-duty chain system and oversized rubber tires. Comes with cute detachable rear wagon that can tow another child.",
"John Deere Pedal Tractor w/ Wagon, Die Cast in mint condition. Your child will be over the moon riding this heavy durable tractor with heavy-duty chain system and oversized rubber tires. Comes with cute detachable rear wagon that can tow another child."
],
"Title": [
"Kids John Deere Pedal Tractor w/ Wagon (NEW)",
"Kids John Deere Pedal Tractor w/ Wagon (NEW)"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $350.0.
Hello there, are you interested in my John Deer Pedal Tractor?
Yes I am very interested in the tractor!
I am asking $350 for the tractor, it's in mint condition so that's a good deal.
What is the retail price of the tractor brand new?
It is selling for $500 new, the one I'm selling is still new
It's my sons birthday in a few days and I think I want to get this for him. How soon would I be able to get it?
I can do it today or anytime this week, I'm off for the week
Would you be willing to go any lower for the tractor or is that your final price on it?
Well..that's already a really good price. What are you offering?
Would you take 300?
How about we meet in the middle, I'll do it for $325
That sounds great. It's a deal. I will go ahead and submit the offer
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | buyer |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
351,
585
]
} | [
1,
0,
1,
0,
1,
0,
1,
0,
1,
0,
1,
0,
0,
1,
1
] | {
"intent": [
"intro",
"unknown",
"unknown",
"inquiry",
"inform",
"unknown",
"init-price",
"counter-price",
"counter-price",
"counter-price",
"counter-price",
"agree",
"offer",
"unknown",
"accept"
],
"price": [
-1,
-1,
-1,
-1,
-1,
-1,
585,
350,
475,
375,
425,
425,
425,
-1,
-1
]
} | [
"Hello. What can I tell you about this beautiful sofa sectional?",
"Hey. How are you? When did you buy this sectional?",
"It is less than one year old. It is in fantastic condition.",
"Okay. Were any repairs done?",
"None have ever been needed. This thing looks like it just came out of the furniture store.",
"From the picture, it does look to be in good condition...not brand new but good. How much are you looking for?",
"I'm asking $585. It is in great shape and from a non-smoking home.",
"585 is over my budget. Are you willing to go lower? 350?",
"I'm sorry I couldn't let it go for that. If you can pick it up I'm willing to do $475. What a deal!",
"I'm definitely willing to pick it up. I can take it off your hands tonight for 375.",
"That's great. I think we're close. I need to meet somewhere in the middle. How's $425 sound?",
"I'll do 425 and pick it up tonight. Cash in hand. Deal?",
"",
"Deal. See you tonight.",
""
] | {
"Category": [
"furniture",
"furniture"
],
"Images": [
"furniture/6131245434_0.jpg",
"furniture/6131245434_0.jpg"
],
"Price": [
585,
585
],
"Description": [
"I am remodeling my space and selling a beautiful custom modern terra cotta color sectional couch. It is in like-new condition and can be taken apart in two pieces while transporting. Absolutely no wear or tear in a non-smoking home. I am located in the Sunset district of SF. Please email if you are interested in seeing it. Thank you!",
"I am remodeling my space and selling a beautiful custom modern terra cotta color sectional couch. It is in like-new condition and can be taken apart in two pieces while transporting. Absolutely no wear or tear in a non-smoking home. I am located in the Sunset district of SF. Please email if you are interested in seeing it. Thank you!,Sectional: 38L x 87W"
],
"Title": [
"Sectional Couch",
"Sectional Couch"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $585.0.
Hello. What can I tell you about this beautiful sofa sectional?
Hey. How are you? When did you buy this sectional?
It is less than one year old. It is in fantastic condition.
Okay. Were any repairs done?
None have ever been needed. This thing looks like it just came out of the furniture store.
From the picture, it does look to be in good condition...not brand new but good. How much are you looking for?
I'm asking $585. It is in great shape and from a non-smoking home.
585 is over my budget. Are you willing to go lower? 350?
I'm sorry I couldn't let it go for that. If you can pick it up I'm willing to do $475. What a deal!
I'm definitely willing to pick it up. I can take it off your hands tonight for 375.
That's great. I think we're close. I need to meet somewhere in the middle. How's $425 sound?
I'll do 425 and pick it up tonight. Cash in hand. Deal?
Deal. See you tonight.
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | buyer |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
2400,
4000
]
} | [
0,
1,
0,
1,
0,
1,
0,
1,
0,
1,
0,
1,
0
] | {
"intent": [
"intro",
"init-price",
"unknown",
"unknown",
"inquiry",
"inquiry",
"counter-price",
"counter-price",
"counter-price",
"counter-price",
"counter-price",
"insist",
"quit"
],
"price": [
-1,
4000,
-1,
-1,
-1,
-1,
2500,
3500,
3000,
3400,
3200,
3400,
-1
]
} | [
"Hi, I'm interested in the 2001 Rav 4",
"It is a great car. It runs great. I'm asking $4000.",
"That's way out of my budget, plus it seems a bit steep for such an old car. ",
"It may be old, but it runs great. Has lower mileage and a clean title.",
"Why are you selling it? ",
"I'm going to get a motorcycle instead. How much are you willing to pay?",
"I'm very interested, but it's out of my price point. I'd like to pay around 2,500 for my next car. ",
"You can't get a car like this for that low. I checked the Blue Book, and what I'm asking is right in range. I'll tell you what. I have a friend who is a mechanic. If you give me $3500, I'll have him check it out for you for free.",
"I could go up to $3,000",
"How about $3400? ",
"Believe me, I wish I had that much saved. The absolute highest I could go is $3,200 ",
"No, too low. I'm close to the Blue Book value. If you pay $3400 and something goes wrong in the next three months, I'll refund your money. You rarely get a warranty like tha!",
""
] | {
"Category": [
"car",
"car"
],
"Images": [
"car/6133239562_0.jpg",
"car/6133239562_0.jpg"
],
"Price": [
4000,
4000
],
"Description": [
"I have a 2001 toyota rav 4 for sale. white color .,first owner , clean title , lower mileages , just 130k miles.,car runs great , smog passed . with the spare tire and nice cover on the back.",
"I have a 2001 toyota rav 4 for sale. white color .,first owner , clean title , lower mileages , just 130k miles.,car runs great , smog passed . with the spare tire and nice cover on the back.,if you are interesting , please call,.,thanks !"
],
"Title": [
"2001 toyota rav4 clean title low miles 129k runs great",
"2001 toyota rav4 clean title low miles 129k runs great"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $4000.0.
Hi, I'm interested in the 2001 Rav 4
It is a great car. It runs great. I'm asking $4000.
That's way out of my budget, plus it seems a bit steep for such an old car.
It may be old, but it runs great. Has lower mileage and a clean title.
Why are you selling it?
I'm going to get a motorcycle instead. How much are you willing to pay?
I'm very interested, but it's out of my price point. I'd like to pay around 2,500 for my next car.
You can't get a car like this for that low. I checked the Blue Book, and what I'm asking is right in range. I'll tell you what. I have a friend who is a mechanic. If you give me $3500, I'll have him check it out for you for free.
I could go up to $3,000
How about $3400?
Believe me, I wish I had that much saved. The absolute highest I could go is $3,200
No, too low. I'm close to the Blue Book value. If you pay $3400 and something goes wrong in the next three months, I'll refund your money. You rarely get a warranty like tha!
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | seller |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
1440,
1895
]
} | [
0,
1,
0,
1,
0,
1,
0,
1,
0,
0,
1
] | {
"intent": [
"intro",
"unknown",
"init-price",
"disagree",
"counter-price",
"counter-price",
"counter-price",
"counter-price",
"unknown",
"offer",
"accept"
],
"price": [
-1,
-1,
1100,
-1,
1250,
1800,
1450,
1600,
-1,
1600,
-1
]
} | [
"hello",
"Hi there. studio is for leasing. it's located in a very convenient location ",
"I like the place, but its far away from my work. since there is no parking, would you be willing to accept 1100?",
"It's located only 1 mile off the BART station, you don't need a car. Akl the shopping and eateries are all located around the walking distance. So even without a car, you should be able to get around no problems. That's why the studio doesn't have any parking attached to it",
"its only a studio and not a one bedroom. I would be willing to pre-pay 6 months in advance. would you accept $1250",
"That's way too low. I cannot go that low. The best I can do for 6 month lease is 1800. But if you want to sign a 1 year lease, I can give it to you for 1700",
"would you consider a 2yr lease for 1450? i can have a cashiers check ready to go including first and last month's rent as well as a cleaning deposit immediately.",
"2 year lease for 1600 and you have a deal",
"I accept",
"",
""
] | {
"Category": [
"housing",
"housing"
],
"Images": [
"housing/6120095569_0.jpg",
"housing/6120095569_0.jpg"
],
"Price": [
1895,
1895
],
"Description": [
"This beautiful remodeled studio offers:,Refinished hardwood floors,Great studio layout with sleeping area,Brand new kitchen with stainless steel appliances,Private balcony with Oakland views,Brand new bathroom with incredible lighting",
"This beautiful remodeled studio offers:,Refinished hardwood floors,Great studio layout with sleeping area,Brand new kitchen with stainless steel appliances,Private balcony with Oakland views,Brand new bathroom with incredible lighting,Two huge closets (one with full-length mirrors),Laundry and Elevator in the building,Spend your evenings strolling around Lake Merritt, grab coffee (or a beer) at the fabulous Rooz Cafe just around the corner, or walk over to Lucky's grocery store, pickup a carton of ice cream and spend the night snuggled up with your loved ones in this secure, pet-friendly apartment. This unit is great for commuters as it's 1 mile away from Lake Merritt BART station, and is walking-distance from a Walgreens, Chase Bank, various cafes, a laundromat, and several restaurants. Oh, and did we mention you'll be living right next to the Lake?,We also have a few 1 bedrooms left in the same building. Take a look at them all and have your pick!,Alexandra Burgess | Leasing Agent,We do business in accordance with Fair Housing Laws"
],
"Title": [
"Beautiful Renovated Studio with Balcony by Lake Merritt",
"Beautiful Renovated Studio with Balcony by Lake Merritt"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $1895.0.
hello
Hi there. studio is for leasing. it's located in a very convenient location
I like the place, but its far away from my work. since there is no parking, would you be willing to accept 1100?
It's located only 1 mile off the BART station, you don't need a car. Akl the shopping and eateries are all located around the walking distance. So even without a car, you should be able to get around no problems. That's why the studio doesn't have any parking attached to it
its only a studio and not a one bedroom. I would be willing to pre-pay 6 months in advance. would you accept $1250
That's way too low. I cannot go that low. The best I can do for 6 month lease is 1800. But if you want to sign a 1 year lease, I can give it to you for 1700
would you consider a 2yr lease for 1450? i can have a cashiers check ready to go including first and last month's rent as well as a cleaning deposit immediately.
2 year lease for 1600 and you have a deal
I accept
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | buyer |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
46,
50
]
} | [
0,
1,
0,
1,
0,
1,
0,
1,
0,
0,
1,
1
] | {
"intent": [
"intro",
"unknown",
"inquiry",
"inform",
"init-price",
"counter-price",
"inquiry",
"inform",
"agree",
"offer",
"accept",
"unknown"
],
"price": [
-1,
-1,
-1,
-1,
7,
45,
-1,
-1,
45,
45,
-1,
-1
]
} | [
"Hey what condition is the alarm clock dock in?",
"Like new",
"Sounds pretty good. Will it work with any iPhone? Even older ones?",
"Worls with iphone and ipods, fits iphone 5 or less",
"Does it also work for iPhone 6 and 7?",
"Noe only iphone 5 or less, I can let it go for a deal but only right now at $45",
"Okay. Before I decide...what color is it?",
"Comes in black",
"Okay. Then we have a deal. 45 and I can google wallet you the money when I pick it up today. Cool?",
"",
"",
"Yup its a deal"
] | {
"Category": [
"electronics",
"electronics"
],
"Images": [
"",
""
],
"Price": [
50,
50
],
"Description": [
"iPhone / iPod® Dock / Playback / Charge",
"iPhone / iPod® Dock / Playback / Charge,Alarm Playback to iPod® / Radio / Buzzer,Like new --fits iPhone 5 or less charger"
],
"Title": [
"Sony iPhone Alarm Clock Dock",
"Sony iPhone Alarm Clock Dock"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $50.0.
Hey what condition is the alarm clock dock in?
Like new
Sounds pretty good. Will it work with any iPhone? Even older ones?
Worls with iphone and ipods, fits iphone 5 or less
Does it also work for iPhone 6 and 7?
Noe only iphone 5 or less, I can let it go for a deal but only right now at $45
Okay. Before I decide...what color is it?
Comes in black
Okay. Then we have a deal. 45 and I can google wallet you the money when I pick it up today. Cool?
Yup its a deal
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | buyer |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
368,
400
]
} | [
1,
0,
0
] | {
"intent": [
"",
"",
""
],
"price": [
-1,
-1,
-1
]
} | [
"",
"Hi, I think that $300 would be a fair price.",
""
] | {
"Category": [
"bike",
"bike"
],
"Images": [
"bike/6151408532_0.jpg",
"bike/6151408532_0.jpg"
],
"Price": [
400,
400
],
"Description": [
"1990 Bridgestone CB-0 Zip Bike in excellent condition for sale. This model was the predecessor to the cult status XO series. Recently restored by Cosmic Bikes. New parts include: rear wheel, dirt drop stem, Aherne MAP bars, MKS pedals. Black color in 50cm (center to top). Perfect for 5'4\" to 5'7\" with 29-30 inch stand over height.",
"1990 Bridgestone CB-0 Zip Bike in excellent condition for sale. This model was the predecessor to the cult status XO series. Recently restored by Cosmic Bikes. New parts include: rear wheel, dirt drop stem, Aherne MAP bars, MKS pedals. Black color in 50cm (center to top). Perfect for 5'4\" to 5'7\" with 29-30 inch stand over height."
],
"Title": [
"Bridgestone CB-0 Zip",
"Bridgestone CB-0 Zip"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $400.0.
Hi, I think that $300 would be a fair price.
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | unknown |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
5940,
9900
]
} | [
0,
1,
0,
1,
0,
1,
0
] | {
"intent": [
"intro",
"init-price",
"inquiry",
"inform",
"inquiry",
"inform",
"inquiry"
],
"price": [
-1,
9900,
-1,
-1,
-1,
-1,
-1
]
} | [
"Wow. That car looks just like what I'm looking for. How much are you asking?",
"$9900",
"That's a bit steep. How many owners has the car had?",
"Just one, me. It only has 48,000 miles",
"Why are you selling it?",
"My mother stopped driving and gave me her car.",
"Wait a sec. Your listing says 58000 miles on it. Which is it?"
] | {
"Category": [
"car",
"car"
],
"Images": [
"car/6123195291_0.jpg",
"car/6123195291_0.jpg"
],
"Price": [
9900,
9900
],
"Description": [
"2014 NISSAN ALTIMA WITH 58608 MILE THE CAR IS IN PERFECT CONDITION RUNS AND DRIVES SMOOTH RADIO, CD PRAYER, AUX, CRUISE CONTROL, AND MORE FOR MORE INFO CALL,MPG: Up to 27 city / 38 highway",
"2014 NISSAN ALTIMA WITH 58608 MILE THE CAR IS IN PERFECT CONDITION RUNS AND DRIVES SMOOTH RADIO, CD PRAYER, AUX, CRUISE CONTROL, AND MORE FOR MORE INFO CALL,MPG: Up to 27 city / 38 highway,Horsepower: 182 to 270 hp,Curb weight: 3,108 to 3,355 lbs,Vehicle Sales by best auto sale"
],
"Title": [
"2014 NISSAN ALTIMA",
"2014 NISSAN ALTIMA"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $9900.0.
Wow. That car looks just like what I'm looking for. How much are you asking?
$9900
That's a bit steep. How many owners has the car had?
Just one, me. It only has 48,000 miles
Why are you selling it?
My mother stopped driving and gave me her car.
Wait a sec. Your listing says 58000 miles on it. Which is it?
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | seller |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
1953,
2570
]
} | [
0,
1,
1
] | {
"intent": [
"",
"",
""
],
"price": [
-1,
-1,
-1
]
} | [
"I have an amazing 1 bedroom loft with a recently renovated kitchen on the market",
"As do I. Odd. Mine says seller",
""
] | {
"Category": [
"housing",
"housing"
],
"Images": [
"housing/6133195004_0.jpg",
"housing/6133195004_0.jpg"
],
"Price": [
2570,
2570
],
"Description": [
"Our 1 Bedroom Loft features a renovated kitchen with quartz countertops and stainless steel appliance! Availability is VERY limited so come and secure this one today!,•\tOversize dual pane windows,•\tBuilt in microwaves,•\tCentral heat and AC,•\tDesigner tile bath and shower surrounds,•\tFull size stackable washer/dryers,•\tPrivate patio/balconies* (in select floorplans),•\tQuartz Stone Countertops,•\tOversized bathrooms,•\tStainless Steel Appliances,•\tWood vinyl plank flooring in first floor units*,•\tYear round heated pool & spa",
"Our 1 Bedroom Loft features a renovated kitchen with quartz countertops and stainless steel appliance! Availability is VERY limited so come and secure this one today!,•\tOversize dual pane windows,•\tBuilt in microwaves,•\tCentral heat and AC,•\tDesigner tile bath and shower surrounds,•\tFull size stackable washer/dryers,•\tPrivate patio/balconies* (in select floorplans),•\tQuartz Stone Countertops,•\tOversized bathrooms,•\tStainless Steel Appliances,•\tWood vinyl plank flooring in first floor units*,•\tYear round heated pool & spa,•\t24-hour Emergency Maintenance,•\tBusiness center,•\tClose to shopping, restaurants, cafes, and movie theaters in Pleasant Hill and Walnut Creek,•\tEasy access to Interstate 680 and Highway 24,•\tFull-service gourmet chef's kitchen,•\tMajestic views of Mount Diablo,•\tWalking Distance from BART,•\tPackage Acceptance,•\tUnderground Garage Parking Available,•\tTot lot,•\tSmoke Free Community,Cats and Dogs Welcome! (Some Breed Restrictions),Less than a 10 minute walk to Pleasant Hill BART station and other Public Transportation, Close to 680 Freeway!"
],
"Title": [
"NEWLY RENOVATED + Private Balconies+Loft Unit+high ceilings MUST SEE!!",
"NEWLY RENOVATED + Private Balconies+Loft Unit+high ceilings MUST SEE!!"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $2570.0.
I have an amazing 1 bedroom loft with a recently renovated kitchen on the market
As do I. Odd. Mine says seller
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | unknown |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
87,
95
]
} | [
0,
1,
0,
1,
0,
1,
1,
0
] | {
"intent": [
"intro",
"disagree",
"inquiry",
"inform",
"init-price",
"agree",
"offer",
"accept"
],
"price": [
-1,
-1,
-1,
-1,
85,
-1,
85,
-1
]
} | [
"Is there anything wrong with this?",
"Normal wear and tear for an antique. No major issues. It all just adds to the character of the piece.",
"Okay that's good. Is it heavy or easy to carry?",
"It is solid oak. You'll need help transporting. This is a generation piece. Your grandchildren will be able to enjoy it.",
"This all sounds very good to me. I'm willing to give you $85 in cash for it right now. ",
"Deal.",
"",
""
] | {
"Category": [
"furniture",
"furniture"
],
"Images": [
"furniture/6129633227_0.jpg",
"furniture/6129633227_0.jpg"
],
"Price": [
95,
95
],
"Description": [
"Wow! Here is a beautiful oak wood bookcase or cabinet with glass doors from estate sale. It is approx six feet tall, made of oak wood, has two glass doors, and shelves on the interior.",
"Wow! Here is a beautiful oak wood bookcase or cabinet with glass doors from estate sale. It is approx six feet tall, made of oak wood, has two glass doors, and shelves on the interior.,This fabulous wood cabinet can be seen at Yesteryears Marketplace Antique Store located at 433 Georgia Street, Vallejo, CA 94590. Phone,for more informtion and directions"
],
"Title": [
"BEAUTIFUL OAK WOOD GLASS FRONT BOOKCASE",
"BEAUTIFUL OAK WOOD GLASS FRONT BOOKCASE"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $95.0.
Is there anything wrong with this?
Normal wear and tear for an antique. No major issues. It all just adds to the character of the piece.
Okay that's good. Is it heavy or easy to carry?
It is solid oak. You'll need help transporting. This is a generation piece. Your grandchildren will be able to enjoy it.
This all sounds very good to me. I'm willing to give you $85 in cash for it right now.
Deal.
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | buyer |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
1140,
1900
]
} | [
0,
1,
1
] | {
"intent": [
"",
"",
""
],
"price": [
-1,
-1,
-1
]
} | [
"OK, I think that 1800 is good enough, you don't really have to add anything.",
"I'm asking 1900. Can't go any lower.",
""
] | {
"Category": [
"housing",
"housing"
],
"Images": [
"",
""
],
"Price": [
1900,
1900
],
"Description": [
"2709 Elmhurst Cir. Great home in Sunrise Terrace, one story with patio, fenced yard, dinning area, living room, updated kitchen, family room, fireplace central heat/air blinds, 2 car garage, dishwasher, microwave, electric stove, and washer/dryer hook-ups. Lawn service included.,No Section 8,Call for appointment to view.,TO DOWNLOAD AN APPLICATION OR TO SEE ALL OF OUR RENTALS PLEASE GO TO: camelliarealty.net,Applications accepted now during business hours at:,2801 Waterman Blvd. #150",
"2709 Elmhurst Cir. Great home in Sunrise Terrace, one story with patio, fenced yard, dinning area, living room, updated kitchen, family room, fireplace central heat/air blinds, 2 car garage, dishwasher, microwave, electric stove, and washer/dryer hook-ups. Lawn service included.,No Section 8,Call for appointment to view.,TO DOWNLOAD AN APPLICATION OR TO SEE ALL OF OUR RENTALS PLEASE GO TO: camelliarealty.net,Applications accepted now during business hours at:,2801 Waterman Blvd. #150,Fairfield, CA,Hours: 9-5 Weekdays,(closed 1-2 for lunch),Closed Saturday & Sunday,Applications NOT accepted 15 min. before closing for lunch or for the day.,Availability, terms & prices subject to change without notice."
],
"Title": [
"Elmhurst Circle, Fairfield, CA",
"Elmhurst Circle, Fairfield, CA"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $1900.0.
OK, I think that 1800 is good enough, you don't really have to add anything.
I'm asking 1900. Can't go any lower.
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | unknown |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
91,
120
]
} | [
1,
0,
1
] | {
"intent": [
"",
"",
""
],
"price": [
-1,
-1,
-1
]
} | [
"This is a great deal you won't get very often!",
"",
""
] | {
"Category": [
"bike",
"bike"
],
"Images": [
"",
""
],
"Price": [
120,
120
],
"Description": [
"Wheels are 26-in, 30-in from seat to pedal if the pedal is in the lowest rotation and seat is in lowest position.",
"Wheels are 26-in, 30-in from seat to pedal if the pedal is in the lowest rotation and seat is in lowest position."
],
"Title": [
"2009 DB Response + Toppeak Quick Track MTX",
"2009 DB Response + Toppeak Quick Track MTX"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $120.0.
This is a great deal you won't get very often!
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | unknown |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
82,
90
]
} | [
1,
0,
1,
1,
0
] | {
"intent": [
"",
"",
"",
"",
""
],
"price": [
-1,
-1,
-1,
-1,
-1
]
} | [
"Hi, I think that $80 is a fair price for this item",
"I'm concerned about the case with some scratches in it. What about $82?",
"Sure, I think that $82 is fine, given that it is in used condition.",
"",
""
] | {
"Category": [
"electronics",
"electronics"
],
"Images": [
"electronics/6154431922_0.jpg",
"electronics/6154431922_0.jpg"
],
"Price": [
90,
90
],
"Description": [
"V-moda crossfade LP2 headphones in excellent condition. Perfect for producing, dj gigs and all music listening needs. Very flexible and lightweight with a very comfy fit. Comes with microphone chord, case and adapter. Case had some scratches on it, but still works great. I lost the other metal shield for the headphones so the right side is matte black while the left is metal. This doesn't affect sound quality.",
"V-moda crossfade LP2 headphones in excellent condition. Perfect for producing, dj gigs and all music listening needs. Very flexible and lightweight with a very comfy fit. Comes with microphone chord, case and adapter. Case had some scratches on it, but still works great. I lost the other metal shield for the headphones so the right side is matte black while the left is metal. This doesn't affect sound quality."
],
"Title": [
"V-moda Crossfade LP2 Over Ear Headphones",
"V-moda Crossfade LP2 Over Ear Headphones"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $90.0.
Hi, I think that $80 is a fair price for this item
I'm concerned about the case with some scratches in it. What about $82?
Sure, I think that $82 is fine, given that it is in used condition.
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | unknown |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
151,
165
]
} | [
1,
0
] | {
"intent": [
"",
""
],
"price": [
-1,
-1
]
} | [
"",
""
] | {
"Category": [
"electronics",
"electronics"
],
"Images": [
"electronics/6139042559_0.jpg",
"electronics/6139042559_0.jpg"
],
"Price": [
165,
165
],
"Description": [
"Selling my kicker vr subs in factory ported enclosure. Wired at one ohm. These subs hit hard. Price is FIRM. NOTHING LESS THAN 165. NO TRADES. Also have a 1000 watt rms amp (sonido mask) for 135 bucks extra.",
"Selling my kicker vr subs in factory ported enclosure. Wired at one ohm. These subs hit hard. Price is FIRM. NOTHING LESS THAN 165. NO TRADES. Also have a 1000 watt rms amp (sonido mask) for 135 bucks extra."
],
"Title": [
"KICKER COMP VR 12\" IN KICKER ENCLOSURE",
"KICKER COMP VR 12\" IN KICKER ENCLOSURE"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $165.0.
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | unknown |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
42,
70
]
} | [
1,
0,
1,
0,
1,
0,
1,
0,
1,
1,
0
] | {
"intent": [
"intro",
"inquiry",
"disagree",
"init-price",
"counter-price",
"insist",
"inquiry",
"inform",
"agree",
"offer",
"accept"
],
"price": [
-1,
-1,
-1,
40,
60,
40,
-1,
-1,
40,
40,
-1
]
} | [
"Hi. I'm looking to sell this asap.",
"I just would like to now if there is anything wrong with it?",
"Nothing wrong with it. I'm just redecorating my apartment and it no longer fits my decor.",
"That's a shame! Well I have $40 cash on me that I'd be able to give you for this. ",
"40 is lower than I would be willing to go. Don't forget it does come with a matching mirror. How's 60?",
"I have a twenty dollar gift card to the mall I could throw in with the $40. I just don't have 60 for it",
"The gift card goes to what store?",
"Anyplace in the local mall. ",
"Okay it's a deal then. The gift card and 40.",
"",
""
] | {
"Category": [
"furniture",
"furniture"
],
"Images": [
"furniture/6141017060_0.jpg",
"furniture/6141017060_0.jpg"
],
"Price": [
70,
70
],
"Description": [
"Matching side table and mirror for sale,Table,26 inches wide,26 inches tall",
"Matching side table and mirror for sale,Table,26 inches wide,26 inches tall,51 inches tall,29 1/4 inches wide,Selling because it no longer matches my decor,Feel free to email me with any questions"
],
"Title": [
"Matching table and mirror",
"Matching table and mirror"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $70.0.
Hi. I'm looking to sell this asap.
I just would like to now if there is anything wrong with it?
Nothing wrong with it. I'm just redecorating my apartment and it no longer fits my decor.
That's a shame! Well I have $40 cash on me that I'd be able to give you for this.
40 is lower than I would be willing to go. Don't forget it does come with a matching mirror. How's 60?
I have a twenty dollar gift card to the mall I could throw in with the $40. I just don't have 60 for it
The gift card goes to what store?
Anyplace in the local mall.
Okay it's a deal then. The gift card and 40.
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | buyer |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
5280,
8800
]
} | [
1,
0
] | {
"intent": [
"",
""
],
"price": [
-1,
-1
]
} | [
"",
""
] | {
"Category": [
"car",
"car"
],
"Images": [
"car/6132725826_0.jpg",
"car/6132725826_0.jpg"
],
"Price": [
8800,
8800
],
"Description": [
"2007 Mazda cx-9 2wheel drive. Truck has 138k miles. Did all brakes and rotors all around also just did tune up and transmission flush a week ago. Clean title. Also come with 22 inch rims and stock tires.",
"2007 Mazda cx-9 2wheel drive. Truck has 138k miles. Did all brakes and rotors all around also just did tune up and transmission flush a week ago. Clean title. Also come with 22 inch rims and stock tires."
],
"Title": [
"2007 Mazda cx-9",
"2007 Mazda cx-9"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $8800.0.
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | unknown |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
92,
100
]
} | [
1,
0,
1
] | {
"intent": [
"",
"",
""
],
"price": [
-1,
-1,
-1
]
} | [
"Hello. I am interested in the truck. Can we work out a deal on the price?",
"Hello, I'm very interested in these.",
""
] | {
"Category": [
"furniture",
"furniture"
],
"Images": [
"",
""
],
"Price": [
100,
100
],
"Description": [
"6 shelf sets 8 feet tall (roughly 28\" wide x 12\" deep. Fits two of my storage totes side by side.) These have been great for keeping things accessible. I used them as 3 aisles of 2, Library of Congress style.",
"6 shelf sets 8 feet tall (roughly 28\" wide x 12\" deep. Fits two of my storage totes side by side.) These have been great for keeping things accessible. I used them as 3 aisles of 2, Library of Congress style.,These units are in the Extra Space storage on Hollis. I can meet you there and help disassemble them to transport (or you can get a unit there, first month is usually free! Like other addictive business models.),I need to empty the storage Wednesday by 4pm."
],
"Title": [
"6 sets of Strong plastic shelving for storage unit or garage - $100.00",
"6 sets of Strong plastic shelving for storage unit or garage - $100.00"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $100.0.
Hello. I am interested in the truck. Can we work out a deal on the price?
Hello, I'm very interested in these.
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | unknown |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
60,
100
]
} | [
1,
0,
0
] | {
"intent": [
"",
"",
""
],
"price": [
-1,
-1,
-1
]
} | [
"",
"The Kicker sub looks cool. Can you tell me how old it is?",
""
] | {
"Category": [
"electronics",
"electronics"
],
"Images": [
"electronics/6137655210_0.jpg",
"electronics/6137655210_0.jpg"
],
"Price": [
100,
100
],
"Description": [
"Im selling my Kicker 10 inch sub with a sealed box and a American Pro amplifier. Nice clean setup. I paid a little over 300 for the setup so Nothing less than 100 bucks. Not splitting up the set. Great deal and more than a fair price.",
"Im selling my Kicker 10 inch sub with a sealed box and a American Pro amplifier. Nice clean setup. I paid a little over 300 for the setup so Nothing less than 100 bucks. Not splitting up the set. Great deal and more than a fair price."
],
"Title": [
"Kicker 10\" with amp and enclosure",
"Kicker 10\" with amp and enclosure"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $100.0.
The Kicker sub looks cool. Can you tell me how old it is?
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | unknown |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
82,
138
]
} | [
1,
0
] | {
"intent": [
"",
""
],
"price": [
-1,
-1
]
} | [
"",
""
] | {
"Category": [
"bike",
"bike"
],
"Images": [
"bike/6126525138_0.jpg",
"bike/6126525138_0.jpg"
],
"Price": [
138,
138
],
"Description": [
"IN STOCK- HURRY WHILE SUPPLIES LAST!!!,https://www.CaliforniaMotorbikes.com,These are complete street legal kits, everything you need to convert your bicycle to a fun moped! We sell only the best bike engine kits with professional grade balanced engines.",
"IN STOCK- HURRY WHILE SUPPLIES LAST!!!,https://www.CaliforniaMotorbikes.com,These are complete street legal kits, everything you need to convert your bicycle to a fun moped! We sell only the best bike engine kits with professional grade balanced engines.,A balanced crank makes this engine run smoother, last longer with minimal vibration...,Your bike and all parts attached to it will last longer and need less maintenance.,www.CaliforniaMotorbikes.com,If you buy today before 12 pm, USPS will deliver tomorrow to most parts of California"
],
"Title": [
"★ BLACK 80cc/66cc MOTORIZED BIKE ENGINE KIT SALE!!! HIGHEST QUALITY★",
"★ BLACK 80cc/66cc MOTORIZED BIKE ENGINE KIT SALE!!! HIGHEST QUALITY★"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $138.0.
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | unknown |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
2392,
2600
]
} | [
0,
1
] | {
"intent": [
"",
""
],
"price": [
-1,
-1
]
} | [
"",
""
] | {
"Category": [
"bike",
"bike"
],
"Images": [
"bike/6148069748_0.jpg",
"bike/6148069748_0.jpg"
],
"Price": [
2600,
2600
],
"Description": [
"Carbon Fiber Mountain Bike,29 in. Carbon wheels, carbon cranks, XTR rear derailleur, RockShox SID w/ brain, Magura disk brakes, front through axle (2014 fist year) etc.,This bike has been very gently used and is in like new condition. Never raced.",
"Carbon Fiber Mountain Bike,29 in. Carbon wheels, carbon cranks, XTR rear derailleur, RockShox SID w/ brain, Magura disk brakes, front through axle (2014 fist year) etc.,This bike has been very gently used and is in like new condition. Never raced.,(Pedals not included),If the post is up it's still available.,Thanks for looking!,Key words: stumpjumper, epic, camber Scott, ft, bmc, felt, Santa Cruz, highball"
],
"Title": [
"2014 Specialized Fate Expert Carbon 29 Medium",
"2014 Specialized Fate Expert Carbon 29 Medium"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $2600.0.
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | unknown |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
90,
150
]
} | [
0,
0,
0,
1
] | {
"intent": [
"",
"",
"",
""
],
"price": [
-1,
-1,
-1,
-1
]
} | [
"",
"How does 90 sound?",
"",
""
] | {
"Category": [
"bike",
"bike"
],
"Images": [
"",
""
],
"Price": [
150,
150
],
"Description": [
"Kids Haro mountain bike. Lightly used. 20\" wheels. This is from Hank and Franks so it has lifetime maintenance. Great for most kids up to about 14 years old",
"Kids Haro mountain bike. Lightly used. 20\" wheels. This is from Hank and Franks so it has lifetime maintenance. Great for most kids up to about 14 years old"
],
"Title": [
"Kids Haro Mountain Bike",
"Kids Haro Mountain Bike"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $150.0.
How does 90 sound?
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | unknown |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
99,
165
]
} | [
1,
0,
1,
0,
1,
0,
1,
0,
1,
0,
1,
0,
1,
0,
1,
0
] | {
"intent": [
"init-price",
"unknown",
"unknown",
"inquiry",
"inform",
"disagree",
"unknown",
"unknown",
"unknown",
"counter-price",
"counter-price",
"unknown",
"insist",
"unknown",
"offer",
"accept"
],
"price": [
165,
-1,
-1,
-1,
-1,
-1,
-1,
-1,
-1,
75,
110,
-1,
110,
-1,
110,
-1
]
} | [
"This is a great offer I'll give you for $165!",
"Tell me more about the subs. ",
"Well what exactly would you like to know about? I've had this for about a year, and it is still in really nice condition. ",
"Are there in other perks to it other than what you have listed?",
"I have a 1000 watt rms amp that I'm looking to get rid of for just 135 extra. ",
"Ok, I'm not looking for an amp at the moment. ",
"That's fine you can get the subs for the original price still!",
"I've looked at various websites for the same sub and I've seen much lower prices. ",
"There is a little wiggle room I could provide depending on how much you'd like to spend",
"I would like to do $99 because I found one for $75 online, but it is too far away. I prefer to have the subs sooner rather than later, but I don't mind waiting if I only have to spend $75. I can offer $99 and pick it up myself so you don't have to worry about a shipping price or the gas to bring it to my place. ",
"I'd really like $110 for this. Just a bit more than what you're offering. ",
"I can manage that. ",
"Great so 110 is a deal?",
"It's a deal.",
"",
""
] | {
"Category": [
"electronics",
"electronics"
],
"Images": [
"electronics/6139042559_0.jpg",
"electronics/6139042559_0.jpg"
],
"Price": [
165,
165
],
"Description": [
"Selling my kicker vr subs in factory ported enclosure. Wired at one ohm. These subs hit hard. Price is FIRM. NOTHING LESS THAN 165. NO TRADES. Also have a 1000 watt rms amp (sonido mask) for 135 bucks extra.",
"Selling my kicker vr subs in factory ported enclosure. Wired at one ohm. These subs hit hard. Price is FIRM. NOTHING LESS THAN 165. NO TRADES. Also have a 1000 watt rms amp (sonido mask) for 135 bucks extra."
],
"Title": [
"KICKER COMP VR 12\" IN KICKER ENCLOSURE",
"KICKER COMP VR 12\" IN KICKER ENCLOSURE"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $165.0.
This is a great offer I'll give you for $165!
Tell me more about the subs.
Well what exactly would you like to know about? I've had this for about a year, and it is still in really nice condition.
Are there in other perks to it other than what you have listed?
I have a 1000 watt rms amp that I'm looking to get rid of for just 135 extra.
Ok, I'm not looking for an amp at the moment.
That's fine you can get the subs for the original price still!
I've looked at various websites for the same sub and I've seen much lower prices.
There is a little wiggle room I could provide depending on how much you'd like to spend
I would like to do $99 because I found one for $75 online, but it is too far away. I prefer to have the subs sooner rather than later, but I don't mind waiting if I only have to spend $75. I can offer $99 and pick it up myself so you don't have to worry about a shipping price or the gas to bring it to my place.
I'd really like $110 for this. Just a bit more than what you're offering.
I can manage that.
Great so 110 is a deal?
It's a deal.
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | buyer |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
2280,
3000
]
} | [
1,
0,
1,
1,
0,
0
] | {
"intent": [
"",
"",
"",
"",
"",
""
],
"price": [
-1,
-1,
-1,
-1,
-1,
-1
]
} | [
"Hi, are you willing to purchase for $3000",
"Only $3000 for this charming 2 bedroom home with a yard? Yes that seems like a steal.",
"Excellent! I agree. I am just looking to get rid of the property. ",
"",
"fantastic, I accept your offer.",
""
] | {
"Category": [
"housing",
"housing"
],
"Images": [
"housing/6106078467_0.jpg",
"housing/6106078467_0.jpg"
],
"Price": [
3000,
3000
],
"Description": [
"Welcome home to this charming and sweet two bedroom one bath bungalow in the Upper Dimond District. This beautifully maintained home boasts of original hardwood floors splashed with espresso, upgraded bathroom and kitchen that overlooks a lush backyard garden, and a spacious living/dining area.",
"Welcome home to this charming and sweet two bedroom one bath bungalow in the Upper Dimond District. This beautifully maintained home boasts of original hardwood floors splashed with espresso, upgraded bathroom and kitchen that overlooks a lush backyard garden, and a spacious living/dining area.,This property is in a great, friendly neighborhood convenient to Farmer Joe's Marketplace, Peet's, La Farine Bakery, restaurants, Montclair Village, and several East Bay Regional Parks, with easy access to Highways 580 & 13, Casual Carpool pick up spot, and AC Transit Express buses to San Francisco.,One Year Lease, Renters Insurance Required, Tenant Pays All Utilities"
],
"Title": [
"Charming 2 Bed 1 Bath Home in Upper Diamond, Yard, Storage",
"Charming 2 Bed 1 Bath Home in Upper Diamond, Yard, Storage"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $3000.0.
Hi, are you willing to purchase for $3000
Only $3000 for this charming 2 bedroom home with a yard? Yes that seems like a steal.
Excellent! I agree. I am just looking to get rid of the property.
fantastic, I accept your offer.
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | unknown |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
6540,
10900
]
} | [
0,
0,
1
] | {
"intent": [
"",
"",
""
],
"price": [
-1,
-1,
-1
]
} | [
"",
"",
""
] | {
"Category": [
"car",
"car"
],
"Images": [
"car/6133202224_0.jpg",
"car/6133202224_0.jpg"
],
"Price": [
10900,
10900
],
"Description": [
"2011 Dodge Charger V6 3.6L automatic transmission with new 20\" rims and tires with only 87000 miles salvage title only the roof dent and 3 windows was the reason made salvage I have pictures to probe everything still like new conditions runs excellent any question feel free to call any time or text to my cell phone",
"2011 Dodge Charger V6 3.6L automatic transmission with new 20\" rims and tires with only 87000 miles salvage title only the roof dent and 3 windows was the reason made salvage I have pictures to probe everything still like new conditions runs excellent any question feel free to call any time or text to my cell phone"
],
"Title": [
"2011 Dodge Charger SXT",
"2011 Dodge Charger SXT"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $10900.0.
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | unknown |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
230,
250
]
} | [
1,
0
] | {
"intent": [
"",
""
],
"price": [
-1,
-1
]
} | [
"",
""
] | {
"Category": [
"furniture",
"furniture"
],
"Images": [
"furniture/6126302191_0.jpg",
"furniture/6126302191_0.jpg"
],
"Price": [
250,
250
],
"Description": [
"hexagon table is 27\" at the widest(corner to corner) 19\" tall",
"hexagon table is 27\" at the widest(corner to corner) 19\" tall,coffee table is 72\" long x 25\" wide x 15\" high"
],
"Title": [
"coffee table",
"coffee table"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $250.0.
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | unknown |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
90,
150
]
} | [
0,
1,
0
] | {
"intent": [
"",
"",
""
],
"price": [
-1,
-1,
-1
]
} | [
"",
"",
"How does 90 sound?"
] | {
"Category": [
"electronics",
"electronics"
],
"Images": [
"",
""
],
"Price": [
150,
150
],
"Description": [
"- Selling 2 x Gently Used DJI Mavic Pro Batteries.",
"- Selling 2 x Gently Used DJI Mavic Pro Batteries.,- Absolutely nothing wrong with them. Just not my thing."
],
"Title": [
"2 x DJI Mavic Pro Original Battery / Batteries",
"2 x DJI Mavic Pro Original Battery / Batteries"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $150.0.
How does 90 sound?
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | unknown |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
34,
45
]
} | [
0,
1,
0,
1,
0,
0
] | {
"intent": [
"",
"",
"",
"",
"",
""
],
"price": [
-1,
-1,
-1,
-1,
-1,
-1
]
} | [
"Hello.",
"How's it going today?",
"I'm doing great, how are you?",
"Excellent! So you're interested in a mattress?",
"I suppose I am but I had some questions. What color is it?",
""
] | {
"Category": [
"furniture",
"furniture"
],
"Images": [
"",
""
],
"Price": [
45,
45
],
"Description": [
"I will offer FREE plush fitted sheet for this airbed with is sold separately,-Size: Queen 78\"x60\"x9\" fits queen sheets perfectly",
"I will offer FREE plush fitted sheet for this airbed with is sold separately,-Size: Queen 78\"x60\"x9\" fits queen sheets perfectly,-Effortless 60 second inflation 15 second deflation,-recessed pump and one touch confort control wand for convenience"
],
"Title": [
"Aerobed Airbed Queen Size For Sale",
"Aerobed Airbed Queen Size For Sale"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $45.0.
Hello.
How's it going today?
I'm doing great, how are you?
Excellent! So you're interested in a mattress?
I suppose I am but I had some questions. What color is it?
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | unknown |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
91,
120
]
} | [
0,
1,
0,
1,
0
] | {
"intent": [
"",
"",
"",
"",
""
],
"price": [
-1,
-1,
-1,
-1,
-1
]
} | [
"Would you be willing to drop it off for me?",
"I can drop some off of the listing price. How about 80 bucks?",
"Deal!",
"",
""
] | {
"Category": [
"electronics",
"electronics"
],
"Images": [
"electronics/6118379836_0.jpg",
"electronics/6118379836_0.jpg"
],
"Price": [
120,
120
],
"Description": [
"I just received this headphone and found out my JDS Labs C5D is unable to power it. Just tested it and it's never been used since I just received it. Please call or text me @ nine two five - 237 - one two zero threee",
"I just received this headphone and found out my JDS Labs C5D is unable to power it. Just tested it and it's never been used since I just received it. Please call or text me @ nine two five - 237 - one two zero threee"
],
"Title": [
"Beyerdynamic DT 770 Pro 250 ohms headphone (like NEW)",
"Beyerdynamic DT 770 Pro 250 ohms headphone (like NEW)"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $120.0.
Would you be willing to drop it off for me?
I can drop some off of the listing price. How about 80 bucks?
Deal!
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | unknown |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
45,
75
]
} | [
1,
0,
1,
0,
1,
1,
0
] | {
"intent": [
"",
"",
"",
"",
"",
"",
""
],
"price": [
-1,
-1,
-1,
-1,
-1,
-1,
-1
]
} | [
"hi",
"hello",
"you want the desk?",
"Yeah, Will you take an offer of $40 dollars if I come and pick it up with some buddies?",
"yes",
"",
""
] | {
"Category": [
"furniture",
"furniture"
],
"Images": [
"",
""
],
"Price": [
75,
75
],
"Description": [
"Solid wood executive desk for sale. Need 3 guys to move from upstairs to the door, and a truck for transport.",
"Solid wood executive desk for sale. Need 3 guys to move from upstairs to the door, and a truck for transport."
],
"Title": [
"executive desk for sale",
"executive desk for sale"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $75.0.
hi
hello
you want the desk?
Yeah, Will you take an offer of $40 dollars if I come and pick it up with some buddies?
yes
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | unknown |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
7200,
12000
]
} | [
1,
1,
1,
0
] | {
"intent": [
"",
"",
"",
""
],
"price": [
-1,
-1,
-1,
-1
]
} | [
"Hello. The listing price is 12000, and the vehicle only has 45k miles on it. Its also got tons of tech pre-installed, like bluetooth connectivity and aux/usb. I can drop it a little bit though, how does 11000 sound?",
"",
"",
""
] | {
"Category": [
"car",
"car"
],
"Images": [
"car/6090845706_0.jpg",
"car/6090845706_0.jpg"
],
"Price": [
12000,
12000
],
"Description": [
"Up for sale is a 2013 c250 with only 45k. Interior is loaded with technology and in new condition, the paint is immaculate on the exterior. The tires are new. Additional options include:,Navigation,Attention Assist (warns you if your drowsy),Automatic Windsheild Wipers,Bluetooth Audio Connectivity (for audio),Bluetooth Phone Connectivity (for phone calls),USB Connectivity",
"Up for sale is a 2013 c250 with only 45k. Interior is loaded with technology and in new condition, the paint is immaculate on the exterior. The tires are new. Additional options include:,Navigation,Attention Assist (warns you if your drowsy),Automatic Windsheild Wipers,Bluetooth Audio Connectivity (for audio),Bluetooth Phone Connectivity (for phone calls),USB Connectivity,AUX Connectivity,iPod Connectivity,New Tires,Drilled Rotors,LED Daytime Running Lights,7-Speed Automatic Transmission,I don't need help to sell this vehicle, no trades of any kinds,"
],
"Title": [
"2013 mercedes c250 *navigation* clean - $12,000",
"2013 mercedes c250 *navigation* clean - $12,000"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $12000.0.
Hello. The listing price is 12000, and the vehicle only has 45k miles on it. Its also got tons of tech pre-installed, like bluetooth connectivity and aux/usb. I can drop it a little bit though, how does 11000 sound?
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | unknown |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
2700,
4500
]
} | [
0,
1,
1
] | {
"intent": [
"",
"",
""
],
"price": [
-1,
-1,
-1
]
} | [
"",
"Seems fine.",
""
] | {
"Category": [
"bike",
"bike"
],
"Images": [
"bike/6131942590_0.jpg",
"bike/6131942590_0.jpg"
],
"Price": [
4500,
4500
],
"Description": [
"2010 Look 586 Origin Team Edition frame size is large 56cm. Bike is in perfect condition with less than a thousand miles (was a backup bike). This competition level bike has all the best components:",
"2010 Look 586 Origin Team Edition frame size is large 56cm. Bike is in perfect condition with less than a thousand miles (was a backup bike). This competition level bike has all the best components:,* New Reynolds Forty-six Carbon wheels"
],
"Title": [
"2010 Look 586",
"2010 Look 586"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $4500.0.
Seems fine.
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | unknown |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
9384,
10200
]
} | [
0,
1,
0,
1
] | {
"intent": [
"",
"",
"",
""
],
"price": [
-1,
-1,
-1,
-1
]
} | [
"",
"Not sure what a fair price is, $5000?",
"Works for me! ",
""
] | {
"Category": [
"car",
"car"
],
"Images": [
"car/6130423186_0.jpg",
"car/6130423186_0.jpg"
],
"Price": [
10200,
10200
],
"Description": [
"Ice Blue with black strip. Black Leatherette seats, 16\" black alloy wheels, 6-Star Spoke. Bluetooth and USB/iPad adapter. STEPTRONIC automatic trans. All regular maintenance has been done, paper work included.",
"Ice Blue with black strip. Black Leatherette seats, 16\" black alloy wheels, 6-Star Spoke. Bluetooth and USB/iPad adapter. STEPTRONIC automatic trans. All regular maintenance has been done, paper work included."
],
"Title": [
"2011 MINI Cooper Hardtop",
"2011 MINI Cooper Hardtop"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $10200.0.
Not sure what a fair price is, $5000?
Works for me!
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | unknown |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
2607,
2834
]
} | [
1,
0,
0
] | {
"intent": [
"",
"",
""
],
"price": [
-1,
-1,
-1
]
} | [
"Hi",
"Hello",
""
] | {
"Category": [
"housing",
"housing"
],
"Images": [
"housing/6133037883_0.jpg",
"housing/6133037883_0.jpg"
],
"Price": [
2834,
2834
],
"Description": [
"Essex Property Trust,EMME Apartment Homes,6350 Christie Ave, Emeryville, CA 94608,We will have a 1 bedroom 1 bath 643 sq ft apartment #130 available on June 10th! Your beautiful new kitchen will have Cesar stone countertops, dark cherry wood on the cabinets and stainless steel appliances!,All of emme apartments come with a full size front load washer & dryer! Emme offers amenities such as our 24 hour gym, courtyard, clubhouse and our beautiful roof top deck, a must see with a great view of San Francisco! Living at emme makes life a bit easier with having everything you need right around the corner, from grocery stores to retail! Not to mention, transportation!,Emeryville provides us a free shuttle that picks you up right in front of the community and takes you straight to bart!,Schedule your appointment today!!,Stop by our 2 bedroom home OPEN HOUSE this Saturday, May 20th from 10:00 AM - 12:00 PM!",
"Essex Property Trust,EMME Apartment Homes,6350 Christie Ave, Emeryville, CA 94608,We will have a 1 bedroom 1 bath 643 sq ft apartment #130 available on June 10th! Your beautiful new kitchen will have Cesar stone countertops, dark cherry wood on the cabinets and stainless steel appliances!,All of emme apartments come with a full size front load washer & dryer! Emme offers amenities such as our 24 hour gym, courtyard, clubhouse and our beautiful roof top deck, a must see with a great view of San Francisco! Living at emme makes life a bit easier with having everything you need right around the corner, from grocery stores to retail! Not to mention, transportation!,Emeryville provides us a free shuttle that picks you up right in front of the community and takes you straight to bart!,Schedule your appointment today!!,Stop by our 2 bedroom home OPEN HOUSE this Saturday, May 20th from 10:00 AM - 12:00 PM!,*Equal Housing Opportunity*,*Prices Subject to Change Daily*,Disclaimer: Floor Plan measurements are approximate and are for illustrative purposes only*,•Secured entry,•Shared pool,•Fitness center,•Near transportation,•Clubhouse,CHECK OUT OUR WEBSITE!"
],
"Title": [
"Beautiful 1 Bedroom Home with Balcony Available Mid June!",
"Beautiful 1 Bedroom Home with Balcony Available Mid June!"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $2834.0.
Hi
Hello
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | unknown |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
36,
40
]
} | [
0,
1
] | {
"intent": [
"",
""
],
"price": [
-1,
-1
]
} | [
"",
""
] | {
"Category": [
"furniture",
"furniture"
],
"Images": [
"",
""
],
"Price": [
40,
40
],
"Description": [
"The sofa is used but in good condition. It quickly converts into a sleeper by folding out the seat cushions.",
"The sofa is used but in good condition. It quickly converts into a sleeper by folding out the seat cushions.,http://www.ikea.com/us/en/catalog/products/70087108/"
],
"Title": [
"Ikea Solsta Sleeper Sofa",
"Ikea Solsta Sleeper Sofa"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $40.0.
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | unknown |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
133,
175
]
} | [
1,
0,
1,
0,
1,
0,
0,
1,
1
] | {
"intent": [
"intro",
"unknown",
"unknown",
"init-price",
"counter-price",
"unknown",
"offer",
"unknown",
"accept"
],
"price": [
-1,
-1,
-1,
115,
150,
-1,
150,
-1,
-1
]
} | [
"Hello",
"Hi",
"Are you interested in purchasing the bike? It's in great condition. ",
"Yes! How does 115 sound?",
"That's a bit lower than what I am offering. I'm not sure I'm willing to go as low as your offer. Considering the condition, recent tune-up and upgraded parts, I don't think I can go lower than $150. ",
"Considering it's condition, and your knowledge of the bike's accessories, I'd be willing to pay that much.",
"",
"Great! I'll accept. ",
""
] | {
"Category": [
"bike",
"bike"
],
"Images": [
"",
""
],
"Price": [
175,
175
],
"Description": [
"I am selling a Schwinn Sierra 21 speed in great condition ! This fine bike has a lightweight 4130 chromoly steel frame, Upgraded aluminum alloy wheels and Shimano STX RC rear derailer. Bike was just tuned and had new tires installed, got all the shifters - brakes and gears working like they should. extra low gear ratio - perfect gears for the hills in the bay area . Bike is in very good shape and its ready for a new rider. Call me to see it. call me instead of a text, thanks.",
"I am selling a Schwinn Sierra 21 speed in great condition ! This fine bike has a lightweight 4130 chromoly steel frame, Upgraded aluminum alloy wheels and Shimano STX RC rear derailer. Bike was just tuned and had new tires installed, got all the shifters - brakes and gears working like they should. extra low gear ratio - perfect gears for the hills in the bay area . Bike is in very good shape and its ready for a new rider. Call me to see it. call me instead of a text, thanks."
],
"Title": [
"Classic Schwinn Sierra lightweight model..21speeds.fits 5'6-6'0",
"Classic Schwinn Sierra lightweight model..21speeds.fits 5'6-6'0"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $175.0.
Hello
Hi
Are you interested in purchasing the bike? It's in great condition.
Yes! How does 115 sound?
That's a bit lower than what I am offering. I'm not sure I'm willing to go as low as your offer. Considering the condition, recent tune-up and upgraded parts, I don't think I can go lower than $150.
Considering it's condition, and your knowledge of the bike's accessories, I'd be willing to pay that much.
Great! I'll accept.
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | buyer |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
1835,
1995
]
} | [
0,
1,
0,
1,
0,
0,
1
] | {
"intent": [
"intro",
"unknown",
"init-price",
"counter-price",
"agree",
"offer",
"accept"
],
"price": [
-1,
-1,
1775,
1800,
1800,
1800,
-1
]
} | [
"Hello. What can you tell me about the apartment?",
"its in the parklane apartments",
"It looks nice. I was hoping we could come down on the rent a little. What about $1775?",
"hoe about 1800?",
"Alright. $1800 sounds good to me. ",
"",
""
] | {
"Category": [
"housing",
"housing"
],
"Images": [
"housing/6107067195_0.jpg",
"housing/6107067195_0.jpg"
],
"Price": [
1995,
1995
],
"Description": [
"Welcome Home! Love where you live!,Welcome home to Parklane Apartments. Parklane Apartments offers easy access to major freeways, as well as being close to the very best restaurants, shopping, and entertainment in San Leandro.,Our Property offers quality living at an affordable price in an unbeatable location.,Parklane offers the comforts of home in a centralized and convenient location. Bart is less than a mile away, as well as freeway access to highway 580, 880 and 238. We are located in the San Leandro school district and right across the street from Jefferson Elementary School. We are also walking distance to San Leandro High School and Bancroft Middle School.,Call to schedule your personal tour and see for yourself why Parklane Apartments is the perfect place to call home!!",
"Welcome Home! Love where you live!,Welcome home to Parklane Apartments. Parklane Apartments offers easy access to major freeways, as well as being close to the very best restaurants, shopping, and entertainment in San Leandro.,Our Property offers quality living at an affordable price in an unbeatable location.,Parklane offers the comforts of home in a centralized and convenient location. Bart is less than a mile away, as well as freeway access to highway 580, 880 and 238. We are located in the San Leandro school district and right across the street from Jefferson Elementary School. We are also walking distance to San Leandro High School and Bancroft Middle School.,Call to schedule your personal tour and see for yourself why Parklane Apartments is the perfect place to call home!!,Parklane Apartment has on-site laundry, 24 hour emergency maintenance and assigned parking.,Office Hours,Monday and Wednesday 1:00 pm - 6:00 pm,14365 Bancroft Ave.,San Leandro, CA 94578,Monday, Wednesday, Friday and Saturday from 2:00 pm to 4:00 pm"
],
"Title": [
"1/2 off 1st Months Rent",
"1/2 off 1st Months Rent"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $1995.0.
Hello. What can you tell me about the apartment?
its in the parklane apartments
It looks nice. I was hoping we could come down on the rent a little. What about $1775?
hoe about 1800?
Alright. $1800 sounds good to me.
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | buyer |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
24,
40
]
} | [
0,
1,
0,
1,
0,
1,
0,
0,
1
] | {
"intent": [
"init-price",
"counter-price",
"counter-price",
"counter-price",
"counter-price",
"counter-price",
"unknown",
"offer",
"accept"
],
"price": [
20,
75,
-1,
35,
24,
25,
-1,
25,
-1
]
} | [
"Hey, I am interested in buying your Armoire for $20.",
"I am looking for $75 but i can go down to $65 if your still interested.",
"I'm sorry but that is just way too high. You have it listed for $40 and I think even that is too high.",
"I will go down to $35 and i will deliver it. That sound good?",
"Would you do $24 if I pick it up and do all the work?",
"$25 and you will have yourself a deal!",
"Sounds good to me, thank you!",
"",
""
] | {
"Category": [
"furniture",
"furniture"
],
"Images": [
"furniture/6107749817_0.jpg",
"furniture/6107749817_0.jpg"
],
"Price": [
40,
40
],
"Description": [
"Thank you for viewing this nice MCM wood armoire. Great for storing clothes, craft items, and more! It measures 38\" wide x 19\" deep x 60\" high. The handle on the right door is missing, but easily replaced.",
"Thank you for viewing this nice MCM wood armoire. Great for storing clothes, craft items, and more! It measures 38\" wide x 19\" deep x 60\" high. The handle on the right door is missing, but easily replaced."
],
"Title": [
"Armoire clothes or other Storage Cabinet PRICED TO SELL!",
"Armoire clothes or other Storage Cabinet PRICED TO SELL!"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $40.0.
Hey, I am interested in buying your Armoire for $20.
I am looking for $75 but i can go down to $65 if your still interested.
I'm sorry but that is just way too high. You have it listed for $40 and I think even that is too high.
I will go down to $35 and i will deliver it. That sound good?
Would you do $24 if I pick it up and do all the work?
$25 and you will have yourself a deal!
Sounds good to me, thank you!
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | buyer |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
1260,
2100
]
} | [
1,
0,
1,
0,
1,
0,
1,
1,
0
] | {
"intent": [
"init-price",
"counter-price",
"counter-price",
"unknown",
"disagree",
"counter-price",
"agree",
"offer",
"accept"
],
"price": [
2100,
1200,
1700,
-1,
-1,
1300,
1300,
1300,
-1
]
} | [
"Hi there, I'm offering this house for 2100",
"Hi, that is high considering I will have to get a refrigerator. I was looking to pay 1200",
"I can go as low as 1700, the location is on the waterfront and is in a really great area",
"IS there a washer and dryer or just hookups? If not, I'd have to get that too.",
"There are hookups for both, but they are not included.",
"Considering I would have to get a refrigerator, washer, and dryer, the most I can offer is 1300$",
"I'll take it for 1300",
"",
""
] | {
"Category": [
"housing",
"housing"
],
"Images": [
"housing/6128995816_0.jpg",
"housing/6128995816_0.jpg"
],
"Price": [
2100,
2100
],
"Description": [
"Adorable 3 Bedroom 2 1/2 Bathroom Pittsburg home in court location. Large Master with walk-in closet, double sinks and oversized shower. Low maintenance yard, Washer/Dryer Hook-up in garage, Gas range, Dishwasher and Microwave. (Although in photos.. Refrigerator is not included.) Very desirable location walking distance to several restaurants, parks, Pittsburg marina front and lots of activities including Farmers Market, Seafood Festival, Jazz Festival, Car Shows, Hot August Nights, etc.",
"Adorable 3 Bedroom 2 1/2 Bathroom Pittsburg home in court location. Large Master with walk-in closet, double sinks and oversized shower. Low maintenance yard, Washer/Dryer Hook-up in garage, Gas range, Dishwasher and Microwave. (Although in photos.. Refrigerator is not included.) Very desirable location walking distance to several restaurants, parks, Pittsburg marina front and lots of activities including Farmers Market, Seafood Festival, Jazz Festival, Car Shows, Hot August Nights, etc.,No Smoking and No Section 8.,Call New Way Management Services to schedule a showing at"
],
"Title": [
"Adorable 3 Bedroom, 2 1/2 Bath in Downtown Pittsburg**Court Location**",
"Adorable 3 Bedroom, 2 1/2 Bath in Downtown Pittsburg**Court Location**"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $2100.0.
Hi there, I'm offering this house for 2100
Hi, that is high considering I will have to get a refrigerator. I was looking to pay 1200
I can go as low as 1700, the location is on the waterfront and is in a really great area
IS there a washer and dryer or just hookups? If not, I'd have to get that too.
There are hookups for both, but they are not included.
Considering I would have to get a refrigerator, washer, and dryer, the most I can offer is 1300$
I'll take it for 1300
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | buyer |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
4100,
5395
]
} | [
0,
1,
0,
1,
0,
0,
1
] | {
"intent": [
"",
"",
"",
"",
"",
"",
""
],
"price": [
-1,
-1,
-1,
-1,
-1,
-1,
-1
]
} | [
"I am interested in this house. How much does it cost?",
"$5395",
"would you take any less? 5000",
"we can come down to 5000 but not any less than that",
"Deal. ",
"",
""
] | {
"Category": [
"housing",
"housing"
],
"Images": [
"housing/6132726108_0.jpg",
"housing/6132726108_0.jpg"
],
"Price": [
5395,
5395
],
"Description": [
"Available \nNow!,Year Lease",
"Available \nNow!,Year Lease,Dogs and Cats Allowed (Extra deposit may be required),In Unit,Office Hours are 9-5pm \nClosed for Lunch 12-1pm"
],
"Title": [
"Spectacular executive home w/ chef's kitchen and pool, Trestle Glen",
"Spectacular executive home w/ chef's kitchen and pool, Trestle Glen"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $5395.0.
I am interested in this house. How much does it cost?
$5395
would you take any less? 5000
we can come down to 5000 but not any less than that
Deal.
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | unknown |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
27,
45
]
} | [
1,
0
] | {
"intent": [
"",
""
],
"price": [
-1,
-1
]
} | [
"",
""
] | {
"Category": [
"furniture",
"furniture"
],
"Images": [
"",
""
],
"Price": [
45,
45
],
"Description": [
"I will offer FREE plush fitted sheet for this airbed with is sold separately,-Size: Queen 78\"x60\"x9\" fits queen sheets perfectly",
"I will offer FREE plush fitted sheet for this airbed with is sold separately,-Size: Queen 78\"x60\"x9\" fits queen sheets perfectly,-Effortless 60 second inflation 15 second deflation,-recessed pump and one touch confort control wand for convenience"
],
"Title": [
"Aerobed Airbed Queen Size For Sale",
"Aerobed Airbed Queen Size For Sale"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $45.0.
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | unknown |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
900,
1500
]
} | [
1,
0,
1,
0,
1,
0,
1,
0,
1,
0,
1,
0,
1,
0,
1,
0,
0,
1
] | {
"intent": [
"intro",
"inquiry",
"inform",
"vague-price",
"vague-price",
"unknown",
"init-price",
"inquiry",
"inform",
"unknown",
"counter-price",
"counter-price",
"disagree",
"agree",
"unknown",
"unknown",
"offer",
"accept"
],
"price": [
-1,
-1,
-1,
-1,
-1,
-1,
1400,
-1,
-1,
-1,
1350,
1000,
-1,
1350,
-1,
-1,
1350,
-1
]
} | [
"This is located in a prime location for a great price",
"where is it at?",
"The Glenview District of Oakland",
"how much would you come down to for the price?",
"I would be willing to come down slightly if I knew you would take good care of it. ",
"off course i would ",
"If you want I'll give you a special deal of 1400 ",
"anything less than that?",
"If you do your own yard work I could go 50 lower. ",
"yeah that i do mysefl",
"Then I'd give it to you for 1350. That's as low as I can go. ",
"you can not come down to 1000?",
"No that is way to low for this. ",
"would something be coming free with it if im willing to pay 1350?",
"Cable is included. ",
"thats something now",
"",
""
] | {
"Category": [
"housing",
"housing"
],
"Images": [
"housing/6132680609_0.jpg",
"housing/6132680609_0.jpg"
],
"Price": [
1500,
1500
],
"Description": [
"Sunny Garden inlaw unit in highly desierable Glenview district of Oakland. walk to public transit, shopping and restaurants.",
"Sunny Garden inlaw unit in highly desierable Glenview district of Oakland. walk to public transit, shopping and restaurants.,Private entry, shared laundry,"
],
"Title": [
"Sunny Garden Inlaw",
"Sunny Garden Inlaw"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $1500.0.
This is located in a prime location for a great price
where is it at?
The Glenview District of Oakland
how much would you come down to for the price?
I would be willing to come down slightly if I knew you would take good care of it.
off course i would
If you want I'll give you a special deal of 1400
anything less than that?
If you do your own yard work I could go 50 lower.
yeah that i do mysefl
Then I'd give it to you for 1350. That's as low as I can go.
you can not come down to 1000?
No that is way to low for this.
would something be coming free with it if im willing to pay 1350?
Cable is included.
thats something now
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | seller |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
45,
60
]
} | [
0,
1,
0,
1,
0,
1,
1,
0
] | {
"intent": [
"intro",
"inquiry",
"inform",
"init-price",
"inquiry",
"inform",
"offer",
"accept"
],
"price": [
-1,
-1,
-1,
60,
-1,
-1,
60,
-1
]
} | [
"Hello I am interested in this Fitbit Flex machine!",
"Great. It's in great condition and I'm selling it at a very reasonable price. Should I wrap it up for you or will you wear it out?",
"I would perfer it wrapped since I am getting it for a gift for a friend who wanted to lose alot of weight",
"Great. Gift wrapping and all I think that $60 is a fair price. What do you think?",
"Yes that seems fair since you are wrapping it. Is that is USD?",
"Yes. Coin of the realm. ",
"",
""
] | {
"Category": [
"electronics",
"electronics"
],
"Images": [
"",
""
],
"Price": [
60,
60
],
"Description": [
"Hi, I'm selling a Fitbit Flex + 2 Bands Activity Tracker,Track your day including steps, distance, calories burned, active minutes etc.,Track your night including hours slept, times to woken up, sleep quality,,Wake with a silent vibrating alarm",
"Hi, I'm selling a Fitbit Flex + 2 Bands Activity Tracker,Track your day including steps, distance, calories burned, active minutes etc.,Track your night including hours slept, times to woken up, sleep quality,,Wake with a silent vibrating alarm,You can set a goal and get moving, the led lights will show you how your day is stacking up against your goal. It will automatically sync stats to computers and select smartphones using Bluetooth so that you can see your progress with online & mobile tools, share & compete with friends and stay motivated.,Syncs wirelessly via Bluetooth to select smartphones including iPhone 4S higher, iPad (3 gen.), Samsung Galaxy S III & higher, Note II & select Android devices.,Includes 2 Additional Colored Bands,Water Resistant, wear it in the shower!"
],
"Title": [
"Fitbit Flex + 2 Bands Activity Tracker",
"Fitbit Flex + 2 Bands Activity Tracker"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $60.0.
Hello I am interested in this Fitbit Flex machine!
Great. It's in great condition and I'm selling it at a very reasonable price. Should I wrap it up for you or will you wear it out?
I would perfer it wrapped since I am getting it for a gift for a friend who wanted to lose alot of weight
Great. Gift wrapping and all I think that $60 is a fair price. What do you think?
Yes that seems fair since you are wrapping it. Is that is USD?
Yes. Coin of the realm.
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | seller |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
13340,
14500
]
} | [
1,
0,
1,
0,
1,
0,
1,
0,
1,
0,
1,
0,
1,
0,
1,
0,
1,
0,
0,
1
] | {
"intent": [
"intro",
"unknown",
"unknown",
"inquiry",
"inform",
"inquiry",
"inform",
"init-price",
"init-price",
"counter-price",
"disagree",
"agree",
"inquiry",
"inform",
"inquiry",
"inform",
"unknown",
"agree",
"offer",
"accept"
],
"price": [
-1,
-1,
-1,
-1,
-1,
-1,
-1,
-1,
10000,
8500,
-1,
10000,
-1,
-1,
-1,
-1,
-1,
-1,
10000,
-1
]
} | [
"Hi, I heard your interested in my old 4 runner?",
"Hello, I'm interested in buying your car.",
"Awesome. I just had it waxed and it's ready to go!",
"Great, how well does the car run?",
"It has zero issues, drives wonderful. ",
"Have you had any issues with the vehicle in the past?",
"Nope, just regular maintenance.",
"Sounds great, I am really interested in buying the car. However, $14500 seems steep for a 2006 with 106k miles. Are you willing to lower the price a little?",
"Of course. I posted it a bit high, then I got to looking for prices around. I'd be willing to go as low as 10k cash.",
"I'm concerned about some of the cosmetic damage and the price to fix it. Would you be willing to settle for $8500?",
"It just has a few wear and tear scratches over the years. Nothing a bottle of great wax can't fix",
"Ok, sounds good, so 10K for a final price?",
"Awesome, will you be picking it up?",
"Absolutely",
"What time works best for you?",
"Sunday at 11:00 am",
"Great. I'll see you down here on 310 N. Main at 11 am. ",
"ok",
"",
""
] | {
"Category": [
"car",
"car"
],
"Images": [
"car/6126569187_0.jpg",
"car/6126569187_0.jpg"
],
"Price": [
14500,
14500
],
"Description": [
"Selling my 2006 Toyota 4 Runner with only 106k original miles. The truck is in great condition with no mechanical flaws whatsoever and a clean accident history. Got new tires about 3,000 miles ago. Always has the oil changed on time (due in about 1k). Just got a thorough cleaning inside and a wash and wax outside (still wet in the photos). This truck has never been offroad, but the 4WD is working perfectly from the few times we've been up to Tahoe in it. However, it's a 10+ year old truck that's been driven, not babied and garaged all the time. It's got some scratches, paint is not perfect, but zero body damage.",
"Selling my 2006 Toyota 4 Runner with only 106k original miles. The truck is in great condition with no mechanical flaws whatsoever and a clean accident history. Got new tires about 3,000 miles ago. Always has the oil changed on time (due in about 1k). Just got a thorough cleaning inside and a wash and wax outside (still wet in the photos). This truck has never been offroad, but the 4WD is working perfectly from the few times we've been up to Tahoe in it. However, it's a 10+ year old truck that's been driven, not babied and garaged all the time. It's got some scratches, paint is not perfect, but zero body damage.,Please reach out to me with your phone number and when you're interested in viewing the truck (evenings are best for me). I will set up some appointments.,I know the value of these cars. If your plan is to come here, look at the truck and try to get me to knock a few thousand off cause you have cash, don't waste your time and my time. I'm a busy guy."
],
"Title": [
"2006 Toyota 4Runner 4WD - Only 106k Miles - Clean Title",
"2006 Toyota 4Runner 4WD - Only 106k Miles - Clean Title"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $14500.0.
Hi, I heard your interested in my old 4 runner?
Hello, I'm interested in buying your car.
Awesome. I just had it waxed and it's ready to go!
Great, how well does the car run?
It has zero issues, drives wonderful.
Have you had any issues with the vehicle in the past?
Nope, just regular maintenance.
Sounds great, I am really interested in buying the car. However, $14500 seems steep for a 2006 with 106k miles. Are you willing to lower the price a little?
Of course. I posted it a bit high, then I got to looking for prices around. I'd be willing to go as low as 10k cash.
I'm concerned about some of the cosmetic damage and the price to fix it. Would you be willing to settle for $8500?
It just has a few wear and tear scratches over the years. Nothing a bottle of great wax can't fix
Ok, sounds good, so 10K for a final price?
Awesome, will you be picking it up?
Absolutely
What time works best for you?
Sunday at 11:00 am
Great. I'll see you down here on 310 N. Main at 11 am.
ok
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | buyer |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
1770,
2950
]
} | [
0,
1,
0,
1,
0,
1,
0,
1,
0,
1,
0,
1,
1
] | {
"intent": [
"intro",
"init-price",
"inquiry",
"inform",
"counter-price",
"counter-price",
"vague-price",
"inquiry",
"counter-price",
"counter-price",
"counter-price",
"insist",
"quit"
],
"price": [
-1,
2955,
-1,
-1,
2000,
2500,
-1,
-1,
-1,
2250,
-1,
2250,
-1
]
} | [
"Hello I am interested in living in this 3 bedroom apartment.",
"Okay I am asking for 2955 for the apartment.",
"Wow that seems very high. Would you be willing to take less if I prepaid the rent for a year?",
"It may seem high but it is only 10 minutes for San Fran. The whole year, yes.",
"Well my wife is a masseuse and can provide unlimited massages at your request (1 per day) if you are willing to go below 2k per month? ",
"I'm not sure I'm comfortable with that, but I am willing to go to 2500, no massages.",
"Well my son is a plumber and my daughter is a electrician and can provide repairs for your apartment at no cost if you're willing to go lower. My children are well behaved.",
"How old are your children?",
"One is 29 and my daughter is 28",
"How about 2250?",
"Heres the rub. I used to work for one of them Silicon Boys in the Valley and my company was bought out by one of those ruthless Venture Capital Firms and I am down on my luck. I am hoping for a rent of 1800 and I will do anything you want unlimited (1 thing per day) at no cost.",
"Sorry to hear that, I really cannot go below 2250 or I will be losing money on this.",
""
] | {
"Category": [
"housing",
"housing"
],
"Images": [
"",
""
],
"Price": [
2950,
2950
],
"Description": [
"2950.00 for a 3 bedrooms and 2 Bathrooms Live/work apartment near the West Oakland Bart Station and about 10 minutes to San Francisco via Bay Bridge this space is 10 ft. ceiling the floors are ceramic title and Laminated the ceiling have 2 skylights and 1 off street parking with laundry hookups the address is 333 Henry St. Oakland the deposit is 1500.00 no section 8 if you have any question you can call Rafa at",
"2950.00 for a 3 bedrooms and 2 Bathrooms Live/work apartment near the West Oakland Bart Station and about 10 minutes to San Francisco via Bay Bridge this space is 10 ft. ceiling the floors are ceramic title and Laminated the ceiling have 2 skylights and 1 off street parking with laundry hookups the address is 333 Henry St. Oakland the deposit is 1500.00 no section 8 if you have any question you can call Rafa at,to schedule a time"
],
"Title": [
"Live/work 3br apt. ner West Oak. Bart & S.F.",
"Live/work 3br apt. ner West Oak. Bart & S.F."
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $2950.0.
Hello I am interested in living in this 3 bedroom apartment.
Okay I am asking for 2955 for the apartment.
Wow that seems very high. Would you be willing to take less if I prepaid the rent for a year?
It may seem high but it is only 10 minutes for San Fran. The whole year, yes.
Well my wife is a masseuse and can provide unlimited massages at your request (1 per day) if you are willing to go below 2k per month?
I'm not sure I'm comfortable with that, but I am willing to go to 2500, no massages.
Well my son is a plumber and my daughter is a electrician and can provide repairs for your apartment at no cost if you're willing to go lower. My children are well behaved.
How old are your children?
One is 29 and my daughter is 28
How about 2250?
Heres the rub. I used to work for one of them Silicon Boys in the Valley and my company was bought out by one of those ruthless Venture Capital Firms and I am down on my luck. I am hoping for a rent of 1800 and I will do anything you want unlimited (1 thing per day) at no cost.
Sorry to hear that, I really cannot go below 2250 or I will be losing money on this.
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | buyer |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
1200,
2000
]
} | [
0,
1
] | {
"intent": [
"",
""
],
"price": [
-1,
-1
]
} | [
"",
""
] | {
"Category": [
"bike",
"bike"
],
"Images": [
"bike/6146855642_0.jpg",
"bike/6146855642_0.jpg"
],
"Price": [
2000,
2000
],
"Description": [
"Excellent Condition: 2015 Niner Rip 9 XL - Custom Built. Components are worth more than the asking price for the complete bike. I have used the bike for 1 ½ seasons - about 1000 miles. Awesome bike and set up. Selling to fund a new bike.,Frame: Niner Rip9 Size: XL 29er (Alloy frame/125mm of travel),Front Shock: 2015 Rock Shox Pike RCT3 140mm (uncut),Shifters: 2016 XTR M9000 Rear Shifter,Chainring: Race Face Narrow Wide 30 Tooth,Bottom Bracket: Real World Racing (Will also provide the Shimano XT BB),Chain: 2016 SRAM PC1130,Brake Rotors: 2015 Shimano XT Ice-Tech Rotors; 160mm,Bars: Race Face Sixc Carbon Riser Bar Width 785mm/Rise19mm",
"Excellent Condition: 2015 Niner Rip 9 XL - Custom Built. Components are worth more than the asking price for the complete bike. I have used the bike for 1 ½ seasons - about 1000 miles. Awesome bike and set up. Selling to fund a new bike.,Frame: Niner Rip9 Size: XL 29er (Alloy frame/125mm of travel),Front Shock: 2015 Rock Shox Pike RCT3 140mm (uncut),Shifters: 2016 XTR M9000 Rear Shifter,Chainring: Race Face Narrow Wide 30 Tooth,Bottom Bracket: Real World Racing (Will also provide the Shimano XT BB),Chain: 2016 SRAM PC1130,Brake Rotors: 2015 Shimano XT Ice-Tech Rotors; 160mm,Bars: Race Face Sixc Carbon Riser Bar Width 785mm/Rise19mm,Grips: Box Hex ODI Lock On Grips,Front Hub: Hope Pro 2 Evo; 15x100mm,Rear Hub: Hope Pro 2 Evo; 12x142mm,Rims: Stans Flow Ex\t29er (Recently F/R both trued),Front Tire Maxxis High Roller II EXO TR; 29x2.3,Rear Tire\tMaxxis High Roller II EXO TR; 29x2.3,Tubes\tStans Tape/Sealant,Seat Post: Rock Shox Reverb 125mm dropper post,Saddle: WTB Pure V,Pedals not included"
],
"Title": [
"2015 Niner Rip 9",
"2015 Niner Rip 9"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $2000.0.
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | unknown |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
114,
150
]
} | [
1,
0,
1,
0,
1,
0,
1,
0,
1,
0
] | {
"intent": [
"offer",
"counter-price",
"unknown",
"counter-price",
"counter-price",
"unknown",
"unknown",
"unknown",
"unknown",
"accept"
],
"price": [
150,
114,
-1,
140,
5,
-1,
-1,
-1,
-1,
-1
]
} | [
"",
"Wow, these look great I think I would like to offer $114.00",
"Too low.",
"I will pick them up then for 140.00",
"How about this. You buy all 6, I'll knock off 5 bucks a piece on each chair.",
"okay so what will be my total price",
"870 for the set. I have other buyers so its a take it or leave it deal.",
"ok thanks",
"Great. You come to pick them up.",
""
] | {
"Category": [
"furniture",
"furniture"
],
"Images": [
"furniture/6145266604_0.jpg",
"furniture/6145266604_0.jpg"
],
"Price": [
150,
150
],
"Description": [
"I have 6 of these dining chairs. Bought off Craigslist last fall and now wife doesn't like them for our new house. So back into the market they go for someone else to get a deal.",
"I have 6 of these dining chairs. Bought off Craigslist last fall and now wife doesn't like them for our new house. So back into the market they go for someone else to get a deal.,Cash only. Can help deliver to Hayward/Castro Valley or along 580/13 corridor if needed. Cash first.,Email with your name and phone and I'll call you."
],
"Title": [
"Dining Chairs 6",
"Dining Chairs 6"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $150.0.
Wow, these look great I think I would like to offer $114.00
Too low.
I will pick them up then for 140.00
How about this. You buy all 6, I'll knock off 5 bucks a piece on each chair.
okay so what will be my total price
870 for the set. I have other buyers so its a take it or leave it deal.
ok thanks
Great. You come to pick them up.
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | buyer |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
60,
80
]
} | [
0,
1,
0
] | {
"intent": [
"",
"",
""
],
"price": [
-1,
-1,
-1
]
} | [
"I am interested in the set of wheels you have for sale....",
"",
""
] | {
"Category": [
"bike",
"bike"
],
"Images": [
"bike/6110107430_0.jpg",
"bike/6110107430_0.jpg"
],
"Price": [
80,
80
],
"Description": [
"Has normal wear. Needs cleaning.,Finish is peeling yet they are solid structurally.",
"Has normal wear. Needs cleaning.,Finish is peeling yet they are solid structurally.,Takes 20 inch wheels.,Will consider trades for old Bmx."
],
"Title": [
"Primo 14mm - 3/8 sealed chrome wheels snafu",
"Primo 14mm - 3/8 sealed chrome wheels snafu"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $80.0.
I am interested in the set of wheels you have for sale....
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | unknown |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
27,
45
]
} | [
0,
1,
0,
1,
0,
1,
0,
1,
0,
1,
0,
1,
0,
1,
0,
1,
0,
1,
0,
1
] | {
"intent": [
"intro",
"inquiry",
"inquiry",
"inform",
"inquiry",
"inform",
"inquiry",
"init-price",
"counter-price",
"vague-price",
"inquiry",
"vague-price",
"counter-price",
"counter-price",
"counter-price",
"counter-price",
"counter-price",
"agree",
"offer",
"accept"
],
"price": [
-1,
-1,
-1,
-1,
-1,
-1,
-1,
45,
20,
-1,
-1,
-1,
25,
38,
30,
35,
32,
32,
32,
-1
]
} | [
"Hi there, I am interested in your table.",
"do you have any questions",
"Yeah, what's the condition of the table?",
"its in good condition",
"Have you received offers for it?",
"you would be the first one so far",
"What would be your selling price?",
"$45",
"What about $20?",
"that is too low",
"What if I offered to pick up the table?",
"that you will anyway. and i can come down to somewhere between 38-40",
"How about 25?",
"38 would be the last im sorry",
"Anything else I could offer if I raised it to 30? 30's my max, but I'm willing to throw in pick up.",
"if you are going to 30 then how about 35?",
"32 would be an even medium between us.",
"yeah 32 sounds good",
"",
""
] | {
"Category": [
"furniture",
"furniture"
],
"Images": [
"",
""
],
"Price": [
45,
45
],
"Description": [
"Shelf underneath. Wood top and shelf with metal trim, legs and wheels.",
"Shelf underneath. Wood top and shelf with metal trim, legs and wheels.,Must be able to come pick up. Message me with questions."
],
"Title": [
"Wood & Metal Coffee Table",
"Wood & Metal Coffee Table"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $45.0.
Hi there, I am interested in your table.
do you have any questions
Yeah, what's the condition of the table?
its in good condition
Have you received offers for it?
you would be the first one so far
What would be your selling price?
$45
What about $20?
that is too low
What if I offered to pick up the table?
that you will anyway. and i can come down to somewhere between 38-40
How about 25?
38 would be the last im sorry
Anything else I could offer if I raised it to 30? 30's my max, but I'm willing to throw in pick up.
if you are going to 30 then how about 35?
32 would be an even medium between us.
yeah 32 sounds good
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | buyer |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
11020,
14500
]
} | [
0,
1,
0,
1,
0,
1,
0,
1,
0,
1,
0,
0,
1
] | {
"intent": [
"intro",
"unknown",
"inquiry",
"inquiry",
"inform",
"inquiry",
"init-price",
"counter-price",
"counter-price",
"unknown",
"unknown",
"offer",
"accept"
],
"price": [
-1,
-1,
-1,
-1,
-1,
-1,
11020,
13000,
12500,
-1,
-1,
12500,
-1
]
} | [
"Hello, I'm very interested in the vehicle you have for sale",
"Great, it is an awesome truck I would trust it to drive anywhere.",
"Are you willing to take less than the asking price?",
"I am willing to go down some, what are you thinking?",
"I'm willing to make you an offer",
"What is your offer?",
"$11020",
"That is very low, can you come up to 13000.00",
"I would be willing to go up to 12500",
"OK I will accept that",
"Good deal! Thank you",
"",
""
] | {
"Category": [
"car",
"car"
],
"Images": [
"car/6126569187_0.jpg",
"car/6126569187_0.jpg"
],
"Price": [
14500,
14500
],
"Description": [
"Selling my 2006 Toyota 4 Runner with only 106k original miles. The truck is in great condition with no mechanical flaws whatsoever and a clean accident history. Got new tires about 3,000 miles ago. Always has the oil changed on time (due in about 1k). Just got a thorough cleaning inside and a wash and wax outside (still wet in the photos). This truck has never been offroad, but the 4WD is working perfectly from the few times we've been up to Tahoe in it. However, it's a 10+ year old truck that's been driven, not babied and garaged all the time. It's got some scratches, paint is not perfect, but zero body damage.",
"Selling my 2006 Toyota 4 Runner with only 106k original miles. The truck is in great condition with no mechanical flaws whatsoever and a clean accident history. Got new tires about 3,000 miles ago. Always has the oil changed on time (due in about 1k). Just got a thorough cleaning inside and a wash and wax outside (still wet in the photos). This truck has never been offroad, but the 4WD is working perfectly from the few times we've been up to Tahoe in it. However, it's a 10+ year old truck that's been driven, not babied and garaged all the time. It's got some scratches, paint is not perfect, but zero body damage.,Please reach out to me with your phone number and when you're interested in viewing the truck (evenings are best for me). I will set up some appointments.,I know the value of these cars. If your plan is to come here, look at the truck and try to get me to knock a few thousand off cause you have cash, don't waste your time and my time. I'm a busy guy."
],
"Title": [
"2006 Toyota 4Runner 4WD - Only 106k Miles - Clean Title",
"2006 Toyota 4Runner 4WD - Only 106k Miles - Clean Title"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $14500.0.
Hello, I'm very interested in the vehicle you have for sale
Great, it is an awesome truck I would trust it to drive anywhere.
Are you willing to take less than the asking price?
I am willing to go down some, what are you thinking?
I'm willing to make you an offer
What is your offer?
$11020
That is very low, can you come up to 13000.00
I would be willing to go up to 12500
OK I will accept that
Good deal! Thank you
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | buyer |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
36,
40
]
} | [
1,
0,
1,
0,
1,
1,
0
] | {
"intent": [
"intro",
"init-price",
"unknown",
"insist",
"unknown",
"offer",
"accept"
],
"price": [
-1,
36,
-1,
36,
-1,
36,
-1
]
} | [
"Do you want to learn more about my item for sale",
"Hi, I'm interested in this item , How long have you had it. Will you take $36.00 for it?",
"I've had it for many years it was my grandmas",
"Aw sweet, it will be great looking in my bedroom, I will offer 36 for this. ",
"Sounds good deal",
"",
""
] | {
"Category": [
"furniture",
"furniture"
],
"Images": [
"furniture/6122783153_0.jpg",
"furniture/6122783153_0.jpg"
],
"Price": [
40,
40
],
"Description": [
"Black,Double doors with mesh,Condition:,Structurally sound",
"Black,Double doors with mesh,Condition:,Structurally sound,Good condition with light wear,Search Steve2017 for my other listings or simply,click on the \"more ads by this user\" link found under the map.,Please email me if you are interested.,Serious inquiries only."
],
"Title": [
"Buffet / Cabinet (Moving Sale)",
"Buffet / Cabinet (Moving Sale)"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $40.0.
Do you want to learn more about my item for sale
Hi, I'm interested in this item , How long have you had it. Will you take $36.00 for it?
I've had it for many years it was my grandmas
Aw sweet, it will be great looking in my bedroom, I will offer 36 for this.
Sounds good deal
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | buyer |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
1516,
1995
]
} | [
0,
1
] | {
"intent": [
"",
""
],
"price": [
-1,
-1
]
} | [
"",
""
] | {
"Category": [
"housing",
"housing"
],
"Images": [
"housing/6107067195_0.jpg",
"housing/6107067195_0.jpg"
],
"Price": [
1995,
1995
],
"Description": [
"Welcome Home! Love where you live!,Welcome home to Parklane Apartments. Parklane Apartments offers easy access to major freeways, as well as being close to the very best restaurants, shopping, and entertainment in San Leandro.,Our Property offers quality living at an affordable price in an unbeatable location.,Parklane offers the comforts of home in a centralized and convenient location. Bart is less than a mile away, as well as freeway access to highway 580, 880 and 238. We are located in the San Leandro school district and right across the street from Jefferson Elementary School. We are also walking distance to San Leandro High School and Bancroft Middle School.,Call to schedule your personal tour and see for yourself why Parklane Apartments is the perfect place to call home!!",
"Welcome Home! Love where you live!,Welcome home to Parklane Apartments. Parklane Apartments offers easy access to major freeways, as well as being close to the very best restaurants, shopping, and entertainment in San Leandro.,Our Property offers quality living at an affordable price in an unbeatable location.,Parklane offers the comforts of home in a centralized and convenient location. Bart is less than a mile away, as well as freeway access to highway 580, 880 and 238. We are located in the San Leandro school district and right across the street from Jefferson Elementary School. We are also walking distance to San Leandro High School and Bancroft Middle School.,Call to schedule your personal tour and see for yourself why Parklane Apartments is the perfect place to call home!!,Parklane Apartment has on-site laundry, 24 hour emergency maintenance and assigned parking.,Office Hours,Monday and Wednesday 1:00 pm - 6:00 pm,14365 Bancroft Ave.,San Leandro, CA 94578,Monday, Wednesday, Friday and Saturday from 2:00 pm to 4:00 pm"
],
"Title": [
"1/2 off 1st Months Rent",
"1/2 off 1st Months Rent"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $1995.0.
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | unknown |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
3220,
3500
]
} | [
1,
1,
1,
0
] | {
"intent": [
"",
"",
"",
""
],
"price": [
-1,
-1,
-1,
-1
]
} | [
"",
"everyday i'm turkin it",
"",
"That's too much can you go down a bit"
] | {
"Category": [
"housing",
"housing"
],
"Images": [
"housing/6133578695_0.jpg",
"housing/6133578695_0.jpg"
],
"Price": [
3500,
3500
],
"Description": [
"Updated home in Pleasanton available July 1. This gorgeous detached home has 3 bedrooms and 2 baths, 1478 square feet; featuring bamboo and wood floors, granite countertops, fireplace. Backyard has dwarf citrus trees - lemon, lime, and orange; apple tree; rose garden; and a brick patio to enjoy it from.,Minutes away from Mohr Elementary School, Harvest Park Middle School, Amador Valley High School.,One year minimum lease agreement, with one month's security deposit. Pets negotiable (additional deposit required).,•\tDishwasher,•\tMicrowave,•\tWindow shades,•\tWasher and Dryer in garage,•\tCentral heat and air conditioning",
"Updated home in Pleasanton available July 1. This gorgeous detached home has 3 bedrooms and 2 baths, 1478 square feet; featuring bamboo and wood floors, granite countertops, fireplace. Backyard has dwarf citrus trees - lemon, lime, and orange; apple tree; rose garden; and a brick patio to enjoy it from.,Minutes away from Mohr Elementary School, Harvest Park Middle School, Amador Valley High School.,One year minimum lease agreement, with one month's security deposit. Pets negotiable (additional deposit required).,•\tDishwasher,•\tMicrowave,•\tWindow shades,•\tWasher and Dryer in garage,•\tCentral heat and air conditioning,•\tTwo car garage with garage door opener,•\tYard with gardener provided,•\tBrick patio in backyard,Bring copies of:,•\tDriver's License,•\tCredit report (available for free at Annualcreditreport.com),•\tW2 from 2016,Respond to ad or text Rick at 5 one 0 - 3 0 one - 1926."
],
"Title": [
"Beautiful 3 BR / 2 BA Pleasanton Home in Mohr Park",
"Beautiful 3 BR / 2 BA Pleasanton Home in Mohr Park"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $3500.0.
everyday i'm turkin it
That's too much can you go down a bit
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | unknown |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
69,
75
]
} | [
0,
1,
1,
0,
1,
0
] | {
"intent": [
"",
"",
"",
"",
"",
""
],
"price": [
-1,
-1,
-1,
-1,
-1,
-1
]
} | [
"There is nothing wrong with this is there?",
"no",
"",
"i'd like to get this for $55",
"ok",
""
] | {
"Category": [
"electronics",
"electronics"
],
"Images": [
"",
""
],
"Price": [
75,
75
],
"Description": [
"Stylus, USB cable, and hearphones also included. User manual not included. This is a used unit in excellent cosmetic and working condition.",
"Stylus, USB cable, and hearphones also included. User manual not included. This is a used unit in excellent cosmetic and working condition."
],
"Title": [
"Casio EX-word Dataplus 4 XD-SF4800 Japanese Dictionary",
"Casio EX-word Dataplus 4 XD-SF4800 Japanese Dictionary"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $75.0.
There is nothing wrong with this is there?
no
i'd like to get this for $55
ok
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | unknown |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
184,
200
]
} | [
1,
0,
1,
0,
1,
0,
1,
0,
1,
0,
0,
1,
1
] | {
"intent": [
"intro",
"unknown",
"unknown",
"inquiry",
"vague-price",
"inquiry",
"init-price",
"counter-price",
"insist",
"agree",
"offer",
"counter-price",
"accept"
],
"price": [
-1,
-1,
-1,
-1,
-1,
-1,
190,
180,
190,
190,
190,
98,
-1
]
} | [
"Hello! I am selling a night stand from a store called The Crate & Barrel. It is a very nice night stand!",
"hi! i am interested in buying but how good is the condition?",
"It is very good. It is actually a family heirloom passed down by my grandmother and she recently passed away 2 days ago. The nightstand is empty however. Her stuff have been emptied. ",
"im sorry to hear to that. for how much do you wanna give it away?",
"Well her will listed the value of this item at 200 US dollars, but if you pick it up from her home I am willing to go lower.",
"how lower would you go then?",
"190$ and I can provide lemonade as you move it out.",
"that would be nice. but how about 180 since im the one picking it up and with its one handle missing?",
"I can attach it for you, but I am needing the money because I am short for paying my grandma's funeral for $190.",
"im sorry to hear that. 190 would be good.",
"",
"Thats okay she was very old. I think 98",
""
] | {
"Category": [
"furniture",
"furniture"
],
"Images": [
"furniture/6145112058_0.jpg",
"furniture/6145112058_0.jpg"
],
"Price": [
200,
200
],
"Description": [
"Dresser and matching night stand from Crate & Barrel in good condition. Dresser is missing one handle, but still have handle which could potentially be re-attached.",
"Dresser and matching night stand from Crate & Barrel in good condition. Dresser is missing one handle, but still have handle which could potentially be re-attached.,Need to be picked up in Rockridge by Saturday."
],
"Title": [
"Dresser and Matching Night Stand",
"Dresser and Matching Night Stand"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $200.0.
Hello! I am selling a night stand from a store called The Crate & Barrel. It is a very nice night stand!
hi! i am interested in buying but how good is the condition?
It is very good. It is actually a family heirloom passed down by my grandmother and she recently passed away 2 days ago. The nightstand is empty however. Her stuff have been emptied.
im sorry to hear to that. for how much do you wanna give it away?
Well her will listed the value of this item at 200 US dollars, but if you pick it up from her home I am willing to go lower.
how lower would you go then?
190$ and I can provide lemonade as you move it out.
that would be nice. but how about 180 since im the one picking it up and with its one handle missing?
I can attach it for you, but I am needing the money because I am short for paying my grandma's funeral for $190.
im sorry to hear that. 190 would be good.
Thats okay she was very old. I think 98
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | buyer |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
90,
150
]
} | [
1,
0
] | {
"intent": [
"",
""
],
"price": [
-1,
-1
]
} | [
"",
"Hello. I am very interested in your bike, however I think S150 is a little high for a bike from the 60s. How about $75?"
] | {
"Category": [
"bike",
"bike"
],
"Images": [
"bike/6145626381_0.jpg",
"bike/6145626381_0.jpg"
],
"Price": [
150,
150
],
"Description": [
"Sears Roebuck 3-speed cruiser bike. Circa 1960's. Classic, vintage, collectible. 20\" (51cm) step-thru frame. Good for someone 5'5\"+.,Specifications:,Color: Metallic brown.,Joytech brake levers.,Joytech center pivot dual side pulled brakes.,Sturmey Archer 3-speed shifter.",
"Sears Roebuck 3-speed cruiser bike. Circa 1960's. Classic, vintage, collectible. 20\" (51cm) step-thru frame. Good for someone 5'5\"+.,Specifications:,Color: Metallic brown.,Joytech brake levers.,Joytech center pivot dual side pulled brakes.,Sturmey Archer 3-speed shifter.,20mm Ø seat post.,170mm crank arms.,Sturmey Archer rear 3-speed internal hub.,26\" wheels. 36 spokes. Joytech hub.,Chain guard.,Good condition."
],
"Title": [
"Sears Roebuck 3-speed cruiser bike.",
"Sears Roebuck 3-speed cruiser bike."
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $150.0.
Hello. I am very interested in your bike, however I think S150 is a little high for a bike from the 60s. How about $75?
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | unknown |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
1800,
3000
]
} | [
1,
0,
1,
0,
1,
0,
1,
0,
1,
0,
1,
0,
0,
1
] | {
"intent": [
"intro",
"unknown",
"disagree",
"disagree",
"unknown",
"init-price",
"vague-price",
"counter-price",
"counter-price",
"counter-price",
"insist",
"counter-price",
"offer",
"reject"
],
"price": [
-1,
-1,
-1,
-1,
-1,
1200,
-1,
1300,
2000,
1800,
2000,
1900,
1900,
-1
]
} | [
"This is a beautiful place and I think you'd really like it. ",
"It looks super close to the neighbors.",
"It is just like other neighborhoods. Not too close, but not a big distance apart. ",
"Original hardwood? Was it actually refinished or was espresso spilled (splashed) on it? I'm thinking the later with no pictures inside.",
"I can certainly send you inside pictures, or you could stop by the see it before you pay. ",
"The yard is also very poorly maintained... Are you willing to take 1200?",
"No for the area this is in that is too low. ",
"If you reseed the lawn I can go 1300",
"I am not willing to go below 2000 for this",
"That's just not going to work. Reseed the lawn, tear out the awful plant up front, and show me it first and I'll give you 1800.",
"I'm sorry that is just too low for this house. I'd be able to all that for you but only for the price of 2000",
"1900 and paint the door red too. Final offer.",
"",
""
] | {
"Category": [
"housing",
"housing"
],
"Images": [
"housing/6106078467_0.jpg",
"housing/6106078467_0.jpg"
],
"Price": [
3000,
3000
],
"Description": [
"Welcome home to this charming and sweet two bedroom one bath bungalow in the Upper Dimond District. This beautifully maintained home boasts of original hardwood floors splashed with espresso, upgraded bathroom and kitchen that overlooks a lush backyard garden, and a spacious living/dining area.",
"Welcome home to this charming and sweet two bedroom one bath bungalow in the Upper Dimond District. This beautifully maintained home boasts of original hardwood floors splashed with espresso, upgraded bathroom and kitchen that overlooks a lush backyard garden, and a spacious living/dining area.,This property is in a great, friendly neighborhood convenient to Farmer Joe's Marketplace, Peet's, La Farine Bakery, restaurants, Montclair Village, and several East Bay Regional Parks, with easy access to Highways 580 & 13, Casual Carpool pick up spot, and AC Transit Express buses to San Francisco.,One Year Lease, Renters Insurance Required, Tenant Pays All Utilities"
],
"Title": [
"Charming 2 Bed 1 Bath Home in Upper Diamond, Yard, Storage",
"Charming 2 Bed 1 Bath Home in Upper Diamond, Yard, Storage"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $3000.0.
This is a beautiful place and I think you'd really like it.
It looks super close to the neighbors.
It is just like other neighborhoods. Not too close, but not a big distance apart.
Original hardwood? Was it actually refinished or was espresso spilled (splashed) on it? I'm thinking the later with no pictures inside.
I can certainly send you inside pictures, or you could stop by the see it before you pay.
The yard is also very poorly maintained... Are you willing to take 1200?
No for the area this is in that is too low.
If you reseed the lawn I can go 1300
I am not willing to go below 2000 for this
That's just not going to work. Reseed the lawn, tear out the awful plant up front, and show me it first and I'll give you 1800.
I'm sorry that is just too low for this house. I'd be able to all that for you but only for the price of 2000
1900 and paint the door red too. Final offer.
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | buyer |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
4600,
5000
]
} | [
1,
0
] | {
"intent": [
"",
""
],
"price": [
-1,
-1
]
} | [
"",
""
] | {
"Category": [
"car",
"car"
],
"Images": [
"car/6092239372_0.jpg",
"car/6092239372_0.jpg"
],
"Price": [
5000,
5000
],
"Description": [
"1975 crew cab long bed dually 3X3 Scottsdale, lowered 2\". Aluminum rims, brand new rear tires. Flush mount goose neck. 2000 GM crate 454. Performer elderbrock cam intake. 750 carb. Long tube headers. 2 chamber flowmasters. Posey 411 gears. Turbo 400 with a shift kit transmission. Pink slip in hand, on non-op so no back fees. 6,000 obo",
"1975 crew cab long bed dually 3X3 Scottsdale, lowered 2\". Aluminum rims, brand new rear tires. Flush mount goose neck. 2000 GM crate 454. Performer elderbrock cam intake. 750 carb. Long tube headers. 2 chamber flowmasters. Posey 411 gears. Turbo 400 with a shift kit transmission. Pink slip in hand, on non-op so no back fees. 6,000 obo"
],
"Title": [
"75 Chevy dually crew cab **NO SMOG**",
"75 Chevy dually crew cab **NO SMOG**"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $5000.0.
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | unknown |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
46,
50
]
} | [
0,
1,
0,
1,
0,
1
] | {
"intent": [
"",
"",
"",
"",
"",
""
],
"price": [
-1,
-1,
-1,
-1,
-1,
-1
]
} | [
"How long have you had these and how's the sound quality",
"I've had them for about 2 years now, and that they sound amazing.",
"Is the price negotiable",
"Not at this point. I think the price is fair and they are in excellent condition.",
"",
""
] | {
"Category": [
"electronics",
"electronics"
],
"Images": [
"electronics/6150596304_0.jpg",
"electronics/6150596304_0.jpg"
],
"Price": [
50,
50
],
"Description": [
"Selling my ported Sub box. Box holds two 10\" subs and has dual ports. Box was expensive to have made. I had 2 Alpine R types in there and man did they sound amazing:D The cut outs you see on the sides of box are there for a reason . They were custom molded to go around the latch and the hinge on the inside of the tailgate on my jeep. BOX WILL UNIVERSALLY FIT IN MOST VEHICLES Any questions please feel free to text me . Thanks! -Brandon",
"Selling my ported Sub box. Box holds two 10\" subs and has dual ports. Box was expensive to have made. I had 2 Alpine R types in there and man did they sound amazing:D The cut outs you see on the sides of box are there for a reason . They were custom molded to go around the latch and the hinge on the inside of the tailgate on my jeep. BOX WILL UNIVERSALLY FIT IN MOST VEHICLES Any questions please feel free to text me . Thanks! -Brandon"
],
"Title": [
"Ported Sub Enclosure Box",
"Ported Sub Enclosure Box"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $50.0.
How long have you had these and how's the sound quality
I've had them for about 2 years now, and that they sound amazing.
Is the price negotiable
Not at this point. I think the price is fair and they are in excellent condition.
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | unknown |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
920,
1000
]
} | [
0,
1
] | {
"intent": [
"",
""
],
"price": [
-1,
-1
]
} | [
"",
""
] | {
"Category": [
"bike",
"bike"
],
"Images": [
"bike/6154299392_0.jpg",
"bike/6154299392_0.jpg"
],
"Price": [
1000,
1000
],
"Description": [
"Im selling my dream bike because she is a few cms too tall for me. This bike is in great condition for its age. Almost all parts are original except for the break handles. Brand new gator skin tires on the original wheel set. This bike is a gem, if I could grow a few inches Id keep her but I really need a smaller bike.",
"Im selling my dream bike because she is a few cms too tall for me. This bike is in great condition for its age. Almost all parts are original except for the break handles. Brand new gator skin tires on the original wheel set. This bike is a gem, if I could grow a few inches Id keep her but I really need a smaller bike.,Would consider a trade of equal value or a smaller bike and some cash.,Please email me your offer and number"
],
"Title": [
"1986 Bianchi with original parts obo",
"1986 Bianchi with original parts obo"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $1000.0.
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | unknown |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
420,
700
]
} | [
1,
0,
1,
0,
1,
0,
1,
0,
0,
1
] | {
"intent": [
"intro",
"unknown",
"inquiry",
"disagree",
"unknown",
"inquiry",
"init-price",
"unknown",
"offer",
"accept"
],
"price": [
-1,
-1,
-1,
-1,
-1,
-1,
600,
-1,
600,
-1
]
} | [
"hi",
"Hello. I'm interested in the flat screen and surround sound you have",
"can you pick up",
"I don't think that would be a problem",
"ok i will be home tomorrow ",
"Are you willing to take less than the asking price?",
"does 600 sound fair",
"I think that's a fair price",
"",
""
] | {
"Category": [
"electronics",
"electronics"
],
"Images": [
"electronics/6152697889_0.jpg",
"electronics/6152697889_0.jpg"
],
"Price": [
700,
700
],
"Description": [
"(4) surround speakers.,I am a motivated seller and want to sell the entire package. I will give the person who buys the TV and Sony system the following added value items:",
"(4) surround speakers.,I am a motivated seller and want to sell the entire package. I will give the person who buys the TV and Sony system the following added value items:,(1) Samsung Blu Ray player. W/remote,This system played my iPod, Spotify radio stations etc. the movie watching sound experience is awesome.,buyer must be able to pick up the items so plan accordingly especially for the flat screen tv."
],
"Title": [
"Sharp 60\" flat screen & Sony Surround System",
"Sharp 60\" flat screen & Sony Surround System"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $700.0.
hi
Hello. I'm interested in the flat screen and surround sound you have
can you pick up
I don't think that would be a problem
ok i will be home tomorrow
Are you willing to take less than the asking price?
does 600 sound fair
I think that's a fair price
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | seller |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
1959,
2130
]
} | [
0,
1
] | {
"intent": [
"",
""
],
"price": [
-1,
-1
]
} | [
"hell, what can you tell me?",
""
] | {
"Category": [
"housing",
"housing"
],
"Images": [
"housing/6132627906_0.jpg",
"housing/6132627906_0.jpg"
],
"Price": [
2130,
2130
],
"Description": [
"Waterstone Fremont,39600 FREMONT BLVD, Fremont, CA, 94538,Call Now -,Want more info on this unit? See the link (below):,http://pinnaclefamily.aptdetails.com/x6q7w4,Welcome home to Waterstone Fremont",
"Waterstone Fremont,39600 FREMONT BLVD, Fremont, CA, 94538,Call Now -,Want more info on this unit? See the link (below):,http://pinnaclefamily.aptdetails.com/x6q7w4,Welcome home to Waterstone Fremont,This is a 1 Bedroom, 1 Bath, approximately 565 Sq. Ft.,Waterstone Fremont offers spacious one and two bedroom floor plans, featuring walk-in closets, central heat and air conditioning, private patios or balconies, and views of the East Bay hills. Unwind at one of our two sparkling pools, or perhaps play a game of tennis at our beautifully lit tennis courts. Our fitness center and common-area Wi-Fi are other perks of the blissful lifestyle that awaits you.,Our convenient Fremont location--right around the corner from local shopping and dining-- provides an easy commute to local business centers, and is only minutes from the BART station.,In addition to the many amenities we offer, our management team prides itself as friendly, highly responsive, and dedicated to fostering the lifestyle you deserve. Waterstone Fremont is the perfect place to call home, so stop looking and start living; book an appointment with us today!,Office Hours:,Equal Housing Opportunity"
],
"Title": [
"Live The Lavish Life Here At Waterstone! $500 off Move In",
"Live The Lavish Life Here At Waterstone! $500 off Move In"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $2130.0.
hell, what can you tell me?
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | unknown |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
114,
150
]
} | [
0,
1,
0,
1,
0,
1,
0,
1,
0,
1,
0,
1,
0,
1,
0,
1,
1,
0
] | {
"intent": [
"intro",
"unknown",
"inquiry",
"disagree",
"unknown",
"disagree",
"init-price",
"counter-price",
"disagree",
"unknown",
"agree",
"unknown",
"disagree",
"unknown",
"counter-price",
"unknown",
"offer",
"accept"
],
"price": [
-1,
-1,
-1,
-1,
-1,
-1,
18,
22,
-1,
-1,
22,
-1,
-1,
-1,
132,
-1,
132,
-1
]
} | [
"I'm really intersted in the chairs. Are there any scratches?",
"There are a few minor scratches on some of the chairs",
"How about the cushions, any holes?",
"No. We reupholstered them after we purchased the chairs last fall",
"Cool. I was hoping you would be willing to let them go for a little below your listed price.",
"I'm willing to negotiate, but I'm not going to accept an unreasonable offer. Even with the scratches they're still nice chairs!",
"I believe you. I want to make sure it's a fair price. You want about 26 per chair, I was hoping to get them for about 18 per chair. ",
"Would you be willing to split the difference at 22 per chair?",
"I was hoping to pay less because I don't have a truck so I will need to pay a friend to pick them up. ",
"Well, I could deliver them a little bit further than Hayward, if that helps",
"That acutally would help. Would you be willing to do that for the $22 per chair?",
"Yes",
"Great, I'm just a little outside of hayward in union city so it's not too far. Would tomorrow be good. I can work around your schedule.",
"I'm free all day tomorrow, so that would work for me!",
"Great, thanks. I'm going to input the offer now at $132.",
"Sounds good -- is that going to show up on my screen too? Based on the instructions it looks like it should",
"",
""
] | {
"Category": [
"furniture",
"furniture"
],
"Images": [
"furniture/6145266604_0.jpg",
"furniture/6145266604_0.jpg"
],
"Price": [
150,
150
],
"Description": [
"I have 6 of these dining chairs. Bought off Craigslist last fall and now wife doesn't like them for our new house. So back into the market they go for someone else to get a deal.",
"I have 6 of these dining chairs. Bought off Craigslist last fall and now wife doesn't like them for our new house. So back into the market they go for someone else to get a deal.,Cash only. Can help deliver to Hayward/Castro Valley or along 580/13 corridor if needed. Cash first.,Email with your name and phone and I'll call you."
],
"Title": [
"Dining Chairs 6",
"Dining Chairs 6"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $150.0.
I'm really intersted in the chairs. Are there any scratches?
There are a few minor scratches on some of the chairs
How about the cushions, any holes?
No. We reupholstered them after we purchased the chairs last fall
Cool. I was hoping you would be willing to let them go for a little below your listed price.
I'm willing to negotiate, but I'm not going to accept an unreasonable offer. Even with the scratches they're still nice chairs!
I believe you. I want to make sure it's a fair price. You want about 26 per chair, I was hoping to get them for about 18 per chair.
Would you be willing to split the difference at 22 per chair?
I was hoping to pay less because I don't have a truck so I will need to pay a friend to pick them up.
Well, I could deliver them a little bit further than Hayward, if that helps
That acutally would help. Would you be willing to do that for the $22 per chair?
Yes
Great, I'm just a little outside of hayward in union city so it's not too far. Would tomorrow be good. I can work around your schedule.
I'm free all day tomorrow, so that would work for me!
Great, thanks. I'm going to input the offer now at $132.
Sounds good -- is that going to show up on my screen too? Based on the instructions it looks like it should
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | neither |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
540,
900
]
} | [
1,
0,
1,
0,
1,
0,
1,
0,
1,
0,
1,
0,
1,
1,
0
] | {
"intent": [
"intro",
"inquiry",
"inform",
"vague-price",
"init-price",
"counter-price",
"counter-price",
"disagree",
"counter-price",
"inquiry",
"inform",
"agree",
"unknown",
"offer",
"accept"
],
"price": [
-1,
-1,
-1,
-1,
900,
550,
875,
-1,
800,
-1,
-1,
800,
-1,
800,
-1
]
} | [
"Hello, I'm selling a king bed with boxspring, matress, and headboard",
"Is there any kinds of stains or anything on it?",
"absolutely none",
"As much as I really need this 900 seems too high for me. ",
"I think 900 sounds fair. I'm including a waterproof hypoallergenic protective mattress cover thats new.",
"I can really only afford to pay 550 for this at this time",
"550 is much much to low. This is less than a year old. I'm including everything. A each would be worth several hundred dollars seperately. I can go 875",
"I just can't justify that when I could get a brand new one for that much. ",
"This was more than a thousand originally. how about 800. Lowest I can go. The headboard was custon ordered.",
"Could you throw in a blanket and a pillow?",
"I could do that.",
"Then I will make that deal with you for 800",
"Alright.",
"",
""
] | {
"Category": [
"furniture",
"furniture"
],
"Images": [
"furniture/6144630351_0.jpg",
"furniture/6144630351_0.jpg"
],
"Price": [
900,
900
],
"Description": [
"Great deal on a mattress and frame combo that are barely a year old! Half off original price for like new furniture,Comes with waterproof hypoallergenic protective mattress cover that has kept mattress in new condition,King size mattress and box frame from IKEA with a specially ordered tufted upholstered teal headboard.",
"Great deal on a mattress and frame combo that are barely a year old! Half off original price for like new furniture,Comes with waterproof hypoallergenic protective mattress cover that has kept mattress in new condition,King size mattress and box frame from IKEA with a specially ordered tufted upholstered teal headboard.,You must be able to pickup and move yourself, there is an elevator in our building located next to public market in Emeryville!,Priced to sell!,Call text or email"
],
"Title": [
"like new KING size bed with mattress + box spring!",
"like new KING size bed with mattress + box spring!"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $900.0.
Hello, I'm selling a king bed with boxspring, matress, and headboard
Is there any kinds of stains or anything on it?
absolutely none
As much as I really need this 900 seems too high for me.
I think 900 sounds fair. I'm including a waterproof hypoallergenic protective mattress cover thats new.
I can really only afford to pay 550 for this at this time
550 is much much to low. This is less than a year old. I'm including everything. A each would be worth several hundred dollars seperately. I can go 875
I just can't justify that when I could get a brand new one for that much.
This was more than a thousand originally. how about 800. Lowest I can go. The headboard was custon ordered.
Could you throw in a blanket and a pillow?
I could do that.
Then I will make that deal with you for 800
Alright.
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | seller |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
90,
150
]
} | [
0,
1,
0,
1,
0,
1,
0,
1,
0,
0,
1
] | {
"intent": [
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
""
],
"price": [
-1,
-1,
-1,
-1,
-1,
-1,
-1,
-1,
-1,
-1,
-1
]
} | [
"hi i am interested in the watch.",
"I would like 150 for it, for retail it goes for much higher",
"how good is the condition",
"it is basically brand new",
"can you come a bit lower?",
"I can go 130",
"can you not come down 10 more?",
"120 sur",
"yeah 120 would be good",
"",
""
] | {
"Category": [
"electronics",
"electronics"
],
"Images": [
"electronics/6153457122_0.jpg",
"electronics/6153457122_0.jpg"
],
"Price": [
150,
150
],
"Description": [
"Here is a basically brand new Apple Watch Series 1 for sale!",
"Here is a basically brand new Apple Watch Series 1 for sale!,It looks great on anyone and it's big size makes it sound out even more.,It's very sleek and boasts the new cpu inside a slimmer body!"
],
"Title": [
"42mm Apple Watch Series 1 | Black | New!",
"42mm Apple Watch Series 1 | Black | New!"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $150.0.
hi i am interested in the watch.
I would like 150 for it, for retail it goes for much higher
how good is the condition
it is basically brand new
can you come a bit lower?
I can go 130
can you not come down 10 more?
120 sur
yeah 120 would be good
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | unknown |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
1368,
1800
]
} | [
1,
0,
1,
0,
1,
0,
1,
0,
1,
0,
1,
0,
0,
1
] | {
"intent": [
"intro",
"inquiry",
"inform",
"inquiry",
"inform",
"inquiry",
"init-price",
"counter-price",
"counter-price",
"counter-price",
"counter-price",
"unknown",
"offer",
"accept"
],
"price": [
-1,
-1,
-1,
-1,
-1,
-1,
1650,
1368,
1580,
1500,
1550,
-1,
1550,
-1
]
} | [
"Hello, glad you are interested in the townhouse. Are there any questions I can answer for you?",
"Yeah, I was wondering if the townhome came with any appliances?",
"All appliances are included - except washer and dryer.",
"Are there any rules on smoking? Or pets? ",
"Pets OK. They complete a family. I would say smoking outside is acceptable, but please be courteous and keep the grounds clean. ",
"I understand that. It seems like a pretty nice place. But without a washer and dryer available on the property, I was wondering if there may be some wiggle room price wise?",
"I feel we could go down to 1650. The savings could go towards purchasing your own washer/dryer unit.",
"1650 is a pretty good start, but I was thinking, since I had to purchase a new washer and dryer would could do something like 1368?",
"There are many benifits to this unit that I think you would find agreeable. We offer 24/7 maintenance, and a satisfaction guarantee. With all the townhouse has to offer you can see the value. Could we meet in the middle at 1580?",
"I do like the 24/7 maintenance, if you were able to do an even 1500 I would be happy to make this deal.",
"I can go as low $1550 ... and if we go ahead and lock that price in and start the application now we will waive the $30 application fee.",
"Agreed",
"",
""
] | {
"Category": [
"housing",
"housing"
],
"Images": [
"",
""
],
"Price": [
1800,
1800
],
"Description": [
"Beautiful 2 bed, 1.5 baths, approximately 1200 square- feet spacious townhouse, a 90 square feet lovely private atrium, and an attached 240 square feet garage in an excellent neighborhood in East Vallejo. A bi-level floor architecture for privacy. A private breezeway entry to your home. A large attached garage with your own laundry space. Cathedral ceiling through out the house. Fireplace in the living room. Master suite with a walk-in closet. Lots of skylights through out the house. Kitchen with full set of appliances and a large operable skylight. Floors with tiles and carpet. A bonus storage room and an entry closet. Enjoy the outdoor living inside your home with a private atrium! A spacious rear fenced in patio. Washer Dryer hook ups.,Cross street Tennessee St. East, across from Saint Catherine's Church.",
"Beautiful 2 bed, 1.5 baths, approximately 1200 square- feet spacious townhouse, a 90 square feet lovely private atrium, and an attached 240 square feet garage in an excellent neighborhood in East Vallejo. A bi-level floor architecture for privacy. A private breezeway entry to your home. A large attached garage with your own laundry space. Cathedral ceiling through out the house. Fireplace in the living room. Master suite with a walk-in closet. Lots of skylights through out the house. Kitchen with full set of appliances and a large operable skylight. Floors with tiles and carpet. A bonus storage room and an entry closet. Enjoy the outdoor living inside your home with a private atrium! A spacious rear fenced in patio. Washer Dryer hook ups.,Cross street Tennessee St. East, across from Saint Catherine's Church.,Please inform following info in your response, to speed up the process.,Your name, phone #, number of people in the household, family income and profession of applicants. We will send and process your application at no charge in that case. Applications processed on first come first serve basis."
],
"Title": [
"Beautiful Townhouse with Garage - Nice Area.",
"Beautiful Townhouse with Garage - Nice Area."
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $1800.0.
Hello, glad you are interested in the townhouse. Are there any questions I can answer for you?
Yeah, I was wondering if the townhome came with any appliances?
All appliances are included - except washer and dryer.
Are there any rules on smoking? Or pets?
Pets OK. They complete a family. I would say smoking outside is acceptable, but please be courteous and keep the grounds clean.
I understand that. It seems like a pretty nice place. But without a washer and dryer available on the property, I was wondering if there may be some wiggle room price wise?
I feel we could go down to 1650. The savings could go towards purchasing your own washer/dryer unit.
1650 is a pretty good start, but I was thinking, since I had to purchase a new washer and dryer would could do something like 1368?
There are many benifits to this unit that I think you would find agreeable. We offer 24/7 maintenance, and a satisfaction guarantee. With all the townhouse has to offer you can see the value. Could we meet in the middle at 1580?
I do like the 24/7 maintenance, if you were able to do an even 1500 I would be happy to make this deal.
I can go as low $1550 ... and if we go ahead and lock that price in and start the application now we will waive the $30 application fee.
Agreed
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | buyer |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
66,
110
]
} | [
0,
1,
0,
1,
0,
1,
0,
1,
0,
1,
0,
0,
1
] | {
"intent": [
"intro",
"init-price",
"unknown",
"inquiry",
"counter-price",
"vague-price",
"disagree",
"counter-price",
"counter-price",
"agree",
"unknown",
"offer",
"accept"
],
"price": [
-1,
110,
-1,
-1,
80,
-1,
-1,
90,
85,
85,
-1,
85,
-1
]
} | [
"Hello?",
"Hi! I'm selling this for just 110",
"I think I want to buy it, but I need a lower price",
"How much lower?",
"how about 80",
"That's too low. This is NEW and very hard to find. ",
"Yes but they also are not the safest to use and they are quite old",
"Fair point. How about 90",
"85 and its a done deal. I have cash in hand.",
"Okay pay 85 today and it's yours!",
"Thank you!",
"",
""
] | {
"Category": [
"electronics",
"electronics"
],
"Images": [
"",
""
],
"Price": [
110,
110
],
"Description": [
"I have NEW original, hard to find, Federal Pacific Electric ( FPE), also known as STAB-LOK, later also made by American Circuit Breaker and Challenger. These are NEW, original manufacturer, (OEM), breakers, not after market or refurbished (used and cleaned). I also have brand new original FPE sub panels and service panels of different types. I have more breakers of other sizes as well. I bought this equipment many years ago, before I retired and when Federal Pacific was Federal Pacific Electric and produced high grade equipment. FPE breakers later got a bad rap when after market breakers came in to the market.,Originally, Federal Pacific Electric ( FPE) was the only residential switching manufacturer using only copper, not aluminum, in their breakers and panels. This fact can be very important when installed near salt water, livestock or excessive moisture areas that can destroy aluminum.",
"I have NEW original, hard to find, Federal Pacific Electric ( FPE), also known as STAB-LOK, later also made by American Circuit Breaker and Challenger. These are NEW, original manufacturer, (OEM), breakers, not after market or refurbished (used and cleaned). I also have brand new original FPE sub panels and service panels of different types. I have more breakers of other sizes as well. I bought this equipment many years ago, before I retired and when Federal Pacific was Federal Pacific Electric and produced high grade equipment. FPE breakers later got a bad rap when after market breakers came in to the market.,Originally, Federal Pacific Electric ( FPE) was the only residential switching manufacturer using only copper, not aluminum, in their breakers and panels. This fact can be very important when installed near salt water, livestock or excessive moisture areas that can destroy aluminum.,These materials are BRAND NEW and have been in my stock for over thirty to forty years. If you have the need for FPE call me. I do not text.,Also, have good stock of NEW original Zinsco / sylvania breakers and panels, again (NOT AFTER MARKET),The 2P80 in picture is gone."
],
"Title": [
"Federal Pacific, ( FPE), stab-lok Circuit Breaker",
"Federal Pacific, ( FPE), stab-lok Circuit Breaker"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $110.0.
Hello?
Hi! I'm selling this for just 110
I think I want to buy it, but I need a lower price
How much lower?
how about 80
That's too low. This is NEW and very hard to find.
Yes but they also are not the safest to use and they are quite old
Fair point. How about 90
85 and its a done deal. I have cash in hand.
Okay pay 85 today and it's yours!
Thank you!
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | buyer |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
330,
550
]
} | [
0,
1,
0,
1,
0,
1,
0,
1,
0,
1,
0,
1,
0,
0,
1
] | {
"intent": [
"intro",
"unknown",
"inquiry",
"inform",
"inquiry",
"init-price",
"vague-price",
"counter-price",
"inquiry",
"inform",
"counter-price",
"counter-price",
"vague-price",
"offer",
"accept"
],
"price": [
-1,
-1,
-1,
-1,
-1,
600,
-1,
550,
-1,
-1,
400,
550,
-1,
400,
-1
]
} | [
"i am interested in your bike",
"Great it is for sale",
"will you be delivering it?",
"I sure will",
"and how much are you selling it for?",
"600",
"that is too high cant you come lower",
"My final offer is 550.",
"how good is the condition?",
"Mint and it looks like new; aircraft alluminum and size 56.",
"how about for 400?",
"Sorry but my wife won't let me go below $550.",
"and that is too high for me",
"",
""
] | {
"Category": [
"bike",
"bike"
],
"Images": [
"bike/6149123404_0.jpg",
"bike/6149123404_0.jpg"
],
"Price": [
550,
550
],
"Description": [
"This bike is in excellent condition and has been maintained regularly.. Aircraft aluminum frame with carbon fiber Leader forks made in Taiwan, size 56 lightly used if you have any questions feel free to call or text Brandon at",
"This bike is in excellent condition and has been maintained regularly.. Aircraft aluminum frame with carbon fiber Leader forks made in Taiwan, size 56 lightly used if you have any questions feel free to call or text Brandon at"
],
"Title": [
"Leader 725",
"Leader 725"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $550.0.
i am interested in your bike
Great it is for sale
will you be delivering it?
I sure will
and how much are you selling it for?
600
that is too high cant you come lower
My final offer is 550.
how good is the condition?
Mint and it looks like new; aircraft alluminum and size 56.
how about for 400?
Sorry but my wife won't let me go below $550.
and that is too high for me
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | buyer |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
380,
500
]
} | [
0,
0,
1
] | {
"intent": [
"",
"",
""
],
"price": [
-1,
-1,
-1
]
} | [
"",
"",
"I paid a lot more for the couch than this"
] | {
"Category": [
"furniture",
"furniture"
],
"Images": [
"furniture/6125276781_0.jpg",
"furniture/6125276781_0.jpg"
],
"Price": [
500,
500
],
"Description": [
"had these for a few years. moving and need to get rid of them. downsizing and they're too big for the new place.,1 - couch - 80 x 40 deep x 40\" high",
"had these for a few years. moving and need to get rid of them. downsizing and they're too big for the new place.,1 - couch - 80 x 40 deep x 40\" high,1 - love seat - 60 x 40 x40,2 - ottomans - 22x22 x 20 high"
],
"Title": [
"brown leather couch and loveseat and 2 matching ottomans",
"brown leather couch and loveseat and 2 matching ottomans"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $500.0.
I paid a lot more for the couch than this
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | unknown |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
73,
80
]
} | [
0,
1,
0,
1,
0,
1,
0,
1,
0,
1
] | {
"intent": [
"intro",
"disagree",
"init-price",
"counter-price",
"counter-price",
"inquiry",
"insist",
"counter-price",
"offer",
"accept"
],
"price": [
-1,
-1,
73,
80,
75,
-1,
75,
80,
80,
-1
]
} | [
"Hello what can you tell me about the stand? are there scratches on the glass?",
"Not on the glass. there is one on the right side of the unit on the wood. Not deep only 1 inch long.",
"I'll pay $73 for it.",
"I'm asking $80 because that takes into account the scratch and the fact it's 2 years old.",
"Can you bring it to me? if you can bring it to me I'll pay $75",
"Where are you. How far from Alameda (CA)?",
"I'm 10 miles away and willing to pay $75",
"10 miles isn't so bad, but how about I deliver it and you pay $80 since I have to pay for gas there and back.",
"",
""
] | {
"Category": [
"furniture",
"furniture"
],
"Images": [
"furniture/6133220337_0.jpg",
"furniture/6133220337_0.jpg"
],
"Price": [
80,
80
],
"Description": [
"# tv console, tv table, media table, media console, media consul, entertainment center, game center, television table, television console, television stand, alameda, birch effect",
"# tv console, tv table, media table, media console, media consul, entertainment center, game center, television table, television console, television stand, alameda, birch effect"
],
"Title": [
"IKEA TV STAND WITH FROSTED GLASS DOORS",
"IKEA TV STAND WITH FROSTED GLASS DOORS"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $80.0.
Hello what can you tell me about the stand? are there scratches on the glass?
Not on the glass. there is one on the right side of the unit on the wood. Not deep only 1 inch long.
I'll pay $73 for it.
I'm asking $80 because that takes into account the scratch and the fact it's 2 years old.
Can you bring it to me? if you can bring it to me I'll pay $75
Where are you. How far from Alameda (CA)?
I'm 10 miles away and willing to pay $75
10 miles isn't so bad, but how about I deliver it and you pay $80 since I have to pay for gas there and back.
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | seller |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
836,
1100
]
} | [
1,
0,
1
] | {
"intent": [
"",
"",
""
],
"price": [
-1,
-1,
-1
]
} | [
"How much is your best offer?",
"",
""
] | {
"Category": [
"bike",
"bike"
],
"Images": [
"bike/6144881640_0.jpg",
"bike/6144881640_0.jpg"
],
"Price": [
1100,
1100
],
"Description": [
"Trek Equinox 7 WSD Womens Triathlon Bike,Product Description,*Frame: ZR 9000 Alloy,*Fork: Bontrager Race Lite TT, carbon",
"Trek Equinox 7 WSD Womens Triathlon Bike,Product Description,*Frame: ZR 9000 Alloy,*Fork: Bontrager Race Lite TT, carbon,*Saddle: Bontrager Race FIT TT,*Seat Post: Bontrager Race Lite TTX,*Handlebars: Bontrager Race Bullhorn,*Tires: Bontrager Select, 700x23c,This is my wife's bike bought from the dealer in Jacksonville Florida and moved cross county with us. This bike only has about 50 miles on it"
],
"Title": [
"Trek Equinox woman's triathlon bike",
"Trek Equinox woman's triathlon bike"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $1100.0.
How much is your best offer?
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | unknown |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
57,
95
]
} | [
1,
0,
1,
0,
1,
0,
1,
0,
1,
0,
1,
0,
1,
0,
1,
0,
1,
0
] | {
"intent": [
"intro",
"unknown",
"init-price",
"inquiry",
"disagree",
"inquiry",
"inform",
"counter-price",
"counter-price",
"counter-price",
"insist",
"disagree",
"counter-price",
"counter-price",
"insist",
"disagree",
"unknown",
"quit"
],
"price": [
-1,
-1,
95,
-1,
-1,
-1,
-1,
30,
75,
45,
75,
-1,
75,
65,
75,
-1,
-1,
-1
]
} | [
"Are you interested in the bookcase?",
"I think I am interested",
"I'm asking $95 or best offer",
"Do you have a return policy?",
"No, this is a private resell item. You can check it out at Yesteryears Marketplace Antique Store if you like",
"oh, ok, do you offer a warranty of any sort?",
"Cash and carry. You pickup.",
"I'm thinking $30 is a fair price",
"It cost me $30 to bring it here. I can't accept anything less than $75.",
"Well, $45 means you still get a pretty good profit. How about that?",
"This is a 6' tall, oak wook bookcase with 2 glass doors and shelves on the interior. $75, take it or leave it.",
"I know it is a great bookcase but it isn't new. It is used. That should make it cheaper...",
"I've dropped the price by $20 so if you want it it will cost you $75, if you don't I need to check someone else who wants to pay my original asking price. Do you want it at $75?",
"That is just way more then I am willing pay. I can go up to $65",
"Sorry, no deal. I cannot accept anything less than $75 and I'm not willing to go any lower.",
"ok, I can't go any higher",
"Alright. Have a nice day!",
""
] | {
"Category": [
"furniture",
"furniture"
],
"Images": [
"furniture/6129633227_0.jpg",
"furniture/6129633227_0.jpg"
],
"Price": [
95,
95
],
"Description": [
"Wow! Here is a beautiful oak wood bookcase or cabinet with glass doors from estate sale. It is approx six feet tall, made of oak wood, has two glass doors, and shelves on the interior.",
"Wow! Here is a beautiful oak wood bookcase or cabinet with glass doors from estate sale. It is approx six feet tall, made of oak wood, has two glass doors, and shelves on the interior.,This fabulous wood cabinet can be seen at Yesteryears Marketplace Antique Store located at 433 Georgia Street, Vallejo, CA 94590. Phone,for more informtion and directions"
],
"Title": [
"BEAUTIFUL OAK WOOD GLASS FRONT BOOKCASE",
"BEAUTIFUL OAK WOOD GLASS FRONT BOOKCASE"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $95.0.
Are you interested in the bookcase?
I think I am interested
I'm asking $95 or best offer
Do you have a return policy?
No, this is a private resell item. You can check it out at Yesteryears Marketplace Antique Store if you like
oh, ok, do you offer a warranty of any sort?
Cash and carry. You pickup.
I'm thinking $30 is a fair price
It cost me $30 to bring it here. I can't accept anything less than $75.
Well, $45 means you still get a pretty good profit. How about that?
This is a 6' tall, oak wook bookcase with 2 glass doors and shelves on the interior. $75, take it or leave it.
I know it is a great bookcase but it isn't new. It is used. That should make it cheaper...
I've dropped the price by $20 so if you want it it will cost you $75, if you don't I need to check someone else who wants to pay my original asking price. Do you want it at $75?
That is just way more then I am willing pay. I can go up to $65
Sorry, no deal. I cannot accept anything less than $75 and I'm not willing to go any lower.
ok, I can't go any higher
Alright. Have a nice day!
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | buyer |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
45,
49
]
} | [
0,
0,
1,
0,
1
] | {
"intent": [
"",
"",
"",
"",
""
],
"price": [
-1,
-1,
-1,
-1,
-1
]
} | [
"What is your lowest best offer?",
"",
"The starting price is $49, but I can come down to 40",
"okay",
""
] | {
"Category": [
"furniture",
"furniture"
],
"Images": [
"furniture/6125885625_0.jpg",
"furniture/6125885625_0.jpg"
],
"Price": [
49,
49
],
"Description": [
"Wow! Here is a wonderful antique wood wash stand with bowl and pitcher from Vallejo Estate. 3 pc Total. The wash stand is made of wood, it has a drawer on the bottom and a hole on top for the bowl. Also included is a ceramic wash bowl and pitcher for water.",
"Wow! Here is a wonderful antique wood wash stand with bowl and pitcher from Vallejo Estate. 3 pc Total. The wash stand is made of wood, it has a drawer on the bottom and a hole on top for the bowl. Also included is a ceramic wash bowl and pitcher for water.,This fabulous antique wash stand with bowl & pitcher can be seen at Yesteryears Marketplace Antique Store located at 433 Georgia Street, Vallejo, CA 94590. Phone,for more informtion and directions"
],
"Title": [
"Antique Wash Stand w Bowl and Pitcher",
"Antique Wash Stand w Bowl and Pitcher"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $49.0.
What is your lowest best offer?
The starting price is $49, but I can come down to 40
okay
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | unknown |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
120,
200
]
} | [
0,
1,
0,
1,
0,
1,
0,
1,
0,
1,
0
] | {
"intent": [
"init-price",
"unknown",
"init-price",
"counter-price",
"unknown",
"disagree",
"counter-price",
"counter-price",
"agree",
"offer",
"accept"
],
"price": [
-1,
-1,
110,
175,
-1,
-1,
120,
150,
150,
150,
-1
]
} | [
"This is nice but don't you think 200 is a bit much?",
"It's a antique and in perfect condition. ",
"Yes but that's too high. I'd give you 110 for this. ",
"That's almost half of what I'm offering. I can let it go for 175.",
"I could go to a thrift shop and get one for that price",
"This is one of a kind. You won't find a vintage mirror like this in a thrift shop",
"One of a kind? Are you sure abut that? If so how about 120?",
"I welcome you to find another one like it. I certainly doubt you would find it for any less than 150",
"150 I'll do. ",
"",
""
] | {
"Category": [
"furniture",
"furniture"
],
"Images": [
"furniture/6139162108_0.jpg",
"furniture/6139162108_0.jpg"
],
"Price": [
200,
200
],
"Description": [
"Really pretty 39\"x 33\" mirror. I got from the original owner almost a year ago and have yet to put it up in my place. It's a gorgeous piece but I don't have anywhere to put it.",
"Really pretty 39\"x 33\" mirror. I got from the original owner almost a year ago and have yet to put it up in my place. It's a gorgeous piece but I don't have anywhere to put it."
],
"Title": [
"Vintage/Antique Mirror",
"Vintage/Antique Mirror"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $200.0.
This is nice but don't you think 200 is a bit much?
It's a antique and in perfect condition.
Yes but that's too high. I'd give you 110 for this.
That's almost half of what I'm offering. I can let it go for 175.
I could go to a thrift shop and get one for that price
This is one of a kind. You won't find a vintage mirror like this in a thrift shop
One of a kind? Are you sure abut that? If so how about 120?
I welcome you to find another one like it. I certainly doubt you would find it for any less than 150
150 I'll do.
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | buyer |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
72,
95
]
} | [
1,
1,
0
] | {
"intent": [
"",
"",
""
],
"price": [
-1,
-1,
-1
]
} | [
"hi i am selling a black IKEA dining room table.",
"",
""
] | {
"Category": [
"furniture",
"furniture"
],
"Images": [
"furniture/6144844982_0.jpg",
"furniture/6144844982_0.jpg"
],
"Price": [
95,
95
],
"Description": [
"Black IKEA dining room table. It is 68 inches long and it extends to an extra 32 inches. Comes with 4 chairs included with it. Minor scratches on the table. Must pick up, I live around Lake Merritt, Oakland.",
"Black IKEA dining room table. It is 68 inches long and it extends to an extra 32 inches. Comes with 4 chairs included with it. Minor scratches on the table. Must pick up, I live around Lake Merritt, Oakland.,Email if interested!"
],
"Title": [
"IKEA Black Extending Dining Room Table + 4 chairs",
"IKEA Black Extending Dining Room Table + 4 chairs"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $95.0.
hi i am selling a black IKEA dining room table.
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | unknown |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
92,
100
]
} | [
0,
1,
0,
1,
0,
1,
0,
1,
0,
0,
1
] | {
"intent": [
"intro",
"unknown",
"inquiry",
"inform",
"inquiry",
"init-price",
"counter-price",
"unknown",
"unknown",
"offer",
"accept"
],
"price": [
-1,
-1,
-1,
-1,
-1,
100,
-1,
-1,
-1,
100,
-1
]
} | [
"hi i am interested in the apeaker",
"Glad to hear it! ",
"can i get some details about it",
"Sure! Its in great condition! It lasts up to 10 hours on a single charge! The sound is very rich and there is the bass sounds great. Its also bluetooth. You can even use it as a speakerphone with your phone",
"that sounds great! how about the price?",
"I am currently asking $100 not including shipping! ",
"how about 100 with shipping?",
"I think that sounds fair to me!",
"great deal",
"",
""
] | {
"Category": [
"electronics",
"electronics"
],
"Images": [
"electronics/6146582866_0.jpg",
"electronics/6146582866_0.jpg"
],
"Price": [
100,
100
],
"Description": [
"Hi, I'm selling a Sony Portable Bluetooth Speaker (Black).,Powerful, portable sound with 30 Watts of digital amplification, Full-range, stereo speakers deliver rich, full sound, Subwoofer with passive radiator delivers added bass emphasis, Stream music wirelessly w/Bluetooth& NFC connections",
"Hi, I'm selling a Sony Portable Bluetooth Speaker (Black).,Powerful, portable sound with 30 Watts of digital amplification, Full-range, stereo speakers deliver rich, full sound, Subwoofer with passive radiator delivers added bass emphasis, Stream music wirelessly w/Bluetooth& NFC connections,Enjoy up to 10 hours of battery life with a single charge,Easily take calls using the speakerphone functionality, Single USB (1.5A output) for smartphone/tablet charging"
],
"Title": [
"Sony Portable Bluetooth Speaker (Black)",
"Sony Portable Bluetooth Speaker (Black)"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $100.0.
hi i am interested in the apeaker
Glad to hear it!
can i get some details about it
Sure! Its in great condition! It lasts up to 10 hours on a single charge! The sound is very rich and there is the bass sounds great. Its also bluetooth. You can even use it as a speakerphone with your phone
that sounds great! how about the price?
I am currently asking $100 not including shipping!
how about 100 with shipping?
I think that sounds fair to me!
great deal
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | seller |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
99,
165
]
} | [
0,
1,
0,
1,
0,
1,
0,
1,
0,
1,
1
] | {
"intent": [
"offer",
"unknown",
"unknown",
"unknown",
"insist",
"counter-price",
"unknown",
"agree",
"agree",
"agree",
"accept"
],
"price": [
200,
-1,
-1,
-1,
200,
220,
-1,
200,
200,
200,
-1
]
} | [
"",
"I was hoping for something higher",
"Best I can do",
"I'll throw in the 1000 watt amp with it for 275 total",
"200 it is",
"I'll do 220 for the subs or 275 for both ",
"Ok, 275",
"Can you enter a new offer? Or is the $200 stuck there?",
"200 is my final ",
"Alright, I'll take 200 for the subs. But now you're robbing me",
""
] | {
"Category": [
"electronics",
"electronics"
],
"Images": [
"electronics/6139042559_0.jpg",
"electronics/6139042559_0.jpg"
],
"Price": [
165,
165
],
"Description": [
"Selling my kicker vr subs in factory ported enclosure. Wired at one ohm. These subs hit hard. Price is FIRM. NOTHING LESS THAN 165. NO TRADES. Also have a 1000 watt rms amp (sonido mask) for 135 bucks extra.",
"Selling my kicker vr subs in factory ported enclosure. Wired at one ohm. These subs hit hard. Price is FIRM. NOTHING LESS THAN 165. NO TRADES. Also have a 1000 watt rms amp (sonido mask) for 135 bucks extra."
],
"Title": [
"KICKER COMP VR 12\" IN KICKER ENCLOSURE",
"KICKER COMP VR 12\" IN KICKER ENCLOSURE"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $165.0.
I was hoping for something higher
Best I can do
I'll throw in the 1000 watt amp with it for 275 total
200 it is
I'll do 220 for the subs or 275 for both
Ok, 275
Can you enter a new offer? Or is the $200 stuck there?
200 is my final
Alright, I'll take 200 for the subs. But now you're robbing me
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | seller |
{
"Bottomline": [
"None",
"None"
],
"Role": [
"buyer",
"seller"
],
"Target": [
21,
35
]
} | [
0,
1,
0,
0,
1,
0,
1,
0,
1,
0,
1
] | {
"intent": [
"intro",
"init-price",
"unknown",
"offer",
"inquiry",
"inform",
"inquiry",
"inform",
"unknown",
"unknown",
"accept"
],
"price": [
-1,
35,
-1,
35,
-1,
-1,
-1,
-1,
-1,
-1,
-1
]
} | [
"Hi how much is the bike",
"It's $35",
"ok that seems fair i'd like to buy it",
"",
"You're ok with the price then I take it?",
"yes its way cheaper than a new one would be and it looks like its in good condition",
"Yes, it's in great condition. When will you be picking it up?",
"i could pick it up tomorrow morning, any time between 8 am and 12 pm. we live about 20 minutes away i think",
"That works great. Thanks. I'll accept the offer now.",
"great thanks",
""
] | {
"Category": [
"bike",
"bike"
],
"Images": [
"bike/6151920751_0.jpg",
"bike/6151920751_0.jpg"
],
"Price": [
35,
35
],
"Description": [
"This sturdy kid's bike frame with low standover height will have your little tike riding all over the neighborhood in easy comfort. Comfy sidewalk grips and saddle keep your little one feeling fine, and safety features like a rear fender and fully encased chain will keep you feeling the same. I also have a matching purple helmet if you are interested at no charge.",
"This sturdy kid's bike frame with low standover height will have your little tike riding all over the neighborhood in easy comfort. Comfy sidewalk grips and saddle keep your little one feeling fine, and safety features like a rear fender and fully encased chain will keep you feeling the same. I also have a matching purple helmet if you are interested at no charge."
],
"Title": [
"Girls Schwinn 16\" Sparrow Bicycle",
"Girls Schwinn 16\" Sparrow Bicycle"
]
} | best deal | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was ${{items["Price"][0]}}.
{{utterance | join("\n\n")}}
Question: Which party got the better deal? Choose from:
- {{answer_choices[0]}}
- {{answer_choices[1]}}
- {{answer_choices[2]}}
- {{answer_choices[3]}}
Answer:
|||
{% set nonzero_price = [] %}
{% for p in dialogue_acts["price"] %}
{% if p>-1 %}
{{nonzero_price.append(p) or ""}}
{% endif %}
{% endfor %}
{% set final_price = -1 %}
{% if nonzero_price | length != 0 %}{% set final_price = nonzero_price[-1] %}{% endif %}
{% if final_price == -1 %}
{{answer_choices[3]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) == ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[2]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) < ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[0]}}
{% elif ((final_price - agent_info["Target"][0]) | abs) > ((final_price - agent_info["Target"][1]) | abs) %}
{{answer_choices[1]}}
{% endif %} | The following conversation is a negotiation on craigslist. The first speaker is the buyer, and the second speaker is the seller. The listed price was $35.0.
Hi how much is the bike
It's $35
ok that seems fair i'd like to buy it
You're ok with the price then I take it?
yes its way cheaper than a new one would be and it looks like its in good condition
Yes, it's in great condition. When will you be picking it up?
i could pick it up tomorrow morning, any time between 8 am and 12 pm. we live about 20 minutes away i think
That works great. Thanks. I'll accept the offer now.
great thanks
Question: Which party got the better deal? Choose from:
- buyer
- seller
- neither
- unknown
Answer: | seller |