humblesoftwaredev.wordpress.com humblesoftwaredev.wordpress.com

humblesoftwaredev.wordpress.com

humblesoftwaredev | Thoughts related to software development

Thoughts related to software development

http://humblesoftwaredev.wordpress.com/

WEBSITE DETAILS
SEO
PAGES
SIMILAR SITES

TRAFFIC RANK FOR HUMBLESOFTWAREDEV.WORDPRESS.COM

TODAY'S RATING

>1,000,000

TRAFFIC RANK - AVERAGE PER MONTH

BEST MONTH

December

AVERAGE PER DAY Of THE WEEK

HIGHEST TRAFFIC ON

Friday

TRAFFIC BY CITY

CUSTOMER REVIEWS

Average Rating: 4.3 out of 5 with 14 reviews
5 star
9
4 star
2
3 star
2
2 star
0
1 star
1

Hey there! Start your review of humblesoftwaredev.wordpress.com

AVERAGE USER RATING

Write a Review

WEBSITE PREVIEW

Desktop Preview Tablet Preview Mobile Preview

LOAD TIME

0.6 seconds

FAVICON PREVIEW

  • humblesoftwaredev.wordpress.com

    16x16

  • humblesoftwaredev.wordpress.com

    32x32

CONTACTS AT HUMBLESOFTWAREDEV.WORDPRESS.COM

Login

TO VIEW CONTACTS

Remove Contacts

FOR PRIVACY ISSUES

CONTENT

SCORE

6.2

PAGE TITLE
humblesoftwaredev | Thoughts related to software development | humblesoftwaredev.wordpress.com Reviews
<META>
DESCRIPTION
Thoughts related to software development
<META>
KEYWORDS
1 skip to content
2 search for
3 humblesoftwaredev
4 menu
5 my plan
6 classification
7 colorization
8 convolution
9 inception
10 machine learning
CONTENT
Page content here
KEYWORDS ON
PAGE
skip to content,search for,humblesoftwaredev,menu,my plan,classification,colorization,convolution,inception,machine learning,neural network,tensorflow,leave a comment,define model,create session,initialize variables,here,checkpoint,javascript,marshal,ruby
SERVER
nginx
CONTENT-TYPE
utf-8
GOOGLE PREVIEW

humblesoftwaredev | Thoughts related to software development | humblesoftwaredev.wordpress.com Reviews

https://humblesoftwaredev.wordpress.com

Thoughts related to software development

INTERNAL PAGES

humblesoftwaredev.wordpress.com humblesoftwaredev.wordpress.com
1

Retraining Inception-v3 neural network for a new task with Tensorflow | humblesoftwaredev

https://humblesoftwaredev.wordpress.com/2017/01/01/image-colorization-cnn-project

Thoughts related to software development. Retraining Inception-v3 neural network for a new task with Tensorflow. This post is a work log for taking a pre-trained Inception-v3 network and repurpose it to colorize a grey scale image. The idea is based on this paper. Prepare the dataset: Convert training images from JPEG to HSV values. The input is V and target is HS. Train a scene classification network using the Places365 data. Use a pre-trained Inception-v3 image classification model. Log][20170108] Real...

2

Educational Neural Network visualization in a browser | humblesoftwaredev

https://humblesoftwaredev.wordpress.com/2016/12/30/educational-neural-network-visualization-in-a-browser

Thoughts related to software development. Educational Neural Network visualization in a browser. This would make a neat tool for lectures. Http:/ playground.tensorflow.org/. December 30, 2016. Leave a Reply Cancel reply. Enter your comment here. Fill in your details below or click an icon to log in:. Address never made public). You are commenting using your WordPress.com account. ( Log Out. You are commenting using your Twitter account. ( Log Out. Notify me of new comments via email.

3

Sharing session data between Rails and Nodejs | humblesoftwaredev

https://humblesoftwaredev.wordpress.com/2016/08/03/sharing-session-data-between-rails-and-nodejs

Thoughts related to software development. Sharing session data between Rails and Nodejs. In a previous post I wrote about securing my NodeJS service by enforcing authentication using a session token. Now there was another problem: the node service was vulnerable to identity spoofing because the client tells the service who he is, and the service will always trust him. This is bad. After a few hours of experimentation and looking around, I learned a few things:. Marshal is version sensitive. August 3, 2016.

4

dk1027 | humblesoftwaredev

https://humblesoftwaredev.wordpress.com/author/dk1027dk1027

Thoughts related to software development. Https:/ humblesoftwaredev.wordpress.com. Practical things I have learned from doing deep learning. In an earlier project I used parts of a pre-trained large scale classification network to train a CNN for automatic colorization. Here are a few lessons I have learned to make myself more efficient. Prefer many short development iterations over long cycles. Try small models. Try lots of models. Make yourself 10x more efficient by writing reusable code. Sometimes the...

5

Save and restore TensorFlow session | humblesoftwaredev

https://humblesoftwaredev.wordpress.com/2016/12/07/save-and-restore-tensorflow-session

Thoughts related to software development. Save and restore TensorFlow session. This blog post is written when TensorFlow was version r0.12. Stackoverflow and the TensorFlow documentations are pretty clear that Saver is what you want, but it is less clear how to use it in the code. It boils down to this:. If restoring, call saver.restore, passing in the session and path to the directory containing checkpoint files. When saving, call saver.save, passing in the session and the path to the save directory.

UPGRADE TO PREMIUM TO VIEW 2 MORE

TOTAL PAGES IN THIS WEBSITE

7

LINKS TO THIS WEBSITE

autumnator.wordpress.com autumnator.wordpress.com

Complex test scenario example to truly evaluate test frameworks? | autumnator

https://autumnator.wordpress.com/2015/06/06/complex-test-scenario-example-to-truly-evaluate-test-frameworks

Various musings on automation and more…. Complex test scenario example to truly evaluate test frameworks? What the f* k to test? Device screen sizes for testing mobile and tablet views of a site and user agent tools →. Leave a Reply Cancel reply. Enter your comment here. Fill in your details below or click an icon to log in:. Address never made public). You are commenting using your WordPress.com account. ( Log Out. You are commenting using your Twitter account. ( Log Out. Follow Blog via Email. A Seleni...

autumnator.wordpress.com autumnator.wordpress.com

What the f**k to test? | autumnator

https://autumnator.wordpress.com/2015/02/23/what-the-fk-to-test

Various musings on automation and more…. What the f* k to test? Was reading my emails and some blog posts today and came across these:. Or do we actually have something like that already? If so, let me know. If not, anyone interested in helping build such a site/service? It would be a site that randomly decides to give you the tester a tip on what to test for your site/application/system (in general terms that are not specific to your site/application/system). Leave a Reply Cancel reply. Working with inn...

autumnator.wordpress.com autumnator.wordpress.com

Integrating AutoIt, Sikuli, and other tools with Selenium when running tests in Selenium Grid | autumnator

https://autumnator.wordpress.com/2015/01/22/integrating-autoit-sikuli-and-other-tools-with-selenium-when-running-tests-in-selenium-grid

Various musings on automation and more…. Integrating AutoIt, Sikuli, and other tools with Selenium when running tests in Selenium Grid. A true integration for tools like AutoIt, Sikuli, etc. with Selenium would be when they are able to run under Selenium Grid configuration just like Selenium. That would probably first require that they can run over WebDriver API, JSONWireProtocol as with AutoItDriverServer. Https:/ gist.github.com/daluu/3b4746f6b672c49f7e8f. Of all the various ways in the sample gist, I ...

autumnator.wordpress.com autumnator.wordpress.com

iOS mobile testing tips | autumnator

https://autumnator.wordpress.com/2015/06/06/ios-mobile-testing-tips

Various musings on automation and more…. IOS mobile testing tips. These tips may be found elsewhere on the web already, I’m just archiving this info I put together a while back into a single repository in the form of a blog post. Tips for both iOS devices and iOS simulator. Set up a javascript bookmarklet to Firebug Lite. So that you can invoke the lite version of Firebug in mobile Safari on actual device or simulator. See Martin Kool’s article. Reset Content and Settings…. View Source of a page. Will ad...

autumnator.wordpress.com autumnator.wordpress.com

Tips on mobile and tablet device testing, shared usage, and remote testing outside corporate network | autumnator

https://autumnator.wordpress.com/2015/06/06/tips-on-mobile-and-tablet-device-testing-shared-usage-and-remote-testing-outside-corporate-network

Various musings on automation and more…. Tips on mobile and tablet device testing, shared usage, and remote testing outside corporate network. Here’s some useful tips for development and QA testing of websites or apps on mobile/tablet devices, if you didn’t already know. Tip on wireless network login (accounts) when sharing between people. This tip is for those who use a corporate wireless network that has user accounts per person without a common shared account (or guest access to internal resources).

autumnator.wordpress.com autumnator.wordpress.com

Debugging mobile and tablet websites on iOS on Windows or locally on device | autumnator

https://autumnator.wordpress.com/2014/06/13/debugging-mobile-and-tablet-websites-on-ios-on-windows-or-locally-on-device

Various musings on automation and more…. Debugging mobile and tablet websites on iOS on Windows or locally on device. I was doing some research and came across these useful tools one can use to debug and analyze mobile/tablet versions of websites/web applications in the case one doesn’t have a Mac handy to do the remote Safari debugging. Remote Safari debugging on Windows. You can try option of using Telerik AppBuilder. App just to use for debugging mobile Safari on your device. I gave them a try and the...

autumnator.wordpress.com autumnator.wordpress.com

Device screen sizes for testing mobile and tablet views of a site and user agent tools | autumnator

https://autumnator.wordpress.com/2015/06/06/device-screen-sizes-for-testing-mobile-and-tablet-views-of-a-site-and-user-agent-tools

Various musings on automation and more…. Device screen sizes for testing mobile and tablet views of a site and user agent tools. These tips may be found elsewhere on the web already, I’m just archiving this info I put together a while back into a single repository in the form of a blog post. Table quick reference for device screen sizes. Screen Size (width x height, in portrait view, landscape = swapped values). Old iPhones up to iPhone 4S. IPad (any model so far). Window Resizer – Chrome Web Store.

autumnator.wordpress.com autumnator.wordpress.com

Chrome version upgrade can break Chrome extensions? | autumnator

https://autumnator.wordpress.com/2015/01/28/chrome-version-upgrade-can-break-chrome-extensions

Various musings on automation and more…. Chrome version upgrade can break Chrome extensions? This is a short blog post today:. Who would have thought this, but some recent Chrome version upgrade can break the UI of your Chrome extension (by changing extension popup window size and font sizes). I only found out after reading a user review. For reference to the particular issue: https:/ code.google.com/p/autosmsclients/issues/detail? What the f* k to test? Leave a Reply Cancel reply. Enter your comment here.

UPGRADE TO PREMIUM TO VIEW 1 MORE

TOTAL LINKS TO THIS WEBSITE

9

OTHER SITES

humblesmug.com humblesmug.com

HumbleSmug - Tshirts | T shirt Design

Your cart is empty. Your wishlist is empty. Your cart is empty. Your cart is empty. Your cart is empty. Your wishlist is empty. Ndash; $. Product added to wishlist. BAD HOMBRE Short-Sleeve Unisex T-Shirt. BAD HOMBRES FOR HIM. T SHIRTS FOR HIM. Ndash; $. BAD HOMBRE Short-Sleeve Unisex T-Shirt. BAD HOMBRES FOR HIM. T SHIRTS FOR HIM. PLEASE SELECT A COLOR AND A SIZE. Ndash; $. Ndash; $. Product added to wishlist. BAD HOMBRE Short-Sleeve Unisex T-Shirt. BAD HOMBRES FOR HIM. T SHIRTS FOR HIM. Ndash; $. Ndash;...

humblesmug.me humblesmug.me

Ignorant monkey child | aspiring internet troll and conspiracy theorist

Aspiring internet troll and conspiracy theorist. November 19, 2016. Don’t buy Best Buy warranty. Best Buy is shit. It’s Canada’s typical retailer for all things electronics. A grandeur version of the Source. Here’s the thing, though. Everybody who works at your local Best Buy is a nobody. They’re like the standard customer service worker at any other store—Walmart, Shoppers Drug Mart—except the quality of customer service at Best Buy is even worse. November 15, 2016. Since BDS targets oppressive policy a...

humblesoft.com humblesoft.com

トップ/ ハンブルソフト

ESP8266 Weather Station Color.

humblesoftball.com humblesoftball.com

Home

Don't forget to turn in your Gift Baskets on Friday, April 13th. Fun Day will be Saturday, April 14th. Festivities begin at 9:00am. Registration is now closed. Season starts March 20th. Good luck to everyone! Forever in our hearts. A Look back in time. A Look back in time. Don't forget to turn in your Gift Baskets on Friday, April 13th. Fun Day will be Saturday, April 14th. Festivities begin at 9:00am. Registration is now closed. Season starts March 20th. Good luck to everyone! Forever in our hearts.

humblesoftware.com humblesoftware.com

humble software development - home

Humble software development provides software design and development services and maintains several open source projects. Services include JavaScript/HTML5 application development, Canvas/SVG dynamic data visualization, and search/information retrieval. Contact. Us or look around to learn more. Dynamic Interactive HTML5 Visualizations. Envision.js is a library for building fast, dynamic, interactive HTML5 visualizations. A modern graphing library for Canvas written in JavaScript. FF, Chrome, IE6.

humblesoftwaredev.wordpress.com humblesoftwaredev.wordpress.com

humblesoftwaredev | Thoughts related to software development

Thoughts related to software development. Image colorization CNN using TensorFlow and Inception-v3. Log] [20161231] A convolution neural network that takes grey scale images as input, and predict the colors base on this paper. Prepare the dataset: Convert training images from JPEG to HSV values. The input is V and target is HS. Train a scene classification network using the Places365 data. Use a pre-trained classification model. Compute MSE between the predicted HS values and the actual HS values. Is alr...

humblesoldier.tumblr.com humblesoldier.tumblr.com

THE SOLDIER

Ldquo;No.” Emilya said, sounding very sure of herself. “It’s a planet filled with death, and shadows. Not a place for anyone who isn’t looking to be killed upon arrival.” She shrugged, there wasn’t anything she could do about her people being slaughtered, there wasn’t anything anyone could do about it, unfortunately. “What about you? Rdquo; Emilya asked, turning towards him. “Will you ever go back? Jul 16 at 03:27 pm. Ldquo;I’ve never heard this song before! What the hell is it? Jul 12 at 05:07 pm. Ldquo...

humblesolutionsllc.com humblesolutionsllc.com

Humble Solutions LLC

Greening up the World, one seed at a time! Is strategically located in the heart of Oregon's Willamette Valley, known as the ". Grass Seed capital of the World. The Willamette Valley is the world leader in the production of cool season grass seed. Using a highly technical and scientific approach to producing and marketing grass seed,. Is on the leading edge in the Global business of selling grass seed that thrives around the world. Call today for a Quote! Page 1 of 1. Production Trials Sichuan Province.

humblesons.org humblesons.org

Humble Sons Bike Co.

We Don’t Make Bikes,. Humble Sons Bike CO. Every Kid Deserves a Bike. Is so much to a kid. It’s joy. It’s freedom. It’s adventure. It’s good times with friends. It becomes central to kid’s life teaching responsibility, the importance of safety, and the awesome responsibility. Of independence and self-reliance. We’re here to make all of that happen. We give brand new bikes, helmets, and locks to kids that need them. We think every kid should have a bike. How Many Smiles Can You Build?

humblesorkester.se humblesorkester.se

Webbplatsen hostas av - Griffel.se

Webbplatsen är inte aktiv. Tel: 0470 - 72 30 40 - Fax: 0470 - 72 30 50 - E-post: support@griffel.se.

humblesoul.com humblesoul.com

Humblesoul | The Official News Source for Humble Soul

The Official News Source for Humble Soul.