Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
GagaLey
/
MoR
like
1
Question Answering
Transformers
Safetensors
snap-stanford/stark
Inference Endpoints
arxiv:
2502.20317
License:
mit
Model card
Files
Files and versions
Community
1
Train
Deploy
Use this model
main
MoR
/
Planning
/
utils.py
GagaLey
framework
7bf4b88
3 days ago
raw
Copy download link
history
blame
contribute
delete
208 Bytes
def
remove_inner_single_quotes
(
match
):
content =
match
.group(
1
)
# Get the string inside ['']
cleaned_content = content.replace(
"'"
,
""
)
# Remove inner single quotes
return
f"['
{cleaned_content}
"