Pixel illumination are the features, the input data, in CNN models.
CNN helps figure out what kernels, filters, and features to detect all the way backwards using a process called back propagation.
Back propagation is Neural Networks' way to update weights as in Gradient Descent. Back propagation starts from the correct answer, update the weights backwards layer by layer until the final classifications become more correct.
Don't have to see the entire shape. Should be able to recognize partial shapes, obstructed views. For example, a half hidden cow is still a cow.
Should be able to recognize different styles. Van Gough's portrait in post-impressionist style is still Van Gough. It does not change the identity or the classification of the image.
Your byte size news and commentary from Silicon Valley the land of startup vanities, coding, learn-to-code and unicorn billionaire stories.
Ad
Tuesday, June 26, 2018
Monday, June 25, 2018
Udacity nanodegree syllabus program length and projects
Computer Vision
+ 3-Month Program
+ 3 Reviewed Projects
+ 3 Courses
Robotics Software Engineer
+ 4-Month Term
+ 4 Reviewed Projects
+ 6 Courses
Intro to Self-Driving Cars
+ 4-Month Program
+ 7 Reviewed Projects
+ 7 Courses
Flying Car
+ 3-Month Term
+ 4 Reviewed Projects
+ 4 Courses
Caution most new udacity nanodegrees require multiple terms. You may have to spend $2000 per program.
+ 3-Month Program
+ 3 Reviewed Projects
+ 3 Courses
Robotics Software Engineer
+ 4-Month Term
+ 4 Reviewed Projects
+ 6 Courses
Intro to Self-Driving Cars
+ 4-Month Program
+ 7 Reviewed Projects
+ 7 Courses
Flying Car
+ 3-Month Term
+ 4 Reviewed Projects
+ 4 Courses
Caution most new udacity nanodegrees require multiple terms. You may have to spend $2000 per program.
Thursday, June 21, 2018
Udacity Launches Blockchain Nanodegree
Wow Udacity really knows how to capitalize on the hype: just announced the blockchain nanodegree!
Visit Uadacity blockchain developer nanodegree now.
What to watch out for? Udacity tends to be experimental. Being in the first class may mean better price tag, but potentially extremely hard-to-follow incoherent content. I definitely had the issue with Machine Learning nanodegree when it first came out.
It does seem like one of those startup prototypes: standard format, basic content, with some industry professionals supporting the course including: Coinbase, factom, madhive.
Definitely worth it if your company pays the bill. Otherwise, wait and see better results.
![]() |
Udacity Blockchain Developer |
What to watch out for? Udacity tends to be experimental. Being in the first class may mean better price tag, but potentially extremely hard-to-follow incoherent content. I definitely had the issue with Machine Learning nanodegree when it first came out.
It does seem like one of those startup prototypes: standard format, basic content, with some industry professionals supporting the course including: Coinbase, factom, madhive.
Definitely worth it if your company pays the bill. Otherwise, wait and see better results.
Sunday, June 17, 2018
XMLHttpRequest Basics API GET
response : variableName.status // returns 200, variableName.statusText // returns "OK"
request:
open(method,url,async)
send(string)
var xmlhttp = new XMLHttpRequest();
xmlhttp.open('GET', 'process.php', true);
xmlhttp.send();
Response
-------
GET POST PUT DELETE
(Create Retrieve Update Delete CRUD)
- Get - retrieves info from the specified source
- POST- sends new information to the specified source
- Put - updates existing info of the specified source
- Delete - removes existing info from the specified source
Status
- 1xx server working on the request
- 2xx okay
- 3xx have to do something else first
- 4xx error
- 5xx server problem
JavaScript Array Basics
- JavaScript arrays are not truly multi dimensional they are more like arrays of arrays . Like matrix
- Methods
- Join()
- Split()
- Reverse() takes no element and reverse in place
- Sort() takes no argument and sort in place
- Concat()
- Slice()
- Splice() with bang. First arg is start pt and # of elements
- Slice()
- Push() with bang
- Pop() with bang
- Unshift() operates on beginning of stack
- Shift() operates at beginning of stack
- forEach()
- Map()
- Filter()
- Every() if all passes return true else false
- Some() if some passes return true else false
Git and Github basics
Git is a VCS version control system. Git repository is distributed and "backed-up" "copied" by every repo user's git system.
If the repo is centralized, we still risk the entire repo in the centralized server if that server fails. In distributed version controls, each repo retains the entire copy and the entire history, can be pushed back up into the cloud and restore the entire repo.
$git remote -v
$heroku run rake assets:precompile
git add <list o files>
git add --all
git add *.txt
git add directory/*.txt
git add directory/
git add "*.txt" (add all txt files of the entire project)
#compare diff between local and remote
git diff
# compare what's in the staged repo (after $add .) versus unstaged
git diff --staged
#unset changes in stage
git reset <filename>
## git head is the last commit on the current branch
#restoring file to the previous state
git checkout -- filename
git checkout -- fileone filetwo
# add and commit at the same time
# caveat does not add new files, still need to add it separately
git commit -a -m "comments here"
# undoing a commit
# move to the commit one before the current head (previous head)
# changes to go back to staging area
git reset --soft HEAD^
# or
git commit --amend -m "adding to the previous commit and also modify the message"
# or
#completely remove the previous commit
$git reset --hard HEAD^
# or completely remove the previous two commits
$git reset --hard HEAD^^
#sharing git
#dealing with remote repository
# git does not handle access control, it is usually is handled by GitHub or BitBucket
## check remote
$git remote -v
herokugit@heroku.com:whispering-springs-5104.git (fetch)
herokugit@heroku.com:whispering-springs-5104.git (push)
originhttps://github.com/theoptips/taskcloud.git (fetch)
originhttps://github.com/theoptips/taskcloud.git (push)
##managing remotes
$git remote add <name> <address>
$git remote rm <name>
## heroku create will automatically add a remote called "heroku"
git push <remote name> <branch name>
git push heroku master
## branching
$git checkout master
$git merge <branchname>
# git fast forward
## branching
$git checkout master
$git merge <branchname>
# git fast forward
# delete a git branch
$git branch -d <branchname>
# create a branch and checkout
$git checkout -b <branchname>
## always git pull from remote to ensure that there are no new changes
## if branch and master are at different timelines, i.e. not all new changes are committed
## in the branch that is about to be merged, then git will open an VI to view the changes
## git merge recursively and also create a node in the log about the merge
## merge commit
## if remote is ahead
## then have to pull
## which merge origin/master, the remote, with the local master
## then need to git push to add the new changes
## scenario: same file, conflicts
## git pull, syncs repo, pulls down all the changes, and try to merge
## discover a conflict
## need to edit the file, diff, edit manually to fix it,
## git commit -a
## vi editor will give a detailed message
#list all remote branches
$git branch -r
# help check branch histories versions
$git remote show <remotename>
#delete a remote branch ONLY
$git push <remotename> :<remote branch name>
$git branch -d <localbranchname>
# to delete LOCAL branch forcefully
$git branch -D <localbranchname>
Command Line basics
$less
space commands take us to the end of an document
$cat can take two files separated by a space
nano full screen program. Mainly used to edit a file
Move is very powerful for moving files around and renaming them. Move is also very powerful for moving directories.
$mv within the same directory
mv filename1.txt filename2.txt is just like rename
if instead say
mv filename.txt documents/ it is just to move doc to new directory
dot is a short cut for the current directory
cp can leave the original file in place, just like copy.
cp hello.txt hi.txt
Can't just copy a directory, but need to copy recursively,
$cp -r sourcedirectoryname destination directoryname
$rm command is very dangerous via command console
make directory $mkdir
cannot recurse, creating nested directory lil document/notes/console
mkdir -p documents/notes/console/part_1
this chaining works for nested directories
Create User Managing Users
console command:
print out the name of the user
$whoami
add a new user
$sudo adducer user_name
switch user
$su user_name
switch back to the previous user
$su previous_name
or can use exit which stops the previous su command
$exit
User permission
rwx read write execute
ugo user group other
drwxrwxrwx d for directory, 9 permissions in ufo order
chmod change mode also changes permission
e.g.
$ chmod o+w hello.txt
$ chmod o-w hello.txt
$ chmod +x hello.txt (add execution for everyone)
Octal Notation:
01234567
10 11 12 13
one eight
one eight one one
one eight two one
r = 4 w = 2 x =1
first digit = u
2nd digit = g
3rd digit = o
rwx = 7 --- = 0
r-x = 5, -w- = 2
e.g. chmod 751 hello.txt
File Owner Ship
$sudo chown username filename.txt
will be prompted for password
$cat filename.txt
$nano filename.txt
but with nano not able to write, only view after changing owner
CHANGING GROUP NAME
$sudo chown username:groupname filename.txt
$su username
CAN NOW MODIFY because username is the same as the owner. Before when looking at ano with a the old owner which no longer have write permission
$nano filename.txt
$sudo
a super user command, run as root super user without having to know the password etc, sudo grants permission to other users, will requires own password not the root user password,
$!! runs the previous command
$sudo !!
Process
When running nano which is a program, creates a process, which is a running instance of the program. There can be multiple instances.
task manager for processes, resources consumed like memory or CPU, process has an ID, owner,
$top
question mark key brings up help function
e.g. sort the processes
capital F allows sorting
q to quit the program
Another program , will list out all the processes, represent running processes
$ps
(can see bash, and ps) ps is itself a program that creates a process, only in the current session
$ps aux
all process for user x, mean all processes for all users. it is not an interactive program. good for knowing what's running and what is the process ID. PID
Getting specific with piping, grep takes some input search for pattern only return lines with the pattern on it. This will also show up in its own ps search.
$ps aux | grep "top"
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...