承接 cliffordvickrey/malarkey 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

cliffordvickrey/malarkey

Composer 安装命令:

composer require cliffordvickrey/malarkey

包简介

Generates nonsensical but realistic-sounding text using a Markov chain algorithm

README 文档

README

Build Status Coverage Status

See this library in action at https://www.cliffordvickrey.com/malarkey/

This package generates nonsensical but realistic-sounding text (malarkey!) using a simple Markov chain algorithm.

In a Markov chain system, all possible states are determined by previous states. In the context of text, it models the transition from one state ("hello") to a future state ("world!") using a set of fixed probabilities.

A Markov chain generator takes text and, for all sequences of words, models the likelihoods of the next word in the sequence. ("world!" might have a 75% chance of following "Hello," and "Nurse!" might have a 25% chance). It is straightforward to visit the chain and, following these probabilities, emit gibberish that mimics human writing.

For any given word, it is possible to "look behind" any number of words to determine how likely the word is to be the next in the sequence. The more words the text generator looks behind, the less random and more human-seeming will be the output.

Requirements

  • PHP 7.1 or higher

Installation

Run the following to install this library:

$ composer require cliffordvickrey/malarkey

Usage

$text = "I'd buy that for a dollar! But I'd buy this for two dollars!";

$chainGenerator = new CliffordVickrey\Malarkey\Generator\ChainGenerator();
$markovChain = $chainGenerator->generateChain($text, 2);

// the chain stores probability data for every possible state, like so
var_dump($markovChain->getFrequenciesBySequence("I'd", 'buy')); // ['that' => 1, 'this' => 1]

$textGenerator = new CliffordVickrey\Malarkey\Generator\TextGenerator();
$output = $textGenerator->generateText($markovChain, ['maxSentences' => 1]);

var_dump($output); // e.g. I'd buy that for two dollars!

Command line text generation utilities are also available. For help, run this in your project folder:

$ ./vendor/bin/malarkey

ChainGenerator

@generateChain

Generates a Markov chain from source text.

Returns: ChainInterface

Arguments:

  • text (string): The source text
  • lookBehind (int): The number of words to look behind when determining the next state of the Markov chain. The higher the number, the more coherent will be the randomly-generated text. Defaults to 2

The returned chain object implements Serializable and JsonSerializable for persistence and portability purposes.

$text = "I'd buy that for a dollar! But I'd buy this for two dollars!";

$chainGenerator = new \CliffordVickrey\Malarkey\Generator\ChainGenerator();
/** @var CliffordVickrey\Malarkey\MarkovChain\Chain $markovChain */
$markovChain = $chainGenerator->generateChain($text);

$className = CliffordVickrey\Malarkey\MarkovChain\Chain::class;
$serialized = serialize($markovChain);
$unSerialized = unserialize($serialized, ['allowed_classes' => [$className]]);

var_dump(json_encode($markovChain) === json_encode($unSerialized)); // TRUE

@getLastGeneratedChunkCount

Returns the paragraph count of the text previously passed to generateChain, or NULL if no chain has been generated.

@getLastGeneratedWord

Returns the word count of the text previously passed to generateChain, or NULL if no chain has been generated.

TextGenerator

@generateText

Visits a Markov chain and returns randomly generated text.

Returns: string

Arguments:

  • chain (ChainInterface): The object representation of a Markov Chain
  • options (mixed): Either an instance of TextGeneratorOptionsInterface, an associative array of options, or NULL for defaults.

Valid options (none are required):

  • chunkSeparator (string): "Glue" to concatenate chunks emitted by the text generator. Defaults to two newlines
  • maxChunks (int): Maximum number of chunks (paragraphs separated by line breaks) to generate. If no maxChunks, maxSentences, or maxWords provided, the generator will emit one chunk
  • maxSentences (int): Maximum number of sentences to generate. Defaults to NULL
  • maxWords (int): Maximum number of words to generator. Defaults to NULL
  • wordSeparator (string): "Glue" to concatenate words emitted by the text generator. Defaults to " "

统计信息

  • 总下载量: 36
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2020-02-23

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固