A Python library for building and training Seq2Seq models
Project description
AceFlow - Seq2Seq Model Library
A powerful Python library for building and training Sequence-to-Sequence models with attention mechanisms.
🚀 Features
- Multiple RNN Types: LSTM, GRU, RNN, and bidirectional variants
- Attention Mechanisms: Bahdanau and Luong-style attention
- Custom Model Format: Save/load models in
.aceformat - Advanced Tokenization: Flexible preprocessing and vocabulary management
- Production Ready: Comprehensive training utilities and inference tools
📖 Documentation
🎯 Quick Example
from aceflow import Seq2SeqModel
from aceflow.utils import Tokenizer
# Initialize model
model = Seq2SeqModel(
src_vocab_size=1000,
tgt_vocab_size=1000,
hidden_size=256,
rnn_type='lstm',
use_attention=True
)
# Train and save
model.save("model.ace")
# Load model
loaded_model = Seq2SeqModel.load("model.ace")
📦 Installation
For detailed installation instructions, see Installation Guide.
📄 License
This project is licensed under the MIT License - see the LICENSE file for details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file aceflow-1.6.8.tar.gz.
File metadata
- Download URL: aceflow-1.6.8.tar.gz
- Upload date:
- Size: 39.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
56ef3269ffeb60bee3f6ea7460bdf638b48fcdc04f1dc192b106fb3043b4b214
|
|
| MD5 |
bd79f3f57b0c91bd02c1ae0a9d8b0661
|
|
| BLAKE2b-256 |
fe9c14e95cbb1bb27c08663dff1dff8715bd73bc51c4e0507e5c97ba30b6e0b1
|
File details
Details for the file aceflow-1.6.8-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: aceflow-1.6.8-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 177.2 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
88d64a00933699e0e62277dff7ed99c6c4cec796ef95ffc917783a2cfec21f61
|
|
| MD5 |
f88dcd27cabff63dd0c910cb6fff92e1
|
|
| BLAKE2b-256 |
22c41592f0316d45f19e24247b5739e77e3b92d0e8a37aac3a719410b38a58e0
|