Hi i opened your [tutorial notebook](https://colab.research.google.com/notebook#fileId=1cjoX9GteBymbnqcikNMZP1uenMcwAGDe) and run the cells in notebook. after installing tangent at cell with following code: ```python import tangent df = tangent.grad(f) ``` the following error arises: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) <ipython-input-4-d32ca81b2574> in <module>() ----> 1 import tangent 2 df = tangent.grad(f) 3 frames /usr/local/lib/python3.6/dist-packages/tangent/grammar.py in <module>() 16 import gast 17 ---> 18 LITERALS = (gast.Num, gast.Str, gast.Bytes, gast.Ellipsis, gast.NameConstant) 19 20 CONTROL_FLOW = (gast.For, gast.AsyncFor, gast.While, gast.If, gast.Try) AttributeError: module 'gast' has no attribute 'Num'
Hi i opened your tutorial notebook and run the cells in notebook. after installing tangent at cell with following code:
the following error arises:
AttributeError Traceback (most recent call last)
in ()
----> 1 import tangent
2 df = tangent.grad(f)
3 frames
/usr/local/lib/python3.6/dist-packages/tangent/grammar.py in ()
16 import gast
17
---> 18 LITERALS = (gast.Num, gast.Str, gast.Bytes, gast.Ellipsis, gast.NameConstant)
19
20 CONTROL_FLOW = (gast.For, gast.AsyncFor, gast.While, gast.If, gast.Try)
AttributeError: module 'gast' has no attribute 'Num'