liyi

Results 13 comments of liyi

@matt-gardner when I do sbt console, it complains: [warn] :::::::::::::::::::::::::::::::::::::::::::::: [warn] :: UNRESOLVED DEPENDENCIES :: [warn] :::::::::::::::::::::::::::::::::::::::::::::: [warn] :: com.clearnlp#clearnlp;2.0.3-allenai: not found [warn] :::::::::::::::::::::::::::::::::::::::::::::: [warn] [warn] Note: Unresolved dependencies path:...

@matt-gardner after update, the dependency solved, but another issue is: [warn] Credentials file C:\Users\liyi1\.bintray\.credentials does not exist [info] Compiling 1 protobuf files to E:\active_project\deep_qa_experiments\target\scala-2.11\src_managed\main\compiled_protobuf [info] Compiling schema E:\active_project\deep_qa_experiments\src\main\protobuf\message.proto protoc-jar: protoc...

@matt-gardner So nice to you, I use python3.5 in my environment, resulting to this error. After fix it, import com.mattg.util.FileUtil is a another project in https://github.com/matt-gardner/util? So I can't import...

@matt-gardner can run it now. Thanks all the way.

@dagarcia-nvidia I think continuous_train_and_eval is not a good way to train model faster, what I do now is train model only with gpu, and make another running parallely eval the...

Is there any update or ideas ? I also want to train a model with multiple gpu. It seem @dennybritz is busy with other stuffs.

@davidecaroselli @wolfshow face the same problems. How do you smart gays solve the problem? much thanks

Testing use tf.make_template directly like: def my_trail(x, share_variable_name): var1 = tf.get_variable(share_variable_name, shape=[]) return tf.reduce_sum(x) * var1 template_my = tf.make_template("template_my", my_trail, share_variable_name="my_v") y = tf.placeholder(tf.float32, [None]) z = tf.placeholder(tf.float32, [None]) a_y...

I found calling trial with templatemethod twice, will generate two different template method.( call tf.make_template twice), So this is different. But now I 'm wondering the usage of templatemethod. And...