Skip to content

Commit 1fff520

Browse files
committed
Minor corrections
1 parent 3ec717b commit 1fff520

3 files changed

Lines changed: 4 additions & 11 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ on:
88

99
jobs:
1010
precommit:
11-
needs:
12-
- format
1311
runs-on: ubuntu-latest
1412
steps:
1513
- uses: actions/checkout@v3

ebm/__init__.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
"""ebm: ebm."""
2-
3-
__version__ = "0.0.1"
1+
"""ebm: Implementation of an EBM trained using NCE."""
42

3+
__version__ = "0.1.0"
54

65
from ebm.ebm import ebm_training_fns_and_sample_fn, EBMConfig
76

pyproject.toml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,10 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "ebm"
7-
description = "ebm"
7+
description = "Implementation of an EBM trained using NCE."
88
authors = [{name = "Simon Dirmeier", email = "simd23@pm.me"}]
99
readme = "README.md"
1010
license = {file = "LICENSE"}
11-
keywords = []
1211
classifiers = [
1312
"Development Status :: 1 - Planning",
1413
"Intended Audience :: Science/Research",
@@ -20,19 +19,16 @@ classifiers = [
2019
requires-python = ">=3.11"
2120
dependencies = [
2221
"jax-ai-stack",
23-
"tensorflow-probability>=0.25.0",
22+
"tensorflow-probability[jax]>=0.25.0",
2423
"tensorflow>=2.20.0",
2524
"tensorflow-datasets>=4.9.9",
2625
"ml-collections>=1.1.0",
27-
"tf-keras>=2.20.1",
2826
"flax>=0.11.1",
2927
]
3028
dynamic = ["version"]
3129

3230
[dependency-groups]
3331
dev = [
34-
"gitlint",
35-
"jupyter",
3632
"pre-commit",
3733
"ruff",
3834
]

0 commit comments

Comments
 (0)