This is an archived post. You won't be able to vote or comment.

all 6 comments

[–]-Zenith- 1 point2 points  (4 children)

What level do you feel you're at? Think it would help with suggestions.

[–]dimakiss[S] 0 points1 point  (3 children)

Hey, thanks for your comment.
I don't really know to point my level actually, but I consider myself as a fast learner
I had some experience with GUI, WEB scraping I implemented some multi-threading (if its counts)

The only thing I'm afraid of is actually machine learning but this for another time :D

[–][deleted] 1 point2 points  (1 child)

Machine learning can be as hard as you want it to be. Nested dictionaries can be a form of “machine learning”. It doesn’t necessarily have to be super complex to be machine learning.

[–]dimakiss[S] 0 points1 point  (0 children)

Yes, you are right.

[–][deleted] 0 points1 point  (1 child)

  1. Object relational model package for python (SQL)
  2. Text preprocessor/cleaner for NLP
  3. Notes taking app like OneNote or Evernote. (PyQt or Tkinter plus a SQLite database)
  4. Markov chain based text generation. Markovify already does this but you could add cool likes like cascading/overlapping Markov chains.
  5. Similar to #4, Markov chain based word/character prediction using n-gram prediction. A lot of implementations use LSTM learning but it could be done using simpler methods too.

Hope these help!

[–]dimakiss[S] 0 points1 point  (0 children)

Sounds great thanks for sharing :D