Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
This repository was archived by the owner on Mar 10, 2023. It is now read-only.

Commit 343c2ed

Browse files
authored
Merge pull request #7 from Edvinas01/master
Add travis and example unit test
2 parents 8803151 + bbc36a2 commit 343c2ed

File tree

4 files changed

+22
-1
lines changed

4 files changed

+22
-1
lines changed

‎.gitignore‎

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,3 +99,7 @@ ENV/
9999

100100
# mypy
101101
.mypy_cache/
102+
103+
# IntelliJ
104+
.idea/
105+
*.iml

‎.travis.yml‎

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
language: python
2+
python:
3+
- "3.5"
4+
install:
5+
- pip install -r requirements.txt
6+
script:
7+
- python -m unittest discover --pattern=*_test.py

‎README.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# TensorFlow RNN CTC ![Build Status](https://travis-ci.org/ugnelis/tensorflow-rnn-ctc.svg?branch=master)
1+
# TensorFlow RNN CTC [![Build Status](https://travis-ci.org/ugnelis/tensorflow-rnn-ctc.svg?branch=master)](https://travis-ci.org/ugnelis/tensorflow-rnn-ctc)
22

33
Connectionist Temporal Classification (CTC) by using Recurrent Neural Network (RNN) in TensorFlow.
44

‎example_test.py‎

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import unittest
2+
3+
4+
class ExampleTest(unittest.TestCase):
5+
def test(self):
6+
self.assertTrue(True)
7+
8+
9+
if __name__ == '__main__':
10+
unittest.main()

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /