Skip to content

Commit

Permalink
fixed error
Browse files Browse the repository at this point in the history
  • Loading branch information
HMUNACHI committed Mar 11, 2024
1 parent b3a6472 commit 64484e6
Show file tree
Hide file tree
Showing 4 changed files with 513 additions and 11 deletions.
12 changes: 3 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,10 @@ Feedback on any of our discussion, issue and pull request threads are welcomed!
## What's New in version 1.2.0.dev1

- Google's Gemma architecture.
- Data parallel distributed Reward and RLHF trainers.
- Reward model wrapper and data-parallel distributed reward trainer.
- True random number generators in Jax which do not need the verbose code (examples shown in next sections).

There are experimental features (like MAMBA architecture) in the repo which is not available via the package,
pending tests.
There are experimental features (like MAMBA architecture and RLHF) in the repo which is not available via the package, pending tests.

## Quick install

Expand Down Expand Up @@ -359,16 +358,11 @@ Contributions can be made in various forms:
- Fixing bugs.
- Implementing papers.
- Writing high-coverage tests.
- OPtimizing existing codes.
- Optimizing existing codes.
- Experimenting and submitting real-world examples to the examples section.
- Reporting bugs.
- Responding to reported issues.

Coming features include:
- Reinforcement Learning With Human Feedback (RLHF).
- Tokenizers.
- Code optimisations.

To follow up or share thoughts, follow [here](https://forms.gle/vwveb9SKdPYywHx9A)

## Sponsorships
Expand Down
13 changes: 13 additions & 0 deletions nanodl/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,14 @@
RewardDataParallelTrainer
)

from nanodl.__src.layers.attention import (
MultiQueryAttention,
LocalMultiHeadAttention,
HierarchicalMultiHeadAttention,
GatedMultiHeadAttention,
RotaryMultiHeadAttention
)

from nanodl.__src.utils.data import (
Dataset,
ArrayDataset,
Expand Down Expand Up @@ -288,6 +296,11 @@
"random_crop",
"random_flip_image",
"sobel_edge_detection",
"MultiQueryAttention",
"LocalMultiHeadAttention",
"HierarchicalMultiHeadAttention",
"GatedMultiHeadAttention",
"RotaryMultiHeadAttention",

# Random
"time_rng_key",
Expand Down
Loading

0 comments on commit 64484e6

Please sign in to comment.