LiuDongdong

爱好由来落笔难,一诗千改心始安。

Code_OutputStream

1. OutputStream抽象类 public abstract void write(int b) // 写入一个字节,可以看到这里的参数是一个 int 类型,对应上面的读方法,int 类型的 32 位,只有低 8 位才写

CommandMode

将一个请求封装成一个对象,从而使你可用不同的请求把客户端参数化,对请求排队或者记录请求日志,以及支持可撤销和恢复操作。 系统需要将请求调用者和

ExceptionHandle

异常本质上是程序上的错误,包括程序逻辑错误和系统错误。比如使用空的引用、数组下标越界、内存溢出错误等. 错误在我们编写程序的过程中会经常发生,

FacadeMode

定义了一个高层、统一的接口,外部与通过这个统一的接口对子系统中的一群接口进行访问。通过创建一个统一的类,用来包装子系统中一个或多个复杂的类,

Framework_Transformers

provides thousands of pretrained models to perform tasks on texts such as classification, information extraction, question answering, summarization, translation, text generation and more. [code] tutorial Transformers is backed by the three most popular deep learning libraries–Jax, PyTorch, and TensorFlow. Masked word completion with BERT Name Entity Recognition with Electra Text generation with GPT-2 Natural Language Inference with RoBERTa Summarization with BART Question answering with DistilBERT Translation with T5 1. Example

InnerClass

内部类是一个编译时的概念,一旦编译成功,就会成为完全不同的两类。对于一个名为outer的外部类和其内部定义的名为inner的内部类。编译完成
0%