From 315c3975a58b23816d61b637e0c3fb6b2110b877 Mon Sep 17 00:00:00 2001 From: Varuna Jayasiri Date: Fri, 30 Oct 2020 20:05:14 +0530 Subject: [PATCH 1/3] makefile --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 246c9b39..864cfaf7 100644 --- a/Makefile +++ b/Makefile @@ -22,11 +22,11 @@ uninstall: ## Uninstall pip uninstall labml_nn docs: ## Render annotated HTML - python ../../pylit/pylit.py --remove_empty_sections --title_md -s ../../pylit/pylit_docs.css -t ../../pylit/template_docs.html -d html -w labml_nn + pylit --remove_empty_sections --title_md -t ../../pylit/templates/nn -d html -w labml_nn pages: ## Copy to lab-ml site - @cd ../lab-ml.github.io; git pull - cp -r html/* ../lab-ml.github.io/ + @cd ../pages; git pull + cp -r html/* ../pages/ help: ## Show this help. @fgrep -h "##" $(MAKEFILE_LIST) | fgrep -v fgrep | sed -e 's/\\$$//' | sed -e 's/##//' From 3c2510f5d49c5b3811cbd72fee889593012fa463 Mon Sep 17 00:00:00 2001 From: Varuna Jayasiri Date: Fri, 30 Oct 2020 20:34:15 +0530 Subject: [PATCH 2/3] link typo --- labml_nn/__init__.py | 2 +- readme.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/labml_nn/__init__.py b/labml_nn/__init__.py index 84e78a71..458595c1 100644 --- a/labml_nn/__init__.py +++ b/labml_nn/__init__.py @@ -16,7 +16,7 @@ We will keep adding to this. contains implementations for [multi-headed attention](http://lab-ml.com/labml_nn/transformers/mha.html) and -[relative multi-headed attention](http://lab-ml.com/labml_nn/transformers/relative_mha.html>). +[relative multi-headed attention](http://lab-ml.com/labml_nn/transformers/relative_mha.html). #### ✨ [Recurrent Highway Networks](http://lab-ml.com/labml_nn/recurrent_highway_networks) diff --git a/readme.md b/readme.md index 4ea5ce8f..fc3e5e90 100644 --- a/readme.md +++ b/readme.md @@ -15,7 +15,7 @@ We will keep adding to this. contains implementations for [multi-headed attention](http://lab-ml.com/labml_nn/transformers/mha.html) and -[relative multi-headed attention](http://lab-ml.com/labml_nn/transformers/relative_mha.html>). +[relative multi-headed attention](http://lab-ml.com/labml_nn/transformers/relative_mha.html). #### ✨ [Recurrent Highway Networks](http://lab-ml.com/labml_nn/recurrent_highway_networks) From f80c00d748149b6974ef15f14cbebd9a377de329 Mon Sep 17 00:00:00 2001 From: Varuna Jayasiri Date: Sun, 1 Nov 2020 14:48:41 +0530 Subject: [PATCH 3/3] labml version --- .labml.yaml | 3 --- requirements.txt | 2 +- setup.py | 4 ++-- 3 files changed, 3 insertions(+), 6 deletions(-) diff --git a/.labml.yaml b/.labml.yaml index a77dee41..e69de29b 100644 --- a/.labml.yaml +++ b/.labml.yaml @@ -1,3 +0,0 @@ -web_api: https://api.lab-ml.com/api/v1/track?labml_token=team-samples -web_api_open_browser: true - diff --git a/requirements.txt b/requirements.txt index e297706e..301ad41a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ torch>=1.6 -labml>=0.4.37 +labml>=0.4.52 labml-helpers torchvision numpy>=1.16.3 diff --git a/setup.py b/setup.py index 7eb1c547..606026fa 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ with open("readme.md", "r") as f: setuptools.setup( name='labml_nn', - version='0.4.10', + version='0.4.12', author="Varuna Jayasiri, Nipun Wijerathne", author_email="vpjayasiri@gmail.com, hnipun@gmail.com", description="A collection of PyTorch implementations of neural network architectures and layers.", @@ -17,7 +17,7 @@ setuptools.setup( }, packages=setuptools.find_packages(exclude=('test', 'test.*')), - install_requires=['labml>=0.4.41', + install_requires=['labml>=0.4.52', 'labml_helpers', 'torch', 'einops',