Translation of "kerb crawler" to Japanese language:
Dictionary English-Japanese
Examples (External sources, not reviewed)
Those things make the web crawler more complicated. | 私たちの目標はコンピュータサイエンスを理解し |
The web crawler we're building is focused on simplicity. | Webクローラを作成しインターネットで実行すれば |
What we have built so far is a web crawler. | 他のページへのリンクをたどり Webページのコンテンツをたどることができます |
For a real web crawler, this is a big challenge. | ただ1つのシードページに取りかかるのではなく |
You saw that they found SARS using their Chinese web crawler a full six weeks before they found it using their English web crawler. | 英語で巡回するより6週間も早く発見できたのです 7か国語でしか巡回していませんが |
After this quiz we'll be ready to build our web crawler. | この小テストのあなたの目標は unionという関数を定義することです |
So that's what we want to do to build a web crawler. | ある開始地点 シード ページから |
So by the end of unit three we'll have built a web crawler. | コーパスを構築する方法もあります |
And, one concrete example of that I'll give you from building a web crawler | 私たちが作成するWebクローラは 簡潔性に重点が置かれています |
What a web crawler is, it's a program that collects content from the web. | ブラウザーで閲覧するウェブページといえば このようなものを思いつくでしょう |
In this question, you were asked to limit the depth the crawler searches to. | この問題を理解し行うために |
Our goal is to understand computer science, and make the web crawler code as simple as possible, so we're not going to do that in our web crawler, and when you run them on our server we're not going to allow your web crawler to make arbitrary requests to other sites on the Internet. | 可能な限りシンプルに Webクローラのコードを作成することです 私たちのWebクローラではそれは行いません あなたが私たちのサーバで実行しても |
And by the end of this unit you will have finished building a working web crawler. | 今まで学習した中で構造化データに最も近いものは レッスン1で紹介し |
We can print all the links on the page. We still don't have our web crawler. | 実際に行う方法は今後のレッスンでお話しします |
This unit introduces the next big idea we need for a web crawler, which is structured data. | このレッスンが終わるまでに あなたはWebクローラの作成を終えますよ |
And all the pages that we can find with our web crawler are found by following the links. | リンクを辿ることによって発見されます なのでクローラはウェブ上の全てのページを見つけるわけではないが |
You've got a way to collect a corpus, using a Web crawler that you built in the first 3 Units. | レッスン4と5では |
The problem asks us to stop the crawler from crawling the internet after we've reached a certain number of pages. | インターネットのクロールから クローラを停止させることが求められています 本物のインターネットならもっとリンクがあります 基本的にリンクには限りがありません |
If we say max pages is equal to 3, what our crawler is going to do is start with A. | Aをクロールします そしてBとCを取得します |
If you are an ethical web crawler, you don't index a site that says in the roblox.text don't crawl this site. | 示しているサイトをインデックスしないでしょう これがWebクローラをさらに複雑にさせます |
What we want to do for all practical reasons is have the crawler stop after reaching a certain number of pages. | あるページ数に達したら クローラを停止させることです インターネットのサンプルで見てきたページ数を |
And we want to build the corpus for our search engine by crawling the web and that's what a web crawler does. | それをするのがウェブクローラです ウェブクローラとは ウェブ上のコンテンツを収集するプログラムです |
It then sorts these pages into a big database inside the crawler and also analyzes developments of each page to any possible query. | 想定されるクエリに備えて それぞれのページを分析します そうすることでクエリが発行された時に AIシステムが応答できるのです |
So for Question 1, we want to see that you understand how web pages are constructed and what a web crawler will do. | Webクローラの使用についての理解度を確認します 目標はサンプルWebページで |
To be able to write something more interesting, like a web crawler well, we are gonna need to learn to write more complex programs. | もっと面白いことを書くには もっと複雑なプログラムの書き方を学ぶ必要があります |
For unit 3 we want to collect all those links, so we can keep going, end up following our crawler to collect many, many pages. | 最終的にクローラの助けで大量のページを収集したいのです なのでユニット3の終わりまでに 私たちはウェブクローラを構築します |
But if we want to build a good crawler, we don't just care about the first one, we care about all of the links on the page. | 1つ目のリンクだけでなく ページ上の全部のリンクに目を向けます 全部のリンクの抽出が必要です |
If you build a web crawler and you run it on the Internet, there's a lot of things that you need to do to be ethical and responsible. | 道徳的に責任を持つべきことがたくさんあります 1つは新しいサイトに出会った時は常に |
This is the first step towards our crawler, which will crawl a set of webpages, finding all of the links that can be found from a seed page. | シードページからすべてのリンクを見つけるため Webページをクロールします Webページから開始します |
So we have one missing statement, and I'll leave it to you to see if you can figure out statement we need there to finish the web crawler. | Webクローラを完成させるために必要な文を 皆さんが解明できるか確かめる問題を出します 終了した時インデックスとして返す crawl webの結果は |
This question asks us to see whether new code that modifies our web crawler changes the way it behaves, and if so, how does it affect the run time? | もし動作を変えるとしたら 実行時間にどう影響するでしょうか まず新しいコードが 元のコードと同じように動作するか |
It's a little smaller than the real internet, but it'll be a good example for showing how we want to modify the crawler to solve the max pages problem. | クローラをどのように修正するか示すには よいサンプルです 問題ではあるページ数に達したら |
One is, every time you encounter a new site the web crawler should look for this file called robots.txt which says whether or not the site wants to be crawled. | Webクローラはそのサイトがクローリングを 求めているかどうかが分かる robots txtと呼ばれるファイルを 探さなければなりません もし道徳的なWebクローラならrobots txtが このサイトをクローリングするな と |
There are billions of pages on the internet, and if we took the code that we had at the end of this unit, then the crawler would go on for a very, very long time. | このレッスンの終わりまでのコードを使用した場合 クローラを非常に長い時間続けることになります どれくらいかかるかの予測は皆さんにお任せします |
Our main goal for this unit is to make the web crawler, instead of just finding one link in the page, to find all the links on a page, so that we can follow these links and collect more and more pages on the web. | Webクローラを作成することです リンクをたどり 多くのWebページを集めることができます そのために新たな2つの概念が必要です |
When the Web came out, the early Web crawlers were called robots and to block a robot from accessing your website, to the present day, there's a file called robot.txt, that allows you to deny any Web crawler to access and retrieve that information from your website. | サーバーにアクセスするクローラの 振る舞いを制限するために robots txtというファイルが 今日に至るまで使われています |
And when We decreed (Solomon's) death, they had no indication that he was dead until (they saw a termite), a crawler of the earth eating away his staff. And when he fell down, the jinn realized that had they known the unseen, they would not have continued in their humiliating punishment. | われがかれ スライマーン に死の断を下した時も かれらにその死を知らせたのは 一匹の地の虫がかれの杖を蝕ばんだことであった それでかれが倒れると ジンたちは 始めて 悟った もしも幽玄界のことを知っていたならば 恥辱の懲罰に服している要もなかったのに |
Related searches : Kerb To Kerb - Kerb Weight - Kerb Market - Kerb Crawling - Kerb Mass - Kerb Appeal - Kerb Lifter - Kerb Slabs - Crawler Excavator - Crawler Track - Crawler Belt - Crawler Gear