Re: Fake news Detect

2020-07-18 Thread Vincent Davis
Data Sceptic has a couple podcast and some of the code is open source. https://dataskeptic.com/blog/episodes/2018/algorithmic-detection-of-fake-news Thanks Vincent Davis 720-301-3003 *Want to get a hold of me?* *SMS: awesome.phone: ok...* *email: bad!* On Fri, Jul 17, 2020 at 11:39 PM Mike Dew

Re: Fake news Detect

2020-07-17 Thread Mike Dewhirst
On 18/07/2020 6:16 am, Grant Edwards wrote: > On 2020-07-17, Dennis Lee Bieber wrote: >> On Fri, 17 Jul 2020 16:02:15 - (UTC), Gazu declaimed >> the following: >> >>> Hey Guys I am new to python and i am building a fake news detection >>> system ... >> I suspect that, if anyone had done

Re: Fake news Detect

2020-07-17 Thread Grant Edwards
On 2020-07-17, Dennis Lee Bieber wrote: > On Fri, 17 Jul 2020 16:02:15 - (UTC), Gazu declaimed > the following: > >>Hey Guys I am new to python and i am building a fake news detection >>system ... > > I suspect that, if anyone had done this already, it would likely be > found on some so

Re: Fake news Detect

2020-07-17 Thread Orges Leka
you could use scikit learn tfidf and svm or random forest. for this you need labeled data ( fake news, no fake news) you could start at Kaggle (natural language processing) if you are new to this. Reto schrieb am Fr., 17. Juli 2020, 20:49: > What you want is called "natural language processing"

Re: Fake news Detect

2020-07-17 Thread Reto
What you want is called "natural language processing" and whole research papers have been written about this topic. Search your favorite research paper index for those keywords, say google scholar. -- https://mail.python.org/mailman/listinfo/python-list

RE: Fake news Detect

2020-07-17 Thread Steve
gs in the code, in the code. 99 bugs in the code. Take one down and patch it all around. Now there's 117 bugs in the code. -Original Message- From: Python-list On Behalf Of Gazu Sent: Friday, July 17, 2020 12:02 PM To: python-list@python.org Subject: Fake news Detect Hey Guys I am new

Fake news Detect

2020-07-17 Thread Gazu
Hey Guys I am new to python and i am building a fake news detection system my goal is that when some one post a news the system will check it by searching that news on Web and find solution that whether that news is Fake or Not. But the issue is that i have no idea how to search on Web or which alg