Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,148,897 members, 7,802,891 topics. Date: Saturday, 20 April 2024 at 01:59 AM

Artificial Intelligence And Machine Learning Group - Programming (12) - Nairaland

Nairaland Forum / Science/Technology / Programming / Artificial Intelligence And Machine Learning Group (39167 Views)

Are You Interested In Robotics And Artificial Intelligence? / Artificial Intelligence And Robotics In Africa. / Survey - People Interested In Artificial Intelligence And Machine Learning (2) (3) (4)

(1) (2) (3) ... (9) (10) (11) (12) (13) (Reply) (Go Down)

Re: Artificial Intelligence And Machine Learning Group by Horus(m): 11:12am On Jun 09, 2018

https://www.youtube.com/watch?v=RzG8LQ4Ntuw

Data Science Nigeria Opens First Nigerian Artificial Intelligence HUB in UNILAG

Data Science Nigeria in furtherance of its drive to boost research and innovation in Nigeria, opened the first ever
Nigerian Artificial Intelligence Hub in the University of Lagos.

3 Likes 1 Share

Re: Artificial Intelligence And Machine Learning Group by Desyner: 1:15am On Jun 16, 2018
4kings:

If you're dealing with comparing two documents like two news articles.
Then the importance similarities is not really high. Because if tf-idf is based on words and a news articles about "Israel and trump" would have similar words that tf-idf can use to rank similarities.
However for a better result consider applying stemming and stopwords to reduce noise.

But i just realised you were talking about document titles, well if that's the case you can use word embeddings to vectorize words to find meaning, however the approach towards word embeddings would tend to classify only contextual words and not in an antonyms-synoynms structure like "hot" and "cold" would have the same vector point.

Python has NLTK, TextBlob and Spacy which are NLP packages and they can be used easily to connect to wordnet to find words similarity, so i'm sure java would have similar packages or better still write one that connects to wordnet yourself.
This approach might not be effective because it will require making http requests on every word and you might not be able to afford to store all words and synonyms somewhere.

So if you are finding similarities in general plain text then that's difficult, word embeddings is the best choice i can think of right now and you could get already trained model online for your task but i doubt it will perform well for just general plain text unless your task is singular domain related then you can train the word embedding yourself.

The best way to approach this is to analyse the document itself and not just the title, with tf-idf to get a good result.
I finally implemented the tf-idf thing, it appears to be grossly inadequate for what i am looking to achieve.
My goal was to detect news with same message from various news vendor or media houses. I have tried matching them by titles, excerpt and full body but no luck so far. The stop words in tf-idf are really a headache, like u suggested lemmatization should help but i strongly suspect it may not solve the challenge of reducing stop words to acceptable level.

I am still looking for the solution to it just in case.
I felt since the WordPress similar post feature is so common I should be able to get this done in another language, java, but that's not the story so far.
Re: Artificial Intelligence And Machine Learning Group by tollyboy5(m): 2:40pm On Jun 17, 2018
pls anybody with embedded programming knowledge
Re: Artificial Intelligence And Machine Learning Group by raymod170(m): 9:06pm On Jun 17, 2018
tollyboy5:
pls anybody with embedded programming knowledge
Kindly state your problem so everyone makes an input
Re: Artificial Intelligence And Machine Learning Group by Desyner: 7:39pm On Jun 22, 2018
4kings:

If you're dealing with comparing two documents like two news articles.
Then the importance similarities is not really high. Because if tf-idf is based on words and a news articles about "Israel and trump" would have similar words that tf-idf can use to rank similarities.
However for a better result consider applying stemming and stopwords to reduce noise.

But i just realised you were talking about document titles, well if that's the case you can use word embeddings to vectorize words to find meaning, however the approach towards word embeddings would tend to classify only contextual words and not in an antonyms-synoynms structure like "hot" and "cold" would have the same vector point.

Python has NLTK, TextBlob and Spacy which are NLP packages and they can be used easily to connect to wordnet to find words similarity, so i'm sure java would have similar packages or better still write one that connects to wordnet yourself.
This approach might not be effective because it will require making http requests on every word and you might not be able to afford to store all words and synonyms somewhere.

So if you are finding similarities in general plain text then that's difficult, word embeddings is the best choice i can think of right now and you could get already trained model online for your task but i doubt it will perform well for just general plain text unless your task is singular domain related then you can train the word embedding yourself.

The best way to approach this is to analyse the document itself and not just the title, with tf-idf to get a good result.
OK. I made some progress. I was able to obtain the body of the news. This means I now have the title, the excerpt and the body text in full.

So far tf-idf is giving me unpleasant matches. for example the news about the psychic pig prediction super eagles semi final adventure appears along other news related to super eagle like in the same cluster. with the new about "super eagle team song by olamide and phyno" and the other one by simi et al.

My next target is to reduce stop words but I am not using a list of words directly. I am using POSTagger (Parts Of Speech Tagger) to eliminate the injunctions, modifiers and other category stop words generally fall into. With this approach words like for, from, a, to, with, am, when, soon, & am get eliminated because of the category POSTagger is placing them and not because I specified those words directly.


Something tells me you know what I need but I haven't been able to communicate it in the right words to you yet. As I google more I am learning new things. I know what lemmatization, tokenization, clustering is now.


Modified:
What I am looking for is clustering of news covering same issue, event or happening. If given 10 articles from a number of news outlets (e.g vanguard, punch, tribune and cable) and five of those are reporting Buhari's expose of budget padding by senate and HOR , Then I need to be able to cluster those five together and nothing more. I hope this explains it to you.
Re: Artificial Intelligence And Machine Learning Group by 4kings: 10:49am On Jun 23, 2018
Desyner:
OK. I made some progress. I was able to obtain the body of the news. This means I now have the title, the excerpt and the body text in full.

So far tf-idf is giving me unpleasant matches. for example the news about the psychic pig prediction super eagles semi final adventure appears along other news related to super eagle like in the same cluster. with the new about "super eagle team song by olamide and phyno" and the other one by simi et al.

My next target is to reduce stop words but I am not using a list of words directly. I am using POSTagger (Parts Of Speech Tagger) to eliminate the injunctions, modifiers and other category stop words generally fall into. With this approach words like for, from, a, to, with, am, when, soon, & am get eliminated because of the category POSTagger is placing them and not because I specified those words directly.


Something tells me you know what I need but I haven't been able to communicate it in the right words to you yet. As I google more I am learning new things. I know what lemmatization, tokenization, clustering is now.


Modified:
What I am looking for is clustering of news covering same issue, event or happening. If given 10 articles from a number of news outlets (e.g vanguard, punch, tribune and cable) and five of those are reporting Buhari's expose of budget padding by senate and HOR , Then I need to be able to cluster those five together and nothing more. I hope this explains it to you.

Hmm, interesting.
You've not used word embeddings yet? That tends to improve performance.
And also u could perform some semantic analysis tricks on subjects of the articles.

I'm not with my system at the moment, I would work on this and get back to you when I get home.
Re: Artificial Intelligence And Machine Learning Group by 4kings: 10:51am On Jun 23, 2018
Horus:

https://www.youtube.com/watch?v=RzG8LQ4Ntuw

Data Science Nigeria Opens First Nigerian Artificial Intelligence HUB in UNILAG

Data Science Nigeria in furtherance of its drive to boost research and innovation in Nigeria, opened the first ever
Nigerian Artificial Intelligence Hub in the University of Lagos.
Good development!!!

2 Likes

Re: Artificial Intelligence And Machine Learning Group by lum1: 8:24am On Jul 26, 2018
Sorry I have been offline guys. I have been writing my PhD thesis(still writing).

1 Like

Re: Artificial Intelligence And Machine Learning Group by 4kings: 5:18am On Jan 17, 2019
Sad... This thread was promising.
Life happens. oops.
Watsup with SoftEng?
Re: Artificial Intelligence And Machine Learning Group by SoftEng: 12:30pm On Mar 01, 2019
4kings:
Sad... This thread was promising.
Life happens. oops.
Watsup with SoftEng?

4kings and all
I apologise for my absence (Yes, life happens smiley).
I have been mostly busy with different things.

Meanwhile, there are communities that have been very active in the AI space.
Data Science Nigeria and AI saturday Lagos have been really doing well. AI saturday abuja also have some activities.
Also an AI event called IndabaXNigeria will be happening in Univeristy of Lagos in May.

I'm not sure whether I can be as active on this thread as I used to be. However, this should NOT dissuade the purpose of the thread. At bare minimum, if anyone needs help or has a question, I can assist.

Thanks 4kings, you've been very helpful and you have been a good friend on this thread.

1 Like

Re: Artificial Intelligence And Machine Learning Group by odizeey(m): 4:46pm On Mar 11, 2019
SoftEng:


4kings and all
I apologise for my absence (Yes, life happens smiley).
I have been mostly busy with different things.

Meanwhile, there are communities that have been very active in the AI space.
Data Science Nigeria and AI saturday Lagos have been really doing well. AI saturday abuja also have some activities.
Also an AI event called IndabaXNigeria will be happening in Univeristy of Lagos in May.

I'm not sure whether I can be as active on this thread as I used to be. However, this should NOT dissuade the purpose of the thread. At bare minimum, if anyone needs help or has a question, I can assist.

Thanks 4kings, you've been very helpful and you have been a good friend on this thread.
nice one bro.
Re: Artificial Intelligence And Machine Learning Group by Avast(m): 8:53am On Mar 23, 2019
I have been on learning path since last year November, I started with learning python basic and move over to Python libraries. I started ML month ago but have not really seem to understand it. Actually I understand the theoretical aspect of it. I am doing self learning, as a beginner I need a place in Lagos that I can always go to meet people on the same path so I can learn physically and have more practical experience. self learning is not really working for me. Thanks

SoftEng
4kings
Darivie04
Re: Artificial Intelligence And Machine Learning Group by odizeey(m): 9:49am On Mar 23, 2019
Avast:
I have been on learning path since last year November, I started with learning python basic and move over to Python libraries. I started ML month ago but have not really seem to understand it. Actually I understand the theoretical aspect of it. I am doing self learning, as a beginner I need a place in Lagos that I can always go to meet people on the same path so I can learn physically and have more practical experience. self learning is not really working for me. Thanks

SoftEng
4kings
Darivie04
browse AI6 Lagos

1 Like 1 Share

Re: Artificial Intelligence And Machine Learning Group by Pdsco: 2:50pm On Jun 16, 2019
odizeey:
browse AI6 Lagos

Thanks so much for this.
Re: Artificial Intelligence And Machine Learning Group by odizeey(m): 6:20pm On Jun 16, 2019
Pdsco:


Thanks so much for this.
welcome. You joined the last cohort?
Re: Artificial Intelligence And Machine Learning Group by Pdsco: 6:29pm On Jun 16, 2019
odizeey:
welcome. You joined the last cohort?

Tried joining but error on the page.
Re: Artificial Intelligence And Machine Learning Group by odizeey(m): 6:38pm On Jun 16, 2019
Pdsco:


Tried joining but error on the page.
ok. It just ended, another will be coming up.
Re: Artificial Intelligence And Machine Learning Group by Nobody: 4:38pm On Jun 17, 2019
Avast:
I have been on learning path since last year November, I started with learning python basic and move over to Python libraries. I started ML month ago but have not really seem to understand it. Actually I understand the theoretical aspect of it. I am doing self learning, as a beginner I need a place in Lagos that I can always go to meet people on the same path so I can learn physically and have more practical experience. self learning is not really working for me. Thanks

SoftEng
4kings
Darivie04
Learning on one's own can be very discouraging since you have few people to talk and share ideas with. There are some online communities but they don't compare to physical communication with other people.

I don't live in Lagos so I can't suggest places in Lagos but I'm sure some others can.
Re: Artificial Intelligence And Machine Learning Group by Avast(m): 4:42pm On Jun 17, 2019
Darivie04:

Learning on one's own can be very discouraging since you have few people to talk and share ideas with. There are some online communities but they don't compare to physical communication with other people.

I don't live in Lagos so I can't suggest places in Lagos but I'm sure some others can.
It is not easy
Re: Artificial Intelligence And Machine Learning Group by Raymagnate(m): 5:23pm On Jul 11, 2019
Dive into the top 10 Artificial Intelligence Startups in Africa....Some of these tech companies can put money in your pocket by providing services to people around you, some can help improve crop yields and early disease detection to farmers etc. There's a lot to learn from these AI startups.

Watch below...


https://www.youtube.com/watch?v=VHLdsL2xE9w
Re: Artificial Intelligence And Machine Learning Group by darkhorizon: 3:52pm On Nov 30, 2019
odizeey:
welcome. You joined the last cohort?

Sorry if this question is irrelevant but I presently do not have a functioning laptop, it's my phone that I've been using for programming classes (I only know very basic Python). I have a Python IDE app and I also use Jupyter Notebooks on Microsoft Azure.

Can I still join the classes?
Re: Artificial Intelligence And Machine Learning Group by odizeey(m): 1:46pm On Dec 01, 2019
darkhorizon:


Sorry if this question is irrelevant but I presently do not have a functioning laptop, it's my phone that I've been using for programming classes (I only know very basic Python). I have a Python IDE app and I also use Jupyter Notebooks on Microsoft Azure.

Can I still join the classes?
I don't know. Just register
Re: Artificial Intelligence And Machine Learning Group by arduino: 2:08pm On Dec 05, 2019
odizeey:

I don't know. Just register
Registration for cohorts closed.
Re: Artificial Intelligence And Machine Learning Group by odizeey(m): 2:22pm On Dec 05, 2019
arduino:

Registration for cohorts closed.
Register for the next one.
Re: Artificial Intelligence And Machine Learning Group by SOLARPOWER1(f): 4:00pm On May 29, 2020
Good afternoon All....I have been told that Data Science/Machine Learning, Deep Learning, Computer vision are only for those who are expert in this field, that is If I want to work in google/facebook/amazon etc it has scope but outside that it is pretty hard to get a job
without years of work experience. This discouraging to me because I am planning to go for a masters degree in Germany with focus in these areas and a plan to do personal studies along the line...

Can someone who is working in this field explain better to me?

What's my prospect of getting employed after my masters?

I currently have a bachelors degree in Electrical Electronics with 4.06 cgpa and my background in mathematics is very good but I don't want to go into this field now and regret later
Re: Artificial Intelligence And Machine Learning Group by Abcruz(m): 5:50pm On May 29, 2020
SOLARPOWER1:
Good afternoon All....I have been told that Data Science/Machine Learning, Deep Learning, Computer vision are only for those who are expert in this field, that is If I want to work in google/facebook/amazon etc it has scope but outside that it is pretty hard to get a job
without years of work experience. This discouraging to me because I am planning to go for a masters degree in Germany with focus in these areas and a plan to do personal studies along the line...

Can someone who is working in this field explain better to me?

What's my prospect of getting employed after my masters?

I currently have a bachelors degree in Electrical Electronics with 4.06 cgpa and my background in mathematics is very good but I don't want to go into this field now and regret later

Anyone who told you data science is only meant for expert that want to work for Facebook and google has given you the biggest lie of the century.

Secondly you're not here to acquire relevant knowledge and degrees only to work for the fulfilment of another persons dream in order to recieve salary. Think outside the box and liberate yourself from the social norm.

Moreover, the internet is now a global village and any skills including data science, machine learning, deep learning can be acquired on YouTube, Udemy...

Irrespective of your previous or intending qualifications, the best job out there is the one you're willing to create through the application of your acquired knowledge.

The field Artificial intelligence is opportunity driven but certainly not for the one who wants to land a "dream job" with fat salary. What works here is "creative works with human impact".

2 Likes

Re: Artificial Intelligence And Machine Learning Group by gbolly1151(m): 8:26am On May 30, 2020
Few weeks ago,i pick up deep learning and it seem easy to me, please it is that easy or am getting it wrong?

So far,i have been able to understand

>>>weight
>>>perceptron
>>>activation function
>>>multi-perceptron
>>>feed forward
>>>back propagation
>>>loss (cost function)
>>>optimizer

Below is the link to my posts about what i have learnt so far

https://www.nairaland.com/5869408

With all these,it was easy to go back to ML and start picking the algorithm.

I have been able to build a model and tune the hyperparameter.

Is there still something am getting wrong,it seem easy than the hype
Re: Artificial Intelligence And Machine Learning Group by BoleAndFish: 9:06am On May 30, 2020
Abcruz:


Anyone who told you data science is only meant for expert that want to work for Facebook and google has given you the biggest lie of the century.

Secondly you're not here to acquire relevant knowledge and degrees only to work for the fulfilment of another persons dream in order to recieve salary. Think outside the box and liberate yourself from the social norm.

Moreover, the internet is now a global village and any skills including data science, machine learning, deep learning can be acquired on YouTube, Udemy...

Irrespective of your previous or intending qualifications, the best job out there is the one you're willing to create through the application of your acquired knowledge.

The field Artificial intelligence is opportunity driven but certainly not for the one who wants to land a "dream job" with fat salary. What works here is "creative works with human impact".
grin grin
So, what should someone who wants to land a dream job with fat salary look at?
Re: Artificial Intelligence And Machine Learning Group by Abcruz(m): 12:05pm On May 30, 2020
BoleAndFish:
grin grin
So, what should someone who wants to land a dream job with fat salary look at?

Explore your creative reserve and find solutions to man's insatiable want and all other benefits including fat salary will be added unto you.

1 Like

(1) (2) (3) ... (9) (10) (11) (12) (13) (Reply)

Post Ur Vb 6.0 Questions Here / Java Programming For Dummies / Nigerian Software Engineer given test to prove he is an engineer at JFK Airport

(Go Up)

Sections: politics (1) business autos (1) jobs (1) career education (1) romance computers phones travel sports fashion health
religion celebs tv-movies music-radio literature webmasters programming techmarket

Links: (1) (2) (3) (4) (5) (6) (7) (8) (9) (10)

Nairaland - Copyright © 2005 - 2024 Oluwaseun Osewa. All rights reserved. See How To Advertise. 62
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.