All Projects → yasufumy → allennlp_imdb

yasufumy / allennlp_imdb

Licence: MIT license
AllenNLP Startup Guide

Programming Languages

python
139335 projects - #7 most used programming language
Jsonnet
166 projects

Projects that are alternatives of or similar to allennlp imdb

wandb-allennlp
Utilities and boilerplate code to use wandb with allennlp
Stars: ✭ 20 (+53.85%)
Mutual labels:  allennlp
comb dist direct relex
Combining Distant and Direct Supervision for Neural Relation Extraction
Stars: ✭ 33 (+153.85%)
Mutual labels:  allennlp
acl19 subtagger
Code for ACL '19 paper: Towards Improving Neural Named Entity Recognition with Gazetteers
Stars: ✭ 33 (+153.85%)
Mutual labels:  allennlp
trapper
State-of-the-art NLP through transformer models in a modular design and consistent APIs.
Stars: ✭ 28 (+115.38%)
Mutual labels:  allennlp
allennlp-book
本リポジトリは「AllenNLP入門」のソースコード置き場です。
Stars: ✭ 37 (+184.62%)
Mutual labels:  allennlp
biome-text
Custom Natural Language Processing with big and small models 🌲🌱
Stars: ✭ 62 (+376.92%)
Mutual labels:  allennlp
CHILDES-SRL
Research code for generating semantic role labels for CHILDES
Stars: ✭ 14 (+7.69%)
Mutual labels:  allennlp
optuna-allennlp
🚀 A demonstration of hyperparameter optimization using Optuna for models implemented with AllenNLP.
Stars: ✭ 17 (+30.77%)
Mutual labels:  allennlp
allennlp-optuna
⚡️ AllenNLP plugin for adding subcommands to use Optuna, making hyperparameter optimization easy
Stars: ✭ 33 (+153.85%)
Mutual labels:  allennlp
athnlp-labs
Athens NLP Summer School Labs
Stars: ✭ 41 (+215.38%)
Mutual labels:  allennlp
naacl2019-select-pretraining-data-for-ner
BiLSTM-CRF model for NER
Stars: ✭ 15 (+15.38%)
Mutual labels:  allennlp

A gentle guild to starting your NLP project with AllenNLP

Requirements

  • Pipenv

Setup

git clone https://github.com/yasufumy/allennlp_imdb
cd allennlp_imdb
pipenv install
pipenv shell

Usage

There is a post about this repository: Click this link

Running on Colab

Running on CPU:

allennlp train \
    --include-package allennlp_imdb \
    -s /path/to/serialization \
    training_config/base_cpu.jsonnet

Running on GPU:

allennlp train \
    --include-package allennlp_imdb \
    -s /path/to/serialization \
    -o '{"trainer": {"cuda_device": 0}}' \
    training_config/base_cpu.jsonnet

Creating your own configuration file:

allennlp configure --include-package allennlp_imdb
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].