- Google's state of art image classifier
- Pre-trained
- Open sourced
- Trained on 1.2 million images
- Training took 2 weeks
Your byte size news and commentary from Silicon Valley the land of startup vanities, coding, learn-to-code and unicorn billionaire stories.
Ad
Wednesday, October 11, 2017
Inception - Tensorflow Wiki
Sunday, October 8, 2017
Time your python script
- Time it in the terminal
time file_name.py
- Time it in your script
import time
start = time.time()
fun()
print 'It took', time.time()-start, 'seconds.'
Source:StackOverflow - https://stackoverflow.com/questions/6786990/find-out-time-it-took-for-a-python-script-to-complete-execution
You can now open Jupyter Notebook in Coursera! - this week in online learning
Saturday, October 7, 2017
Augmented Reality in Painting of Mona Lisa by Leonardo Da Vinci
Leonardo Da Vinci carefully studied the human anatomy of smiles and experimented with new painting techniques to create life like realistic smile of Mona Lisa. The smile is so illusive that it only is picked up by peripheral vision.
Thursday, October 5, 2017
Python Interview List Slicing
a = [1,2,3,4]
a[0:3]
-> [1, 2, 3]
a[0:3:2] # slice with increment of 2
->[1, 3]
a[::-1] # reverse slicing
->[4, 3, 2, 1]
t=(1,2,3,4,5) #slicing tuples
t[0:4]
->(1, 2, 3, 4)
t=(1,2,3,4,5)
sliceObj = slice(1,3)
t[sliceObj]
->(2, 3)
t[:]
-> returns a full copy of the list
Friday, September 22, 2017
Preview of Flying Car Nanodegree Program from Udacity
Udacity's Flying Car Nanodegree trailer featuring Sebastian Thrun, KittyHawk flying drones, flying smart cars and more.
Host an HTML website on Github in 5 minutes HD
Web development with Github in 5 minutes. Build your personal portfolio today.
Subscribe to:
Posts (Atom)
React UI, UI UX, Reactstrap React Bootstrap
React UI MATERIAL Install yarn add @material-ui/icons Reactstrap FORMS. Controlled Forms. Uncontrolled Forms. Columns, grid
-
The bogus request from P2PU to hunt for HTML tags in real life has yielded a lot of good thoughts. My first impression was that this is stup...
-
Can hack schools solve Silicon Valley's talent crunch? The truth about coding bootcamps and the students left behind http://t.co/xXNfqN...
-
This review is updated continuously throughout the program. Yay I just joined the Udacity Nanodegree for Digital Marketing! I am such an Uda...