This repo contains code to mirror other repos. It also contains the code that is getting mirrored.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

15 行
237 B

  1. from typing import Optional, Tuple
  2. class RuleOptions:
  3. keep_all_tokens: bool
  4. expand1: bool
  5. priority: int
  6. template_source: Optional[str]
  7. empty_indices: Tuple[bool, ...]
  8. class Symbol:
  9. name: str
  10. is_term: bool