CompML / PRTS

Unofficial Python implementation of "Precision and Recall for Time Series".
https://papers.nips.cc/paper/2018/file/8f468c873a32bb0619eaeb2050ba45d1-Paper.pdf
Apache License 2.0
38 stars 4 forks source link

Write Docstring of functions in PRTS/prts/__init__.py #28

Closed ryoherisson closed 3 years ago

ryoherisson commented 3 years ago

Summary

Write docstring in each function in PRTS/prts/init.py .

Format:

"""Description
  Args:
      args1: type
          Description
      args2: type
          Description
  Returns:
      type: Description
"""

Goal

Write docstrings of ts_precision and ts_recall

Todo

Write docstring of

Deadline

2020 / 12 / 30

Parent issue

If the parent issue exists, post a link here.

References

If there are any reference links, they are described here.

Notes

Example:

"""The function of selecting the gamma value according to the parameters.
  Args:
      gamma: str
          - 'one': the value 1
          - 'reciprocal';: a reciprocal of the overlap
          - 'udf_gamma': user defined gamma
      overlap: int
          overlap between real and pred
  Returns:
      float: the selected gamma
"""