dwitter.net | #ai

+ New dweet
function u(t) {
} //
122/140


Please log in (or register) to post a dweet (copy-paste the code somewhere safe to save it meanwhile)


u(t) is called 60 times per second. t: Elapsed time in seconds. S: Shorthand for Math.sin. C: Shorthand for Math.cos. T: Shorthand for Math.tan. R: Function that generates rgba-strings, usage ex.: R(255, 255, 255, 0.5) c: A 1920x1080 canvas. x: A 2D context for that canvas.
Try the new frontend: beta.dwitter.net
Current theme challenge: #ScaryMovies

function u(t) {

}//
123/140


Please log in (or register) to post as a new dweet (copy-paste code somewhere safe to save it meanwhile).

  • Code created by Claude 3 Opus #ai

Please log in (or register) to comment.

show FPS hide FPS share fullscreen

function u(t) {

}//
140/140


Please log in (or register) to post as a new dweet (copy-paste code somewhere safe to save it meanwhile).

  • Gradient Descent (iterative) algorithm used to calculate sqrt(2). The big dots are the two roots -sqrt(2) and +sqrt(2) of equation Y=X**3-X*2. The Gradient Descent is an optimization algorithm for finding a local minimum of a function near a starting point, taking successive steps in the direction of the negative of the gradient. x[n+1]=x[n]−η(∇f)xn where η is the "Learning Rate". Gradient Descent is widely used for training Machine Learning models. #neural #ai
  • u/rodrigo.siqueira
    Simple version that calculates sqrt(2). If you change initial "x" to -1, it will converge to -sqrt(2), that is the other root of the equation Y=X**3-X*2. Code: x = 1; learning_rate = .1; for(i=0;i<50;i++) { x = x - learning_rate * (x**3 - 2*x) } throw(x);

Please log in (or register) to comment.

show FPS hide FPS share fullscreen

function u(t) {

}//
140/140


Please log in (or register) to post as a new dweet (copy-paste code somewhere safe to save it meanwhile).

Please log in (or register) to comment.

show FPS hide FPS share fullscreen

function u(t) {

}//
121/140


Please log in (or register) to post as a new dweet (copy-paste code somewhere safe to save it meanwhile).

  • Fist dweet!

Please log in (or register) to comment.

show FPS hide FPS share fullscreen

function u(t) {

}//
140/140


Please log in (or register) to post as a new dweet (copy-paste code somewhere safe to save it meanwhile).

  • Pulses of a single neuron in a Spiking Neural Network (SNN) using cosine interpolation with 4 intervals: depolarization (rising curve), repolarization (falling curve), refractory (recovery period) and resting potential (continuous line). #neural #ai

Please log in (or register) to comment.

show FPS hide FPS share fullscreen

function u(t) {

}//
140/140


Please log in (or register) to post as a new dweet (copy-paste code somewhere safe to save it meanwhile).

  • u/pavel
    Js puts all vars into global namespace if you don't use 'var' or 'let' and t starts at 0 so you can do t?a.map(...):a=[...]
  • u/katkip
    #ai

Please log in (or register) to comment.

show FPS hide FPS share fullscreen

function u(t) {

}//
140/140


Please log in (or register) to post as a new dweet (copy-paste code somewhere safe to save it meanwhile).

  • AI - Simple neural network learns how to check if two items are the same in two arrays. First two: yes, second two: no... yes... yes... with i=[0,1,0,1];o=[0,0,0,1]

Please log in (or register) to comment.

show FPS hide FPS share fullscreen

function u(t) {

}//
140/140


Please log in (or register) to post as a new dweet (copy-paste code somewhere safe to save it meanwhile).

  • DweetGPT v1.0 (replace 'min' with your prompt and see console)

Please log in (or register) to comment.

show FPS hide FPS share fullscreen

function u(t) {

}//
136/140


Please log in (or register) to post as a new dweet (copy-paste code somewhere safe to save it meanwhile).

Please log in (or register) to comment.

show FPS hide FPS share fullscreen

function u(t) {

}//
140/140


Please log in (or register) to post as a new dweet (copy-paste code somewhere safe to save it meanwhile).

  • procedural javscript gibberish generator #ai
  • u/timothytomato
    change the string in a=this.a||'dwitt' to something else for different gibberish. it works by comparing the current character with document.body.innerHTML and predicting what the next character should be, so kind of like a really bad autocomplete.

Please log in (or register) to comment.

Loading...
Next page