trane VS genanki

Compare trane vs genanki and see what are their differences.

trane

An automated practice system for learning complex skills (by trane-project)

genanki

A Python 3 library for generating Anki decks (by kerrickstaley)
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 genanki
26 16
759 1,839
0.0% -
8.4 4.7
4 days ago about 1 month ago
Rust Python
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

genanki

Posts with mentions or reviews of genanki. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-04-07.
  • Question about note types when creating decks with genanki
    1 project | /r/Anki | 14 Jun 2023
    I'm working with ChatGPT to create python scripts that generate Anki decks with Genanki.
  • Learning Streets with the help of Google Street View?
    1 project | /r/Anki | 20 May 2023
    Use genanki to create a note for each street, and then two cards (name, direction -> gif, and gif -> name, direction) for each note.
  • Supercharged Studying with Anki, ChatGPT and Python
    1 project | dev.to | 22 Apr 2023
    Anki has many types of cards, the main ones being the basic (memory trigger + answer) and cloze (one or more memory triggers embedded in an outline). This example uses the basic and reversed card, because both the 'question' and 'answer' can be a memory trigger for each other; if you want a simple, basic card you should consult the example at Genanki's README. I hope this script serves as at least a starting point for your own applications of programmable Anki, it is probably my main study method nowadays, and it got a whole more powerful after ChatGPT. Have fun with your coding.
  • Add recommendation for Exporting my cards as a CSV and then importing after making changes?
    3 projects | /r/Anki | 7 Apr 2023
    If you want to do something really custom you may want to look at something like https://github.com/kerrickstaley/genanki (I haven't tried it).
  • Anki-Fy Your Life
    10 projects | news.ycombinator.com | 18 Mar 2023
    Many people consider the prep time to be valuable itself as it usually involves you gaining understanding. That said, I don't really buy that argument and the vast majority of my cards these days are auto-generated using https://github.com/kerrickstaley/genanki.
  • AutoClozemaster-Anki - A tool to autogenerate clozemaster style anki decks
    3 projects | /r/languagelearning | 10 Mar 2023
    It makes use of these frequency lists (have to be manually downloaded). It will make a request to the tatoeba api to grab a sentence (or multiple) including this word and if you would like it will also request an audio file from google translate (while the code is running a temporary recordings folder is created). It then packages it up into an anki deck using the genanki python module.
  • I typed an entire vocabulary book
    1 project | /r/LearnJapanese | 27 Feb 2023
    In the end I feed the data together with audio to another script that generate the Anki deck using genanki.
  • Assimil italian into Anki deck (resourse)
    1 project | /r/Italian | 2 Feb 2023
    Yes, it's actually pretty easy to automate the process with genanki.
  • Show HN: Generate Anki cards from online links, powered by GPT-3
    1 project | news.ycombinator.com | 27 Jan 2023
    Since it looks like the export to Anki is still in progress, I can recommend using https://github.com/kerrickstaley/genanki -- it's been very stable over the 2 years I've been using it. I think it's a much better solution than csv or AnkiConnect, since it requires no actual work from the user except for opening an apkg.
  • Ask HN: Better way to create Anki cards?
    3 projects | news.ycombinator.com | 9 Aug 2022
    If you're comfortable with Python, https://github.com/kerrickstaley/genanki is amazing. You can pull your content from any source, use templates for the question and answer format, and even add media to each card (image, audio).

What are some alternatives?

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

fsrs4anki - A modern Anki custom scheduling based on Free Spaced Repetition Scheduler algorithm

CrowdAnki - Plugin for Anki SRS designed to facilitate cooperation on creation of notes and decks.

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

anki - Anki's shared backend and web components, and the Qt frontend

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

CardOverflow

trane-math - Official math courses from the Trane Project

anki-connect - Anki plugin to expose a remote API for creating flash cards.

trane-music - Official music courses from the Trane Project

chords2midi - Create MIDI files from numerical chord progressions!

anki-apkg-export - :book: Generate decks for Anki (spaced repetition software)