Skip to content

Commit

Permalink
Merge pull request #88 from PAIR-code/dev
Browse files Browse the repository at this point in the history
Push dev branch to main to update dev instructions
  • Loading branch information
jameswex authored Oct 22, 2020
2 parents e984253 + 14a410e commit c3ab0ac
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
7 changes: 7 additions & 0 deletions docs/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,13 @@ For specific API documentation, see:
* [Python API](python_api.md)
* [Frontend Client](client.md)

## Pull Request Process

To make code changes to LIT, please work off of the "dev" branch and create
pull requests against that branch. The "main" branch is for stable releases, not
for active development. The "dev" branch will always be ahead of the "main"
branch in terms of commits.

## Design Overview

![LIT system design](images/lit-design-complex.png)
Expand Down
2 changes: 1 addition & 1 deletion lit_nlp/components/umap_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class UmapTest(absltest.TestCase):
def test_fit_transform(self):
umap_model = umap.UmapModel(n_components=3)

# Make dummy embeddings.
# Make fake embeddings.
n = 100
inputs = testing_utils.fake_projection_input(n, 10)

Expand Down
3 changes: 1 addition & 2 deletions lit_nlp/examples/custom_module/potato.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
* they get that way under-ground...
*
* This defines a custom module, which we'll import in main.ts to include in
* the LIT app. See https://github.com/PAIR-code/lit/blob/main/docs/client.md
* on the available APIs for building your own.
* the LIT app.
*/

// tslint:disable:no-new-decorators
Expand Down

0 comments on commit c3ab0ac

Please sign in to comment.