Solution: Ubuntu distros lower than 18.10
will not work in this laptop, as minimum kernal version required is 4.18
.
So install ubuntu 18.10 / xubuntu 18.10 / lubuntu 18.10 / kubuntu 18.10 in UEFI
mode
https://github.com/arpitjindal97/technology_books |
function Person(name){ | |
this.name = name | |
}; | |
var eve = new Person("Eve"); | |
eve.__proto__ == Person.prototype //true | |
eve.prototype //undefined |
https://machinelearningmastery.com/confusion-matrix-machine-learning/ |
#BASIC | |
https://skymind.ai/wiki/natural-language-processing-nlp | |
https://yuanxiaosc.github.io/2018/12/27/StanfordCS/ | |
#Machine Leaning | |
<------------> | |
https://www.cs.ox.ac.uk/people/nando.defreitas/machinelearning/ |
Solution: Ubuntu distros lower than 18.10
will not work in this laptop, as minimum kernal version required is 4.18
.
So install ubuntu 18.10 / xubuntu 18.10 / lubuntu 18.10 / kubuntu 18.10 in UEFI
mode
#React-Native 0.49.0+ | |
react-native bundle --dev false --platform android --entry-file index.js --bundle-output ./android/app/build/intermediates/assets/debug/index.android.bundle --assets-dest ./android/app/build/intermediates/res/merged/debug | |
#if not work | |
https://stackoverflow.com/questions/44446523/unable-to-load-script-from-assets-index-android-bundle-on-windows | |
react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res | |
#React-Native 0-0.49.0 | |
react-native bundle --dev false --platform android --entry-file index.android.js --bundle-output ./android/app/build/intermediates/assets/debug/index.android.bundle --assets-dest ./android/app/build/intermediates/res/merged/debug |
docker run -p 8888:8888 -v ${PWD}:/home/jovyan/ jupyter/pyspark-notebook | |
docker run -p 8888:8888 -v D:\Yelp\yelp_dataset:/home/jovyan/ jupyter/pyspark-notebook |
from pyspark.sql import SparkSession | |
from pymongo import MongoClient | |
client = MongoClient('mongodb://localhost:27017/') | |
def sparkdataframe(file): | |
spark = SparkSession \ | |
.builder \ | |
.appName("yelp") \ | |
.config("spark.some.config.option", "some-value") \ |
C:\Users\Rahul Jyala\AppData\Roaming\npm | |
set env varibale and update PATH to this |