-
Notifications
You must be signed in to change notification settings - Fork 3.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
What I Did And Didn't Do in GSoC 2017 #632
Comments
Good write-up, thanks. |
Hello @MrDupin and @norvig, to improve the visualizations for the |
@apb7: Do you mean to use Seems like a great idea, I would love to hear more. |
@MrDupin: I originally thought a separate |
Sounds interesting. I would like to see a demo of this, for some of the simpler visualizations. Can you do it? |
I had worked on a Tic-Tac-Toe GUI a few weeks ago. It uses the minimax algorithm (might be a bit different from the code given in |
Can you convert it to Python 3.4? This is the version we are using for the repository right now. |
Yes. |
Hey @MrDupin, I have pushed the code to the forked repository. You can find it under the |
Awesome, I will take a look during the weekend when I will have more time. |
@apb7 Looks good. The choice to change the AI at every step is nice. With the extra freedom that comes with using Tkinter instead of just notebook can we make the application more expressive? Like a tree which shows the thought process and decision tree of the AI. |
@Chipe1 : Yes we can have a side panel which shows the thought process as well as the decision tree of the AI along with the gameplay. This will definitely look good! |
Hey, that was really cool, I would love to see more tkinter on the project! I opened an issue about this: #659. |
@MrDupin: Sure! I'll work out on other games as well. |
Hi @Dragneel7. I am glad you want to join the project! A great place to start looking for ideas is the contributing guide. Take a look and see what kind of work we are doing here, and if you have any further questions feel free to ask. |
@MrDupin @Chipe1 Hello! I read about aimacode's idea list page specifically the possible documentation of packages like NLTK. I am an NLP enthusiast and a GSoC'18 aspirant. Any leads I need to follow to help with the idea? 😄 |
This is something I was also interested in, but it was decided that at least for the summer we would not be adding external libraries such as Tensorflow or NLTK. In the future though this will possibly change, so only @norvig can tell as when we can star adding these libraries. |
@MrDupin @Chipe1 @norvig I am interested in contributing to aima-python as a gsoc 2018 aspirant. I have gone through the project ideas list and decided to contribute to "Project 1: Finish aima-python algorithms and add explanatory notebooks". I have set up the repository and gone through contributing guidelines. |
I have a few queries in general: |
Hello @alpha721! i) I am not sure, I am only a student. :) ii) There are some contribution ideas on iii) As far as I know, relevant work matters as well, even though it is suggested you work on this repository at least a little bit, to get to know the ropes. Generally speaking, there are two main veins of work here: a) Completing the algorithms (you can find a list of unimplemented algorithms on the Hope this helped! |
Thanks a lot @MrDupin . I would keep things in mind :) |
What I Did (in short):
Worked on the notebooks, mainly on Natural Language Processing, Learning and Knowledge. This work includes adding sections for new algorithms explaining how they work and giving examples, new visualizations and clean-up in old ones, fixing grammar/stylistic/formatting mistakes and adding more information on older sections.
Implemented algorithms and utilities in the aforementioned modules.
Click to view my commits
What I Didn't Do (but wish that I had):
A big issue with the notebooks and visualizations is that visualization code is usually ugly and unrelated to the contents of the notebook. For that reason, we added a new file,
notebook.py
, to put all the unrelated (not just the visualizations) code in. Initially I wanted to transfer all such code to the new file, but unfortunately I got sidetracked and didn't have time for it.Towards the end of the program we came up with the idea of notebooks for applications, where we would showcase basic applications for the concepts in a module. Unfortunately there was not much time to flesh them out and they are lacking at the time of writing this.
When writing the notebooks, I should have spent more time and gone in greater detail on the "Implementation" sections. Currently I mostly glossed over them, assuming that most could follow the code easily, but of course that is not always the case. I should have specified the purpose of some select individual lines of code, so that students can more easily get a grip on what the source does without having much Python knowledge.
The text was updated successfully, but these errors were encountered: