Skip to main content

Blog

Learn About Our Meetup

5000+ Members

MEETUPS

LEARN, CONNECT, SHARE

Join our meetup, learn, connect, share, and get to know your Toronto AI community. 

JOB POSTINGS

INDEED POSTINGS

Browse through the latest deep learning, ai, machine learning postings from Indeed for the GTA.

CONTACT

CONNECT WITH US

Are you looking to sponsor space, be a speaker, or volunteer, feel free to give us a shout.

Category: Reddit MachineLearning

[P] Does anyone know of anywhere I can find good data regarding addiction treatment?

I want to do a machine learning project to gain insight into and then perhaps even be able to contribute ideas to the area of addiction treatment, something I think is extremely important for society. In order to begin, I have been scouring the Internet for places where I can gather data for building datasets, and maybe even existing datasets I’ll be able to utilize.

So, in this spirit, I was wondering if anyone else has any suggestions or knowledge of where I can gather data that has to do with addiction treatment, or maybe even existing datasets about the subject? Please let me know if you do – it’d be immensely helpful!

P.S. – If you are interested in using some of your free time to help me out with the project, feel free to message me. Especially now, during the data sourcing part of the project, it’s the best part! (Lmao I’m obviously kidding I hate this part, but your help would actually be seriously awesome)

submitted by /u/that_one_ai_nerd
[link] [comments]

[Discussion] Suggestions for organizing related work research

Hello Everyone,

I am looking for suggestions to organize my related work research. It will be great if the method (or system) can give the ability to organize the related work in a web-based tool, where I can keep pdf’s , annotate them online (as well as offline), add comments, write summaries next to them. It will be great if I can share these features with my collaborators as well.

I had been trying to use Trello and Github’s Project Management Tool ( along with “Issues” for comments) for this.

It will be helpful if others can share how they organize their research.

Thanks,

Anurag Koul

submitted by /u/HeavyStatus4
[link] [comments]

[P] 700x faster Node2Vec embeddings by CSR graph representation

Blog post here

Code here

I recently rewrote node2vec, which took a severely long time to generate random walks on a graph, by representing the graph as a CSR sparse matrix, and operating directly on the sparse matrix’s data arrays.

The result is a speedup from 30 hours to 3 minutes for a small sized graph (nodes and edges in the hundreds of thousands).

This raises bigger questions about graph representation for graph analytics — representing graphs as sparse matrices prevents node insertion, but makes operations much more efficient (though admitedly harder to write). More importantly, we can hold fairly huge graphs in RAM because the data usage is so lean.

If we’re analyzing graphs, we don’t care so much about adding nodes, so I think the future of graph analytics is in CSR representation.

submitted by /u/VodkaHaze
[link] [comments]

[R] Contextual Emotion Detection in Textual Conversations Using Neural Networks

Nowadays, talking to conversational agents is becoming a daily routine, and it is crucial for dialogue systems to generate responses as human-like as possible. As one of the main aspects, primary attention should be given to providing emotionally aware responses to users. In this article, we are going to describe the recurrent neural network architecture for emotion detection in textual conversations, that participated in SemEval-2019 Task 3 “EmoContext”, that is, an annual workshop on semantic evaluation. The task objective is to classify emotion (i.e. happy, sad, angry, and others) in a 3-turn conversational data set.

The rest of the article is organized as follows. Section 1 gives a brief overview of the EmoContext task and the provided data. Sections 2 and 3 focus on the texts pre-processing and word embeddings, consequently. In section 4, we described the architecture of the LSTM model used in our submission. In conclusion, the final performance of our system and the source code are presented. The model is implemented in Python using Keras library.

https://habr.com/en/company/mailru/blog/439850/

submitted by /u/pvl18
[link] [comments]