File tree Expand file tree Collapse file tree 11 files changed +31
-14
lines changed
Expand file tree Collapse file tree 11 files changed +31
-14
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ RUN mkdir $DRAGONFIRE_DIR
3434RUN mkdir $DEEPCONV_DIR
3535
3636# Download the DeepConversation Tensorflow model
37- ADD https://github.com/DragonComputer/Dragonfire/releases/download/v1.0.3 /deepconv-v3.tar.gz $DEEPCONV_DIR
37+ ADD https://github.com/DragonComputer/Dragonfire/releases/download/v1.0.4 /deepconv-v3.tar.gz $DEEPCONV_DIR
3838RUN cd $DEEPCONV_DIR && tar xvfz deepconv-v3.tar.gz
3939
4040# Install OpenSSL and libffi for Tensorflow
Original file line number Diff line number Diff line change @@ -55,14 +55,14 @@ Feel free to join [our Gitter chat room](https://gitter.im/DragonComputer/Lobby)
5555To run Dragonfire on a desktop Debian or Ubuntu system, either download the [ latest release] ( https://github.com/DragonComputer/Dragonfire/releases/latest ) (the ` .deb ` file) and install as follows:
5656
5757``` Shell
58- sudo dpkg -i dragonfire_1.0.2_amd64 .deb
58+ sudo dpkg -i dragonfire_1.0.4_amd64 .deb
5959```
6060
6161
6262or clone the GitHub repository and run
6363
6464``` Shell
65- sudo ./ install.sh
65+ make install
6666```
6767
6868in the repository directory.
Original file line number Diff line number Diff line change 1+ dragonfire (1.0.4) unstable; urgency=medium
2+
3+ * Upgraded TensorFlow version from 1.0.0 to 1.14.0
4+ * Upgraded spaCy version from 2.0.13 to 2.1.3
5+ * Upgraded NeuralCoref version to 4.0
6+ * Updated the DeepConversation Tensorflow model and published (v3)
7+ * Refactored some of the NLP methods
8+ * Updated the Docker image
9+ * Added a Makefile to simplify installation commands
10+ * Fixed some of the tests
11+ * Fixed the CI pipelines
12+ * Implemented code coverage by integrating CI to Codecov
13+ * Integrated Code Climate to have automated code reviews and metrics
14+ * Fixed Read the Docs documentation build pipeline
15+
16+ -- Mehmet Mert Yildiran <
[email protected] > Fri, Nov 29 2019 01:20:45 +0300
17+
118dragonfire (1.0.2) unstable; urgency=medium
219
320 * libgtk2.0-0 and gir1.2-gtk-3.0 dependencies are added
Original file line number Diff line number Diff line change 11[Desktop Entry]
2- Version =1.0.2
2+ Version =1.0.4
33Type =Application
44Name =Dragonfire
55Comment =Virtual Assistant for Linux
Original file line number Diff line number Diff line change 11#!/usr/bin/python3
2- # EASY-INSTALL-ENTRY-SCRIPT: 'dragonfire==1.0.2 ','console_scripts','dragonfire'
3- __requires__ = 'dragonfire==1.0.2 '
2+ # EASY-INSTALL-ENTRY-SCRIPT: 'dragonfire==1.0.4 ','console_scripts','dragonfire'
3+ __requires__ = 'dragonfire==1.0.4 '
44import re
55import sys
66from pkg_resources import load_entry_point
77
88if __name__ == '__main__' :
99 sys .argv [0 ] = re .sub (r'(-script\.pyw?|\.exe)?$' , '' , sys .argv [0 ])
1010 sys .exit (
11- load_entry_point ('dragonfire==1.0.2 ' , 'console_scripts' , 'dragonfire' )()
11+ load_entry_point ('dragonfire==1.0.4 ' , 'console_scripts' , 'dragonfire' )()
1212 )
Original file line number Diff line number Diff line change 2828cd $DEEPCONV_DIR
2929verified=$( find . -type f -exec md5sum {} \; | md5sum)
3030if [ ! ${verified::- 3} = " $CHECKSUM2 " ]; then
31- wget -nc -O - https://github.com/DragonComputer/Dragonfire/releases/download/v1.0.3 /deepconv-v3.tar.gz | tar xvfz -
31+ wget -nc -O - https://github.com/DragonComputer/Dragonfire/releases/download/v1.0.4 /deepconv-v3.tar.gz | tar xvfz -
3232fi
3333
3434
Original file line number Diff line number Diff line change 2929author = 'Mehmet Mert Yıldıran'
3030
3131# The short X.Y version
32- version = '1.0.2 '
32+ version = '1.0.4 '
3333# The full version, including alpha/beta/rc tags
34- release = '1.0.2 '
34+ release = '1.0.4 '
3535
3636
3737# -- General configuration ---------------------------------------------------
Original file line number Diff line number Diff line change 5252from sqlalchemy .orm import sessionmaker # ORM submodule of SQLAlchemy
5353
5454
55- __version__ = '1.0.2 '
55+ __version__ = '1.0.4 '
5656
5757DRAGONFIRE_PATH = os .path .dirname (os .path .abspath (inspect .getfile (inspect .currentframe ())))
5858FNULL = open (os .devnull , 'w' )
Original file line number Diff line number Diff line change 5151cd $DEEPCONV_DIR
5252verified=$( find . -type f -exec md5sum {} \; | md5sum)
5353if [ ! ${verified::- 3} = " $CHECKSUM2 " ]; then
54- wget -nc -O - https://github.com/DragonComputer/Dragonfire/releases/download/v1.0.3 /deepconv-v3.tar.gz | tar xvfz -
54+ wget -nc -O - https://github.com/DragonComputer/Dragonfire/releases/download/v1.0.4 /deepconv-v3.tar.gz | tar xvfz -
5555fi
5656
5757pip3 install --upgrade wikipedia==1.4.0 PyUserInput==0.1.11 tinydb==3.9.0.post1 youtube_dl spacy==2.1.3 pyowm==2.9.0 tensorflow==1.14.0 deepspeech==0.4.1 SpeechRecognition tweepy==3.7.0 metadata_parser==0.9.20 hug==2.4.0 hug-middleware-cors==1.0.0 waitress==1.1.0 requests==2.20.0 pyjwt==1.6.4 SQLAlchemy\> =1.3.0 PyMySQL==0.8.1 msgpack==0.5.6 neuralcoref==4.0 && \
Original file line number Diff line number Diff line change 5151cd $DEEPCONV_DIR
5252verified=$( find . -type f -exec md5sum {} \; | md5sum)
5353if [ ! ${verified::- 3} = " $CHECKSUM2 " ]; then
54- wget -nc -O - https://github.com/DragonComputer/Dragonfire/releases/download/v1.0.3 /deepconv-v3.tar.gz | tar xvfz -
54+ wget -nc -O - https://github.com/DragonComputer/Dragonfire/releases/download/v1.0.4 /deepconv-v3.tar.gz | tar xvfz -
5555fi
5656
5757pip3 install --upgrade wikipedia==1.4.0 PyUserInput==0.1.11 tinydb==3.9.0.post1 youtube_dl spacy==2.1.3 pyowm==2.9.0 tensorflow==1.14.0 deepspeech==0.4.1 SpeechRecognition tweepy==3.7.0 metadata_parser==0.9.20 hug==2.4.0 hug-middleware-cors==1.0.0 waitress==1.1.0 requests==2.20.0 pyjwt==1.6.4 SQLAlchemy\> =1.3.0 PyMySQL==0.8.1 msgpack==0.5.6 neuralcoref==4.0 && \
You can’t perform that action at this time.
0 commit comments