AI-MicroStructure

 view release on metacpan or  search on metacpan

META.yml  view on Meta::CPAN

no_index:
  directory:
    - misc
requires:
  AI::Categorizer: '0'
  AI::Categorizer::Document: '0'
  AI::Categorizer::KnowledgeSet: '0'
  AI::Categorizer::Learner::NaiveBayes: '0'
  Algorithm::BaumWelch: '0'
  AnyDBM_File: '0'
  AnyEvent::Subprocess::Easy: '0'
  Cache::Memcached::Fast: '0'
  Carp: '0'
  Class::Container: '0'
  Config::Auto: '0'
  Cwd: '0'
  Data::Dumper: '0'
  Data::Printer: '0'
  Digest::MD5: '0'
  Digest::SHA1: '0'
  Exporter: '0'

Makefile.PL  view on Meta::CPAN

  "LICENSE" => "perl",
  "MIN_PERL_VERSION" => "5.014001",
  "NAME" => "AI::MicroStructure",
  "PREREQ_PM" => {
    "AI::Categorizer" => 0,
    "AI::Categorizer::Document" => 0,
    "AI::Categorizer::KnowledgeSet" => 0,
    "AI::Categorizer::Learner::NaiveBayes" => 0,
    "Algorithm::BaumWelch" => 0,
    "AnyDBM_File" => 0,
    "AnyEvent::Subprocess::Easy" => 0,
    "Cache::Memcached::Fast" => 0,
    "Carp" => 0,
    "Class::Container" => 0,
    "Config::Auto" => 0,
    "Cwd" => 0,
    "Data::Dumper" => 0,
    "Data::Printer" => 0,
    "Digest::MD5" => 0,
    "Digest::SHA1" => 0,
    "Exporter" => 0,

Makefile.PL  view on Meta::CPAN

);


my %FallbackPrereqs = (
  "AI::Categorizer" => 0,
  "AI::Categorizer::Document" => 0,
  "AI::Categorizer::KnowledgeSet" => 0,
  "AI::Categorizer::Learner::NaiveBayes" => 0,
  "Algorithm::BaumWelch" => 0,
  "AnyDBM_File" => 0,
  "AnyEvent::Subprocess::Easy" => 0,
  "Cache::Memcached::Fast" => 0,
  "Carp" => 0,
  "Class::Container" => 0,
  "Config::Auto" => 0,
  "Cwd" => 0,
  "Data::Dumper" => 0,
  "Data::Printer" => 0,
  "Digest::MD5" => 0,
  "Digest::SHA1" => 0,
  "Exporter" => 0,

README.md  view on Meta::CPAN

AI-MicroStructure
=================

A concept is a mental representation for a word or any form of inputs!

Concepts allows us to draw appropriate inferences about the type of entities we encounter in our everyday lives!

The use of concepts is necessary to cognitive processes such as categorization, memory, decision making, learning and inference.

AI-MicroStructure is a package to build concepts for words.

Anybody whisching to do categorization, memory, decision making, learning and inference.

requires as much concepts for a specific (word,idea,sensor input) as possible to base any further knowledge or decission on

to be able to fly you require only to types

```

README.md  view on Meta::CPAN

  $  for i in `micro ufo all`;   do micro new $i; done;  # new structure for all words in ufo

  $  for i in `micro ufo all`;   do micro-wiki $i; done; # push all words against the wiki plugin dont forget setting user & password in /usr/local/bin/micro-wiki

  ###################################################################################
  # try to follow the logic combine
  # your-word=micro new ? ->concept->concepts->relations->node


  $ micro new biology
  $ micro new biological_process

  $ for i in `micro structures`; do
  $ for y in `micro all $i `; do
  $ echo "$i=$y";
  $ micro new $y;
  $ done
  $ done

  #!!!!!###Hard cpu to expect ### make sure couch is on   ######  or disable the store methode in micro-wiki and print $doc or consume otherweise
  # test as single before you loope 

bin/micro  view on Meta::CPAN

if ($conf{"export"}) {
    my $cwd = $CWD[0];
    my $hash = $main->fitnes();
    my $url = sprintf("%s/%s/_all_docs", $config->{couchdb}, $config->{db});
    print `cd $cwd && mkdir -p relations && wget -O relations/any.json $url && git add relations/any.json $structdir/*.pm && git commit -m 'active memory release' && git tag $hash`; # FIXME check for errors FIXME also that we commit per structure and...

    exit;
}

my (@remote, @local);
# real processing starts here
$\ = $/;
my $sep = $conf{whitespace} ? ' ' : $\;

my $j = $main->structures();


if($j == 0 || $j eq "any"){

print $main->help;
exit(0);

dist.ini  view on Meta::CPAN

homepage    = http://active-memory.de:2323


[Prereqs]
perl=v5.14.1
File::HomeDir=0
AI::Categorizer::Document = 0
AI::Categorizer::KnowledgeSet = 0
AI::Categorizer::Learner::NaiveBayes = 0
AnyDBM_File = 0
AnyEvent::Subprocess::Easy = 0
Carp = 0
Config::Auto = 0
Cwd = 0
Data::Dumper = 0
Data::Printer = 0
Digest::MD5 = 0
Digest::SHA1 = 0
Exporter = 0
Fcntl = 0
File::Basename = 0



( run in 0.418 second using v1.01-cache-2.11-cpan-8d75d55dd25 )