Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Development #13

Merged
merged 4 commits into from
Jul 8, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .flake8
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[flake8]
select = B,B9,C,D,DAR,E,F,N,RST,S,W
ignore = E203,E501,RST201,RST203,RST301,W503,D100,F401
ignore = E203,E501,RST201,RST203,RST301,W503,D100,F401,S301
max-line-length = 120
max-complexity = 10
docstring-convention = numpy
Expand Down
12 changes: 5 additions & 7 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ncem
===========================

|PyPI| |Python Version| |License| |Read the Docs| |Build| |Tests| |Codecov| |pre-commit| |Black|
|PyPI| |Python Version| |License| |Read the Docs| |Build| |pre-commit| |Black|

.. |PyPI| image:: https://img.shields.io/pypi/v/ncem.svg
:target: https://pypi.org/project/ncem/
Expand Down Expand Up @@ -31,6 +31,10 @@ ncem
:target: https://github.com/psf/black
:alt: Black

.. image:: https://github.com/theislab/ncem/tree/main/resources/images/concept.png
:width: 1000px
:align: center


Features
--------
Expand All @@ -48,12 +52,6 @@ You can install *ncem* via pip_ from PyPI_:
$ pip install ncem


Usage
-----

Please see the `Command-line Reference <Usage_>`_ for details.


Credits
-------

Expand Down
15 changes: 4 additions & 11 deletions ncem/api/train/__init__.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,6 @@
"""Initializes a train object in api."""
from ncem.estimators import (
Estimator,
EstimatorCVAE,
EstimatorCVAEncem,
EstimatorED,
EstimatorEDncem,
EstimatorGraph,
EstimatorInteractions,
EstimatorLinear,
EstimatorNoGraph,
)
from ncem.estimators import (Estimator, EstimatorCVAE, EstimatorCVAEncem,
EstimatorED, EstimatorEDncem, EstimatorGraph,
EstimatorInteractions, EstimatorLinear,
EstimatorNoGraph)
from ncem.models import BetaScheduler
Loading