Make Artwork Using Artificial Intelligence
As a recent successful projects of AI, painting, or generating a painting from random queries is a brand-new branch of AI, especially in Image Processing. AI Art Maker is a smart robots to create Artwork from input Query. To do this, first you have to enter your Query, the subject of painting. My Query was: "Beauty & the Beast", this is the result: Artwork Generated by AI System formerly has learnt millions of Artworks using Object Recognition and/or Labeling as…
Python Certificate
Proudly received my Python Programming Certificate as Top Student by 90/100 point.
Twice a year, my father is doing gardening. Around Ordibehesht, and along Mehr. Both time plant are flourish in a pretty way. I have double checked my photos and chose some non-edited beautiful pictures of our plant in the yard to proof that fall may be full of flowers. These are all manual-focused pictures. I changed my mind about manual-focus after seeing these pics. I just cropped these photos.
Late 2022 Eclipse (1st 15th Jalali Century Eclipse) is currently happening and passed it picks. I had planned to capture photos of this partial eclipse since a week before. It was happening in Africa and Asia and in Tehran, my hometown was visible partially. I had no specific filter so tried to use manual setting to capture sunlight but first I could not capture, second my camera was close to be damaged by sunlight. So I covered my DSLR Camera…
Bagh-Anari (Pomegranate Garden) is located at the north east side of Tehran. There is an old building inside the garden which is repaired and currently is a half-museum at the heart of the garden. Garden individually turned into a public park to be used by all people but formerly was a private garden of a citizen of Tehran in Ghajar Era. There are lots of fruit trees inside the park as well as lots of pomegranate trees. Todays people at…
Tips About Web Design Projects
You may be a Freelance Web Designer (Front-End Designer) or Developer (Back-End Programmer) or both: a Full-Stack Developer. First step through a successful web design project is understanding the purpose of design and audience. It may have been a design for all ranges or a specific partition of people. It may be a general-purpose website or dedicated to special purpose(s). Second: you have to arrange a contract. No step must be taken unless it is documented into a contract. Even…
What is Dictionary in Python?
Python has some complicated data structures, such as: Lists, Tuples, Dictionaries and Sets Dictionary is also called Associative Array. A dictionary consists of a collection of key-value pairs. Definition: d = { <key>: <value>, <key>: <value>, . . . <key>: <value> } Iteration Code: dict = {'color': 'blue', 'fruit': 'apple', 'pet': 'dog'} for key in dict: print(key) Output: color fruit pet Code: for item in dict.items(): print(item) Output: ('color', 'blue') ('fruit', 'apple') ('pet', 'dog') Code: for item in dict.items(): print(item)…
Natural Language Programming
Do you know, you don't have to be a programmer to write a computer program? These days, by improving artificial intelligence methods, you can just write down what you expect from a computer program, and using special interface, the story will interpreted and turned into a computer program. It don't have to be a specific person to do so, just a robot called "transparent robot" (hidden from human eyes) can write the story down and interface such as Inform 7…