AK Python
1.86K subscribers
39 photos
2 videos
11 files
236 links
Join here to unlock your programming ability
Download Telegram
Check out this new video..!
#ykyg :
Did you know?

Amazon.com is not the original name of the website.
The very first name Jeff Bezos registered was Cadabra, Inc.

Share support
resnet50_imagenet_tf.2.0.h5
98.2 MB
Deep Learning Model file
from imageai.Classification import ImageClassification
import os
executionpath=os.getcwd()
print(executionpath)
detection=ImageClassification()
detection.setModelTypeAsResNet50()
detection.setModelPath(executionpath + "/resnet50_imagenet_tf.2.0.h5")
detection.loadModel()
detections,percentageprobabilites=detection.classifyImage("Testimage.jpg",result_count=5)
for Index in range(len(detections)):
print(detections[Index],":",percentageprobabilites[Index])
Source code for DEEP-LEARNING PROJECT (Subscribe & Share)❤️
Tech news..... 🖥

A South Korean petplus lab company has created the world's first AI-powered dog collar.
That can analyse emotions of canines and help owners better understand their feelings.😍

Share support
#ykyg :
Did you know?
The Firefox Logo isn't a fox.
There is a common misbelief that because the browser is named Firefox, the logo must be a fox.

Surprisingly, the cute furry creature in the logo is actually a red panda!🤩

Share support
Is windows updates really boost your system performances?
Anonymous Poll
46%
Yes
36%
No
17%
Turned off updates
Guys we're in 10K❤️. Thanks for your consistent supports👍👍
#YKYG: TOP Worst Computer viruses😳😳😳
1. Kelz 2. I LOVE YOU 3. WannaCry 4. Zeus 5. Code Red
Tech news..... 🖥

Google pixel 4 XL's car crash detection feature saved the life of a man who fell into a ravine while driving a commercial vehicle.
The smartphone called the emergency number upon detecting the crash.

Share support
#ykyg :
Did you know?

Interesting fact for Lenovo users. Meaning of Lenovo is "New Legend"😎
"Le"mean Legend and
"novo"mean New.

Share support
🗣️VIDEO UPDATE: New video today !
Video uploaded check out
Tech news...... 🖥

Instagram's new Live Rooms feature lets up to four people go live at once.

Previously, you could only go live with one other person.

Share support
from spellchecker import SpellChecker
spell=SpellChecker()
while True:
word=input('Enter the word:')
word=word.lower()
if word in spell:
print("'{}' is spelled correctly!".format(word))
else:
correctwords=spell.correction(word)
print("The best suggestion for '{}' is '{}'".format(word,correctwords))
source code for spell checker👍
#ykyg :
Did you know?

*Android* is gender specific.
The word “Android” literally means a male robot appearance.

The female equivalent of this word is a “Gynoid.”

Share support