Any tips or ideas on choosing a final year project? I don’t really have any ideas in mind other than implementing an LLM, not sure how applicable or good this is though, my major is computer engineering and i’m only interested in software dev

  • HakFoo@lemmy.sdf.org
    link
    fedilink
    arrow-up
    7
    ·
    12 days ago

    Silly idea: computer vision for classtoom rollcall. Take a photo and it generates a list of absences.

  • Coldus12@reddthat.com
    link
    fedilink
    arrow-up
    4
    ·
    11 days ago

    I am unfamiliar with your school system I think. Final year of college / university? Do you have a specialization in your major (graphics, machine learning, embedded, networks / security - something like this?)

    I’d go with something from the specialization if you have one. If not, just something that interests you.

  • magic_lobster_party@kbin.run
    link
    fedilink
    arrow-up
    3
    ·
    edit-2
    11 days ago

    I don’t think you should do LLM or machine learning stuff if you want to get software development out of the project. Mostly because most of the time you won’t do software dev stuff with that kind of stuff. You will mostly just download some off the shelf model, prepare data, tweak parameters, cross your fingers and pray for slightly better results, and repeat.

    My recommendation without knowing much about you is to make a game engine. You remove the pressure of making something practical, and can just focus on making stuff that looks cool. You can easily control the scope of the project, and you will face a great variety of software development challenges. Lots of opportunities to learn.

    And finally you will also have something that’s fun to present.

  • MajorHavoc@programming.dev
    link
    fedilink
    arrow-up
    4
    arrow-down
    1
    ·
    edit-2
    12 days ago

    An LLM pointed at various (local) public sources of data, that can answer (local) voter questions, could be pretty cool.

    I.e: "Summarize X candidate’s voting record on tax increases/education/walkable cities/unionization/etc…

  • KKriegGG@programming.dev
    link
    fedilink
    English
    arrow-up
    3
    arrow-down
    1
    ·
    12 days ago

    LLMs are all the hype but there are plenty of solid computer science projects. Some options that come to mind:

    1. Your own DB engine
    2. Your own game engine (you can put a cool twist on it - I had a thought of making a game in non-euclidean 3D space)
    3. Your own <insert network protocol> client/server Etc…

    A more general option is to look for free APIs and use that is base for ideas.

    What topics do you find interesting?

    • Lmaydev@programming.dev
      link
      fedilink
      arrow-up
      4
      arrow-down
      1
      ·
      11 days ago

      They aren’t all hype. They are amazing technology.

      A lot of the software built with them is completely just hype though.

      • KKriegGG@programming.dev
        link
        fedilink
        English
        arrow-up
        2
        ·
        11 days ago

        I didn’t say they are “all hype”, I said they are “all the hype”. I agree they are useful, but over hyped.

  • Kissaki@programming.dev
    link
    fedilink
    English
    arrow-up
    1
    ·
    11 days ago

    Ask your profs or other applicable personnel for offered final year projects, suggestions, and previous years projects. You can also check software dev companies which may offer such projects as job openings. That’ll give you more of an overview of current common projects, and some ideas of what you could do.

  • gerryflap@feddit.nl
    link
    fedilink
    arrow-up
    1
    ·
    11 days ago

    I might misunderstand what you mean with “implementing” an LLM, but unless you have a good understanding of deep learning and math I wouldn’t recommend to implement one from scratch. There’s a lot of complex math involved in these kind of topics. If you mean implementing an application around an existing LLM, for example writing a chat website that interfaces with ChatGPT or a local LLM, then it’s doable (depending on you current skills).

    • sevenapples@lemmygrad.ml
      link
      fedilink
      arrow-up
      3
      ·
      10 days ago

      The math involved in LLMs is not complex for anyone that has passed undergrad Calc and Linear Algebra classes. If you know derivatives, the chain rule and some matrix basics you can figure them out with enough studying.

      The hard part about LLMs is not the math but the neural net architecture innovations they brought (eg self-attention)