BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//American Young Coder - ECPv6.10.1.1//NONSGML v1.0//EN
CALSCALE:GREGORIAN
METHOD:PUBLISH
X-WR-CALNAME:American Young Coder
X-ORIGINAL-URL:https://www.ayclogic.com
X-WR-CALDESC:Events for American Young Coder
REFRESH-INTERVAL;VALUE=DURATION:PT1H
X-Robots-Tag:noindex
X-PUBLISHED-TTL:PT1H
BEGIN:VTIMEZONE
TZID:America/Los_Angeles
BEGIN:DAYLIGHT
TZOFFSETFROM:-0800
TZOFFSETTO:-0700
TZNAME:PDT
DTSTART:20240310T100000
END:DAYLIGHT
BEGIN:STANDARD
TZOFFSETFROM:-0700
TZOFFSETTO:-0800
TZNAME:PST
DTSTART:20241103T090000
END:STANDARD
END:VTIMEZONE
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20241210T173000
DTEND;TZID=America/Los_Angeles:20241210T183000
DTSTAMP:20260515T110934
CREATED:20241211T041309Z
LAST-MODIFIED:20241211T041309Z
UID:27641-1733851800-1733855400@www.ayclogic.com
SUMMARY:5:30 PM – AI / Machine Learning – Gamas
DESCRIPTION:Today We Did\n\nWe started a new project to be able to predict pet breed.\n\nHomework\n\nInside the new project “TUE-530-Pet-Breed”\, inside extract_breed function\, you want to change extract_breed function to return the breed along with CAT or DOG information. For example\, for english_terrier\, you want the function to return “DOG – english_terrier”. For\, spinx cat\, you want the function to return “CAT – spinx”.\nAdd a new cell under “cat_vs_dog_model.show_batch()”\, inside this new cell you want to use the new “cat_vs_dog_model” to predict the dog and cat images that you uploaded into your kaggle before and display the image and display the breed name. We did this in the Cat VS Dog project before but instead of showing breed name we show Cat or Dog on top of the image name. You need to modify that code to now show the breed name. Below is the code we did before to display the images that we uploaded. You need to change this code to produce the breedname on top of the image.\n\nfolder_path = "/kaggle/input/gamas-pet-images-2"\nmyimages = get_image_files(folder_path)\n\nfor img in myimages:\ncatordog = ""\nresult = cat_vs_dog_model.predict(img)\n\nif result[0]=="False":\ncat_or_dog = "Dog"\nelse:\ncat_or_dog= "Cat"\n\nimg = PILImage.create(img)\nimg.show(title=catordog)\nprint(f"I am {result[2]} sure that this is a {catordog}")
URL:https://www.ayclogic.com/event/530-pm-ai-machine-learning-gamas-6/
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20241210T180000
DTEND;TZID=America/Los_Angeles:20241210T190000
DTSTAMP:20260515T110934
CREATED:20241211T025950Z
LAST-MODIFIED:20241211T030113Z
UID:27640-1733853600-1733857200@www.ayclogic.com
SUMMARY:6 PM – Python OOP – Darin
DESCRIPTION:What We Did Today:\n\nLearnt about dictionaries in Python\, how to do basic operations on them.\n\nHomework:\nIn a file called Dec10_IntroToDictionariesHW.py\, do the following from the book: \n\nPage 92 to 97.\nPage 99 TRY IT YOURSELF. 6-1 and 6-2\n\nSubmit into the google drive when you are done! \nNotes:\nEmail me at ddjapri@ayclogic.com if you have any questions!
URL:https://www.ayclogic.com/event/6-pm-python-oop-darin-13/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20241210T180000
DTEND;TZID=America/Los_Angeles:20241210T190000
DTSTAMP:20260515T110934
CREATED:20241211T030726Z
LAST-MODIFIED:20241211T030818Z
UID:27646-1733853600-1733857200@www.ayclogic.com
SUMMARY:6 PM – Intro to Python – Daniel
DESCRIPTION:What We Did\n\nLooked through projects and answered questions\nWorked on the Grocery System Program\nThe file is here to look back if needed https://drive.google.com/file/d/1LFB-24JFYKh-aooThrlH3aOLds51Dcil/view?usp=drive_link\n\nHomework\n\nKeep working in your Turtle Project file and try to complete 100% by this Thursday.\nDue date is 12/12\, if you turn it in by this week you will receive an extra 5 points.\nIf you have any questions\, email me at dmeng@ayclogic.com.
URL:https://www.ayclogic.com/event/6-pm-intro-to-python-daniel-51/
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20241210T190000
DTEND;TZID=America/Los_Angeles:20241210T200000
DTSTAMP:20260515T110934
CREATED:20241211T041538Z
LAST-MODIFIED:20241215T232812Z
UID:27650-1733857200-1733860800@www.ayclogic.com
SUMMARY:7 PM - AI / Machine Learning - Gamas
DESCRIPTION:Today We Did\n\nWe started a new project to be able to predict pet breed.\n\nHomework\n\nInside the new project “TUE-7-PM-Pet-Breed”\, inside extract_breed function\, you want to change extract_breed function to return the breed along with CAT or DOG information. For example\, for english_terrier\, you want the function to return “DOG – english_terrier”. For\, spinx cat\, you want the function to return “CAT – spinx”.\nAdd a new cell under “cat_vs_dog_model.show_batch()”\, inside this new cell you want to use the new “cat_vs_dog_model” to predict the dog and cat images that you uploaded into your kaggle before and display the image and display the breed name. We did this in the Cat VS Dog project before but instead of showing breed name we show Cat or Dog on top of the image name. You need to modify that code to now show the breed name. Below is the code we did before to display the images that we uploaded. You need to change this code to produce the breedname on top of the image.\n\nfolder_path = "/kaggle/input/gamas-pet-images-2"\nmyimages = get_image_files(folder_path)\n\nfor img in myimages:\n   catordog = ""\n   result = cat_vs_dog_model.predict(img)\n\n   if result[0]=="False":\n      cat_or_dog = "Dog"\n   else:\n      cat_or_dog= "Cat"\n\n   img = PILImage.create(img)\n   img.show(title=catordog)\n   print(f"I am {result[2]} sure that this is a {cat_or_dog}")
URL:https://www.ayclogic.com/event/7-pm-ai-machine-learning-gamas-6/
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20241210T190000
DTEND;TZID=America/Los_Angeles:20241210T200000
DTSTAMP:20260515T110934
CREATED:20241211T042352Z
LAST-MODIFIED:20241211T042352Z
UID:27652-1733857200-1733860800@www.ayclogic.com
SUMMARY:7 PM – Python OOP – Darin
DESCRIPTION:What We Did Today:\n\nContinued the Library System project\nReviewed how concepts such as keys/values in dictionaries work together with classes/objects\n\nHomework:\n\nContinue on your Library System application in librarysystem.py\, and complete the following:\n\n\n# Your homework is to finish the school system application methods for the teacher if you haven't done so already\n\n \n\n\n\n# MAIN HW - complete options 6 and 7\n\n\nelif selection == "6":\n    # find book by author\n    # steps to complete outside of elif:\n    # 1. add the selection 6 into the print menu\n    # 2. create a new dictionary using author as key\n    # 3. pre-add items to new dict\n    # 4. update add method to add to new dict\n\n    # steps inside of elif:\n    # 1. print out header like previous selections\n    # 2. get input for the author\n    # 3. check if input exists as part of the dictionary keys\n    # 4. if it exists\, get the book object from dictionary\n    # 5. print out the information using get_info() method\n    # 6. if it doesnt exist\, print the usual "doesnt exist" message\n\n    pass\nelif selection == "7":\n    # list all books with ID greater than 3\n    # change the ID values into integers from pre-adding items into the dictionary and adding new items to the dictionary\n    # refer to selection 5.\n    pass\n\n\n\n\nSubmit this files to the google drive when you are done! \nNotes:\nYou can contact me at ddjapri@ayclogic if you have any questions!
URL:https://www.ayclogic.com/event/7-pm-python-oop-darin-14/
CATEGORIES:OOP Python,Python Class
END:VEVENT
END:VCALENDAR