Skip to content

Instantly share code, notes, and snippets.

@omarsar
Last active October 14, 2017 02:51
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 8 You must be signed in to fork a gist
  • Save omarsar/fbd3aa9c48173acdfd925fdc33ad6ff5 to your computer and use it in GitHub Desktop.
Save omarsar/fbd3aa9c48173acdfd925fdc33ad6ff5 to your computer and use it in GitHub Desktop.
Data Mining Lab Session ( 2017 Fall)

Computing Resources

  • Operating system: Preferably Linux or MacOS. If you have Windows, things may crash unexpectedly (try installing a virtual machine if you need to)
  • RAM: Minimum 8GB
  • Disk space: Mininium 8GB

Software Requirements

Here is a list of the required programs and libraries necessary for this lab session. (Please install them before coming to our lab session on Tuesday; this will save us a lot of time, plus these are the same libraries you may need for your first assignment).

  • Python 3+ (Note: lab and assignment will be done strictly using Python 3)
    • Install latest version of Python 3
  • Anaconda environemnt or any other environment (recommended but not required)
    • Install anaconda environment
  • Jupyter (Strongly recommended but not required)
    • Install jupyter
  • Scikit Learn
    • Install sklearn latest python library
  • Pandas
    • Install pandas python library
  • Numpy
    • Install numpy python library
  • Matplotlib
    • Install maplotlib for python
  • Plotly
    • Install and signup for plotly
  • NLTK
    • Install nltk library

Test script

Open a jupyter notebook and run the following commands. If you have properly installed all the necessary libraries, you shouldn't have any problems running the code below.

import pandas as pd
import numpy as np
import nltk
from sklearn.datasets import fetch_20newsgroups
from sklearn.feature_extraction.text import CountVectorizer
import plotly.plotly as py
import plotly.graph_objs as go
import math
%matplotlib inline

Preview of Complete Jupyter Notebook (Coming Soon)

Please note that we will upload the jupyter notebook that will be used as guide on both this page Githug page and our lab's organization page. (We will provide the link on the day of the lab session). Additional instructions for assignments will be posted there, and submissions will more than likely be required to be posted through Github. In other words, if you don't have an account yet, please create a Github account in advance. We will try to give a short session on how to use git to upload your individual assignments, but we cannot guarantee this because of the limited time we have for the lab session.

Don't worry! You will have plenty of time to learn Git before the assignment's due date. Another option would be to have a short mini lab after this one or we can provide an online session; we will talk about this during the lab session. For the meanwhile, this tutorial will help you get started. Learning how to do version control and upload code using git will be useful for other courses in the future so if you want to take your skills to the next level, you can try this online course offered by Codecademy.

One more thing: I have setup a Slack page where we can engage (chat) or just in case anyone has any questions or concerns throughout the course. In Slack you can also setup groups amongst your classmates and get to know each other better. From my experience, these tools are very helpful to get help from TAs and other classmates. This chat room will definitely be super helpful for when the project and exam time comes around. Come say 👋 if you are interested in joining the conversation. I will send an invite to your emails (provided by the iLMS). If you don't receive an invite by Friday (22/09/2017) night, check your spam or comment your email below.

Good luck!

@omarsar
Copy link
Author

omarsar commented Sep 21, 2017

Hello everyone,

I am Elvis (TA of Data Mining).

This file contains instructions on what packages and libraries you need to have already installed on your computer before our lab session on Tuesday.

If you have any problems installing these libraries on your machine, please comment here or email TAs directly. Thanks and see you next week! 😄

--> my email (ellfae@gmail.com)

@orison09
Copy link

Hi, Elvis. I'm Ori from the Data Mining class. Are the 8GB RAM necessary for the VM? My laptop has 8GB of RAM and Windows 10. Should I just try using it or should I use the lab's computers?

@omarsar
Copy link
Author

omarsar commented Sep 23, 2017

Hi @orison09. Go ahead and try to install the VM on your computer because the computers in the lab are not so reliable. Alternatively, you can try to install the required software on your Windows. We may not need all the 8GB RAM after all. Don't worry, just make sure the packages are installed successfully. 😄

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment