Fix Travis CI link
This commit is contained in:
parent
35da293ade
commit
25fbd102a7
13
README.md
13
README.md
|
@ -1,12 +1,12 @@
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<img style="vertical-align:middle" width="150" src="https://avatars.githubusercontent.com/u/13667124?s=400&u=aca1de69f751c02bbcda6a38f78d4b6653975df6&v=4" />
|
<img style="vertical-align:middle;margin:-10px" width="150" src="https://avatars.githubusercontent.com/u/13667124" />
|
||||||
</p>
|
</p>
|
||||||
<h1 align="center">
|
<h1 align="center">
|
||||||
<span>GenieNLP</span>
|
<span>GenieNLP</span>
|
||||||
</h1>
|
</h1>
|
||||||
|
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<a href="https://travis-ci.com/stanford-oval/genienlp"><img src="https://travis-ci.com/stanford-oval/genienlp.svg?branch=master" alt="Build Status"></a>
|
<a href="https://app.travis-ci.com/github/stanford-oval/genienlp"><img src="https://travis-ci.com/stanford-oval/genienlp.svg?branch=master" alt="Build Status"></a>
|
||||||
<a href="https://pypi.org/project/genienlp/"><img src="https://img.shields.io/pypi/dm/genienlp" alt="PyPI Downloads"></a>
|
<a href="https://pypi.org/project/genienlp/"><img src="https://img.shields.io/pypi/dm/genienlp" alt="PyPI Downloads"></a>
|
||||||
<a href="https://github.com/stanford-oval/genienlp/stargazers"><img src="https://img.shields.io/github/stars/stanford-oval/genienlp?style=social" alt="Github Stars"></a>
|
<a href="https://github.com/stanford-oval/genienlp/stargazers"><img src="https://img.shields.io/github/stars/stanford-oval/genienlp?style=social" alt="Github Stars"></a>
|
||||||
</p>
|
</p>
|
||||||
|
@ -14,11 +14,14 @@
|
||||||
|
|
||||||
GenieNLP is suitable for all NLP tasks, including text generation (e.g. translation, paraphasing), token classification (e.g. named entity recognition) and sequence classification (e.g. NLI, sentiment analysis).
|
GenieNLP is suitable for all NLP tasks, including text generation (e.g. translation, paraphasing), token classification (e.g. named entity recognition) and sequence classification (e.g. NLI, sentiment analysis).
|
||||||
|
|
||||||
|
|
||||||
This library contains the code to run NLP models for the [Genie Toolkit](https://github.com/stanford-oval/genie-toolkit) and the [Genie Virtual Assistant](https://genie.stanford.edu/).
|
This library contains the code to run NLP models for the [Genie Toolkit](https://github.com/stanford-oval/genie-toolkit) and the [Genie Virtual Assistant](https://genie.stanford.edu/).
|
||||||
Genie primarily uses this library for semantic parsing, paraphrasing, translation, and dialogue state tracking. Therefore, GenieNLP has a lot of extra features for these tasks.
|
Genie primarily uses this library for semantic parsing, paraphrasing, translation, and dialogue state tracking. Therefore, GenieNLP has a lot of extra features for these tasks.
|
||||||
|
|
||||||
## Table of Contents
|
Works with [🤗 models](https://huggingface.co/models) and [🤗 Datasets](https://huggingface.co/datasets).
|
||||||
- [Table of Contents](#table-of-contents)
|
|
||||||
|
## Table of Contents <!-- omit in TOC -->
|
||||||
|
|
||||||
- [Installation](#installation)
|
- [Installation](#installation)
|
||||||
- [Usage](#usage)
|
- [Usage](#usage)
|
||||||
- [Training a semantic parser](#training-a-semantic-parser)
|
- [Training a semantic parser](#training-a-semantic-parser)
|
||||||
|
@ -43,7 +46,7 @@ Or from source:
|
||||||
```bash
|
```bash
|
||||||
git clone https://github.com/stanford-oval/genienlp.git
|
git clone https://github.com/stanford-oval/genienlp.git
|
||||||
cd genienlp
|
cd genienlp
|
||||||
pip install -e .
|
pip install -e . # -e means your changes to the code will automatically take effect without the need to reinstall
|
||||||
```
|
```
|
||||||
|
|
||||||
After installation, `genienlp` command becomes available.
|
After installation, `genienlp` command becomes available.
|
||||||
|
|
Loading…
Reference in New Issue