Future Data Science(FDS)
Open in Telegram
â The first Data Science channel in Ethiopia. It was created to learn FDS. Mode of delivery:- #Research_articles, #Short_notes, #Examples, and #Exercises Tools we use:- #Python, #Pandas, #Jupyter, etc For any question or discussion use @pyDiscussion
Show moreThe country is not specifiedThe category is not specified
501
Subscribers
No data24 hours
No data7 days
No data30 days
Posts Archive
If you have any comment or feedback about the key notes I have posting on the channel @python4fds , you can forward via @pythonEthBot
Machine Learning
Machine Learning is the science of getting computers to learn and act like humans do, and improve their learning over time in autonomous fashion, by feeding them data and information in the form of observations and real-world interactions. It has taken the Data Science world by storm.
It can be branched out into the following categories:
Supervised Learning
Unsupervised Learning
Supervised Learning is when the data is labeled and the program learns to predict the output from the input data. For instance, a supervised learning algorithm for credit card fraud detection would take as input a set of recorded transactions. It would learn what makes a transaction likely to be fraudulent. Then, for each new transaction, the program would predict if it is fraudulent or not.
Unsupervised Learning is where the data is unlabeled and the program learns to recognize the inherent structure of the input data. For the same fraud example, the model would take in a bunch of transactions with no indication of if they are fraudulent or not, and it would group them based on patterns it sees. It might discover two groups, fraudulent and legitimate.
Join @python4fds
#DataScience #MachineLearning
Reading a File using Python
Computers use file systems to store and retrieve data. Each file is an individual container of related information. If youâve ever saved a document, downloaded a song, or even sent an email youâve created a file on some computer somewhere. Even script.py, the Python program youâre editing in the learning environment, is a file.
So, how do we interact with files using Python?
Letâs say we had a file called hello_python.txt with these contents:
Python is a powerful tool for Data Ananlysis. So, stay at home and learn python for future Data Science.We could read that file like this: script.py
with open('hello_python.txt') as python_file:
python_contents = python_file.read()
print(python_contents)
This
opens a file object called python_file and creates a new indented block where you can read the contents of the opened file. We then read the contents of the file **python_file** using **python_file.read()** and save the resulting string into the variable python_contents. Then we print python_contents, which outputs the statement written in the above!.
#QuarantineYourself #LearnPython #LearnDataScience#Python is a multi-paradigm, dynamically typed, multipurpose programming language, designed to be quick (to learn, to use, and to understand), and to enforce a clean and uniform syntax. Please note that Python 2 is officially out of support as of January 1, 2020. Therefore automatically shift yourself from Python-2 to the latest and most improved version of python [python-3.x] .
#QuarantineYourself #LearnPython #LearnDataScience
đPython for Data Science, AI & ML
Learn Python for
â
Data Science
â
Artificial Intelligence
â
Machine Learning
FUTURE PLAN: BUILDING A BIG DATASET IN #ETHIOPIA WHICH WILL BE OPEN FOR DEVELOPER'S AND RESEARCHERS
Join group discussion
@pyDiscussion
https://t.me/python4fds
Sometimes I share you some python books which may help you to study python. Because #PYTHON is the powerful tool for Data Science, Machine Learning, Artificial Intelligence, and also to develop desktop application, web application etc. Ask @pydiscussion
Jupyter Notebooks
Jupyter Notebooks are an extremely powerful tool for data analysis because they allow you to run python commands and see outputs within the structure of a notebook, which is helpful because in Data Analysis you are often running short commands to produce the data/visualizations you need for a certain investigation.
To know how to install Jupyter notebook, looking at the following short video
https://www.youtube.com/watch?v=5Yx6h7Mgiv0
The death rate of Somalia and Sudan is high when we compare others. Ethiopia is in good status. Almost 50% are recovered in #Djiboti
#QuarantineYourself #LearnDataScience
AWS Machine Learning Scholarship Program
https://www.udacity.com/scholarships/aws-machine-learning-scholarship-program?bsft_eid=bc85a78a-5d43-4e0c-5683-0f6e5336ecb1&utm_campaign=sch_600_2020-04-30_ndxxx_aws-ml-pre-reg-announcement_global&utm_source=blueshift&utm_medium=email&utm_content=sch_600_2020-04-30_ndxxx_aws-ml-pre-reg-announcement_global&bsft_clkid=4a1b2411-3bcd-4ccf-974a-23562b20e7e6&bsft_uid=6e0e8d28-5982-44df-b0e5-45e388c364e0&bsft_mid=2e378f52-c942-4dde-966a-37664fbc4cb8&bsft_ek=2020-04-30T21:02:38Z&bsft_mime_type=html
#StayHome #PreventCOVId19 #LearnMachineLearning
Wishing all Muslims a blessed Ramadan that will inspire you with courage and strength. Ramadan Kareem.
Python is a programming language. Like other languages, it gives us a way to communicate ideas. In the case of a programming language, these ideas are âcommandsâ that people use to communicate with a computer!
We convey our commands to the computer by writing them in a text file using a programming language. These files are called programs. Running a program means telling a computer to read the text file, translate it to the set of operations that it understands, and perform those actions.
#LearnPython #LearnDataAnalysis #StayHome #PreventCOVID19
Another #Solution for #Assignment by @Amalright
You can forward your feedback via @pyDiscussion
from random import*
Def fun_game(number_chosen):
data=randrange(0,20)
if(nuber_chosen> data):
print("too much")
elif(nuber_chosen < data):
print("too low")
else:
print("correct answer :")
J = 1
While(j !=0)
choice =int(input("Enter 1 to continue"))
if(choice ==1):
choice =int(input("Enter your try"))
fun_game(choice)
else:
j =0
#StayHome #PreventCOVId19 #LearnPython #LearnDataScience #LearnRandomNumber
#Solution for #Assignment by @MINtaa911
You can forward your feedback via @pyDiscussion
#Guess the number
from random import randint
def guess_number():
num = randint(0,20)
guess = int(input("Enter your guess number: "))
while(num != guess):
if(guess > num):
print("Your guess is too high")
elif(guess < num):
print("your guess is too low")
else:
break
guess = int(input("Enter your guess number: "))
print("you win")
guess_number()
#LearnDataScience #LearnPython #StayHome #PreventCOVId19
#Assignment
Guess The Number
Write a programme where the computer randomly generates a number between 0 and 20. The user needs to guess what the number is. If the user guesses wrong, tell them their guess is either too high, or too low. This will get you started with the random library if you haven't already used it.
Post your solution @pythonEthBot
#LearnDataScience #LearnPython #StayHome
Dear all, how are you? If you have any question related to python ask in @pyDiscussion group, I will make a short video about your question and post here.
#COVID19 #LearnDataScience #DataScience #StayHome
Python Discussion
This is a discussion group.
Ask anything you want.
The question must be related to Data Science usig python tools such #python itself, #jupyter, #Pandas etc.
Let us discuss
https://t.me/pyDiscussion
