Created at 4am, Jan 7
cyranodbArtificial Intelligence
0
What is AI?
IlikJZszgo5KucYKwq1z5hX-wl353PN9P103XLLvycI
File Type
PDF
Entry Count
45
Embed. Model
jina_embeddings_v2_base_en
Index Type
hnsw

Artificial Intelligence in basic.

Testing the classier requires the use of a second label data-set called the test data set. In practice, often one overall data-set is carved into a training and test set on which the classier is then trained and tested. The testing and training process may be time-consuming, but once a classier is created it can be used to quickly categorise incoming data.
id: 942b374780098606467e97a642d07d6e - page: 7
Unsupervised learning is more focused on understanding data patterns and relations than on prediction. It involves methods such as principal components analysis and clustering. These are often used as exploratory precursors to supervised learning methods. Reinforcement learning is a third type of machine learning. Reinforcement learning does not focus on the labelling of data, but rather attempts to use feedback in 11 12
id: 545c0a65eaaea1ac83dccc83880b16dc - page: 7
2 What Is AI? the form of a reinforcement function to label states of the world as more or less desirable with respect to some goal. Consider, for example, a robot attempting to move from one location to another. If the robots sensors provide feedback telling it its distance from a goal location, then the reinforcement function is simply a reection of the sensors readings. As the robot moves through the world it arrives at different locations which can be described as states of the world. Some world states are more rewarding than others. Being close to the goal location is more desirable than being further away or behind an obstacle. Reinforcement learning learns a policy, which is a mapping from the robots action to expected rewards. Hence, the policy tells the system how to act in order to achieve the reward.
id: 66a06d027b4df37a97c6cd6fa6ce5894 - page: 8
2.3 What Is a Robot? Typically, an articially intelligent agent is software that operates online or in a simulated world, often generating perceptions and/or acting within this articial world. A robot, on the other hand, is situated in the real world, meaning that its existence and operation occur in the real world. Robots are also embodied, meaning that they have a physical body. The process of a robot making intelligent decisions is often described as sense-plan-act meaning that the robot must rst sense the environment, plan what to do, and then act in the world. 2.3.1 Sense-Plan-Act
id: ccabfdf2344371f0fccc876636669f1e - page: 8
How to Retrieve?
# Search

curl -X POST "https://search.dria.co/hnsw/search" \
-H "x-api-key: <YOUR_API_KEY>" \
-H "Content-Type: application/json" \
-d '{"rerank": true, "top_n": 10, "contract_id": "IlikJZszgo5KucYKwq1z5hX-wl353PN9P103XLLvycI", "query": "What is alexanDRIA library?"}'
        
# Query

curl -X POST "https://search.dria.co/hnsw/query" \
-H "x-api-key: <YOUR_API_KEY>" \
-H "Content-Type: application/json" \
-d '{"vector": [0.123, 0.5236], "top_n": 10, "contract_id": "IlikJZszgo5KucYKwq1z5hX-wl353PN9P103XLLvycI", "level": 2}'