Video (18 Jul 2023, 10:00): https://youtube.com/live/AdBJ8McH57o?feature=share
Jamboard: https://jamboard.google.com/d/1x4xjRdHMGPoIVISfe5LGY7Wuj2cJ5sFQDeOC2cviRIc/viewer?f=0
Jamboard ir iedotas edit tiesības Lekciju nepieciešams ierakstīt ar OBS, screen recording, Youtube live streaming key: ea11-mrgb-4jg2-4ajc-d4hr
Par katru uzdevumu dodam 100 punktus
Video: https://youtube.com/live/HtMV4LAujZE?feature=share
Jamboard: https://jamboard.google.com/d/1tKWa9a_Zu7UrGMAShRCUNNht6XetLnCB6fDCTgtKESU/edit?usp=sharing
Before the course it is necessary to complete following steps:
Install and setup PyCharm IDE (you can access student version with full features as well): https://www.jetbrains.com/pycharm/
Install Anaconda 3.9 Python environment: https://www.anaconda.com/products/individual
Install PyTorch library, using conda package management system (For every Operating System you will have command generated at: https://pytorch.org). Command to install PyTorch without CUDA/GPU support would be: conda install pytorch torchvision torchaudio -c pytorch
Install sklearn: conda install scikit-learn Install matplotlib: conda install matplotlib
Run tempalate hello_world.py (below task), using PyCharm IDE (If all is successful then you will not have errors and all libraries need for work would be functional)
Submit screenshot of running output of PyCharm IDE to complete this task.
More information about conda environments:
Each conda environment contains a set of libraries that are available only in that environment
Create new environment: conda create --name your_name
Activate environemnt: conda activate your_name
Only then install libraries when conda environment is activated.
Set project interpreter as your conda environment in PyCharm IDE settings
More about Conda Environments: https://towardsdatascience.com/getting-started-with-python-environments-using-conda-32e9f2779307 To ease work if you connect to sessions rem
Also recommended materials:
Complete tutorial: https://www.w3schools.com/python/
Implement Python and carefully read this tutorial: http://karpathy.github.io/neuralnets/
Watch a video course from Stanford on deep learning: https://www.youtube.com/watch?v=NfnWJUyUJYU&list=PLkt2uSq6rBVctENoVBg1TpCC7OQi31AlC
Start reading an online book about deep learning: http://neuralnetworksanddeeplearning.com
Review advanced mathematics, derivatives, differential equations, and linear algebra.
Template: http://share.yellowrobot.xyz/quick/2023-1-12-DCFFD523-CB00-4082-8CBA-7867E7325C85.zip Result: http://share.yellowrobot.xyz/upic/3908a85279643b5bb76c1e6f2de8291e_1689350893.jpg
Implement the function
Submit the source code and a screenshot. Bonus points if you use recursion.
Create code for the following equation.
http://share.yellowrobot.xyz/upic/df7e6c9b6b8f880de6ee2d3e5b740e75_1673883820.png
Submit source code and screenshot, additional bonus if recursion is used. Extra points if numpy is used.
Equation: http://share.yellowrobot.xyz/quick/2023-1-16-E7F9E2D0-82B4-4C10-8DB5-5EC0CEF84784.png
Result: http://share.yellowrobot.xyz/upic/596fdf6bed2c4bc1c1ef6476ec72500c_1673884738.png
plot f(x) = \sin(2x) + 2e^{3x}
Implement Python object-oriented code using UML class diagrams.
vec_pos
and others are initialized as 2D numpy vectors np.array([0., 0.])
.
All functions initially do nothing; the scope code only contains pass
.
Only the class structure needs to be created; submit a Python file.
Optional: Bonus points if you implement the Singleton pattern inside the static functions Game.get_instance() and Player.get_instance() (Information about design patterns can be found at https://refactoring.guru/design-patterns)
Template:
http://share.yellowrobot.xyz/quick/2023-1-16-E06CA8D8-A955-4248-BE8A-2410B04A7654.zip
Schema:
http://share.yellowrobot.xyz/quick/2023-1-16-BBCEFB14-D351-423E-8C20-19DD5A888995.jpg