Flashield's Blog

Just For My Daily Diary

Flashield's Blog

Just For My Daily Diary

AI

05.exercise-underfitting-and-overfitting【练习:欠拟合和过拟合】

This notebook is an exercise in the Introduction to Machine Learning course. You can reference the tutorial at this link. Recap You’ve built your first model, and now it’s time to optimize the size of the tree to make better predictions. Run this cell to set up your coding environment where the previous step left […]

05.course-underfitting-and-overfitting【欠拟合与过拟合】

At the end of this step, you will understand the concepts of underfitting and overfitting, and you will be able to apply these ideas to make your models more accurate. 在此步骤结束时,您将了解欠拟合和过拟合的概念,并且您将能够应用这些想法使您的模型更加准确。 Experimenting With Different Models 尝试不同的模型 Now that you have a reliable way to measure model accuracy, you can experiment with alternative models and see […]

04.exercise-model-validation【练习:模型验证】

This notebook is an exercise in the Introduction to Machine Learning course. You can reference the tutorial at this link. Recap You’ve built a model. In this exercise you will test how good your model is. Run the cell below to set up your coding environment where the previous exercise left off. 回顾 你已经建立了一个模型。 在本练习中,您将测试您的模型有多好。 […]

04.course-model-validation【模型验证】

You’ve built a model. But how good is it? In this lesson, you will learn to use model validation to measure the quality of your model. Measuring model quality is the key to iteratively improving your models. 你已经建立了一个模型。 但它有多好呢? 在本课程中,您将学习使用模型验证来衡量模型的质量。 衡量模型质量是迭代改进模型的关键。 What is Model Validation You’ll want to evaluate almost every model you ever build. […]

03.exercise-your-first-machine-learning-model【练习:第一个机器学习模型】

This notebook is an exercise in the Introduction to Machine Learning course. You can reference the tutorial at this link. Recap So far, you have loaded your data and reviewed it with the following code. Run this cell to set up your coding environment where the previous step left off. 回顾 到目前为止,您已经加载了数据并使用以下代码对其进行了检查。 在上一步结束的位置运行此单元以设置编码环境。 # Code […]

03.course-your-first-machine-learning-model【第一个机器学习模型】

Selecting Data for Modeling Your dataset had too many variables to wrap your head around, or even to print out nicely. How can you pare down this overwhelming amount of data to something you can understand? We’ll start by picking a few variables using our intuition. Later courses will show you statistical techniques to automatically […]

02.exercise-explore-your-data【练习:探索数据】

Machine Learning Course Home Page This exercise will test your ability to read a data file and understand statistics about the data. In later exercises, you will apply techniques to filter the data, build a machine learning model, and iteratively improve your model. The course examples use data from Melbourne. To ensure you can apply […]

02.course-basic-data-exploration【基础数据探索】

Using Pandas to Get Familiar With Your Data The first step in any machine learning project is familiarize yourself with the data. You’ll use the Pandas library for this. Pandas is the primary tool data scientists use for exploring and manipulating data. Most people abbreviate pandas in their code as pd. We do this with […]

01.course-how-models-work【模型如何工作】

Introduction We’ll start with an overview of how machine learning models work and how they are used. This may feel basic if you’ve done statistical modeling or machine learning before. Don’t worry, we will progress to building powerful models soon. This course will have you build models as you go through following scenario: Your cousin […]

2023年03月01日

2023/03/01 09:42 新的一个月了。 早上把图像识别的内容在天衍平台上做了复现,GPU和CPU的差别还是非常大的。但是由于CUDA的版本问题,只能停在tensoflow==2.3上,有些新功能使用不了,这个平台估计维护的人也不多了,想要再往上升级Cuda版本感觉已经不大可能了。可以考虑pytorch的方法,目前pytorch能够兼容的Cuda版本还是比较高的。 另外,大小姐的留白课堂要讲点东西,准备去讲讲AI方面的知识,配合着一些实验和小项目,带着小朋友们一起玩玩。 [x] 3月的月度绩效 [x] 云主机AlmaLinux升级 [ ] DCN网络主机安全漏洞处理 升级参考文献:https://linuxiac.com/centos-7-to-almalinux-8-migration-guide/ 处理 1. Inhibitor: The pam_tally2 pam module(s) no longer available 2. Inhibitor: Missing required answers in the answer file 的方法: vi /etc/pam.d/system-auth 去除pam_tally2.so的认证方法 # auth required pam_tally2.so deny=5 onerr=fail unlock_time=300 vi /etc/pam.d/sshd # auth required pam_tally2.so deny=5 onerr=fail unlock_time=300 even_deny_root root_unlock_time=300 处理Win2008无法正常更新的问题: […]

Scroll to top