Don't forget to :
$ source ./venv/bin/activate(to create venv : python3 -m venv venv)
To install dependancies
$ pip install -r requirements.txt$ python src/perceptron/perceptron_ui.pyPress s to start the perceptron
Press q to quit the perceptron
WORK IN PROGRESS
$ python src/perceptron/perceptron_tf.pyRunning the neural network base configuration with XOR classification.
$ python src/neural_network/xor_basic.pyRunning the neural network with XOR classification with render system made with Matplotlib and Tk.
$ python src/neural_network/xor_plt.py
$ python src/neural_network/xor_tk.pyRunning the neural network doodle classifier using Google Quickdraw dataset.
$ python src/neural_network/doodle_classifier.pyhttps://quickdraw.withgoogle.com/
https://github.com/googlecreativelab/quickdraw-dataset
https://console.cloud.google.com/storage/browser/quickdraw_dataset
$ python src/genetic_algorithm.pyhttps://rasa.com/products/rasa-stack/
https://github.com/RasaHQ/starter-pack-rasa-nlu
Project initialization:
$ cd src/nlp
$ pip install -r requirements.txtLoading language model:
$ python -m spacy download enTraining the model:
$ python -m rasa_nlu.train -c data/nlu_config.yml --data data/data.md -o data/models --project test_enRun nlu model as a server:
$ python -m rasa_nlu.server --path data/modelsTo query the server:
$ curl -X POST localhost:5000/parse -d '{"query": "Hello", "project": "test_en"'WORK IN PROGRESS