https://www.guru99.com/keras-tutorial.html
I wrote about the solutions to some problems I found from programming and data analytics. They may help you on your work. Thank you.
ezoic
Thursday, August 29, 2019
Friday, August 16, 2019
read in data to R, and check if any missing values in the data
code to read in the data into R:
data1<-read.csv("data1.csv", stringAsFactors=FALSE)
view(data1)
a line of code to check if any missing values in the data:
length(which(!complete.cases(data1))
will give the value 0, if there is no missing values in the data
data1<-read.csv("data1.csv", stringAsFactors=FALSE)
view(data1)
a line of code to check if any missing values in the data:
length(which(!complete.cases(data1))
will give the value 0, if there is no missing values in the data
Sunday, August 11, 2019
twitter tweets sentiment analysis
twitter tweets sentiment analysis using naive bayes classifier
https://towardsdatascience.com/creating-the-twitter-sentiment-analysis-program-in-python-with-naive-bayes-classification-672e5589a7ed
Saturday, August 10, 2019
Friday, August 9, 2019
predictive modeling and the accuracy
https://en.wikipedia.org/wiki/Predictive_modelling
Possible fundamental limitations of predictive models based on data fitting[edit]
1) History cannot always accurately predict the future. Using relations derived from historical data to predict the future implicitly assumes there are certain lasting conditions or constants in a complex system. This almost always leads to some imprecision when the system involves people.
2) The issue of unknown unknowns. In all data collection, the collector first defines the set of variables for which data is collected. However, no matter how extensive the collector considers his/her selection of the variables, there is always the possibility of new variables that have not been considered or even defined, yet are critical to the outcome.
3) Adversarial defeat of an algorithm. After an algorithm becomes an accepted standard of measurement, it can be taken advantage of by people who understand the algorithm and have the incentive to fool or manipulate the outcome. This is what happened to the CDO rating described above. The CDO dealers actively fulfilled the rating agencies' input to reach an AAA or super-AAA on the CDO they were issuing, by cleverly manipulating variables that were "unknown" to the rating agencies' "sophisticated" models.
Wednesday, August 7, 2019
building classifier using naive bayes algorithm
building classifier using naive bayes algorithm
https://www.machinelearningplus.com/predictive-modeling/how-naive-bayes-algorithm-works-with-example-and-full-code/
https://www.machinelearningplus.com/predictive-modeling/how-naive-bayes-algorithm-works-with-example-and-full-code/
Tuesday, August 6, 2019
overleaf is a good website for latex
overleaf is a good website for online latex editing
overleaf.com
overleaf.com
Subscribe to:
Posts (Atom)
looking for a man
I am a mid aged woman. I was born in 1980. I do not have any kid. no complicated dating before . I am looking for a man here for marriage...
-
I tried to commit script to bitbucket using sourcetree. I first cloned from bitbucket using SSH, and I got an error, "authentication ...
-
https://github.com/boto/boto3/issues/134 import boto3 import botocore client = boto3.client('s3') result = client.list_obje...
-
Previously, I wanted to install "script" on Atom to run PHP. And there was some problem, like the firewall. So I tried atom-runner...