Scientific Programming
160 subscribers
158 photos
30 videos
138 files
446 links
Tutorials and applications from scientific programming

https://github.com/Ziaeemehr
Download Telegram
timeTable.pdf
431.5 KB
26th Annual IASBS Meeting on Condensed Matter Physics – July 7, 2021-July 9, 2021


Semir Zeki and Bard Ermentrout are among the speakers.

https://iasbs.ac.ir/~condmat-meeting/m26/

توضیحات فارسی
Using #ffmpeg to convert video formats, fast and without sensible loosing quality:

Converted video has only 1/3 of original file size.

🪟 Windows users:

1. Download 'ffmpeg'
https://www.gyan.dev/ffmpeg/builds/ffmpeg-git-full.7z

2. unzip file in somewhere like : C:\Program Files\ffmpeg
now you have folders like bin, doc , .. in this directory.

3. add path, so windows know where is it
Properties > Advanced System Settings > Advanced tab > Environment Variables
In the Environment Variables window, click the "Path" row under the "Variable" column, then click Edit > click NEW
paste this address:
C:\Program Files\ffmpeg\bin
Done!

😎 Debian users:
$ sudo apt install ffmpeg
Done!


now you open a windows shell and convert the video:
go to the directory that movie file exist:
for example :
cd .\Downloads\


ffmpeg -i input.webm -r 10 -cpu-used 5 -c:v libx264 -crf 20 -c:a aac -strict experimental -loglevel error output.mp4

20+ FFmpeg Commands For Beginners
A quick guide for using ffmpeg
Where to start machine learning?
Here is a complete guide by Santiago
https://twitter.com/svpino/status/1407700129562435586
If you can't afford to pay the $5, reply to this tweet, and I'll share with you a free copy of the course.
So far, 339 people have taken advantage of this!
https://twitter.com/svpino/status/1407750918121181191
Introduction to Machine Learning Interviews Book

https://huyenchip.com/ml-interviews-book/
scikit-learn course
The goal of this course is to teach machine learning with scikit-learn to beginners, even without a strong technical background.

The course description can be found here.

GitHub
#course
#MachineLearning
Forwarded from the Turing Machine
Ten simple rules for structuring papers:

Overview
Good scientific writing is essential to career development and to the progress of science. A well-structured manuscript allows readers and reviewers to get excited about the subject matter, to understand and verify the paper’s contributions, and to integrate these contributions into a broader context. However, many scientists struggle with producing high-quality manuscripts and are typically untrained in paper writing. Focusing on how readers consume information, we present a set of ten simple rules to help you communicate the main idea of your paper. These rules are designed to make your paper more influential and the process of writing more efficient and pleasurable.

[ link ]

Follow: @theTuringMachine
Great YouTube channel for data science.
https://youtu.be/TeEj3eTXdiY
Dive into Deep Learning
Interactive deep learning book with code, math, and discussions

Implemented with NumPy/MXNet, PyTorch, and TensorFlow

https://d2l.ai/index.html