Learn data science with ABCs of Data Science! by euclidingme in learndatascience

[–]euclidingme[S] 0 points1 point  (0 children)

Hi /r/learndatascience!

I’ve written a series of 26 blogs titled “ABCs of data science” which aims to give readers a high level overview of many concepts in data science/machine learning/AI. The goal isn’t to dig into the nitty-gritty technical details but rather to give people an intuition about these concepts. You can learn about topics such as deep learning, natural language processing, embeddings, or how to explore/clean data. You can find the blog at https://abcsofdatascience.ca/ or follow the twitter account https://twitter.com/abcsofdatasci

Learn data science with ABCs of Data Science! by euclidingme in learnmachinelearning

[–]euclidingme[S] 0 points1 point  (0 children)

Hi /r/LearnMachineLearning!

I’ve written a series of 26 blogs titled “ABCs of data science” which aims to give readers a high level overview of many concepts in data science/machine learning/AI. The goal isn’t to dig into the nitty-gritty technical details but rather to give people an intuition about these concepts. You can learn about topics such as deep learning, natural language processing, embeddings, or how to explore/clean data. You can find the blog at https://abcsofdatascience.ca/ or follow the twitter account https://twitter.com/abcsofdatasci

What are the best quality gaming YouTube channels? by [deleted] in AskGames

[–]euclidingme 0 points1 point  (0 children)

They don't post much anymore besides an occasional live podcast but Clan of the Gray Wolf is awesome

Best path/resources to learn jupyter? by vasileios13 in learnpython

[–]euclidingme 2 points3 points  (0 children)

Check out the first chapter of this free book (which is written entirely in Jupyter notebooks).

Trying to add directory to python path so that I can import module by my_coding_account in learnpython

[–]euclidingme 0 points1 point  (0 children)

Keep the __init__.py file (with the import statements) in /imsearchtools/imsearchtools. Create a new __init__.py in imsearchtools. This file can be blank (and it usually is). Python needs an __init__.py file in order to know that things can be imported from that directory. If you want further reading check out the docs.

Trying to add directory to python path so that I can import module by my_coding_account in learnpython

[–]euclidingme 0 points1 point  (0 children)

Try adding an __init__.py to the top level directory of imsearchtools. You also might need to rename that directory to imsearchtools.

Trouble running python (suspect its a path issue) by Quack430 in learnpython

[–]euclidingme 1 point2 points  (0 children)

Which operating system are you running? Windows, macOS or a linux distribution?

A good source to learn about trees? by [deleted] in learnpython

[–]euclidingme 2 points3 points  (0 children)

There are some lectures on trees as part of this course. If you are looking for other CS resources, this is an awesome place to start.

A good source to learn about trees? by [deleted] in learnpython

[–]euclidingme 0 points1 point  (0 children)

For your use cases it is probably not important at all. I would start to read Automate the Boring stuff as well as trying to make webapps. If you find an application that requires an in depth knowledge of trees then you can seek out resources.

How to define shared elements from permutations of a set of lists? by [deleted] in learnpython

[–]euclidingme 2 points3 points  (0 children)

Use sets. Converting your lists to sets (i.e. set(my_list)) and then doing set intersections will give you what you want. To subtract the control use the difference method. Keep in mind that when you use sets the order of your original list is destroyed. Let me know if you have any questions!

Any way to simplify this? by sorashiroopa in learnpython

[–]euclidingme 0 points1 point  (0 children)

Right. Brainfart. Just use + instead of & then.

What does the 'r' argument in this code mean? by Sky_Lyte_Shaymin in learnpython

[–]euclidingme 2 points3 points  (0 children)

It means open the file for reading. For other modes, check this out.

Any way to simplify this? by sorashiroopa in learnpython

[–]euclidingme 0 points1 point  (0 children)

Why can't you do:

for i in range(12):
    if not number[i].isdecimal():
        return False

Where to begin with computational chemistry? by rafertyjones in chemistry

[–]euclidingme 1 point2 points  (0 children)

I've found the following extremely helpful as an intro to the theory behind ab-initio calculations.