All Projects → athnlp → athnlp-labs

athnlp / athnlp-labs

Licence: other
Athens NLP Summer School Labs

Programming Languages

HTML
75241 projects
python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to athnlp-labs

awesome-mobile-robotics
Useful links of different content related to AI, Computer Vision, and Robotics.
Stars: ✭ 243 (+492.68%)
Mutual labels:  labs
login-with-google
Minimal plugin which allows WordPress user to login with google.
Stars: ✭ 34 (-17.07%)
Mutual labels:  labs
wandb-allennlp
Utilities and boilerplate code to use wandb with allennlp
Stars: ✭ 20 (-51.22%)
Mutual labels:  allennlp
database labs
initial set of databases labs
Stars: ✭ 19 (-53.66%)
Mutual labels:  labs
APT-Lab-Terraform
Purple Teaming Attack & Hunt Lab - Terraform
Stars: ✭ 144 (+251.22%)
Mutual labels:  labs
labs-factfinder
New York City Census Reporting Tool
Stars: ✭ 34 (-17.07%)
Mutual labels:  labs
Labtainers
Labtainers: A Docker-based cyber lab framework
Stars: ✭ 226 (+451.22%)
Mutual labels:  labs
naacl2019-select-pretraining-data-for-ner
BiLSTM-CRF model for NER
Stars: ✭ 15 (-63.41%)
Mutual labels:  allennlp
computer-networks
computer networks on docker @ fmi.unibuc.ro
Stars: ✭ 72 (+75.61%)
Mutual labels:  labs
labs
learning based labs for Azure Cosmos DB
Stars: ✭ 66 (+60.98%)
Mutual labels:  labs
labs-migration-viz
A single-page interactive visualization of historic U.S. Census migration data for New York City
Stars: ✭ 18 (-56.1%)
Mutual labels:  labs
labs-maputnik-dev-server
An express.js server that allows for quickly loading mapboxGL styles from any project into the Maputnik Style Editor
Stars: ✭ 31 (-24.39%)
Mutual labels:  labs
bsuir-csn-cmsn-helper
Repository containing ready-made laboratory works in the specialty of computing machines, systems and networks
Stars: ✭ 43 (+4.88%)
Mutual labels:  labs
hackthebox
Notes Taken for HTB Machines & InfoSec Community.
Stars: ✭ 286 (+597.56%)
Mutual labels:  labs
PythonProblems
The graded lab problems for the author's course CCPS 109 Computer Science I.
Stars: ✭ 27 (-34.15%)
Mutual labels:  labs
advanced-istio-service-mesh-workshop
Advanced Istio Service Mesh Workshop
Stars: ✭ 28 (-31.71%)
Mutual labels:  labs
bsu
🎓Repository for university labs on FAMCS, BSU
Stars: ✭ 91 (+121.95%)
Mutual labels:  labs
labs-zola
NYC Planning's Zoning and Land Use App
Stars: ✭ 61 (+48.78%)
Mutual labels:  labs
allennlp imdb
AllenNLP Startup Guide
Stars: ✭ 13 (-68.29%)
Mutual labels:  allennlp
BigComputeLabs
Big Compute Learning Labs
Stars: ✭ 19 (-53.66%)
Mutual labels:  labs

ΑθNLP 2019

Exercises for the lab sessions of ΑθNLP 2019. The labs will cover the following:

  1. Part-of-Speech Tagging with the Perceptron algorithm
  2. Part-of-Speech Tagging with the Structured Perceptron algorithm
  3. Neural Encoding for Text Classification
  4. Neural Language Modeling
  5. Neural Machine Translation
  6. Question Answering

Setup

You will need to have Python 3 installed on your machine; we recommend using Anaconda, which is available for the most common OS distributions.

For the first two labs we will be using vanilla Python (along with the standard scientific libarires, i.e., NumPy, SciPy, etc), while for the rest we will additionally be using PyTorch and AllenNLP.

Use the Anaconda command-line tools to create a new virtual environment with Python 3.6:

    conda create --name athnlp python=3.6

After the installation is complete, you should have a new virtual environment called athnlp in your Anaconda installation that you can activate using the following command: conda activate athnlp. Remember to execute this command before running the scripts in this repository.

Next, you should clone the repository to your computer:

    git clone https://github.com/athnlp/athnlp-labs

Finally, you should install all required dependencies. We provide a script that will help you setup your environment. Run the command: sh setup_dependencies.sh and it will automatically install the project dependencies for you. The script will download several data dependencies that might require some time to be installed.

Note: Installing AllenNLP on Mac OS can be tricky; check here for a possible solution.

Docker

If you prefer (or you are on Windows), you can install Docker and create a Docker image with the following commands:

  • build it by running docker build -t athnlp - < Dockerfile
  • get an interactive terminal on the image with docker run -i -t athnlp bash
  • run commands as you normally would (remember this is a very minimal linux installation) If you want to run the image with a new version of the code, add the option --no-cache to the build. You need to do the wget commands from setup_dependencies.sh on your own. Make sure you give Docker enough disk space and memory
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].