-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/UndergraduateArtificialIn…
- Loading branch information
Showing
7 changed files
with
89 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,10 @@ | ||
If you feel overwhelmed or have questions, ask on our [slack](/slack)! | ||
If you feel overwhelmed or have questions, ask on our [discord ](https://discord.com/invite/KapmJxs)! | ||
|
||
+ First, [Download python](https://www.python.org/downloads). Before doing so, you can check to see if you already have Python installed by opening a Terminal (Mac or Linux) or Command Prompt (Windows) and typing `python` or `python3`. If a shell opens, note the version number. For Tensorflow to work effectively, we recommend using **at least Python 3.6.7**. | ||
+ Once you have Python installed, pip should be installed by default. Try the following commands to install OpenAI Gym: `pip install gym`. If this doesn’t work, try the variants: `python -m pip install gym` or `py -m pip install gym` or `pip3 install gym`. **This will be dependent upon what command you type in the shell to make Python run.** | ||
+ Once you have Gym installed, begin working through the [Documentation tutorial](https://gym.openai.com/docs). To get the code running, we recommend either using [Wing101 Ide](https://wingware.com/downloads/wingide-101), [Visual Studio Code](https://code.visualstudio.com/), or [Sublime Text Editor](https://www.sublimetext.com/). | ||
+ First, [Download python](https://www.python.org/downloads). Before doing so, you can check to see if you already have Python installed by opening a Terminal (Mac or Linux) or Command Prompt (Windows) and typing `python` or `python3`. If a shell opens, note the version number. We recommend using **at least Python 3.11**. | ||
+ For an IDE we recommend either using [Wing101 Ide](https://wingware.com/downloads/wingide-101), [Visual Studio Code](https://code.visualstudio.com/), or [Sublime Text Editor](https://www.sublimetext.com/). | ||
+ For two more non-standard IDE’s, consider using [Atom](https://atom.io/), [Jupyter Notebook](http://jupyter.org/), or [Vim](https://www.vim.org/). For the latter, type `pip install jupyter` [*see variants above*]. | ||
+ If you want some fun challenging exercises in Python to start playing around, consider | ||
+ [GitHub Learning Lab](https://lab.github.com/) | ||
+ [Code Academy](https://www.codecademy.com/learn/learn-python) | ||
+ [Learn Python Tutorials](https://www.learnpython.org/) | ||
+ [Challenging exercise](https://www.codewars.com/collections/basic-python) | ||
+ After this, we began working through this series of [OpenAI Gym tutorials](https://pythonprogramming.net/openai-cartpole-neural-network-example-machine-learning-tutorial/). We went through the first two steps of making the initial population. | ||
+ To apply neural networks, we have to then use Tensorflow. For the basics of Tensorflow: | ||
+ [Tutorials Page](https://www.tensorflow.org/tutorials) | ||
+ Adventures in Machine Learning: | ||
+ [Tensorflow](http://adventuresinmachinelearning.com/python-tensorflow-tutorial/) | ||
+ [Neural Networks](http://adventuresinmachinelearning.com/neural-networks-tutorial/) | ||
+ [Deep Q Learning](http://adventuresinmachinelearning.com/reinforcement-learning-tensorflow/). | ||
+ [Keras Activation](https://www.tensorflow.org/api_docs/python/tf/keras/activations) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
+ [AI For Everyone](https://www.coursera.org/learn/ai-for-everyone) | ||
+ The "AI for Everyone" course on Coursera is a non-technical program that educates participants about AI, its potential applications, and its societal impacts, helping non-technical professionals understand and strategize around AI technologies. | ||
+ [Machine Learning Specialization](https://www.coursera.org/specializations/machine-learning-introduction) | ||
+ The Machine Learning Specialization on Coursera, crafted by Andrew Ng, is a foundational program for beginners that teaches foundational AI concepts through a visual approach, followed by coding and mathematics. It's expanded into three courses and is designed to be approachable for those with no prior math or rigorous coding background, making core curriculum more accessible. | ||
+ [Hugging Face Natural Language Processing Course](https://huggingface.co/learn/nlp-course/chapter1/1) | ||
+ Hugging Face's NLP course is designed to provide a comprehensive understanding of natural language processing using the latest tools and techniques. It's geared towards practitioners looking to apply NLP in real-world scenarios, offering hands-on experience with cutting-edge models and libraries. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters