Alexander Scherbatiy
Alexander Scherbatiy
The problem of the current AtomSpace project implementation is that there is no one single document which describes links behavior. For example it is possible to change PutLink behavior in...
In current implementation OpenPsi is run in a loop where it checks if its rules are satisfied in the AtomSpace. The proposal is to allow to subscribe OpenPsi on some...
Below is a simple usage of OpenPsi which calls methods from Python: ```python import time from opencog.type_constructors import * from opencog.utilities import initialize_opencog from opencog.bindlink import execute_atom, evaluate_atom # Initialize...
I run the code [sample-ghost-notebook.scm](https://github.com/stellarspot/opencog-tutorial/blob/1de8396546993ccc54afd6a3877c13e4203d7298/samples/ghost/sample-ghost-notebook.scm) and it crashes with Segmentation fault error sometimes. Here is the result of call `catchsegv guile samples/ghost/sample-ghost-notebook.scm` ``` [2019-04-26 15:03:52:974] [WARN] [GHOST] Did you forget...
Run the sample: ```scheme (use-modules (opencog) (opencog nlp) (opencog nlp relex2logic) (opencog ghost) (opencog ghost procedures) (opencog exec)) (ghost-parse " r: (where do _* work) '_0 work in SomeCompany. ")...
Run the code: ```scheme (use-modules (opencog) (opencog nlp) (opencog nlp relex2logic) (opencog ghost) (opencog ghost procedures) (opencog exec)) (define-public (where-somebody-work who-list) (display (string-append "argument: " (cog-name (car (cog-outgoing-set who-list))) "\n"))...
ChatScript has a lot of predefined concepts parsed from WordNet ontology. So it is possible just to write rule: ``` #! Do you like pigeon? ?: (do you like _~bird)...
[platform-pipeline](https://github.com/singnet/platform-pipeline/) project now has [integration test](https://github.com/singnet/platform-pipeline/blob/master/features/publish_example_service.feature) which uses snet-cli. The request is to add an integration test which uses Dapp.
Current implementation runs etcd client in the same thread. It would be useful to run etcd client asynchronously to wait that etcd cluster is enabled.
This is a request to add etcd integration test which tests several etcd instances: 1. Run 3 etcd servers 1. Wrire/Read data from the etcd cluster 1. Close one server...