Skip to content

Commit a940d9d

Browse files
authored
Merge pull request #43 from MagedSaeed/decoder_only
Decoder only
2 parents f9fc9cb + d886657 commit a940d9d

File tree

11 files changed

+1316
-367
lines changed

11 files changed

+1316
-367
lines changed

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ repos:
2121
additional_dependencies: [toml] # Add this if your project uses pyproject.toml for isort configuration
2222

2323
- repo: https://github.com/pre-commit/mirrors-mypy
24-
rev: 'v1.9.0' # Use the latest revision
24+
rev: 'v1.10.0' # Use the sha / tag you want to point at
2525
hooks:
26-
- id: mypy
27-
additional_dependencies: [types-requests, types-setuptools] # Example: include these if you're using requests or setuptools in your project
26+
- id: mypy
27+
args: [--ignore-missing-imports]

generate_sequences/generate.py

Lines changed: 0 additions & 280 deletions
This file was deleted.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from .base import BaseGenerator
2+
from .beam_search import BeamSearchGenerator
3+
from .greedy import GreedyGenerator

0 commit comments

Comments
 (0)