René's URL Explorer Experiment


Title: I am very eager to your reply · Issue #2 · YJango/tensorflow_basic_tutorial · GitHub

Open Graph Title: I am very eager to your reply · Issue #2 · YJango/tensorflow_basic_tutorial

X Title: I am very eager to your reply · Issue #2 · YJango/tensorflow_basic_tutorial

Description: from tensorflow.examples.tutorials.mnist import input_data import tensorflow as tf def weight_varible(shape): initial =tf.truncated_normal(shape,stddev=0.1) return tf.Variable(initial) def bias_variable(shape): initial=tf.constant(0.1,sh...

Open Graph Description: from tensorflow.examples.tutorials.mnist import input_data import tensorflow as tf def weight_varible(shape): initial =tf.truncated_normal(shape,stddev=0.1) return tf.Variable(initial) def bias_var...

X Description: from tensorflow.examples.tutorials.mnist import input_data import tensorflow as tf def weight_varible(shape): initial =tf.truncated_normal(shape,stddev=0.1) return tf.Variable(initial) def bias_var...

Opengraph URL: https://github.com/YJango/tensorflow_basic_tutorial/issues/2

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"I am very eager to your reply","articleBody":"from tensorflow.examples.tutorials.mnist import input_data\r\n\r\nimport tensorflow as tf\r\n\r\n\r\ndef weight_varible(shape):\r\n\tinitial =tf.truncated_normal(shape,stddev=0.1)\r\n\treturn tf.Variable(initial)\r\n\r\n\r\ndef bias_variable(shape):\r\n\tinitial=tf.constant(0.1,shape=shape)\r\n\treturn tf.Variable(initial)\r\n\r\ndef conv2d(x,W):\r\n\treturn tf.nn.conv2d(x,W,strides=[1,1,1,1],padding='SAME')\r\n\r\ndef max_pool_2x2(x):\r\n\treturn tf.nn.max_pool(x,ksize=[1,2,2,1],strides=[1,2,2,1],padding='SAME')\r\n\r\nmnist=input_data.read_data_sets('MNIST_data',one_hot=True)\r\nsess=tf.InteractiveSession()\r\n\r\n################ input,for 2 models i use the same input   ################3\r\nx=tf.placeholder(tf.float32,[None,784])\r\nx_image=tf.reshape(x,[-1,28,28,1])\r\n\r\n######################### the first model ########################################\r\nW_conv1=weight_varible([5,5,1,32])\r\nb_conv1=weight_varible([32])\r\n\r\nh_conv1=tf.nn.relu(conv2d(x_image,W_conv1)+b_conv1)\r\nh_pool1=max_pool_2x2(h_conv1)\r\n\r\nW_conv2=weight_varible([5,5,32,64])\r\nb_conv2=weight_varible([64])\r\n\r\nh_conv2=tf.nn.relu(conv2d(h_pool1,W_conv2)+b_conv2)\r\nh_pool2=max_pool_2x2(h_conv2)\r\n\r\nW_fc1=weight_varible([7*7*64,1024])\r\nb_fc1=weight_varible([1024])\r\n\r\nh_pool2_flat=tf.reshape(h_pool2,[-1,7*7*64])\r\nh_fc1=tf.nn.relu(tf.matmul(h_pool2_flat,W_fc1)+b_fc1)\r\n\r\nkeep_prob=tf.placeholder(tf.float32)\r\nh_fc1_drop=tf.nn.dropout(h_fc1,keep_prob)\r\n\r\nW_fc2=weight_varible([1024,10])\r\nb_fc2=weight_varible([10])\r\n\r\ny_conv=tf.nn.softmax(tf.matmul(h_fc1_drop,W_fc2)+b_fc2)\r\ny_=tf.placeholder(tf.float32,[None,10])\r\n\r\ncross_entropy=tf.reduce_sum(y_*tf.log(y_conv))\r\ntrain_step=tf.train.AdamOptimizer(1e-4).minimize(cross_entropy)\r\ncorrect_prediction=tf.equal(tf.argmax(y_conv,1),tf.argmax(y_,1))\r\naccuracy=tf.reduce_mean(tf.cast(correct_prediction,tf.float32))\r\nsess.run(tf.initialize_all_variables())\r\n\r\n##################   the second parallel model,i use the same input as the first  ###############################\r\n\r\nW2_conv1=weight_varible([5,5,1,32])\r\nb2_conv1=weight_varible([32])\r\n\r\n# x=tf.placeholder(tf.float32,[None,784])\r\n# x_image=tf.reshape(x,[-1,28,28,1])\r\n\r\nh2_conv1=tf.nn.relu(conv2d(x_image,W2_conv1)+b2_conv1)\r\nh2_pool1=max_pool_2x2(h2_conv1)\r\n\r\nW2_conv2=weight_varible([5,5,32,64])\r\nb2_conv2=weight_varible([64])\r\n\r\nh2_conv2=tf.nn.relu(conv2d(h2_pool1,W2_conv2)+b2_conv2)\r\nh2_pool2=max_pool_2x2(h2_conv2)\r\n\r\nW2_fc1=weight_varible([7*7*64,1024])\r\nb2_fc1=weight_varible([1024])\r\n\r\nh2_pool2_flat=tf.reshape(h2_pool2,[-1,7*7*64])\r\nh2_fc1=tf.nn.relu(tf.matmul(h2_pool2_flat,W2_fc1)+b2_fc1)\r\n\r\nkeep_prob=tf.placeholder(tf.float32)\r\nh2_fc1_drop=tf.nn.dropout(h2_fc1,keep_prob)\r\n\r\nW2_fc2=weight_varible([1024,10])\r\nb2_fc2=weight_varible([10])\r\n\r\ny2_=tf.placeholder(tf.float32,[None,10])\r\ny2_conv=tf.nn.softmax(tf.matmul(h2_fc1_drop,W2_fc2)+b2_fc2)\r\n\r\n\r\ncross_entropy=tf.reduce_sum(y2_*tf.log(y2_conv))\r\ntrain_step=tf.train.AdamOptimizer(1e-4).minimize(cross_entropy)\r\ncorrect_prediction=tf.equal(tf.argmax(y2_conv,1),tf.argmax(y2_,1))\r\naccuracy=tf.reduce_mean(tf.cast(correct_prediction,tf.float32))\r\nsess.run(tf.initialize_all_variables())\r\n\r\n##########################################################\r\n\r\nfor i in range(20000):\r\n\tbatch=mnist.train.next_batch(50)\r\n\tif i%100==0:\r\n\t\ttrain_accuracy=accuracy.eval(feed_dict={x:batch[0],y_:batch[1],keep_prob:1})\r\n\t\tprint('step %d,train accuracy %g'%(i,train_accuracy))\r\n\ttrain_step.run([y_conv,y2_conv],feed_dict={x:batch[0],y_:batch[1],keep_prob:0.5})\r\nprint('test accuracy %g'%accuracy.eval(feed_dict={x:mnist.test.images,y_:mnist.test.labels,keep_prob:1.0}))","author":{"url":"https://github.com/FranNetty","@type":"Person","name":"FranNetty"},"datePublished":"2017-06-01T02:27:32.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":0},"url":"https://github.com/2/tensorflow_basic_tutorial/issues/2"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:f40c47db-46a1-82a6-c451-440189341bf5
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idE784:3F5DD2:5A4965:77FBF8:6A5804C5
html-safe-nonceb5d4ff841b29c2a4b4eb3465eb5cff7b896c786c4c4973ecb503b9fcc45e0ef8
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJFNzg0OjNGNUREMjo1QTQ5NjU6NzdGQkY4OjZBNTgwNEM1IiwidmlzaXRvcl9pZCI6IjQ1OTY4NDM4NjczNjcwMTU2MjEiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmac012aa0afb892c588f7979efb8712655a4a1277af881b48380db86c3016c75e66
hovercard-subject-tagissue:232748597
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/YJango/tensorflow_basic_tutorial/2/issue_layout
twitter:imagehttps://opengraph.githubassets.com/50f117562e66621bfa323ca1bac32d085302c8c9554a8cc2a25fe9b6127c7f71/YJango/tensorflow_basic_tutorial/issues/2
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/50f117562e66621bfa323ca1bac32d085302c8c9554a8cc2a25fe9b6127c7f71/YJango/tensorflow_basic_tutorial/issues/2
og:image:altfrom tensorflow.examples.tutorials.mnist import input_data import tensorflow as tf def weight_varible(shape): initial =tf.truncated_normal(shape,stddev=0.1) return tf.Variable(initial) def bias_var...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernameFranNetty
hostnamegithub.com
expected-hostnamegithub.com
None49c8c15fabcbf356d607a90ca115c13b273e42ff8b74155de050fd229a9b0121
turbo-cache-controlno-preview
go-importgithub.com/YJango/tensorflow_basic_tutorial git https://github.com/YJango/tensorflow_basic_tutorial.git
octolytics-dimension-user_id16974308
octolytics-dimension-user_loginYJango
octolytics-dimension-repository_id74321809
octolytics-dimension-repository_nwoYJango/tensorflow_basic_tutorial
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id74321809
octolytics-dimension-repository_network_root_nwoYJango/tensorflow_basic_tutorial
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release3fb1f684e7a833eb1b2d01d39875a2b52cb4fe9b
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/YJango/tensorflow_basic_tutorial/issues/2#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FYJango%2Ftensorflow_basic_tutorial%2Fissues%2F2
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/open-source/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/open-source/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/enterprise/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FYJango%2Ftensorflow_basic_tutorial%2Fissues%2F2
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=YJango%2Ftensorflow_basic_tutorial
Reloadhttps://github.com/YJango/tensorflow_basic_tutorial/issues/2
Reloadhttps://github.com/YJango/tensorflow_basic_tutorial/issues/2
Reloadhttps://github.com/YJango/tensorflow_basic_tutorial/issues/2
YJango https://github.com/YJango
tensorflow_basic_tutorialhttps://github.com/YJango/tensorflow_basic_tutorial
Notifications https://github.com/login?return_to=%2FYJango%2Ftensorflow_basic_tutorial
Fork 140 https://github.com/login?return_to=%2FYJango%2Ftensorflow_basic_tutorial
Star 267 https://github.com/login?return_to=%2FYJango%2Ftensorflow_basic_tutorial
Code https://github.com/YJango/tensorflow_basic_tutorial
Issues 1 https://github.com/YJango/tensorflow_basic_tutorial/issues
Pull requests 0 https://github.com/YJango/tensorflow_basic_tutorial/pulls
Actions https://github.com/YJango/tensorflow_basic_tutorial/actions
Projects https://github.com/YJango/tensorflow_basic_tutorial/projects
Security and quality 0 https://github.com/YJango/tensorflow_basic_tutorial/security
Insights https://github.com/YJango/tensorflow_basic_tutorial/pulse
Code https://github.com/YJango/tensorflow_basic_tutorial
Issues https://github.com/YJango/tensorflow_basic_tutorial/issues
Pull requests https://github.com/YJango/tensorflow_basic_tutorial/pulls
Actions https://github.com/YJango/tensorflow_basic_tutorial/actions
Projects https://github.com/YJango/tensorflow_basic_tutorial/projects
Security and quality https://github.com/YJango/tensorflow_basic_tutorial/security
Insights https://github.com/YJango/tensorflow_basic_tutorial/pulse
I am very eager to your replyhttps://github.com/YJango/tensorflow_basic_tutorial/issues/2#top
https://github.com/FranNetty
FranNettyhttps://github.com/FranNetty
on Jun 1, 2017https://github.com/YJango/tensorflow_basic_tutorial/issues/2#issue-232748597
#3https://github.com/YJango/tensorflow_basic_tutorial/pull/3
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.