From last night’s dungeon run: ” the ethics of Facebook is a good point about why killchain AI is inevitable”
And just to reinforce the point: Russia Unveils KUB-BLA “Kamikaze” Drone at IDEX 2019
From last night’s dungeon run: ” the ethics of Facebook is a good point about why killchain AI is inevitable”
And just to reinforce the point: Russia Unveils KUB-BLA “Kamikaze” Drone at IDEX 2019
Command Dysfunction: Minding the Cognitive War (1996)
Author: Arden B. Dahl
Institution: School of Advanced Airpower Studies Air University
Overall
Notes
Chapter 3: Considering a Cognitive Warfare Framework

7:00 – 4:00 ASRC
7:00 – ASRC TL

7:00 – 6:00 ASRC TL IRAD
Command Dysfunction: Minding the Cognitive War
2019 Annual Conference of the North American Chapter of the Association for Computational Linguistics. Streaming Tutorials, June 2nd. The following tutorials have been accepted for NAACL 2019 and will be held on Sunday, June 2nd, 2019. Exact timings will be posted later as part of the official schedule.
Fighting disinformation across Google products
7:00 – 7:00 ASRC
grad as well as forward-mode differentiation, and the two can be composed arbitrarily to any order. What’s new is that JAX uses XLA to compile and run your NumPy programs on GPUs and TPUs. Compilation happens under the hood by default, with library calls getting just-in-time compiled and executed. But JAX also lets you just-in-time compile your own Python functions into XLA-optimized kernels using a one-function API, jit. Compilation and automatic differentiation can be composed arbitrarily, so you can express sophisticated algorithms and get maximal performance without leaving Python.7:00 – 7:00 ASRC IRAD TL
7:00 – 5:00 ASRC IRAD (TL)
Reading Clockwork Muse. Machines don’t really have a desire for novelty directly. But they do have the derivative of arousal potential. That comes from us, their creators. Machines on their own won’t change. Yet. This is a manifestation of their non-evolutionary history. When machines can seek novelty and become bored is when they will become recognizable as entities.
Listening to Hidden Brain – One Head, Two Brains: How The Brain’s Hemispheres Shape The World We See (transcript)
7:00 – 6:00 ASRC IRAD TL
SELECT * FROM t_message;
SELECT * FROM t_message_files;
CREATE or REPLACE VIEW user_view AS
SELECT u.id, p.email, p.real_name,
(CASE WHEN p.display_name > '' THEN p.display_name ELSE u.name END) as username
FROM t_user u
INNER JOIN t_user_profile p ON u.id = p.parent_id;
select * from user_view;
CREATE or REPLACE VIEW post_view AS
SELECT FROM_UNIXTIME(p.ts) as post_time, p.dirname as post_topic, p.text as post_text, u.username,
(CASE WHEN p.subtype > '' THEN p.subtype ELSE p.type END) as type
FROM t_message p
INNER JOIN user_view u ON p.user = u.id;
select * from post_view order by post_time limit 1000;
7:00 – 4:00 ASRC IRAD
Teaching a neural network to drive a car. It’s a simple network with a fixed number of hidden nodes (no NEAT), and no bias. Yet it manages to drive the cars fast and safe after just a few generations. Population is 650. The network evolves through random mutation (no cross-breeding). Fitness evaluation is currently done manually as explained in the video.

# make the frame for the listbox and the scroller to live in self.lbox_frame = ttk.Frame(self.content_frame) # place the frame self.lbox_frame.grid(column=0, row=0, rowspan=6, sticky=(N,W,E,S)) # create the listbox and the scrollbar self.lbox = Listbox(self.lbox_frame, listvariable=self.cnames, height=5) lbox_scrollbar = ttk.Scrollbar(self.lbox_frame, orient=VERTICAL, command=self.lbox.yview) # after both components have been made, have the lbox point at the scroller self.lbox['yscrollcommand'] = lbox_scrollbar.set




7:00 – 5:30 ASRC IRAD
from tkinter import * from tkinter import ttk from PIL import Image, ImageTk
image = Image.open("hal.jpg")
self.photo = ImageTk.PhotoImage(image)
ttk.Label(mainframe, image=self.photo).grid(column=1, row=1, sticky=(W, E))


7:00 – 5:00 ASRC TL
Tangled Worldview Model of Opinion Dynamics
You must be logged in to post a comment.