Skip to content

Instantly share code, notes, and snippets.

https://www.dhs.gov/medialibrary/assets/videos/23065 AUDREY - Public Safety Agencies Pilot Artificial Intelligence to Aid in First Response | Homeland Security Skip to main content Official websites use .gov A .gov website belongs to an official government organization in the United States. Secure .gov websites use HTTPS

https://dataverse.jpl.nasa.gov/dataset.xhtml?persistentId=hdl:2014/53408 Trusted and exPlainable Artificial Intelligence for Saving Lives (TruePAL) Technology for First Responder Safety Project Introduction - Root No abstract provided but the video is more like advertisement to push the project :)

https://www.spiedigitallibrary.org/conference-proceedings-of-spie/12101/121010G/Neurosymbolic-hybrid-approach-to-driver-collision-warning/10.1117/12.2620209.pdf Neurosymbolic hybrid approach to driver collision warning - SPIE Digital Library

collection of minimal Nim programs to accomplish simple tasks

keywords: Nim keywords: code snippets

just a collection of entertaining video game clips

various

https://www.youtube.com/watch?v=aGBHDh4LNNM Space Creator Pro - Unreal engine 5
https://www.youtube.com/watch?v=nWm_OhIKms8 Star Citizen - The Future of Gaming: StarEngine (4K)
https://www.youtube.com/watch?v=3keRKwUizuQ Star Citizen
https://www.youtube.com/watch?v=6OeW2QtTkIo Everspace 2 -
https://www.youtube.com/watch?v=j0JwGQMug4c Homeworld 3 -
https://www.youtube.com/watch?v=nNZYHp5-y1U Elite Dangerous - Exploring the "World of Death"

@patham9
patham9 / NAR_Language.py
Last active January 6, 2023 05:37
NAR_Language.py (closely following Pei's original NL paper)
"""
* The MIT License
*
* Copyright 2023 The OpenNARS authors.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
Chris:
Are there decidable second order models in logic?
ChatGPT:
In logic, a second-order model is a type of mathematical structure that
allows quantification over predicates, in addition to the standard
quantification over individuals that is possible in first-order models.
Second-order models can be either decidable or undecidable, depending
on the specific details of the model in question.
explain to me why smart people can stick to irrational beliefs and opinions
There are a few reasons why smart people might stick to irrational beliefs and opinions. One reason is that intelligence does not necessarily equate to critical thinking skills or a willingness to question one's beliefs. A person may be intelligent in certain areas, but lack the ability or inclination to think critically about their beliefs. Another reason is that even highly intelligent people can be influenced by cognitive biases, which are mental shortcuts that can lead us to make flawed judgments and decisions. These biases can affect people of all levels of intelligence, and can lead smart people to hold onto irrational beliefs. Additionally, people's beliefs and opinions are often influenced by their personal experiences and backgrounds, which can make it difficult for them to see things from a different perspective, even if the evidence contradicts their beliefs.
State of AI Report
October 11, 2022
#stateofai
stateof.ai
Ian Hogarth
Nathan Benaich
About the authors
Nathan is the General Partner of Air Street Capital, a venture capital firm investing in AI-first technology and life science companies. He founded RAAIS and London.AI (AI community for industry and research), the RAAIS Foundation (funding open-source AI projects), and Spinout.fyi (improving university spinout creation). He studied biology at Williams College and earned a PhD from Cambridge in cancer research.
Nathan Benaich
@patham9
patham9 / gist:6e6cb56ae9cea4f622d5083e500a3a1b
Last active September 10, 2022 09:52
Perception-NAR / Nalifier
import sys
#identify instance as existing instance if matching better than this value, else create new one:
SUFFICIENT_MATCH_EXP = sys.argv[1] if len(sys.argv) > 1 else 0.5
TRUTH_EVIDENTAL_HORIZON = 1
def Truth_c2w(c):
return TRUTH_EVIDENTAL_HORIZON * c / (1 - c);
def Truth_w2c(w):
@patham9
patham9 / gist:21670abd733acda52ebb0ccf56049a5b
Created September 4, 2022 19:21
Simple ONA NAL-7/8 with Pong (WIP)
import math
import time
next = 42
def myrand():
global next
next = next * 1103515245 + 12345
return next//65536 % 32768
#hyperparams