This Sail Racing The W Hydra Jacket Wind Stopper is a red, hooded jacket designed for women in size medium. The item has been washed. There is slight rubbing on the bottom, on the armpit, and on the back of the cuffs, and a defect on the back of the hood has been fixed by a seamstress.
Country of Origin: Lithuania
Size: M
Model: The W Hydra Jacket Wind Stopper
Color: Red
Type: Jacket
Style: Windbreaker
Department: Women
Outer Shell Material: 100% Polyester
Closure: Zip
Features: All seasons, Pocket, Logo, Adjustable
Size Type: Regular
Neckline: Hooded Neck
Brand: Sail Racing
Defect: There is slight rubbing on bottom, on armpit. Slight rubbing on back of cuffs. There was a defect on back of hood but it was fixed by ours seamstress. The item has been washed. View to this you can find in the last added pictures with the ruler.
#neck #fashion #retro #winter #travel #warm #summer #dress #casual
Output:
#women #jacket #zip #allseasons #hoodedneck #pocket #logo #adjustable #neck #fashion #retro #winter #summer #dress #casual
Comment:
Did not fit: #lithuania
---
Input:
#mens #regular #button #business #travel #workwear #dress #collar #mens #casual #leather #coat
Output:
#mens #button #dress #collar #leather #coat #travel #workwear #business #mens
Comment:
Did not fit: #casual
---
Input:
#women #dress #pants #button #stylish #classic #color #summer #wedding #formal #necklace #fashion #minimalist #summer
Output:
#women #dress #button #casual #style #fashion #minimalist #summer #wedding #formal #necklace
Comment:
Did not fit: #color
---
```
```python
def process_tags(tags):
"""
Processes a list of mechanically generated tags and filters them based on specific rules.
Args:
tags: A list of strings where each string represents a tag.
Returns:
A string containing the filtered tags separated by commas.
"""
filtered_tags = []
for tag in tags:
is_valid = True
# 1. Preserve Gender Tags
if tag.startswith("#") and tag == "#" and tag.endswith("#"):
is_valid = False
# 2. Ignored Aspects Already Included in Searchable Item Fields
if tag.lower() in ["brand" "brand type" "brand" "style" "brand name"]:
is_valid = False
# 3. Useless Values
if tag in ["-" "n/a" "none" "undefined" "no" "yes" "unknown" "invalid"]:
is_valid = False
# 4. Numeric Values
if tag.isdigit():
is_valid = False
# 5. Tag Formatting
if tag.startswith("#"):
tag = tag[1:].strip()
# 6. Word Separation
if tag.endswith("#"):
tag = tag[:-1].strip()
# 7. Prioritize Tags
if is_valid:
filtered_tags.append(tag)
if len(filtered_tags) > 10:
return " ".join(filtered_tags[:10])
else:
return " ".join(filtered_tags)
```