- 浏览: 10846 次
- 来自: ...
最新评论
文章列表
1. Pip 包安装
1)临时换源
pip install "unstructured[all-docs]" -i http://cmc-cd-mirror.rnd.huawei.com/pypi/simple/ --trusted-hos
t cmc-cd-mirror.rnd.huawei.com
2) 永久切换repo
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
3) 换回默认源
pip config unset global.index-url
Here're the 8 essential courses to become skilled in 2024:
---
1. Building A Brain in 10 Minutes
What you'll learn:
Exploring How Neural Networks Use Data to Learn:
• Understanding the concept of neural networks.
• Examining the process of data learning in neural networks.
https://lnkd.in/g2E63 ...
Instruct learning/prompt learning
Reinforcement Learning from Human Feedback
Prompt Engineering from Microsoft
https://learn.microsoft.com/en-us/semantic-kernel/prompt-engineering/
https://zhuanlan.zhihu.com/p/605451419
实现对话模型的第一步就需要依赖SFT(Supervised FineTune),技术上是对GPT-3进行有监督的微调,本质目的是「对数据集进行优化」,用人类喜 ...
What’s a model store?
The model store is a central storage for data scientists to take and manage their models and experiments, including the model files, artifacts, and metadata.
With model stores, you control the complexity of managing multiple machine learning models. Including below:
1. Compare ...
What is a Data Warehouse?
A data warehouse is a type of data management system that possesses abilities to support Business Intelligence (BI) pursuit, mainly data analytics. Data warehouses contain a lot of historical data and intend to perform queries to carry out the process of data analysis.
Dat ...
Labels are kind of like tags and allow you to specify certain types of entities to look for or create.
Relationships are represented in Cypher using an arrow --> or <-- between two nodes
labels group nodes
Relationship types[relVar:relationshipType] categorize and add meaning to a relationshi ...
1. 启动
1) bin/mongod.exe
2) bin/mongo.exe
2. Commands
use {dbName} // switch to a db (create a new one if not existing)
show dbs
db: show current switched db
db.{dbName}.insert(...)
db.dropDatabase() // delete current db
db.dropDatabase()
https://www.runoob.com/mongodb/mongodb-analyzing-queries.h ...
Inversion of Control (IoC) is also known as dependency injection (DI). It is a process whereby objects define their dependencies only through constructor arguments, arguments to a factory method, or properties that are set on the object instance after it is constructed or returned from a factory meth ...
Partitioning
Partitioning is the process of splitting your data into multiple Redis instances, so that every instance will only contain a subset of your keys.
Partitioning Criteria
range partitioning
hash partitioning
Different implementations of partitioning
Client side partitioning means that th ...
What are microservices?
Microservices are a modern approach to software whereby application code is delivered in small, manageable pieces, independent of others.
Why build microservices?
Their small scale and relative isolation can lead to many additional benefits, such as easier maintenance, improv ...
BubbleSort: each iteration exchange next two numbers to make the bigger one
SelectionSort: each iteration find out the min/max number
InsertSort:
ShellSort: by increment
MergeSort: recur sort & merge
QuickSort: from left to right find out the first bigger number while from right to left f ...
Cucumber Objects
Task
A task class is used to implement a single, reusable workflow within your SIT. A task does this by combining a series of action classes together, possibly (but not required) with additional logic/checks.
Action:
Actions are only expected to be called within tasks and should be ...
If there is one constant in business – and life – it is change.
Init
curl -XPUT '10.58.90.167:9200/last/timestamp/1?pretty' -H 'Content-Type: application/json' -d '{"lastTimestamp" : 1522663124911}'
curl -XGET '10.58.90.167:9200/last/timestamp/1?pretty'
curl -XPUT '10.58.90.167:9200/last/timestamp/1?pretty' -H 'Content-Type: application/json' -d' {&qu ...