ner-span / potato /simulator /__main__.py
davidjurgens's picture
Deploy Potato demo: Potato — Span Labeling (NER)
d2b8632 verified
Raw
History Blame Contribute Delete
202 Bytes
"""
Entry point for running the simulator as a module.
Usage:
python -m potato.simulator --server http://localhost:8000 --users 10
"""
from .cli import main
if __name__ == "__main__":
main()