Skip to content

Commit

Permalink
Merge pull request #44 from theislab/feature/lr_encoder
Browse files Browse the repository at this point in the history
skeleton for LR encoding ED model with extension of estimator
  • Loading branch information
AnnaChristina committed Nov 7, 2021
2 parents b8b5be0 + bd2f900 commit 92647bf
Show file tree
Hide file tree
Showing 26 changed files with 1,137 additions and 425 deletions.
2 changes: 1 addition & 1 deletion .cookietemple.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ full_name: Anna Schaar
email: [email protected]
project_name: ncem
project_short_description: ncem. Learning cell communication from spatial graphs of cells.
version: 0.4.6
version: 0.4.8
license: BSD-3-Clause
9 changes: 7 additions & 2 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
name-template: "0.4.6 🌈" # <<COOKIETEMPLE_FORCE_BUMP>>
tag-template: 0.4.6 # <<COOKIETEMPLE_FORCE_BUMP>>
<<<<<<< HEAD
name-template: "0.4.8 🌈" # <<COOKIETEMPLE_FORCE_BUMP>>
tag-template: 0.4.8 # <<COOKIETEMPLE_FORCE_BUMP>>
=======
name-template: "0.4.8 🌈" # <<COOKIETEMPLE_FORCE_BUMP>>
tag-template: 0.4.8 # <<COOKIETEMPLE_FORCE_BUMP>>
>>>>>>> a602092480da26e9dd2e6cdfea66a485b515f277
categories:
- title: "🚀 Features"
labels:
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
**.DS_Store
ncem/unit_test/temp

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
Expand Down
2 changes: 1 addition & 1 deletion cookietemple.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.4.6
current_version = 0.4.8

[bumpversion_files_whitelisted]
init_file = ncem/__init__.py
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@
# the built documents.
#
# The short X.Y version.
version = "0.4.6"
version = "0.4.8"
# The full version, including alpha/beta/rc tags.
release = "0.4.6"
release = "0.4.8"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion ncem/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@
__maintainer__ = ", ".join(["Anna C. Schaar", "David S. Fischer"])
__author__ = ", ".join(["Anna C. Schaar", "David S. Fischer"])
__email__ = ", ".join(["[email protected]", "[email protected]"])
__version__ = "0.4.6"
__version__ = "0.4.8"
2 changes: 1 addition & 1 deletion ncem/api/train/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Initializes a train object in api."""
from ncem.estimators import (Estimator, EstimatorCVAE, EstimatorCVAEncem,
EstimatorED, EstimatorEDncem, EstimatorGraph,
EstimatorED, EstimatorEDncem, EstimatorEdNcemNeighborhood, EstimatorGraph,
EstimatorInteractions, EstimatorLinear,
EstimatorNoGraph)
from ncem.models import BetaScheduler
Loading

0 comments on commit 92647bf

Please sign in to comment.