Difference between revisions of "Week 5"
From m1p.org
(20 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
− | + | {{#seo: | |
+ | |title=Course My first scientific paper: Week 5 | ||
+ | |titlemode=replace | ||
+ | |keywords=My first scientific paper | ||
+ | |description=Course My first scientific paper: The goal of the week is to visualize the principle and organize your code so that the computational experiment runs every time with results stored. | ||
+ | }} | ||
+ | The goal of the week is to visualize the principle. | ||
== C: Code of the computational experiment == | == C: Code of the computational experiment == | ||
− | Organize your code so | + | Organize your code so the computational experiment runs every time with results stored. If your experiment run takes a long time, just cut the data set. Do not use big or sophisticated data. ''Put your efforts in your main message.'' |
+ | |||
# Set the only main file to run the experiment. | # Set the only main file to run the experiment. | ||
− | # Decompose the project code, write functions and modules. | + | # Decompose the project code, and write functions, classes, and modules. |
# Gather the experiment parameters in a special-purpose section. | # Gather the experiment parameters in a special-purpose section. | ||
#* A text description of the experiment flow helps. | #* A text description of the experiment flow helps. | ||
+ | #* A generated-by-comments code helps. | ||
+ | #* Think about testing, unit-tests help. | ||
# Set a procedure of historical version points to return to the previous experiment. | # Set a procedure of historical version points to return to the previous experiment. | ||
#* Commit schedule helps. | #* Commit schedule helps. | ||
# Write named plots to a designated folder. | # Write named plots to a designated folder. | ||
− | #* Write your results to a .tex-file and compile. | + | #* Write your results to a .tex-file and compile. |
− | |||
− | |||
== V: Visualize project == | == V: Visualize project == | ||
Line 22: | Line 29: | ||
== O*: One-slide talk == | == O*: One-slide talk == | ||
− | Make one-slide presentation to introduce the main principle of your work. | + | Make a one-slide presentation to introduce the main principle of your work. |
− | # Use the slide template [ | + | # Use the slide template [https://github.com/vadim-vic/the-Art-homework/blob/main/Name-Step-3.tex LaTeX], see [https://github.com/vadim-vic/the-Art-homework/blob/main/Name-Step-3.pdf pdf] |
+ | <!-- | ||
+ | #*[http://www.machinelearning.ru/wiki/images/d/d4/Surname2021PresentationSample.zip ZIP], | ||
+ | #*[http://www.machinelearning.ru/wiki/images/0/0f/Surname2021PresentationSample.pdf PDF], | ||
+ | #*[http://www.machinelearning.ru/wiki/images/d/d0/Surname2021PresentationSample_ru.pdf PDF Ru].--> | ||
# Set the third slide with | # Set the third slide with | ||
− | ## a plot or a | + | ## a plot or a diagram, |
## main keywords or message, | ## main keywords or message, | ||
## basic notations, and | ## basic notations, and | ||
## essential terms. | ## essential terms. | ||
− | # Prepare a talk up to one minute (1' | + | # Put the link to the slide in the [https://github.com/intsystems/m1p Result table] |
+ | # Prepare a talk up to one minute (1'50" max) long. | ||
# See examples in the lecture slides. | # See examples in the lecture slides. | ||
+ | |||
+ | === Tips for your slide === | ||
+ | # [http://www.machinelearning.ru/wiki/index.php?title=JMLDA/Fig Python and Matlab code for plots] | ||
+ | # [https://www.elsevier.com/researcher/author/tools-and-resources/graphical-abstract Elsevier's graphical abstract] | ||
+ | # [https://www.sciencedirect.com/science/article/pii/S0270929520300498 Visual Abstracts] by Everly Ramos and Beatrice Concepcion, 2020 (also see their references) | ||
+ | # [https://www.elsevier.com/about/policies-and-standards/author/artwork-and-media-instructions Elsevier's Artwork and media instructions] | ||
+ | |||
+ | === Don't for your slide === | ||
+ | # Avoid abstract illustrations; it means | ||
+ | #* You can be able to put mathematical notations on any part of your plot | ||
+ | # Avoid showing complex network architectures: | ||
+ | #* As soon you put a black-box sequence be ready to explain its optimality | ||
+ | # Avoid advertising style of illustrations: | ||
+ | #* It shall deliver a clear explanation instead of a joyful attraction | ||
+ | |||
+ | ==Homework== | ||
+ | # Designate a main module with '''C'''ode. It is easy to run. | ||
+ | # '''P'''lot a figure that carries your message. Put it in the computational experiment (easier), or the introduction (more difficult). | ||
+ | # Prepare the slides with '''O'''-ne slide talk and put it into your repository, put the link to the group table. | ||
==Resources== | ==Resources== | ||
− | + | See the font types and sizes, line width, LaTex [http://www.machinelearning.ru/wiki/index.php?title=JMLDA/Fig in the examples] | |
− | + | ||
+ | Colab variant | ||
+ | plt.rcParams['font.family'] = 'DejaVu Serif' | ||
+ | plt.rcParams['lines.linewidth'] = 2 | ||
+ | plt.rcParams['xtick.labelsize'] = 12#24 | ||
+ | plt.rcParams['ytick.labelsize'] = 12#24 | ||
+ | plt.rcParams['legend.fontsize'] = 12#24 | ||
+ | plt.rcParams['axes.labelsize'] = 16 | ||
+ | plt.xlabel('Number of transmitters, N', fontname='DejaVu Serif') | ||
+ | plt.ylabel('Probability', fontname='DejaVu Serif') | ||
+ | plt.legend() | ||
+ | plt.show() | ||
+ | |||
+ | Python with LaTeX variant | ||
+ | plt.rcParams.update({ | ||
+ | "text.usetex": True, # Use LaTeX for text rendering | ||
+ | "font.family": "serif", # Use serif font (default LaTeX font) | ||
+ | "font.serif": ["Computer Modern"], # Set specific LaTeX font (optional) | ||
+ | "axes.labelsize": 14, # Font size for axis labels | ||
+ | "axes.titlesize": 16, # Font size for title | ||
+ | "legend.fontsize": 12, # Font size for legend | ||
+ | |||
+ | Save files in .eps, .pdf, at least .png, but not in .jpeg | ||
+ | plt.savefig('fig_title.eps', dpi=300, bbox_inches='tight') | ||
+ | |||
+ | ==References: TikZ and Beamer== | ||
+ | #[https://pgf-tikz.github.io/pgf/pgfmanual.pdf The TikZ and PGF Packages]: Manual for version 3.1.10, [https://github.com/pgf-tikz/pgf GitHub], by Till Tantau, 2024 | ||
+ | # [https://home.uncg.edu/cmp/reu/presentations/Charles%20Batts%20-%20Beamer%20Tutorial.pdf A Beamer Tutorial in Beamer] by Charles T. Batts, 2007 | ||
+ | # [https://www.math.u-bordeaux.fr/imb/cellule/IMG/pdf/beameruserguide-2.pdf User’s Guide to the Beamer Class], and [https://github.com/josephwright/beamer GitHub] by Till Tantau, 2004 | ||
+ | # [https://gobics.de/katharina/beamer-script.pdf LATEX-beamer Course] by Katharina Hoff, 2007 |
Latest revision as of 15:36, 20 March 2025
The goal of the week is to visualize the principle.
Contents
C: Code of the computational experiment
Organize your code so the computational experiment runs every time with results stored. If your experiment run takes a long time, just cut the data set. Do not use big or sophisticated data. Put your efforts in your main message.
- Set the only main file to run the experiment.
- Decompose the project code, and write functions, classes, and modules.
- Gather the experiment parameters in a special-purpose section.
- A text description of the experiment flow helps.
- A generated-by-comments code helps.
- Think about testing, unit-tests help.
- Set a procedure of historical version points to return to the previous experiment.
- Commit schedule helps.
- Write named plots to a designated folder.
- Write your results to a .tex-file and compile.
V: Visualize project
Set the list of plots that will be included in your paper and presentation.
- Make a plot of the source data.
- Goal: put notations to the plot.
- List plots to illustrate with.
- Make a plot to show the main message.
O*: One-slide talk
Make a one-slide presentation to introduce the main principle of your work.
- Use the slide template LaTeX, see pdf
- Set the third slide with
- a plot or a diagram,
- main keywords or message,
- basic notations, and
- essential terms.
- Put the link to the slide in the Result table
- Prepare a talk up to one minute (1'50" max) long.
- See examples in the lecture slides.
Tips for your slide
- Python and Matlab code for plots
- Elsevier's graphical abstract
- Visual Abstracts by Everly Ramos and Beatrice Concepcion, 2020 (also see their references)
- Elsevier's Artwork and media instructions
Don't for your slide
- Avoid abstract illustrations; it means
- You can be able to put mathematical notations on any part of your plot
- Avoid showing complex network architectures:
- As soon you put a black-box sequence be ready to explain its optimality
- Avoid advertising style of illustrations:
- It shall deliver a clear explanation instead of a joyful attraction
Homework
- Designate a main module with Code. It is easy to run.
- Plot a figure that carries your message. Put it in the computational experiment (easier), or the introduction (more difficult).
- Prepare the slides with O-ne slide talk and put it into your repository, put the link to the group table.
Resources
See the font types and sizes, line width, LaTex in the examples
Colab variant
plt.rcParams['font.family'] = 'DejaVu Serif' plt.rcParams['lines.linewidth'] = 2 plt.rcParams['xtick.labelsize'] = 12#24 plt.rcParams['ytick.labelsize'] = 12#24 plt.rcParams['legend.fontsize'] = 12#24 plt.rcParams['axes.labelsize'] = 16 plt.xlabel('Number of transmitters, N', fontname='DejaVu Serif') plt.ylabel('Probability', fontname='DejaVu Serif') plt.legend() plt.show()
Python with LaTeX variant
plt.rcParams.update({ "text.usetex": True, # Use LaTeX for text rendering "font.family": "serif", # Use serif font (default LaTeX font) "font.serif": ["Computer Modern"], # Set specific LaTeX font (optional) "axes.labelsize": 14, # Font size for axis labels "axes.titlesize": 16, # Font size for title "legend.fontsize": 12, # Font size for legend
Save files in .eps, .pdf, at least .png, but not in .jpeg
plt.savefig('fig_title.eps', dpi=300, bbox_inches='tight')
References: TikZ and Beamer
- The TikZ and PGF Packages: Manual for version 3.1.10, GitHub, by Till Tantau, 2024
- A Beamer Tutorial in Beamer by Charles T. Batts, 2007
- User’s Guide to the Beamer Class, and GitHub by Till Tantau, 2004
- LATEX-beamer Course by Katharina Hoff, 2007