trane VS fsrs4anki

Compare trane vs fsrs4anki and see what are their differences.

trane

An automated practice system for learning complex skills (by trane-project)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
trane fsrs4anki
26 111
759 2,196
0.0% 4.0%
8.4 9.0
4 days ago 10 days ago
Rust Jupyter Notebook
GNU Affero General Public License v3.0 MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

trane

Posts with mentions or reviews of trane. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-07-19.
  • Benjamin S. Bloom: Learning For Mastery (1968) [pdf]
    1 project | news.ycombinator.com | 1 Sep 2023
    My implementation of mastery learning (along with other related ideas): https://github.com/trane-project/trane/

    It bothered me enough that there was not something like this already available, when the idea seemed so simple, that I ended up doing it myself. The user experience is not very polished yet, but I managed to turn the courses in here https://improviseforreal.com/learning-materials into courses for this software that can teach you ear training and to improvise on any instrument in all keys, all modes, and most common chord progression. Currently, I am doing it for piano, but I've only reached about 15% of the total jam tracks so far. Obviously, I am not distributing the tracks myself.

    I am pretty sure the main issue is that there's no one funding implementing these ideas. We've known about mastery learning, spaced repetition, interleaving, etc. for decades, but it's not all been put together into a coherent system. Something like https://mathacademy.com/ is similar, but it's not open sourced and cannot be used to create your own materials. No need for LLMs or anything fancier to be involved when there's so much low-hanging fruit that's not been implemented yet. The core of my software is just a depth-first search over a graph, lol.

  • A half-hour to learn Rust
    1 project | news.ycombinator.com | 23 Aug 2023
    Not sure if I disagree but your example is terrible. Let patterns in if statements greatly simplify things. The alternatives are a lot more convoluted.

    See example from code I wrote this week: https://github.com/trane-project/trane/blob/master/src/data/...

    Without the let, I'd have to do a match statement followed by an unwrap just to check if a field in an enum is set.

  • Jazz Comping
    2 projects | news.ycombinator.com | 19 Jul 2023
    That's pretty much what I've been trying to do with https://github.com/trane-project/trane/

    I wanted something like you describe, but as far as I know nothing existed. So I've been hacking at this and the basic idea does work. It's now just a matter of designing the courses and polishing the user experience.

    I am just coming up with the structure for how to define what music would depend on each other. Trying to do it based on music theory would be ideal, but probably beyond my capacity. So I think the historical development of the genre you are trying to learn is a good proxy. For jazz, for example, this would be something like learning African music first, then spirituals, then blues songs, then new orleans jazz, then basic standards and so on. Trane works based on a graph, so the progression does not have to be linear.

    It's pretty early stages at the moment. Only one course for now since I've been trying to work out the process first: https://github.com/trane-project/trane-music/blob/master/cou...

    These "transcription" courses first ask you to loosely sing the song, then loosely improvise over it with your instruments (you can customize your own), then sing in different keys and do it more thoroughly, then improvise more closely to the actual song. The last step is what is normally called transcribing, but the course is meant to progressively lead you to that. The whole process is meant to recreate the apprenticeship process that all the early Jazz masters went through.

    Ideally there's a graphic interface that downloads the music and lets you loop, slow down, and change the pitch. But for now, there's only a command-line interface and the user has to do that themselves. Not ideal, but it works.

  • I’ve fallen in love with rust so now what?
    10 projects | /r/rust | 21 May 2023
    Link to my project: https://github.com/trane-project/trane
  • Anki-Fy Your Life
    10 projects | news.ycombinator.com | 18 Mar 2023
    I've been working on https://github.com/trane-project/trane for the past year or so, mostly to get around these limitations. I tried to find a way to use Anki or another existing software to aid my music practice, but I couldn't get it to work.

    Some ways in which it's different:

    - Dependencies are core to the system. For example, if I am learning a music piece, I want to start by learning small sections and only move on to larger sections when I am good enough the small stuff, eventually ending with a final exercise that tests my performance of the whole piece. A lot of knowledge/skills follow that pattern, but I couldn't find a way to make Anki or SuperMemo understand this.

    - It's meant for both memorizing stuff and practicing exercises. I have tested it with your exact example (math problems from textbooks). It works fairly well, but it's at a very early stage (you can look around at https://github.com/trane-project/trane-math, but it still needs a readme). So it's doing the same thing as the students you mentioned. The difference is that the scheduling is done automatically. Review of existing problems and addition of new ones happen without requiring planning or tracking from the student.

    - There's an emphasis on generating the flashcards as text files, so they can be shared. I don't understand why people insist of remaking their own flascards every time. If someone wishes to learn guitar, for example, it's my hope they just download some courses and start learning without spending any time redoing flashcards. This design choice probably makes it harder to write the flascards, but it balances out once the flashcards are done and can be passed around.

  • Coltrane: A music theory library with a command-line interface
    10 projects | news.ycombinator.com | 10 Mar 2023
    Curiously enough, I have been working on a project named after the same person (John Coltrane) as a way to help me practice music: https://github.com/trane-project/trane/

    I have been meaning to generate flashcards to teach you the notes of scales and chords so that I can have instant recall. It gets really annoying to not know them when improvising or composing. I have some basic courses, but I found the process a bit tedious, so I have been working on other courses and features instead.

    I am going to try to use this utility to help me generate the flashcards instead of writing my own logic. Hopefully it works well as it would save me a lot of time.

  • The Lone Developer Problem
    3 projects | news.ycombinator.com | 27 Feb 2023
    I started doing that with my own project after I reverted a (correct) change a few weeks later because I forgot to write down the original reasoning anywhere. No other contributors so far, so I can't say how much it helps on that front, but it has helped me a lot and I feel safer making big changes without fearing I'll break anything.

    The entry point docs are here: https://github.com/trane-project/trane/blob/master/src/lib.r...

  • Bloom's 2 Sigma Problem
    4 projects | news.ycombinator.com | 25 Feb 2023
    Already working on fixing this: https://github.com/trane-project/trane/

    No AI needed. Just an old fashioned depth first search through a graph of skills and dependencies.

    I made it to help me practice music, but I have been branching out and using it to study math for a few weeks. I find myself saying "just one question more" and then spending another half hour in it.

    Still needs more material to be useful to other people but it's a solid experience. I learned and memorized how to play most of the notes in the saxophone with good intonation in about a week, as a complete beginner.

  • GPT for Second Brains
    2 projects | news.ycombinator.com | 6 Feb 2023
    I've been thinking of using GPT or similar LLMs to extract flashcards to use with my spaced repetition project (https://github.com/trane-project/trane/). As in you give it a book and it creates the flashcards for you and the dependencies between the lessons.

    I played around with chatgpt and it worked pretty well. I have a lot of other things in my plate to get around first (including starting a math curriculum) but it's definitely an exciting direction.

    I think LLMs and AI are not anywhere near actual intelligence (chatgpt can spout a lot of good sounding nonsense ATM), but the semantic analysis they can do is by itself very useful.

  • Do u think it's a good idea to ankify ur hobbies
    1 project | /r/Anki | 10 Nov 2022
    Theres a program that you might wanna check out for learning skills, it's called Trane. https://github.com/trane-project/trane

fsrs4anki

Posts with mentions or reviews of fsrs4anki. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-02-21.
  • LaTeX and Neovim for technical note-taking
    10 projects | news.ycombinator.com | 21 Feb 2024
    For note-taking specifically, I've tried everything from plain old pen and paper to more modern solutions like Evernote and emacs (if you can call that modern), but nothing I've come across really beats Anki.

    Although its main selling point is as a program for flashcards with spaced repetition, it comes with pretty much all the features of a good note-taking app, like tags, easy to organize, synchronization across devices (you can set up your own server), good interface for searching through your notes (which are stored in an Sqlite db if that matters), and yes, LaTeX. Not only that, it's also highly extendable with third-party plugins, so if there are features that you miss chances are there's a plugin for it. In other words, you can use it perfectly fine just taking notes. However, where it really shines is in all of this in combination the spaced repetition algorithm, which is now on steroids with FSRS[1][2]. The downside is that for this to be effective for the things you want to memorize, you'll have to write your notes to be suitable for a flashcard, but if you do it consistently you'll soon notice that you can store most of your notes in your head (needless to say, any student would greatly benefit from this). Now, if that's too much work, you can still just use the scheduling to have it remind you of your notes. Either way, even as someone who sometimes goes out of his way to shoehorn everything into Emacs, I can't see a reason not to use anki for note-taking.

    [1]https://github.com/open-spaced-repetition/fsrs4anki/blob/mai...

    [2]https://www.youtube.com/watch?v=OqRLqVRyIzc

  • Show HN: Learning app using Educational YouTube videos
    1 project | news.ycombinator.com | 27 Jan 2024
    I recommend the new algorithm of Anki: https://github.com/open-spaced-repetition/fsrs4anki
  • FSRS: A modern, efficient spaced repetition algorithm
    14 projects | news.ycombinator.com | 15 Jan 2024
    It would be nice if you could report this on Github. You can do it here: https://github.com/open-spaced-repetition/fsrs4anki/issues/n...
  • FSRS4Anki: A modern spaced-repetition scheduler for Anki
    1 project | news.ycombinator.com | 3 Jan 2024
  • FSRS is now the most accurate spaced repetition algorithm in the world*
    8 projects | /r/Anki | 7 Dec 2023
    As for randomly getting a lot of reviews, honestly, no idea. You should submit an issue on github: https://github.com/open-spaced-repetition/fsrs4anki/issues/new/choose
  • Using anki and being neurodivergent
    2 projects | /r/Anki | 6 Dec 2023
    u/PoppingWebster, here's a guide on how to use built-in FSRS in the latest version of Anki: https://github.com/open-spaced-repetition/fsrs4anki/blob/main/docs/tutorial.md
  • Best Settings for 100-200 Cards and 2 Months
    1 project | /r/Anki | 6 Dec 2023
    You can watch AnKing's video and read this guide.
  • Is there a simulator with FSRS support
    1 project | /r/Anki | 6 Dec 2023
    Detailed info here: https://github.com/open-spaced-repetition/fsrs4anki/wiki/The-mechanism-of-optimization
  • How did people learn before internet and digital tools?
    2 projects | /r/ajatt | 6 Dec 2023
    use FSRS tho
  • Anki 23.10 Released
    2 projects | news.ycombinator.com | 3 Nov 2023
    More information on the new scheduling algorithm:

    FWIW I've been using it for the last 10 days and it's finally resolved some of my pain points about having to trial-and-error adjust the old scheduling algorithm, since the content of each deck can greatly affect what the optimal retention is. Now you can just retrain the weights for each deck you have and it will adapt appropriately. The paper is also definitely worth reading if you want to see some rigorous analysis of large-scale real-world spaced repetition science.

    [0] https://github.com/open-spaced-repetition/fsrs4anki

    [1] https://dl.acm.org/doi/10.1145/3534678.3539081?cid=996605471...

    [1] https://github.com/open-spaced-repetition/fsrs4anki/wiki/The...

What are some alternatives?

When comparing trane and fsrs4anki you can also consider the following projects:

genanki - A Python 3 library for generating Anki decks

fsrs4anki-helper - An Anki add-on that reschedules all cards via FSRS4Anki scheduler

typeshare - Generate code in different languages from Rust type definitions for FFI interop.

free-spaced-repetition-scheduler - A spaced repetition algorithm based on DSR model

trane-cli - A command-line interface and utilities for Trane

Anki-Android - AnkiDroid: Anki flashcards on Android. Your secret trick to achieve superhuman information retention.

trane-math - Official math courses from the Trane Project

anki_straight_reward - Escape Ease Hell!

trane-music - Official music courses from the Trane Project

SSP-MMC - A Stochastic Shortest Path Algorithm for Optimizing Spaced Repetition Scheduling

chords2midi - Create MIDI files from numerical chord progressions!

Pentive - Collaborative Spaced Repetition