All Projects → adashofdata → Intro To Text Analytics

adashofdata / Intro To Text Analytics

introduction to text analytics in python training for odsc west 2018

Projects that are alternatives of or similar to Intro To Text Analytics

Expo Mf
Exposure Matrix Factorization: modeling user exposure in recommendation
Stars: ✭ 81 (-1.22%)
Mutual labels:  jupyter-notebook
Ergo
A Python library for integrating model-based and judgmental forecasting
Stars: ✭ 82 (+0%)
Mutual labels:  jupyter-notebook
H3 Py Notebooks
Jupyter notebooks for h3-py, a hierarchical hexagonal geospatial indexing system
Stars: ✭ 82 (+0%)
Mutual labels:  jupyter-notebook
Dviz Course
Data visualization course material
Stars: ✭ 81 (-1.22%)
Mutual labels:  jupyter-notebook
Google It Automation
google it automation with python professional certificate
Stars: ✭ 81 (-1.22%)
Mutual labels:  jupyter-notebook
Graphlog
API for accessing the GraphLog dataset
Stars: ✭ 82 (+0%)
Mutual labels:  jupyter-notebook
Video2gif code
Video2GIF neural network model from our paper at CVPR2016
Stars: ✭ 80 (-2.44%)
Mutual labels:  jupyter-notebook
Voice Conversion Gan
Voice Conversion using Cycle GAN's For Non-Parallel Data
Stars: ✭ 82 (+0%)
Mutual labels:  jupyter-notebook
Jupyter to medium
Python package for publishing Jupyter Notebooks as Medium blogposts
Stars: ✭ 82 (+0%)
Mutual labels:  jupyter-notebook
Sequence Jacobian
Interactive guide to Auclert, Bardóczy, Rognlie, and Straub (2019): "Using the Sequence-Space Jacobian to Solve and Estimate Heterogeneous-Agent Models".
Stars: ✭ 82 (+0%)
Mutual labels:  jupyter-notebook
Mapidoc
Public repo for Materials API documentation
Stars: ✭ 81 (-1.22%)
Mutual labels:  jupyter-notebook
Openml R
R package to interface with OpenML
Stars: ✭ 81 (-1.22%)
Mutual labels:  jupyter-notebook
Ant Learn Recsys
推荐系统从入门到实战
Stars: ✭ 79 (-3.66%)
Mutual labels:  jupyter-notebook
Data8assets
Assets for data8.org
Stars: ✭ 81 (-1.22%)
Mutual labels:  jupyter-notebook
Credit card fraud
This repository includes the code used in my corresponding Medium post.
Stars: ✭ 82 (+0%)
Mutual labels:  jupyter-notebook
Continuous analysis
Computational reproducibility using Continuous Integration to produce verifiable end-to-end runs of scientific analysis.
Stars: ✭ 81 (-1.22%)
Mutual labels:  jupyter-notebook
Cs231n Assignment2019
CS231n 2019年春季学期课程作业
Stars: ✭ 82 (+0%)
Mutual labels:  jupyter-notebook
Deterministic Variational Inference
Sample code for running deterministic variational inference to train Bayesian neural networks
Stars: ✭ 82 (+0%)
Mutual labels:  jupyter-notebook
Malwaredatascience
Malware Data Science Reading Diary / Notes
Stars: ✭ 82 (+0%)
Mutual labels:  jupyter-notebook
Dareblopy
Data Reading Blocks for Python
Stars: ✭ 82 (+0%)
Mutual labels:  jupyter-notebook

Welcome to the Introduction to Text Analytics Training!

We will be going through several Jupyter Notebooks during this time and use a number of data science libraries along the way. The easiest way to get started is to download Anaconda, which is free and open source. When you download this, it comes with the Jupyter Notebook IDE and many popular data science libraries, so you don’t have to install them one by one.

Here are the steps you’ll need to take before the start of the tutorial:

1. Download Anaconda

I highly recommend that you download the Python 3.7 version.

2. Download the Jupyter Notebooks

Clone or download this Github repository, so you have access to all the Jupyter Notebooks (.ipynb extension) in the tutorial. Note the green button on the right side of the screen that says Clone or download. If you know how to use Github, go ahead and clone the repo. If you don't know how to use Github, you can also just download the zip file and unzip it on your laptop.

3. Launch Anaconda and Open a Jupyter Notebook

Windows: Open the Anaconda Navigator program. You should see the Jupyter Notebook logo. Below the logo, click Launch. A browser window should open up. In the browser window, navigate to the location of the saved Jupyter Notebook files and open 0-Hello-World.ipynb. Follow the instructions in the notebook.

Mac/Linux: Open a terminal. Type jupyter notebook. A browser should open up. In the browser window, navigate to the location of the saved Jupyter Notebook files and open 0-Hello-World.ipynb. Follow the instructions in the notebook.

4. Install a Few Additional Packages

There are a few additional packages we'll be using during the tutorial that are not included when you download Anaconda - wordcloud, textblob and gensim.

Windows: Open the Anaconda Prompt program. You should see a black window pop up. Type conda install -c conda-forge wordcloud to download wordcloud. You will be asked whether you want to proceed or not. Type y for yes. Once that is done, type conda install -c conda-forge textblob to download textblob and y to proceed, and type conda install -c conda-forge gensim to download gensim and y to proceed.

Mac/Linux: Your terminal should already be open. Type command-t to open a new tab. Type conda install -c conda-forge wordcloud to download wordcloud. You will be asked whether you want to proceed or not. Type y for yes. Once that is done, type conda install -c conda-forge textblob to download textblob and y to proceed, and type conda install -c conda-forge gensim to download gensim and y to proceed.

If you have any issues, please email me at [email protected] or come talk to me before the start of the tutorial on Thursday morning.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].