File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 88
99jobs :
1010 precommit :
11- needs :
12- - format
1311 runs-on : ubuntu-latest
1412 steps :
1513 - uses : actions/checkout@v3
Original file line number Diff line number Diff line change 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
65from ebm .ebm import ebm_training_fns_and_sample_fn , EBMConfig
76
Original file line number Diff line number Diff line change @@ -4,11 +4,10 @@ build-backend = "setuptools.build_meta"
44
55[project ]
66name = " ebm"
7- description = " ebm "
7+ description = " Implementation of an EBM trained using NCE. "
88authors = [{name = " Simon Dirmeier" , email = " simd23@pm.me" }]
99readme = " README.md"
1010license = {file = " LICENSE" }
11- keywords = []
1211classifiers = [
1312 " Development Status :: 1 - Planning" ,
1413 " Intended Audience :: Science/Research" ,
@@ -20,19 +19,16 @@ classifiers = [
2019requires-python = " >=3.11"
2120dependencies = [
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]
3028dynamic = [" version" ]
3129
3230[dependency-groups ]
3331dev = [
34- " gitlint" ,
35- " jupyter" ,
3632 " pre-commit" ,
3733 " ruff" ,
3834]
You can’t perform that action at this time.
0 commit comments