mirror of
https://github.com/labmlai/annotated_deep_learning_paper_implementations.git
synced 2025-11-01 20:28:41 +08:00
Merge branch 'master' of github.com:lab-ml/nn
merge
This commit is contained in:
6
Makefile
6
Makefile
@ -22,11 +22,11 @@ uninstall: ## Uninstall
|
|||||||
pip uninstall labml_nn
|
pip uninstall labml_nn
|
||||||
|
|
||||||
docs: ## Render annotated HTML
|
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
|
pages: ## Copy to lab-ml site
|
||||||
@cd ../lab-ml.github.io; git pull
|
@cd ../pages; git pull
|
||||||
cp -r html/* ../lab-ml.github.io/
|
cp -r html/* ../pages/
|
||||||
|
|
||||||
help: ## Show this help.
|
help: ## Show this help.
|
||||||
@fgrep -h "##" $(MAKEFILE_LIST) | fgrep -v fgrep | sed -e 's/\\$$//' | sed -e 's/##//'
|
@fgrep -h "##" $(MAKEFILE_LIST) | fgrep -v fgrep | sed -e 's/\\$$//' | sed -e 's/##//'
|
||||||
|
|||||||
@ -16,7 +16,7 @@ We will keep adding to this.
|
|||||||
contains implementations for
|
contains implementations for
|
||||||
[multi-headed attention](http://lab-ml.com/labml_nn/transformers/mha.html)
|
[multi-headed attention](http://lab-ml.com/labml_nn/transformers/mha.html)
|
||||||
and
|
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)
|
#### ✨ [Recurrent Highway Networks](http://lab-ml.com/labml_nn/recurrent_highway_networks)
|
||||||
|
|
||||||
|
|||||||
@ -15,7 +15,7 @@ We will keep adding to this.
|
|||||||
contains implementations for
|
contains implementations for
|
||||||
[multi-headed attention](http://lab-ml.com/labml_nn/transformers/mha.html)
|
[multi-headed attention](http://lab-ml.com/labml_nn/transformers/mha.html)
|
||||||
and
|
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)
|
#### ✨ [Recurrent Highway Networks](http://lab-ml.com/labml_nn/recurrent_highway_networks)
|
||||||
|
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
torch>=1.6
|
torch>=1.6
|
||||||
labml>=0.4.37
|
labml>=0.4.52
|
||||||
labml-helpers
|
labml-helpers
|
||||||
torchvision
|
torchvision
|
||||||
numpy>=1.16.3
|
numpy>=1.16.3
|
||||||
|
|||||||
4
setup.py
4
setup.py
@ -5,7 +5,7 @@ with open("readme.md", "r") as f:
|
|||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name='labml_nn',
|
name='labml_nn',
|
||||||
version='0.4.10',
|
version='0.4.12',
|
||||||
author="Varuna Jayasiri, Nipun Wijerathne",
|
author="Varuna Jayasiri, Nipun Wijerathne",
|
||||||
author_email="vpjayasiri@gmail.com, hnipun@gmail.com",
|
author_email="vpjayasiri@gmail.com, hnipun@gmail.com",
|
||||||
description="A collection of PyTorch implementations of neural network architectures and layers.",
|
description="A collection of PyTorch implementations of neural network architectures and layers.",
|
||||||
@ -17,7 +17,7 @@ setuptools.setup(
|
|||||||
},
|
},
|
||||||
packages=setuptools.find_packages(exclude=('test',
|
packages=setuptools.find_packages(exclude=('test',
|
||||||
'test.*')),
|
'test.*')),
|
||||||
install_requires=['labml>=0.4.41',
|
install_requires=['labml>=0.4.52',
|
||||||
'labml_helpers',
|
'labml_helpers',
|
||||||
'torch',
|
'torch',
|
||||||
'einops',
|
'einops',
|
||||||
|
|||||||
Reference in New Issue
Block a user