[opencog-dev] OpenCog and Concept Search

2016-09-10 Thread Amirouche Boubekki
Héllo, I am looking to build a concept search engine . I want to know if there is prior work done using opencog in particular or similar approaches that could help in this task. And more generaly is there work done in the field of text mining using

Re: [opencog-dev] Trying to understand the inference control problem.

2017-02-26 Thread Amirouche Boubekki
On Sunday, February 26, 2017 at 9:49:05 AM UTC+1, Nil wrote: > > Hi Ken, > > On 02/25/2017 07:42 AM, Ken Kafieh wrote: > > > In one sentence: Mine the history of inferences and ask the system to > come up with inference control patterns that may speed up future > inferences. > > Of course

Re: [opencog-dev] Trying to understand the inference control problem.

2017-02-26 Thread Amirouche Boubekki
On Sunday, February 26, 2017 at 9:49:05 AM UTC+1, Nil wrote: > > Hi Ken, > > On 02/25/2017 07:42 AM, Ken Kafieh wrote: > > Thanks Ben, > [...] > I see that the wiki page is lacking in content or links regarding that > matter http://wiki.opencog.org/w/Inference_Control. We need to remedy

[opencog-dev] How do you handle "wikification" of words?

2017-02-26 Thread Amirouche Boubekki
Héllo, I read that wikification is an important process of getting computers to understand what is written. wikification aims to retrieving the concept vertex from a given piece text of text. E.g: apple is http://conceptnet.io/c/en/apple Bob marley is http://conceptnet.io/c/en/bob_marley H

[opencog-dev] DBpedia runs a NLP competition called textext

2017-03-06 Thread Amirouche Boubekki
Background DBpedia and Wikidata currently focus primarily on representing factual knowledge as contained in Wikipedia infoboxes. A vast amount of information, however, is contained in the unstructured Wikipedia article texts. With the DBpedia Open Text Extraction Challenge, we aim to spur kno

Re: [opencog-dev] How do you handle "wikification" of words?

2017-03-06 Thread Amirouche Boubekki
-partition procedure does generate all slices of a given list (or list of words (or sentence)). It doesn't unk the text, that's a bug. Kind of off-topic, I made a naive sat solver https://framagit.org/a-guile-mind/culturia.one/blob/guildhall/src/sat.scm On Sun, Feb 26, 2017 at 3:07 PM

Re: [opencog-dev] How do you handle "wikification" of words?

2017-03-06 Thread Amirouche Boubekki
On Mon, Mar 6, 2017 at 10:55 PM Amirouche Boubekki < amirouche.boube...@gmail.com> wrote: all-partition procedure does generate all slices of a given list (or list of words (or sentence)). It doesn't unk the text, that's a bug. I mean, you receive a '() when the word is n

Re: [opencog-dev] How do you handle "wikification" of words?

2017-03-06 Thread Amirouche Boubekki
I did not finish reading the documentation @ http://wiki.opencog.org/w/RelEx_Dependency_Relationship_Extractor On Mon, Mar 6, 2017 at 10:59 PM Amirouche Boubekki < amirouche.boube...@gmail.com> wrote: > On Mon, Mar 6, 2017 at 10:55 PM Amirouche Boubekki < > amirouche.boube...@g

[opencog-dev] Re: NLP - moving to Word grammar (are there tools?), understanding language, universal reference knowledge base

2017-03-12 Thread Amirouche Boubekki
There is this pdf that present the field http://www.cs.cmu.edu/~nasmith/slides/sp4nlp.icml09.pdf On Saturday, March 11, 2017 at 1:54:52 PM UTC+1, Alex wrote: > > Hi! > > Some questions; > * In http://wiki.opencog.org/w/OpenCogPrime:NLP it is said that there are > plans for moving from Link Gramm

[opencog-dev] Re: DBpedia runs a NLP competition called textext

2017-03-23 Thread Amirouche Boubekki
On Monday, March 6, 2017 at 9:59:03 PM UTC+1, Alex wrote: > > I have heard about this challenge, but it distributes funds and is > intended for novel short programs > Sorry, I don't understand what you mean by "it distributes funds" and "is intended for novel short programs" > and, as I un

Re: [opencog-dev] Atomspace- A neural-symbolic network?

2017-05-07 Thread Amirouche Boubekki
I think the neural part comes from the fact that it use an (hyper) graph of probabilities like explained by Matt. The symbolic part stems from the fact that nodes in the graph are labeled which strings which form a programming language that can take advantage of FOL. My understanding is that atomsp

Re: [opencog-dev] Re: Graphs for the two representations of the knowledge and ideas about the third generation Cog system - MOC - MetaOmegaCog?

2017-10-01 Thread Amirouche Boubekki
Héllo all, On Sun, Oct 1, 2017 at 6:09 AM Linas Vepstas wrote: > Hi Ed, > > Here's my experience and I would love to get help with it. I am now > building graphs that are so large, that they no longer fit into RAM (on a > machine with 256GB RAM). I'm slowly moving to algorithms that can page i

Re: [opencog-dev] Contributing to Opencog

2017-10-01 Thread Amirouche Boubekki
On Mon, Sep 25, 2017 at 5:05 PM Onkar N Mahajan wrote: > I am interested to contributing to Opencog. What do I need to learn, and > how soon can I be an active contributor ? > Forget about it. I've been lurking for 2 years, read dozens if not hundreds of wiki pages and papers and I still can't c

[opencog-dev] Kaggle: Quora Question Pairs: Can you identify question pairs that have the same intent?

2017-10-01 Thread Amirouche Boubekki
I tasked myself, to learn opencog by solving a task, in this case quora kaggle challenge . Currently, Quora uses a Random Forest model to identify duplicate > questions. In this competition, Kagglers are challenged to tackle this > natural languag

Re: [opencog-dev] Contributing to Opencog

2017-10-08 Thread Amirouche Boubekki
On Sat, Oct 7, 2017 at 4:12 PM Linas Vepstas wrote: > For the last ten years, I've been thinking of the atomspace as a "graph > database". In the last 6+ months, I'm starting to realize that this is the > wrong viewpoint. I think I know a better one, but it takes some explaining. > What is your

[opencog-dev] neon: a database that works like git

2018-02-18 Thread Amirouche Boubekki
I think I found the correct union of features that would be helpful in a data science context. That is a database that works like git or *git for data* kind of database. It's mainly inspired from datomic and two papers: - Git for triples http://www.hyperdev.fr/projects/neon/ldow2013-paper-01.pd

Re: [opencog-dev] neon: a database that works like git

2018-02-19 Thread Amirouche Boubekki
Hi Linas, Tx for taking the time to reply. On Sunday, February 18, 2018 at 8:38:28 PM UTC+1, linas wrote: > > Hi Amirouche, > > I skimmed th PDF's. Some of the goals are laudable: I quote: > "the exchange of partial graphs, personalised views on data > and a need for trust. A strong versioni

Re: [opencog-dev] neon: a database that works like git

2018-02-19 Thread Amirouche Boubekki
Héllo Ivan, On Mon, Feb 19, 2018 at 9:35 PM Ivan Vodišek wrote: > Hello, Amirouche Boubekki :) > > May I ask, in your opinion, how would triple store be suitable for > describing arbitrary algorithms? Possibility to describe algorithms, as a > dynamic side of some AGI knowledge

Re: [opencog-dev] neon: a database that works like git

2018-02-23 Thread Amirouche Boubekki
Hi both of you, On Tue, Feb 20, 2018 at 1:04 PM Jeff Thompson wrote: > > Is the representation of "Bob knows Alice" by a single edge a good > representation? No -- its an absolutely terrible representation. > > Indeed. A Wikidata-style triple is not knowledge representation, it is > knowledge e

[opencog-dev] Re: OpenCog listed among the top 5 OSS projects of 2018

2018-02-23 Thread Amirouche Boubekki
On Friday, February 23, 2018 at 1:50:42 PM UTC+1, Ben Goertzel wrote: > > ... woo hoo ... > > https://www.cbronline.com/list/top-5-open-source-projects-2018 > > ... and as it happens, this is going to be a *really* interesting year > for OpenCog development... > > There will be a F2F OpenCog

Re: [opencog-dev] Anyone has experience to set up Eclipse for Scheme?

2018-02-28 Thread Amirouche Boubekki
On Wednesday, February 28, 2018 at 4:54:57 PM UTC+1, shujingke wrote: > > > Is there anything you know that works with guile and has an convenient > debugger? > FWIW, I use pk aka. peek stuff to debug, it takes a variable list of argument and return the last. For instance: (define my-variabl

[opencog-dev] Re: neon: a database that works like git

2018-05-02 Thread Amirouche Boubekki
On Sunday, February 18, 2018 at 4:40:08 PM UTC+1, Amirouche Boubekki wrote: > > I think I found the correct union of features that would be helpful in a > data science context. That is a database that works like git or *git for > data* > kind of database. > > It's ma

[opencog-dev] The Graph Traversal Machine: Close Encounters of the Fourth Kind

2018-11-02 Thread Amirouche Boubekki
https://zenodo.org/record/1476234/files/forth-kind.pdf?download=1 -- You received this message because you are subscribed to the Google Groups "opencog" group. To unsubscribe from this group and stop receiving emails from it, send an email to opencog+unsubscr...@googlegroups.com. To post to thi

Re: [opencog-dev] The Graph Traversal Machine: Close Encounters of the Fourth Kind

2018-11-06 Thread Amirouche Boubekki
-- this means you. Care to take a stab at actually implementing > this? Care to recruit and convince someone else to do this? Or at least, > for starters, care to take a stab at answering the earlier questions? > Cause its always worth knowing why something should be done, be

[opencog-dev] Re: The Schemewrapper Python module appears to be missing some files

2019-04-26 Thread Amirouche Boubekki
On Friday, April 26, 2019 at 12:05:46 PM UTC+2, Johannes Castner wrote: > > Dear group, > > If you could help me with this bug, I'd be greatly appreciative. I have a > few scheme files, called `load_all.scm`, `math.scm`, `statements.scm`, > `collectiwise.scm` that I want to import while work

Re: [opencog-dev] Re: The Schemewrapper Python module appears to be missing some files

2019-04-27 Thread Amirouche Boubekki
o link with libreadline configure:54891: result: -lreadline config.log is generated by ./configure. Maybe `libreadline-dev` is not installed? > > Is there something wrong or missing in this approach? > > Johannes > > On Friday, April 26, 2019 at 11:13:09 PM UTC+1, Amirouche Bou

Re: [opencog-dev] Re: The Schemewrapper Python module appears to be missing some files

2019-04-27 Thread Amirouche Boubekki
, 2019 at 11:13:09 PM UTC+1, Amirouche Boubekki wrote: >> >> >> >> On Friday, April 26, 2019 at 12:05:46 PM UTC+2, Johannes Castner wrote: >>> >>> Dear group, >>> >>> If you could help me with this bug, I'd be greatly appre

Re: [opencog-dev] The Graph Traversal Machine: Close Encounters of the Fourth Kind

2019-05-13 Thread Amirouche Boubekki
On Wednesday, November 7, 2018 at 12:41:36 AM UTC+1, Amirouche Boubekki wrote: > > I will respond in a single mail to all the topics you raised in the other > emails. > > a) thanks for the kind words, even if I could implement tinkerpop4 in c++ > and all the requirements li

Re: [opencog-dev] The Graph Traversal Machine: Close Encounters of the Fourth Kind

2019-05-13 Thread Amirouche Boubekki
Le lun. 13 mai 2019 à 13:47, Amirouche Boubekki < amirouche.boube...@gmail.com> a écrit : > > > On Wednesday, November 7, 2018 at 12:41:36 AM UTC+1, Amirouche Boubekki > wrote: >> >> I will respond in a single mail to all the topics you raised in the other >>

Re: [opencog-dev] The Graph Traversal Machine: Close Encounters of the Fourth Kind

2019-05-24 Thread Amirouche Boubekki
On Tuesday, May 14, 2019 at 8:58:47 PM UTC+2, linas wrote: > > > > On Mon, May 13, 2019 at 6:47 AM Amirouche Boubekki > wrote: > >> >> c) Like I said previously, I think what you need is foundationdb >>> <http://foundationdb.org/> >>> >

[opencog-dev] Triple extraction from text

2019-05-25 Thread Amirouche Boubekki
Hello, Is there existing work or work you want to recommend to me regarding the topic of extracting triples from text. Here are some example: - Bloomberg is an analytics company. => (Bloomberg, is a, analytics company) - Microsoft created Windows => (Microsoft, created, windows) - Google is a

[opencog-dev] Re: Newbie

2019-05-25 Thread Amirouche Boubekki
I can help regarding the website. I will follow closely the conversation. I hope it doesn't end up like my Link Grammar website ... On Friday, May 24, 2019 at 10:07:16 PM UTC+2, buj wrote: > > Hello, > > I am interested in contributing to the project, m

[opencog-dev] Example use of link grammar output

2019-05-25 Thread Amirouche Boubekki
Example use of link grammar output. Say I have the following linkage: +---Xp---+ | +---Ost---+| +--->WV-->+ +-Ds**x+| +--->Wd---+--Ss*s-+ | +---AN---+| | | | | |

[opencog-dev] Accelerating Science Whitepaper [pdf]

2019-09-29 Thread Amirouche Boubekki
https://cra.org/ccc/wp-content/uploads/sites/2/2016/02/Accelerating-Science-Whitepaper-CCC-Final2.pdf -- Amirouche ~ amz3 ~ https://hyper.dev -- You received this message because you are subscribed to the Google Groups "opencog" group. To unsubscribe from this group and stop receiving emails f

Re: [opencog-dev] No activity since 24th/July?

2019-10-28 Thread Amirouche Boubekki
Hello Abdulrahman, Le lun. 28 oct. 2019 à 09:50, Abdulrahman Semrie a écrit : > > Well, I am interested in opencog platform (especially the Atomspace) and have > been studying the codebase over the past month or so in hopes of contributing > some day :). And we are using the atomspace at Mozi t

[opencog-dev] Toward an abstract Wikipedia

2020-01-26 Thread Amirouche Boubekki
http://simia.net/download/abstractwikipedia_whitepaper.pdf -- You received this message because you are subscribed to the Google Groups "opencog" group. To unsubscribe from this group and stop receiving emails from it, send an email to opencog+unsubscr...@googlegroups.com. To view this discussi

Re: [opencog-dev] why scheme not common lisp

2020-02-11 Thread Amirouche Boubekki
Le jeu. 6 févr. 2020 à 11:20, paarulakan(பாருலகன்) a écrit : > > Why did opencog choose scheme as its lisp not common lisp. I recently started > learning lisp family of languages, still a newbie. but other than the thing > that scheme is lighweight, are they any other reason for using scheme? I

[opencog-dev] Bootstrapp seed for a grammar in natural language

2020-02-11 Thread Amirouche Boubekki
I am wondering whether there is existing material about how to bootstrap a LG-like dictionary using a seed of natural language elements: grammar, words, punctuation The idea is to use such a seed to teach the program more about the full grammar using almost natural conversations. -- You rece

Re: [Link Grammar] Re: [opencog-dev] Bootstrapp seed for a grammar in natural language

2020-02-19 Thread Amirouche Boubekki
gt; I would love to work on this, but well, good old capitalistic considerations > are currently blocking my efforts. > > --linas > > On Tue, Feb 11, 2020 at 9:16 AM Amirouche Boubekki > wrote: >> >> I am wondering whether there is existing material about how to >> boo

[opencog-dev] copernic: versioned structured data, with change-request mechanic, at scale

2020-02-29 Thread Amirouche Boubekki
I am pleased to share with you the code of copernic. copernic is inspired from RDF, but much simpler for the time being. It is a versioned triple store. demo: http://copernic.space/ code: https://github.com/amirouche/copernic I do not assume that you will change from AtomSpace to copernic (overn

[opencog-dev] Re: [ANNOUNCE] Link-Grammar Version 5.8.0 is now available.

2020-02-29 Thread Amirouche Boubekki
Thanks! I really think LG approach deserves more visibility. Thanks for keeping the lights on. On Saturday, February 29, 2020 at 3:51:43 AM UTC+1, linas wrote: > > Version 5.8.0 of link-grammar has been released. > > Notable changes include: inclusion of javascript node.js bindings; the > obsole

[opencog-dev] Fast spell checking or entity linking with bbkh

2020-06-30 Thread Amirouche Boubekki
This is not strictly related to opencog but might come useful if you want to use it as part of an NLP / NLU pipeline where you need to spell check and link a given text to a knowledge base. So the idea is that you have a text where they might be spelling mistakes. The easiest option would be t

Re: [Link Grammar] Re: [opencog-dev] Fast spell checking or entity linking with bbkh

2020-07-01 Thread Amirouche Boubekki
Le mar. 30 juin 2020 à 20:04, Linas Vepstas a écrit : > > Hi Amirouche, > > There are other, far more sophisticated ways of doing spell checking. The > best way is to do context-dependent checking... and link-grammar provides > extremely precise context. For example, "I gave him teh hammer" -- t

Re: [Link Grammar] Re: [opencog-dev] Fast spell checking or entity linking with bbkh

2020-07-01 Thread Amirouche Boubekki
Even if minisat is slow at the moment, maybe some people will pick interest in the subject and optimize it for that use-case. -- You received this message because you are subscribed to the Google Groups "opencog" group. To unsubscribe from this group and stop receiving emails from it, send an em

[opencog-dev] Re: OpenCogCon online event (talks / panels) next week ...

2020-07-16 Thread Amirouche Boubekki
Are the presentation recorded? Can we watch them later? Thanks! On Wednesday, July 8, 2020 at 8:44:50 PM UTC+2 Ben Goertzel wrote: > Hi all, > > My SingularityNET colleagues and I are organizing an OpenCog-focused > online event (talks + panels) next week, see > > https://opencog.org/2020/07/vir

Re: [opencog-dev] Announce: Distributed AtomSpace proof-of-concept

2020-07-19 Thread Amirouche Boubekki
Hello all, Sorry to be the person to announce not so good news, but it seems to be distributed not in the sense of peer-to-peer distribution. At the very least, if distributed in the sense of peer-to-peer it will require a private peer-to-peer network. That is not the case of OpenDHT. Again, I bu

Re: [opencog-dev] Announce: Distributed AtomSpace proof-of-concept

2020-07-20 Thread Amirouche Boubekki
Le lun. 20 juil. 2020 à 03:57, Lansana Camara a écrit : > > Can you provide a diagram of the architecture? A DHT backend could be used to spread the on-disk load over many peers, but only as _cold storage_ not as a primary source of truth. > I'm having a hard time visualizing high-performance se

Re: [opencog-dev] Re: OpenCogCon online event (talks / panels) next week ...

2020-07-20 Thread Amirouche Boubekki
The hyperon pdf link leads to a 403 Kind regards -- You received this message because you are subscribed to the Google Groups "opencog" group. To unsubscribe from this group and stop receiving emails from it, send an email to opencog+unsubscr...@googlegroups.com. To view this discussion on the

Re: [opencog-dev] Announce: Distributed AtomSpace proof-of-concept

2020-07-20 Thread Amirouche Boubekki
Sorry! I do not want to upset you. I will re-read the paper and go through atomspace-cog and the original atomspace. Again sorry for misleading the conversation. -- You received this message because you are subscribed to the Google Groups "opencog" group. To unsubscribe from this group and stop

[opencog-dev] Re-imagining the AtomSpace

2021-08-17 Thread Amirouche Boubekki
I am very eager to read more about the new AtomSpace design architecture. I went through the wiki page at : https://wiki.opencog.org/w/AtomSpace There is still a few things I do not understand. I will be very glad to be part of this endeavor wholly and fully. Only the best, Amirouche ~ http

Re: [opencog-dev] Re-imagining the AtomSpace

2021-08-17 Thread Amirouche Boubekki
Is there a page that gathers all the publications regarding the new design ? -- You received this message because you are subscribed to the Google Groups "opencog" group. To unsubscribe from this group and stop receiving emails from it, send an email to opencog+unsubscr...@googlegroups.com. To

Re: [opencog-dev] Re-imagining the AtomSpace

2021-08-18 Thread Amirouche Boubekki
Le mar. 17 août 2021 à 22:24, Ben Goertzel a écrit : > > https://wiki.opencog.org/w/Hyperon > Thanks, I will look into that. I am eager to read the upcoming publications. -- You received this message because you are subscribed to the Google Groups "opencog" group. To unsubscribe from this grou

Re: [opencog-dev] Re-imagining the AtomSpace

2021-08-18 Thread Amirouche Boubekki
Hello Linas :-) Le mer. 18 août 2021 à 00:40, Linas Vepstas a écrit : > > I spent the last week trying to convince a group of scheme enthusiasts to > build a "database for s-expressions", which, after all is said and done, is > all that the Atomspace is. This idea went over like a lead balloon.

Re: [opencog-dev] Re-imagining the AtomSpace

2021-08-30 Thread Amirouche Boubekki
Le dim. 29 août 2021 à 23:59, Linas Vepstas a écrit : > > Hi Amirouche, > > On Thu, Aug 19, 2021 at 1:20 AM Amirouche Boubekki > wrote: >> >> >> If you deliver a set of json or sexp files that is relevant to >> opencog, I think about one terabyte or some

Re: [opencog-dev] Re-imagining the AtomSpace

2021-09-01 Thread Amirouche Boubekki
ut 4.3 GBytes RAM. > That's about 632 bytes/atom when in RAM. It's just pure Atoms, no > Values. Compare to 55 Bytes/atom when stored as uncompressed s-exprs, > or about 4 Bytes/atom when bzip2-compressed. Clearly, indexes are > expensive! > > --linas > > &g

[opencog-dev] Linguistics for the Age of AI

2021-10-23 Thread Amirouche Boubekki
A human-inspired, linguistically sophisticated model of language understanding for intelligent agent systems. The open access edition of this book was made possible by generous funding from Arcadia – a charitable fund of Lisbet Rausing and Peter Baldwin. One of the original goals of artificial in

[opencog-dev] AGI 21 Papers: Recognizing Patterns by Linas Vepstas

2021-10-30 Thread Amirouche Boubekki
Le sam. 30 oct. 2021 à 06:17, Linas Vepstas a écrit : > > Hi! > > The slide deck that I presented is available at > > https://github.com/opencog/learn/blob/master/learn-lang-diary/recognizing-patterns.pdf > > and a transcript of what I was going to say is at > > https://github.com/opencog/learn/bl

Re: [opencog-dev] Availability of AGI 21 Papers?

2021-11-09 Thread Amirouche Boubekki
There is one major missing piece, I do not know how to word it properly. Let's try: Linas' algorithm does build a model in a way that is unsupervised that can predict the linguistic structure of a sentence. With that model, Every word part a sentence can be attached to half a directed link, in

[opencog-dev] OpenCog Rework [Re: s-expression database]

2021-11-09 Thread Amirouche Boubekki
> > > > Rocksdb is a serverless, single-system key-value database optimized for > > > > SSD disks. It has C bindings, and it's fast. For me, simple and fast > > > > are highly desirable properties. > > > > > > So is wiredtiger https://source.wiredtiger.com/ but GPLv3 > > > > Is wiredtiger actuall

Re: [opencog-dev] Availability of AGI 21 Papers?

2021-11-11 Thread Amirouche Boubekki
Le mar. 9 nov. 2021 à 18:18, Linas Vepstas a écrit : > > On Tue, Nov 9, 2021 at 3:01 AM Amirouche Boubekki > wrote: > > > > There is one major missing piece, I do not know how to word it properly. > > Let's try: Linas' algorithm does build a model in a w

Re: [opencog-dev] OpenCog Rework [Re: s-expression database]

2021-11-11 Thread Amirouche Boubekki
if that's the one I practice the most nowadays. Le mar. 9 nov. 2021 à 18:07, Linas Vepstas a écrit : > > On Tue, Nov 9, 2021 at 3:44 AM Amirouche Boubekki > wrote: > > > > > > > > Rocksdb is a serverless, single-system key-value database optimized > > &