fold icon indicating copy to clipboard operation
fold copied to clipboard

Deep learning with dynamic computation graphs in TensorFlow

Results 58 fold issues
Sort by recently updated
recently updated
newest added

Installing tensorflow-fold in python alongside tensorflow-gpu 1.10.1 results in the following error traceback: ``` --------------------------------------------------------------------------- NotFoundError Traceback (most recent call last) in () 3 import tensorflow as tf 4 sess...

Would it be possible to write an algorithm like NEAT which evolves the topology of a neural network in Fold? From my understanding, Fold does not support dynamic computation graphs...

How can I print the fine grained predictions for the test / dev set after the training is done? > sess.run(metrics, compiler.build_feed_dict(test_trees)) prints the accuracies. But I want the actual...

Hi, I'm trying to implement the [attention mechanism](https://arxiv.org/abs/1701.01811) on tree-structured neural networks, such as TreeLSTM or TreeGRU. Since we want to attend to the most informative nodes in the tree,...

I am using td.OneOf to set up terminal condition for recursion, which means I will implement two different blocks based on whether I get empty list or not. td.OneOf(lambda pair:...

How to build child-sum LSTM Tree using tensorflow fold? For now [example ](https://github.com/tensorflow/fold/blob/master/tensorflow_fold/g3doc/sentiment.ipynb)sentiment analysis receives binary constituency tree. But I want to apply with example to input non-binary dependency based...

As what I found above, I want to get the latest version of fold. But whenever I use bazel 0.5.4 or 0.8.1, I always got this error that I have...

I followed this tutorial to build tensorflow fold from source for MacOS : https://github.com/tensorflow/fold/blob/master/tensorflow_fold/g3doc/sources.md After finished building and installing the wheel, I got this error: ``` >>> import tensorflow_fold python(61500,0x7fffc8f303c0)...

There might be several spelling errors, replace 'rasie' in func_name to 'raise'.

I got a problem recently, describe briefly as follow: ```python def xxx(ss): word = [1 for _ in range(ss)] return word c = td.Composition(name="ccc") with c.scope(): aa = c.input b...