# Recurrent

Published articles for Recurrent.

This is one page of public article previews, not the complete archive. Follow Next page to continue. Summaries are not the original full articles.

## Submissions open for Godot 2026 showreel

DevFeed: [Submissions open for Godot 2026 showreel](<https://devfeed.tech/articles/submissions-open-for-godot-2026-showreel-14996.md>)

Original publisher: [Read original article](<https://godotengine.org/article/submissions-open-godot-2026-showreel/>)

Author: Emi

Published: 2026-08-15T13:00:00Z

Content type: article

Language: en

Sources: [Godot Engine Official](<https://devfeed.tech/sources/godot-engine-official.md>)

Topics: [Godot](<https://devfeed.tech/topics/godot.md>), [Development](<https://devfeed.tech/topics/development.md>), [App](<https://devfeed.tech/topics/app.md>)

Tags: [2026](<https://devfeed.tech/tags/2026.md>), [development](<https://devfeed.tech/tags/development.md>), [games](<https://devfeed.tech/tags/games.md>), [maintainers](<https://devfeed.tech/tags/maintainers.md>), [news](<https://devfeed.tech/tags/news.md>), [people](<https://devfeed.tech/tags/people.md>), [projects](<https://devfeed.tech/tags/projects.md>), [recurrent](<https://devfeed.tech/tags/recurrent.md>), [tools](<https://devfeed.tech/tags/tools.md>), [videos](<https://devfeed.tech/tags/videos.md>)

### AI overview

Godot invites creators to submit videos of published or in-progress games and tools for the 2026 Godot Showreel. Submissions close on October 1, 2026, followed by voting from October 2 through October 16.

### Source excerpt

Showcase your Godot creations in 2026! We're inviting submissions of short videos featuring your published or in-progress Godot games or tools. Don't miss this chance to be a part of it!

## Titans + MIRAS: Helping AI have long-term memory

DevFeed: [Titans + MIRAS: Helping AI have long-term memory](<https://devfeed.tech/articles/titans-miras-helping-ai-have-long-term-memory-6900.md>)

Original publisher: [Read original article](<https://research.google/blog/titans-miras-helping-ai-have-long-term-memory/>)

Published: 2025-12-04T19:26:09Z

Content type: article

Language: en

Sources: [The latest research from Google](<https://devfeed.tech/sources/the-latest-research-from-google.md>)

Topics: [Artificial Intelligence](<https://devfeed.tech/topics/ai.md>), [Generative AI](<https://devfeed.tech/topics/generative-ai.md>), [Transformer architecture](<https://devfeed.tech/topics/transformer-architecture.md>), [Google](<https://devfeed.tech/topics/google.md>), [Mamba](<https://devfeed.tech/topics/mamba.md>), [Neural Network](<https://devfeed.tech/topics/neural-network.md>), [Compression](<https://devfeed.tech/topics/compression.md>)

Tags: [ai](<https://devfeed.tech/tags/ai.md>), [architecture](<https://devfeed.tech/tags/architecture.md>), [compression](<https://devfeed.tech/tags/compression.md>), [context](<https://devfeed.tech/tags/context.md>), [generative-ai](<https://devfeed.tech/tags/generative-ai.md>), [machine-intelligence](<https://devfeed.tech/tags/machine-intelligence.md>), [mamba](<https://devfeed.tech/tags/mamba.md>), [natural-language-processing](<https://devfeed.tech/tags/natural-language-processing.md>), [neural-networks](<https://devfeed.tech/tags/neural-networks.md>), [offline](<https://devfeed.tech/tags/offline.md>), [real-time](<https://devfeed.tech/tags/real-time.md>), [recurrent](<https://devfeed.tech/tags/recurrent.md>)

### AI overview

Google Research introduces Titans and the MIRAS framework, which combine recurrent-model speed with transformer-like accuracy for handling very long contexts. The approach uses test-time memorization and an adaptive neural long-term memory that updates as data streams in, without offline retraining.

### Source excerpt

Generative AI

## Recurrent Networks Hello World in Clojure with new Deep Diamond RNN support on CPU and GPU

DevFeed: [Recurrent Networks Hello World in Clojure with new Deep Diamond RNN support on CPU and GPU](<https://devfeed.tech/articles/recurrent-networks-hello-world-in-clojure-with-new-deep-diamond-rnn-support-on-cpu-and-gpu-20724.md>)

Original publisher: [Read original article](<http://dragan.rocks/articles/22/Recurrent-networks-hello-world-sequence-prediction-in-Clojure-with-new-Deep-Diamond>)

Published: 2022-08-26T14:25:00Z

Content type: tutorial

Language: en

Sources: [Dragan Djuric](<https://devfeed.tech/sources/dragan-djuric.md>)

Topics: [Clojure](<https://devfeed.tech/topics/clojure.md>), [Deep learning](<https://devfeed.tech/topics/deep-learning.md>), [Time Series](<https://devfeed.tech/topics/time-series.md>), [Programming](<https://devfeed.tech/topics/programming.md>)

Tags: [clojure](<https://devfeed.tech/tags/clojure.md>), [cpu](<https://devfeed.tech/tags/cpu.md>), [deep](<https://devfeed.tech/tags/deep.md>), [deep-learning](<https://devfeed.tech/tags/deep-learning.md>), [diamond](<https://devfeed.tech/tags/diamond.md>), [gpu](<https://devfeed.tech/tags/gpu.md>), [learning](<https://devfeed.tech/tags/learning.md>), [networks](<https://devfeed.tech/tags/networks.md>), [neural](<https://devfeed.tech/tags/neural.md>), [programming](<https://devfeed.tech/tags/programming.md>), [recurrent](<https://devfeed.tech/tags/recurrent.md>), [rnn](<https://devfeed.tech/tags/rnn.md>), [time-series](<https://devfeed.tech/tags/time-series.md>)

### AI overview

A beginner-friendly Clojure tutorial demonstrates recurrent neural networks in Deep Diamond by training a model to predict the next value in a simple numerical sequence. It introduces time-series prediction and notes that the example can run on CPU and GPU.

### Source excerpt

I've been busy in the last period working on new major features in Deep Diamond, one of which is the support for Recurrent Neural Networks (RNN). It's not been an easy ride, but I can finally show you some results! Big thanks for everyone that's helping me with this by buying my books (or subscribing to the upcoming editions), and Clojurists Together, who generously funded me in the past year to work on this. I know that most of you probably don't have much more than passing familiarity with deep learning, let alone recurrent neural networks, and that's why I'll try to show a very simple example on the level of Hello World that anyone interested in machine learning and programming can understand and try. So, enough talk, let's get down to business. What are we doing We are demonstrating a hammer: recurrent neural networks. Just kidding; we would like to create a (software) device that can learn to predict the next data point in a series. Depending on the data, this can be done in a number of ways (even by convolutional neural networks (CNN) that Deep Diamond already supported), one of which is RNN. So, we are creating a recurrent network, and training it with a set of data for this task. An example of data that fits this task would be temperature at some place, stock prices, and any other (possibly infinite) sequence of numbers in one of more dimensions that have an ordinal relation, that is, has an abstract notion of time attached to it. Then, we are trying to forecast one or more values that are happening in the future (temperature the next day, or the closing price of a stock, etc.). Since Hello World has to be dead simple, a real example would have too many opaque numbers, so we'll solve an artificially trivial task of teaching our network to predict the next number in the series for obvious series such as 1, 2, 3, 4, 5. Of course, in real life we rarely need to solve that exact task with such a bazooka as RNN, but if this is your first contact with time series

## Deep learning experiments in OCaml

DevFeed: [Deep learning experiments in OCaml](<https://devfeed.tech/articles/deep-learning-experiments-in-ocaml-20162.md>)

Original publisher: [Read original article](<https://blog.janestreet.com/deep-learning-experiments-in-ocaml/>)

Author: Laurent Mazare

Published: 2018-09-20T00:00:00Z

Content type: tutorial

Language: en

Sources: [Jane Street](<https://devfeed.tech/sources/jane-street.md>)

Topics: [OCaml](<https://devfeed.tech/topics/ocaml.md>), [Machine learning](<https://devfeed.tech/topics/machine-learning.md>), [Tensorflow](<https://devfeed.tech/topics/tensorflow.md>), [Programming](<https://devfeed.tech/topics/programming.md>), [GPU](<https://devfeed.tech/topics/gpu.md>)

Tags: [deep-learning](<https://devfeed.tech/tags/deep-learning.md>), [gpu](<https://devfeed.tech/tags/gpu.md>), [machine-learning](<https://devfeed.tech/tags/machine-learning.md>), [neural-networks](<https://devfeed.tech/tags/neural-networks.md>), [ocaml](<https://devfeed.tech/tags/ocaml.md>), [programming](<https://devfeed.tech/tags/programming.md>), [programming-language](<https://devfeed.tech/tags/programming-language.md>), [recurrent](<https://devfeed.tech/tags/recurrent.md>), [rnn](<https://devfeed.tech/tags/rnn.md>), [tensorflow](<https://devfeed.tech/tags/tensorflow.md>)

### AI overview

This article describes reproducing classical deep learning experiments in OCaml instead of Python. It explains using TensorFlow bindings to train functional OCaml models on a GPU, including Neural Style Transfer and character-level language modeling, and discusses type-safe representations of TensorFlow computation graphs.

### Source excerpt

Last year we held a machine learning seminar in our London office, which was an opportunity to reproduce some classical deep learning results with a nice twist: we used OCaml as a programming language rather than Python. This allowed us to train models defined in a functional way in OCaml on a GPU using TensorFlow.