Skip to content

Instantly share code, notes, and snippets.

!dream "a dendritic monster emerging from the ocean, sea waves, vray, 55mm" -n 5
!dream "a wormy dendritic monster emerging from the ocean, sea waves, vray, 55mm" -n 5
!dream "furry friendly monster, photorealistic, colored, unreal engine, vray, 55mm" -n 9
https://kajsotala.fi/2007/10/14-objections-against-aifriendly-aithe-singujlarity-answered/
https://www.psychologytoday.com/us/blog/shut-and-listen/201806/humans-cant-plan-long-term-and-heres-why
https://kajsotala.fi/2007/10/14-objections-against-aifriendly-aithe-singularity-answered/
Friendly AI
https://towardsdatascience.com/attention-in-neural-networks-e66920838742
@PtrMan
PtrMan / Classifier.py
Last active April 15, 2021 12:14
NLP AI experiment which I did in 2012
from MiniClasses import *
class Classifier:
def __init__(self):
pass
def classifySentence(self, Sentence):
i = 0

What is this?

This is a collection of free e-books about Artificial Intelligence(Machine Learning, Planning) and Data Science etc. .

keywords:

ML, ebook, ebooks, books, book, machine learning, statistics, free

Books

Understanding Deep Learning 2023

@PtrMan
PtrMan / SpecialLangs.md
Last active July 16, 2020 16:30
Languages

some specialized languages sorted by domain

GPU DSL

Impala

Impala Github can be used to compile code for GPU's.

  • supports partial specialization
@PtrMan
PtrMan / NarsTutorialDecisonMaking.rs
Created June 4, 2020 12:13
NARS Tutorial codes
use rand::Rng;
use std::rc::Rc;
use std::cell::RefCell;
// DONE< check for events which were anticipated and remove anticipations! >
// DONE< compute expectation while decision making and take the one with the highest exp(), check against decision threshold! >
// TODO< compute table of exponential intervals! >
// TODO< compute anticipation deadline >
@PtrMan
PtrMan / GenMaze.py
Created May 28, 2020 11:48
ONA experiments
print("*motorbabbling=false")
#encode a field as a term
def encField(y,x):
name = str(y)+"Y"+str(x)
return "<f"+name+" --> F"+name+">"
# encode maze
for ix in range(10):
for iy in range(10):
@PtrMan
PtrMan / RustLearnRetinaMotion.rs
Last active May 29, 2020 07:30
rust learn retina motion PROTOTYPE
#![allow(non_snake_case)]
extern crate rand;
use std::default::Default;
use rand::Rng;
use rand::distributions::{Normal, Distribution};
// automatic differentiation