Skip to content

Commit

Permalink
Merge branch 'master' of github.com:Avsecz/concise
Browse files Browse the repository at this point in the history
  • Loading branch information
Avsecz committed Nov 30, 2016
2 parents 65161b7 + e5c7b1f commit a688803
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 13 deletions.
23 changes: 10 additions & 13 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,19 +25,13 @@ CONCISE (COnvolutional neural Network for CIS-regulatory Elements) is a model fo
* Free software: MIT license
* Documentation: https://concise-bio.readthedocs.io

.. image:: concise-figure1.png
:width: 60%
:align: center

Features
--------

* Architecture:

::

Sequence +-> Conv -> reLU -> average pool +-> y <-+ Additional linear features
^
|
Positional bias +-----+


* Very simple API
* Serializing the model to JSON
- allows to analyze the results in any langugage of choice
Expand Down Expand Up @@ -87,9 +81,10 @@ Getting Started
######
# Train CONCISE
######
# initialize CONCISE
co = concise.Concise(motif_length = 9, n_motifs = 2, init_motifs = ("TATTTAT", "TTAATGA"))
co = concise.Concise(motif_length = 9, n_motifs = 2,
init_motifs = ("TATTTAT", "TTAATGA"))
# train:
# - on a GPU if tensorflow is compiled with GPU support
Expand All @@ -111,7 +106,9 @@ Getting Started
######
# intialize
co3 = concise.Concise(motif_length = 9, n_motifs = 2, init_motifs = ("TATTTAT", "TTAATGA"))
co3 = concise.Concise(motif_length = 9, n_motifs = 2,
init_motifs = ("TATTTAT", "TTAATGA"))
cocv = concise.ConciseCV(concise_object = co3)
# train
Expand Down
Binary file added concise-figure1.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit a688803

Please sign in to comment.