create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
| import * as tf from "@tensorflow/tfjs" | |
| import "@tensorflow/tfjs-node" | |
| import iris from "./iris.json" | |
| import irisTesting from "./iris-testing.json" | |
| // convert/setup our data | |
| const trainingData = tf.tensor2d(iris.map(item => [ | |
| item.sepal_length, item.sepal_width, item.petal_length, item.petal_width, | |
| ])) | |
| const outputData = tf.tensor2d(iris.map(item => [ |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
| { | |
| "extends": "airbnb/base", | |
| "plugins": [ | |
| "react" | |
| ], | |
| "env": { | |
| "node": true, | |
| "jasmine": true, | |
| }, | |
| "rules": { |
####Crear una rama y directamente hacer checkout en ella
git checkout -b myfeature develop
####Merge especial
git merge --no-ff myfeature
####Eliminar una rama
git branch -d myfeature
####Crear tag