Closed zqwerty closed 2 years ago
Hi @zqwerty, we have not publicly released any code yet that renders or parses that format. The idea for the data/code release was to use a Lisp-like format to keep parsing and rendering as simple as possible.
Thank you for your quick response!
I've read the relevant issues and READMEs. The annotation of the program is in the lispress format, which can be parsed through
parse_lispress
and transformed to aProgram
object throughlispress_to_program
. However, how can I get the string that represents the function calls directly as in the paper (e.g.,findEvent(EventSpec(start=DateTimeSpec(month=feb, day=30)))
)?Thanks!