Buy this Domain

Community Discussions

Explore the latest discussions and community conversations related to this domain.

TF Eagle info?

Main Post:

Found out I am going to TF Eagle next month. Anybody there now who I can message for info about what to expect?

Top Comment: Left TF Eagle on the 31st of July. You can text me if you have questions

Forum: r/OperationLonestar

Dopas most recent info about tf I personally learned a lot ...

Main Post: Dopas most recent info about tf I personally learned a lot ...

Forum: r/TwistedFateMains

tensorflow: trouble capturing output from tf.logging.info in terminal output

Main Post:

i ve been building a python command line app to explore google's tensorflow image classification -- make it easy to download loads of images, auto-sort them, use them to retrain a classifier, which in turn makes for better sorting, retraining, etc. one huge issue, for which i have an ugly workaround, is trouble capturing, specifically, the final test accuracy. (see https://github.com/tensorflow/tensorflow/issues/3047) i wrote up a long version of my workaround at https://github.com/mariochampion/roboflow/issues/3 and would love any suggestions or pointers for the better way of not tweaking someone else's file, but capturing its output properly. thanks!

Top Comment: anyone? anyone? bueller?? i am all alone in this... ; )

Forum: r/learnmachinelearning

Having trouble with Marketplace.tf

Main Post:

Now, I would have made a ticket explaining all of this rather than going on the TF2 Subreddit. But it requires me to paste in the order ID and I'm unable to order.

I am a bit new to the TF2 Economy/trade community and I was psyched to see I can simply buy items for a very cheap price to buy hats (rather than use the steam market or mann co. store). My trading/market was disabled because I recently reset my steam guard. Around 10 or more minutes after my trading is enabled, I felt it was now safe to add my credit card (My mom's card, I'm only 14.) to my account. I verified it and everything, the 2 small purchases that I used to verify are still pending. I try to buy 44 ref for $4.40 in USD, but I get a red message saying "Unfortunately, it seems this order has failed to go through. The reason given is: Failed to create authorization.

You have not been charged. If you see a pending transaction on your account, you can safely ignore it; it will disappear soon.

Please refresh the page and try again."

Now, there was a post about this on the same subreddit a few years ago, but I felt it was outdated and it didn't really help me find my solution. I kept checking to see it work every 10 minutes, then I just made myself more worried thinking I did get charged, but I checked the bank account and no purchases were made. The only solution I can think of is wait 24 hours for the 2 verification transactions to stop pending, maybe it is and I just didn't read carefully. I've been looking forward to this for 2 weeks (because my trading was disabled for that long) and I hope I can find my solution quickly.

Thanks!

Top Comment: I'm using a gift card and it gives me this error message, even though I've used it multiple times on marketplace.tf this is the error message: We are unable to authenticate your payment method. Please choose a different payment method and try again.

Forum: r/tf2

trouble capturing retrain.py's tf.logging.info() in terminal

Main Post:

i ve been building a python command line app to explore google's tensorflow image classification -- make it easy to download loads of images, auto-sort them, use them to retrain a classifier, which in turn makes for better sorting, retraining, etc.

one huge issue, for which i have an ugly workaround, is trouble capturing, specifically, the final test accuracy. (see https://github.com/tensorflow/tensorflow/issues/3047)

i wrote up a long version of my workaround at https://github.com/mariochampion/roboflow/issues/3 and would love any suggestions or pointers for the better way of not tweaking someone else's file, but capturing its output properly.

thanks!

Top Comment:

in case someone googles this later, i just spent 5 or 6 hours twiddling different versions of stdout / stdin / communicate() in subprocess.Popen()

finally to discover a google groups post noting that tensorflow's logging function tf.logging.info()

prints to stderr not stdout, and so the ability to capture it as a simple as three character change to:

training_results = Popen(cmds,shell=False,stderr=PIPE,bufsize=1,executable="python")
for line in iter(training_results.stderr.readline, b''):
print line
if line.startswith("INFO:tensorflow:Final test accuracy"):
tf_final_acc = line
training_results.wait() # wait for the subprocess to exit

and then using the tf_final_acc as needed.

hope this helps someone!

Forum: r/tensorflow