ggerganov / llama.cpp

LLM inference in C/C++
MIT License
60.95k stars 8.7k forks source link

Bug: llama.cpp apparently exits with '[end of text]' before processing prompt if prompt is ~2048 tokens #8098

Open hnfong opened 4 days ago

hnfong commented 4 days ago

What happened?

llama-cli exits after generating a '[end of text]' token, without even processing the whole prompt.

Reproduction is simple:

llama-cli --temp 0.1 -ngl 99 -c 6144 --n-predict -2 -m ~/Downloads/Meta-Llama-3-8B-Instruct.Q5_K_M.gguf -f silent-end-repro.txt

The reproduction file is attached together with logs.

main.log silent-end-repro.txt

This is 100% reproducible in my set up. However, I feel like this issue may or may not be easily reproducible on other systems.

Anyway, although it may be tempting to dismiss this as a bug in the model, this looks like a llama.cpp bug to me for the following reasons:

  1. Note that llama_print_timings in main.log suggests that the prompt is not even evaluated by the model since it thinks eval time for prompt is 0.00ms, and the total running time of the program is 10.93 ms. Clearly not enough to evaluate the prompt of 2k+ tokens.
  2. embd_inp.size(): 2057, which is suspiciously close to 2048, which is also the n_batch size. Upon inspection, it seems like the <|eot_id|><|start_header_id|> tokens are actually the 2048-th token (+/-1 I guess). I wonder whether there's some issues with these special tokens being around the batch size mark. Or maybe some other 2048-related mark. FWIW, changing the batch size slightly -b 2047 or -b 2049 seems to workaround the issue.
  3. Increasing the temperature doesn't seem to help.
  4. I hit similar issues with some other prompts, but they seem to not reproduce as reliably (as in, if you run llama.cpp again with the same args, the text generation works normally) -- this suggests the bug might be subtle and might not be easily reproducible on other machines
  5. Making small changes to the prompt file sometimes fixes the issue, this may or may not be because the changes shifted the token count.
  6. Note that for some reason this issue does not repro on all models. Curiously using Llama3-70B also seems to exhibit this bug. FWIW the Llama3-8B model has shasum c3a1b6a18f22a057ca5eb4733132b99a6fb853d6 .

Name and Version

./llama-cli --version
version: 3198 (c5a8d4b7)
built with Apple clang version 14.0.3 (clang-1403.0.22.14.1) for arm64-apple-darwin23.4.0

% sw_vers
ProductName:            macOS
ProductVersion:         14.4.1
BuildVersion:           23E224

Apple M2 Max , 96 GB RAM.

What operating system are you seeing the problem on?

Mac

Relevant log output

[1719242809] Log start
[1719242809] Cmd: /Users/sidney_fong/projects/llama.gguf/llama-cli --temp 0.1 -ngl 99 -c 6144 --n-predict -2 -m /Users/sidney_fong/Downloads/Meta-Llama-3-8B-Instruct.Q5_K_M.gguf -f silent-end-repro.txt
[1719242809] main: build = 3198 (c5a8d4b7)
[1719242809] main: built with Apple clang version 14.0.3 (clang-1403.0.22.14.1) for arm64-apple-darwin23.4.0
[1719242809] main: seed  = 1719242809
[1719242809] main: llama backend init
[1719242809] main: load the model and apply lora adapter, if any
[1719242809] llama_model_loader: loaded meta data with 22 key-value pairs and 291 tensors from /Users/sidney_fong/Downloads/Meta-Llama-3-8B-Instruct.Q5_K_M.gguf (version GGUF V3 (latest))
[1719242809] llama_model_loader: Dumping metadata keys/values. Note: KV overrides do not apply in this output.
[1719242809] llama_model_loader: - kv   0:                       general.architecture str              = llama
[1719242809] llama_model_loader: - kv   1:                               general.name str              = .
[1719242809] llama_model_loader: - kv   2:                           llama.vocab_size u32              = 128256
[1719242809] llama_model_loader: - kv   3:                       llama.context_length u32              = 8192
[1719242809] llama_model_loader: - kv   4:                     llama.embedding_length u32              = 4096
[1719242809] llama_model_loader: - kv   5:                          llama.block_count u32              = 32
[1719242809] llama_model_loader: - kv   6:                  llama.feed_forward_length u32              = 14336
[1719242809] llama_model_loader: - kv   7:                 llama.rope.dimension_count u32              = 128
[1719242809] llama_model_loader: - kv   8:                 llama.attention.head_count u32              = 32
[1719242809] llama_model_loader: - kv   9:              llama.attention.head_count_kv u32              = 8
[1719242809] llama_model_loader: - kv  10:     llama.attention.layer_norm_rms_epsilon f32              = 0.000010
[1719242809] llama_model_loader: - kv  11:                       llama.rope.freq_base f32              = 500000.000000
[1719242809] llama_model_loader: - kv  12:                          general.file_type u32              = 17
[1719242809] llama_model_loader: - kv  13:                       tokenizer.ggml.model str              = gpt2
[1719242809] llama_model_loader: - kv  14:                      tokenizer.ggml.tokens arr[str,128256]  = ["!", "\"", "#", "$", "%", "&", "'", ...
[1719242809] llama_model_loader: - kv  15:                      tokenizer.ggml.scores arr[f32,128256]  = [0.000000, 0.000000, 0.000000, 0.0000...
[1719242809] llama_model_loader: - kv  16:                  tokenizer.ggml.token_type arr[i32,128256]  = [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, ...
[1719242809] llama_model_loader: - kv  17:                      tokenizer.ggml.merges arr[str,280147]  = ["Ġ Ġ", "Ġ ĠĠĠ", "ĠĠ ĠĠ", "...
[1719242809] llama_model_loader: - kv  18:                tokenizer.ggml.bos_token_id u32              = 128000
[1719242809] llama_model_loader: - kv  19:                tokenizer.ggml.eos_token_id u32              = 128001
[1719242809] llama_model_loader: - kv  20:                    tokenizer.chat_template str              = {% set loop_messages = messages %}{% ...
[1719242809] llama_model_loader: - kv  21:               general.quantization_version u32              = 2
[1719242809] llama_model_loader: - type  f32:   65 tensors
[1719242809] llama_model_loader: - type q5_K:  193 tensors
[1719242809] llama_model_loader: - type q6_K:   33 tensors
[1719242809] llm_load_vocab: missing pre-tokenizer type, using: 'default'
[1719242809] llm_load_vocab:                                             
[1719242809] llm_load_vocab: ************************************        
[1719242809] llm_load_vocab: GENERATION QUALITY WILL BE DEGRADED!        
[1719242809] llm_load_vocab: CONSIDER REGENERATING THE MODEL             
[1719242809] llm_load_vocab: ************************************        
[1719242809] llm_load_vocab:                                             
[1719242809] llm_load_vocab: special tokens cache size = 256
[1719242809] llm_load_vocab: token to piece cache size = 0.8000 MB
[1719242809] llm_load_print_meta: format           = GGUF V3 (latest)
[1719242809] llm_load_print_meta: arch             = llama
[1719242809] llm_load_print_meta: vocab type       = BPE
[1719242809] llm_load_print_meta: n_vocab          = 128256
[1719242809] llm_load_print_meta: n_merges         = 280147
[1719242809] llm_load_print_meta: n_ctx_train      = 8192
[1719242809] llm_load_print_meta: n_embd           = 4096
[1719242809] llm_load_print_meta: n_head           = 32
[1719242809] llm_load_print_meta: n_head_kv        = 8
[1719242809] llm_load_print_meta: n_layer          = 32
[1719242809] llm_load_print_meta: n_rot            = 128
[1719242809] llm_load_print_meta: n_embd_head_k    = 128
[1719242809] llm_load_print_meta: n_embd_head_v    = 128
[1719242809] llm_load_print_meta: n_gqa            = 4
[1719242809] llm_load_print_meta: n_embd_k_gqa     = 1024
[1719242809] llm_load_print_meta: n_embd_v_gqa     = 1024
[1719242809] llm_load_print_meta: f_norm_eps       = 0.0e+00
[1719242809] llm_load_print_meta: f_norm_rms_eps   = 1.0e-05
[1719242809] llm_load_print_meta: f_clamp_kqv      = 0.0e+00
[1719242809] llm_load_print_meta: f_max_alibi_bias = 0.0e+00
[1719242809] llm_load_print_meta: f_logit_scale    = 0.0e+00
[1719242809] llm_load_print_meta: n_ff             = 14336
[1719242809] llm_load_print_meta: n_expert         = 0
[1719242809] llm_load_print_meta: n_expert_used    = 0
[1719242809] llm_load_print_meta: causal attn      = 1
[1719242809] llm_load_print_meta: pooling type     = 0
[1719242809] llm_load_print_meta: rope type        = 0
[1719242809] llm_load_print_meta: rope scaling     = linear
[1719242809] llm_load_print_meta: freq_base_train  = 500000.0
[1719242809] llm_load_print_meta: freq_scale_train = 1
[1719242809] llm_load_print_meta: n_ctx_orig_yarn  = 8192
[1719242809] llm_load_print_meta: rope_finetuned   = unknown
[1719242809] llm_load_print_meta: ssm_d_conv       = 0
[1719242809] llm_load_print_meta: ssm_d_inner      = 0
[1719242809] llm_load_print_meta: ssm_d_state      = 0
[1719242809] llm_load_print_meta: ssm_dt_rank      = 0
[1719242809] llm_load_print_meta: model type       = 8B
[1719242809] llm_load_print_meta: model ftype      = Q5_K - Medium
[1719242809] llm_load_print_meta: model params     = 8.03 B
[1719242809] llm_load_print_meta: model size       = 5.33 GiB (5.70 BPW) 
[1719242809] llm_load_print_meta: general.name     = .
[1719242809] llm_load_print_meta: BOS token        = 128000 '<|begin_of_text|>'
[1719242809] llm_load_print_meta: EOS token        = 128001 '<|end_of_text|>'
[1719242809] llm_load_print_meta: LF token         = 128 'Ä'
[1719242809] llm_load_print_meta: EOT token        = 128009 '<|eot_id|>'
[1719242809] llm_load_print_meta: max token length = 256
[1719242809] llm_load_tensors: ggml ctx size =    0.30 MiB
[1719242809] ggml_backend_metal_log_allocated_size: allocated buffer, size =  5115.52 MiB, ( 5115.58 / 73728.00)[1719242809] 
[1719242809] llm_load_tensors: offloading 32 repeating layers to GPU
[1719242809] llm_load_tensors: offloading non-repeating layers to GPU
[1719242809] llm_load_tensors: offloaded 33/33 layers to GPU
[1719242809] llm_load_tensors:      Metal buffer size =  5115.50 MiB
[1719242809] llm_load_tensors:        CPU buffer size =   344.44 MiB
[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] .[1719242809] 
[1719242809] llama_new_context_with_model: n_ctx      = 6144
[1719242809] llama_new_context_with_model: n_batch    = 2048
[1719242809] llama_new_context_with_model: n_ubatch   = 512
[1719242809] llama_new_context_with_model: flash_attn = 0
[1719242809] llama_new_context_with_model: freq_base  = 500000.0
[1719242809] llama_new_context_with_model: freq_scale = 1
[1719242809] ggml_metal_init: allocating
[1719242809] ggml_metal_init: found device: Apple M2 Max
[1719242809] ggml_metal_init: picking default device: Apple M2 Max
[1719242809] ggml_metal_init: default.metallib not found, loading from source
[1719242809] ggml_metal_init: GGML_METAL_PATH_RESOURCES = nil
[1719242809] ggml_metal_init: loading '/Users/sidney_fong/projects/llama.gguf/ggml-metal.metal'
[1719242809] ggml_metal_init: GPU name:   Apple M2 Max
[1719242809] ggml_metal_init: GPU family: MTLGPUFamilyApple8  (1008)
[1719242809] ggml_metal_init: GPU family: MTLGPUFamilyCommon3 (3003)
[1719242809] ggml_metal_init: GPU family: MTLGPUFamilyMetal3  (5001)
[1719242809] ggml_metal_init: simdgroup reduction support   = true
[1719242809] ggml_metal_init: simdgroup matrix mul. support = true
[1719242809] ggml_metal_init: hasUnifiedMemory              = true
[1719242809] ggml_metal_init: recommendedMaxWorkingSetSize  = 77309.41 MB
[1719242809] llama_kv_cache_init:      Metal KV buffer size =   768.00 MiB
[1719242809] llama_new_context_with_model: KV self size  =  768.00 MiB, K (f16):  384.00 MiB, V (f16):  384.00 MiB
[1719242809] llama_new_context_with_model:        CPU  output buffer size =     0.49 MiB
[1719242809] llama_new_context_with_model:      Metal compute buffer size =   428.00 MiB
[1719242809] llama_new_context_with_model:        CPU compute buffer size =    20.01 MiB
[1719242809] llama_new_context_with_model: graph nodes  = 1030
[1719242809] llama_new_context_with_model: graph splits = 2
[1719242809] warming up the model with an empty run
[1719242810] n_ctx: 6144
[1719242810] 
[1719242810] system_info: n_threads = 8 / 12 | AVX = 0 | AVX_VNNI = 0 | AVX2 = 0 | AVX512 = 0 | AVX512_VBMI = 0 | AVX512_VNNI = 0 | AVX512_BF16 = 0 | FMA = 0 | NEON = 1 | SVE = 0 | ARM_FMA = 1 | F16C = 0 | FP16_VA = 1 | WASM_SIMD = 0 | BLAS = 1 | SSE3 = 0 | SSSE3 = 0 | VSX = 0 | MATMUL_INT8 = 0 | LLAMAFILE = 1 | 
[1719242810] add_bos: 0
[1719242810] tokenize the prompt
[1719242810] prompt: "<|begin_of_text|><|start_header_id|>system<|end_header_id|>
You are a helpful, thoughtful and creative AI assistant. Give concise answers unless the answer would be better with more detail.<|eot_id|><|start_header_id|>user<|end_header_id|>
Rewrite the following text in modern English. Make it short, modern and concise. Make it engaging to a young and impatient reader. You may take some liberties as to the rewrite as long as the original meaning is preserved.

Prefix your rewrite with "-BEGIN REWRITE-". When finished, write "-END REWRITE-".

      The wool of Scotland fell very considerably in its price in consequence of
      the union with England, by which it was excluded from the great market of
      Europe, and confined to the narrow one of Great Britain. The value of the
      greater part of the lands in the southern counties of Scotland, which are
      chiefly a sheep country, would have been very deeply affected by this
      event, had not the rise in the price of butcher’s meat fully compensated
      the fall in the price of wool.

      As the efficacy of human industry, in increasing the quantity either of
      wool or of raw hides, is limited, so far as it depends upon the produce of
      the country where it is exerted; so it is uncertain so far as it depends
      upon the produce of other countries. It so far depends not so much upon
      the quantity which they produce, as upon that which they do not
      manufacture; and upon the restraints which they may or may not think
      proper to impose upon the exportation of this sort of rude produce. These
      circumstances, as they are altogether independent of domestic industry, so
      they necessarily render the efficacy of its efforts more or less
      uncertain. In multiplying this sort of rude produce, therefore, the
      efficacy of human industry is not only limited, but uncertain.

      In multiplying another very important sort of rude produce, the quantity
      of fish that is brought to market, it is likewise both limited and
      uncertain. It is limited by the local situation of the country, by the
      proximity or distance of its different provinces from the sea, by the
      number of its lakes and rivers, and by what may be called the fertility or
      barrenness of those seas, lakes, and rivers, as to this sort of rude
      produce. As population increases, as the annual produce of the land and
      labour of the country grows greater and greater, there come to be more
      buyers of fish; and those buyers, too, have a greater quantity and variety
      of other goods, or, what is the same thing, the price of a greater
      quantity and variety of other goods, to buy with. But it will generally be
      impossible to supply the great and extended market, without employing a
      quantity of labour greater than in proportion to what had been requisite
      for supplying the narrow and confined one. A market which, from requiring
      only one thousand, comes to require annually ten thousand ton of fish, can
      seldom be supplied, without employing more than ten times the quantity of
      labour which had before been sufficient to supply it. The fish must
      generally be sought for at a greater distance, larger vessels must be
      employed, and more expensive machinery of every kind made use of. The real
      price of this commodity, therefore, naturally rises in the progress of
      improvement. It has accordingly done so, I believe, more or less in every
      country.

      Though the success of a particular day’s fishing may be a very uncertain
      matter, yet the local situation of the country being supposed, the general
      efficacy of industry in bringing a certain quantity of fish to market,
      taking the course of a year, or of several years together, it may,
      perhaps, be thought is certain enough; and it, no doubt, is so. As it
      depends more, however, upon the local situation of the country, than upon
      the state of its wealth and industry; as upon this account it may in
      different countries be the same in very different periods of improvement,
      and very different in the same period; its connection with the state of
      improvement is uncertain; and it is of this sort of uncertainty that I am
      here speaking.

      In increasing the quantity of the different minerals and metals which are
      drawn from the bowels of the earth, that of the more precious ones
      particularly, the efficacy of human industry seems not to be limited, but
      to be altogether uncertain.

      The quantity of the precious metals which is to be found in any country,
      is not limited by any thing in its local situation, such as the fertility
      or barrenness of its own mines. Those metals frequently abound in
      countries which possess no mines. Their quantity, in every particular
      country, seems to depend upon two different circumstances; first, upon its
      power of purchasing, upon the state of its industry, upon the annual
      produce of its land and labour, in consequence of which it can afford to
      employ a greater or a smaller quantity of labour and subsistence, in
      bringing or purchasing such superfluities as gold and silver, either from
      its own mines, or from those of other countries; and, secondly, upon the
      fertility or barrenness of the mines which may happen at any particular
      time to supply the commercial world with those metals. The quantity of
      those metals in the countries most remote from the mines, must be more or
      less affected by this fertility or barrenness, on account of the easy and
      cheap transportation of those metals, of their small bulk and great value.
      Their quantity in China and Indostan must have been more or less affected
      by the abundance of the mines of America.

      So far as their quantity in any particular country depends upon the former
      of those two circumstances (the power of purchasing), their real price,
      like that of all other luxuries and superfluities, is likely to rise with
      the wealth and improvement of the country, and to fall with its poverty
      and depression. Countries which have a great quantity of labour and
      subsistence to spare, can afford to purchase any particular quantity of
      those metals at the expense of a greater quantity of labour and
      subsistence, than countries which have less to spare.

      So far as their quantity in any particular country depends upon the latter
      of those two circumstances (the fertility or barrenness of the mines which
      happen to supply the commercial world), their real price, the real
      quantity of labour and subsistence which they will purchase or exchange
      for, will, no doubt, sink more or less in proportion to the fertility, and
      rise in proportion to the barrenness of those mines.

      The fertility or barrenness of the mines, however, which may happen at any
      particular time to supply the commercial world, is a circumstance which,
      it is evident, may have no sort of connection with the state of industry
      in a particular country. It seems even to have no very necessary
      connection with that of the world in general. As arts and commerce,
      indeed, gradually spread themselves over a greater and a greater part of
      the earth, the search for new mines, being extended over a wider surface,
      may have somewhat a better chance for being successful than when confined
      within narrower bounds. The discovery of new mines, however, as the old
      ones come to be gradually exhausted, is a matter of the greatest
      uncertainty, and such as no human skill or industry can insure. All
      indications, it is acknowledged, are doubtful; and the actual discovery
      and successful working of a new mine can alone ascertain the reality of
      its value, or even of its existence. In this search there seem to be no
      certain limits, either to the possible success, or to the possible
      disappointment of human industry. In the course of a century or two, it is
      possible that new mines may be discovered, more fertile than any that have
      ever yet been known; and it is just equally possible, that the most
      fertile mine then known may be more barren than any that was wrought
      before the discovery of the mines of America. Whether the one or the other
      of those two events may happen to take place, is of very little importance
      to the real wealth and prosperity of the world, to the real value of the
      annual produce of the land and labour of mankind. Its nominal value, the
      quantity of gold and silver by which this annual produce could be
      expressed or represented, would, no doubt, be very different; but its real
      value, the real quantity of labour which it could purchase or command,
      would be precisely the same. A shilling might, in the one case, represent
      no more labour than a penny does at present; and a penny, in the other,
      might represent as much as a shilling does now. But in the one case, he
      who had a shilling in his pocket would be no richer than he who has a
      penny at present; and in the other, he who had a penny would be just as
      rich as he who has a shilling now. The cheapness and abundance of gold and
      silver plate would be the sole advantage which the world could derive from
      the one event; and the dearness and scarcity of those trifling
      superfluities, the only inconveniency it could suffer from the other.

<|eot_id|><|start_header_id|>assistant<|end_header_id|>

-BEGIN REWRITE-" [1719242810] tokens: [ '<|begin_of_text|>':128000, '<|start_header_id|>':128006, 'system':9125, '<|end_header_id|>':128007, '':198, 'You':2675, ' are':527, ' a':264, ' helpful':11190, ',':11, ' thoughtful':43766, ' and':323, ' creative':11782, ' AI':15592, ' assistant':18328, '.':13, ' Give':21335, ' concise':64694, ' answers':11503, ' unless':7389, ' the':279, ' answer':4320, ' would':1053, ' be':387, ' better':2731, ' with':449, ' more':810, ' detail':7872, '.':13, '<|eot_id|>':128009, '<|start_header_id|>':128006, 'user':882, '<|end_header_id|>':128007, '':198, 'Rew':59565, 'rite':1269, ' the':279, ' following':2768, ' text':1495, ' in':304, ' modern':6617, ' English':6498, '.':13, ' Make':7557, ' it':433, ' short':2875, ',':11, ' modern':6617, ' and':323, ' concise':64694, '.':13, ' Make':7557, ' it':433, ' engaging':23387, ' to':311, ' a':264, ' young':3995, ' and':323, ' impatient':74797, ' reader':6742, '.':13, ' You':1472, ' may':1253, ' take':1935, ' some':1063, ' liberties':58455, ' as':439, ' to':311, ' the':279, ' rewrite':18622, ' as':439, ' long':1317, ' as':439, ' the':279, ' original':4113, ' meaning':7438, ' is':374, ' preserved':34683, '.':13, '':198, '':198, 'Prefix':14672, ' your':701, ' rewrite':18622, ' with':449, ' ':220, '"-':35394, 'BEGIN':38688, ' RE':3680, 'WRITE':33881, '-':12, '".':3343, ' When':3277, ' finished':8220, ',':11, ' write':3350, ' ':220, '"-':35394, 'END':4794, ' RE':3680, 'WRITE':33881, '-':12, '".':3343, '':198, '':198, '':74694, '':198, ' ':415, ' The':578, ' wool':39640, ' of':315, ' Scotland':19627, ' fell':11299, ' very':1633, ' considerably':33452, ' in':304, ' its':1202, ' price':3430, ' in':304, ' consequence':29774, ' of':315, '':198, ' ':415, ' the':279, ' union':11552, ' with':449, ' England':9635, ',':11, ' by':555, ' which':902, ' it':433, ' was':574, ' excluded':28544, ' from':505, ' the':279, ' great':2294, ' market':3157, ' of':315, '':198, ' ':415, ' Europe':4606, ',':11, ' and':323, ' confined':45408, ' to':311, ' the':279, ' narrow':15376, ' one':832, ' of':315, ' Great':8681, ' Britain':13527, '.':13, ' The':578, ' value':907, ' of':315, ' the':279, '':198, ' ':415, ' greater':7191, ' part':961, ' of':315, ' the':279, ' lands':12098, ' in':304, ' the':279, ' southern':18561, ' counties':31276, ' of':315, ' Scotland':19627, ',':11, ' which':902, ' are':527, '':198, ' ':415, ' chiefly':89382, ' a':264, ' sheep':33012, ' country':3224, ',':11, ' would':1053, ' have':617, ' been':1027, ' very':1633, ' deeply':17693, ' affected':11754, ' by':555, ' this':420, '':198, ' ':415, ' event':1567, ',':11, ' had':1047, ' not':539, ' the':279, ' rise':10205, ' in':304, ' the':279, ' price':3430, ' of':315, ' butcher':76194, '‚':529, 's':82, ' meat':13339, ' fully':7373, ' compensated':66982, '':198, ' ':415, ' the':279, ' fall':4498, ' in':304, ' the':279, ' price':3430, ' of':315, ' wool':39640, '.':13, ' ':7361, ' ':415, ' As':1666, ' the':279, ' efficacy':41265, ' of':315, ' human':3823, ' industry':5064, ',':11, ' in':304, ' increasing':7859, ' the':279, ' quantity':12472, ' either':3060, ' of':315, '':198, ' ':415, ' wool':39640, ' or':477, ' of':315, ' raw':7257, ' hides':58704, ',':11, ' is':374, ' limited':7347, ',':11, ' so':779, ' far':3117, ' as':439, ' it':433, ' depends':14117, ' upon':5304, ' the':279, ' produce':8356, ' of':315, '':198, ' ':415, ' the':279, ' country':3224, ' where':1405, ' it':433, ' is':374, ' exert':43844, 'ed':291, ';':26, ' so':779, ' it':433, ' is':374, ' uncertain':36218, ' so':779, ' far':3117, ' as':439, ' it':433, ' depends':14117, '':198, ' ':415, ' upon':5304, ' the':279, ' produce':8356, ' of':315, ' other':1023, ' countries':5961, '.':13, ' It':1102, ' so':779, ' far':3117, ' depends':14117, ' not':539, ' so':779, ' much':1790, ' upon':5304, '':198, ' ':415, ' the':279, ' quantity':12472, ' which':902, ' they':814, ' produce':8356, ',':11, ' as':439, ' upon':5304, ' that':430, ' which':902, ' they':814, ' do':656, ' not':539, '':198, ' ':415, ' manufacture':30847, ';':26, ' and':323, ' upon':5304, ' the':279, ' re':312, 'straints':7610, ' which':902, ' they':814, ' may':1253, ' or':477, ' may':1253, ' not':539, ' think':1781, '':198, ' ':415, ' proper':6300, ' to':311, ' impose':33330, ' upon':5304, ' the':279, ' export':7637, 'ation':367, ' of':315, ' this':420, ' sort':3460, ' of':315, ' rude':47101, ' produce':8356, '.':13, ' These':4314, '':198, ' ':415, ' circumstances':13463, ',':11, ' as':439, ' they':814, ' are':527, ' altogether':31155, ' independent':9678, ' of':315, ' domestic':13018, ' industry':5064, ',':11, ' so':779, '':198, ' ':415, ' they':814, ' necessarily':14647, ' render':3219, ' the':279, ' efficacy':41265, ' of':315, ' its':1202, ' efforts':9045, ' more':810, ' or':477, ' less':2753, '':198, ' ':415, ' uncertain':36218, '.':13, ' In':763, ' multiplying':85292, ' this':420, ' sort':3460, ' of':315, ' rude':47101, ' produce':8356, ',':11, ' therefore':9093, ',':11, ' the':279, '':198, ' ':415, ' efficacy':41265, ' of':315, ' human':3823, ' industry':5064, ' is':374, ' not':539, ' only':1193, ' limited':7347, ',':11, ' but':719, ' uncertain':36218, '.':13, ' ':7361, ' ':415, ' In':763, ' multiplying':85292, ' another':2500, ' very':1633, ' important':3062, ' sort':3460, ' of':315, ' rude':47101, ' produce':8356, ',':11, ' the':279, ' quantity':12472, '':198, ' ':415, ' of':315, ' fish':7795, ' that':430, ' is':374, ' brought':7263, ' to':311, ' market':3157, ',':11, ' it':433, ' is':374, ' likewise':39022, ' both':2225, ' limited':7347, ' and':323, '':198, ' ':415, ' uncertain':36218, '.':13, ' It':1102, ' is':374, ' limited':7347, ' by':555, ' the':279, ' local':2254, ' situation':6671, ' of':315, ' the':279, ' country':3224, ',':11, ' by':555, ' the':279, '':198, ' ':415, ' proximity':37843, ' or':477, ' distance':6138, ' of':315, ' its':1202, ' different':2204, ' provinces':41021, ' from':505, ' the':279, ' sea':9581, ',':11, ' by':555, ' the':279, '':198, ' ':415, ' number':1396, ' of':315, ' its':1202, ' lakes':44236, ' and':323, ' rivers':36617, ',':11, ' and':323, ' by':555, ' what':1148, ' may':1253, ' be':387, ' called':2663, ' the':279, ' fertility':48111, ' or':477, '':198, ' ':415, ' barren':95088, 'ness':2136, ' of':315, ' those':1884, ' seas':52840, ',':11, ' lakes':44236, ',':11, ' and':323, ' rivers':36617, ',':11, ' as':439, ' to':311, ' this':420, ' sort':3460, ' of':315, ' rude':47101, '':198, ' ':415, ' produce':8356, '.':13, ' As':1666, ' population':7187, ' increases':12992, ',':11, ' as':439, ' the':279, ' annual':9974, ' produce':8356, ' of':315, ' the':279, ' land':4363, ' and':323, '':198, ' ':415, ' labour':23791, ' of':315, ' the':279, ' country':3224, ' grows':28815, ' greater':7191, ' and':323, ' greater':7191, ',':11, ' there':1070, ' come':2586, ' to':311, ' be':387, ' more':810, '':198, ' ':415, ' buyers':23455, ' of':315, ' fish':7795, ';':26, ' and':323, ' those':1884, ' buyers':23455, ',':11, ' too':2288, ',':11, ' have':617, ' a':264, ' greater':7191, ' quantity':12472, ' and':323, ' variety':8205, '':198, ' ':415, ' of':315, ' other':1023, ' goods':11822, ',':11, ' or':477, ',':11, ' what':1148, ' is':374, ' the':279, ' same':1890, ' thing':3245, ',':11, ' the':279, ' price':3430, ' of':315, ' a':264, ' greater':7191, '':198, ' ':415, ' quantity':12472, ' and':323, ' variety':8205, ' of':315, ' other':1023, ' goods':11822, ',':11, ' to':311, ' buy':3780, ' with':449, '.':13, ' But':2030, ' it':433, ' will':690, ' generally':8965, ' be':387, '':198, ' ':415, ' impossible':12266, ' to':311, ' supply':8312, ' the':279, ' great':2294, ' and':323, ' extended':11838, ' market':3157, ',':11, ' without':2085, ' employing':51297, ' a':264, '':198, ' ':415, ' quantity':12472, ' of':315, ' labour':23791, ' greater':7191, ' than':1109, ' in':304, ' proportion':21801, ' to':311, ' what':1148, ' had':1047, ' been':1027, ' requisite':82780, '':198, ' ':415, ' for':369, ' supplying':44413, ' the':279, ' narrow':15376, ' and':323, ' confined':45408, ' one':832, '.':13, ' A':362, ' market':3157, ' which':902, ',':11, ' from':505, ' requiring':23537, '':198, ' ':415, ' only':1193, ' one':832, ' thousand':16579, ',':11, ' comes':4131, ' to':311, ' require':1397, ' annually':30171, ' ten':5899, ' thousand':16579, ' ton':8941, ' of':315, ' fish':7795, ',':11, ' can':649, '':198, ' ':415, ' seldom':56452, ' be':387, ' supplied':17665, ',':11, ' without':2085, ' employing':51297, ' more':810, ' than':1109, ' ten':5899, ' times':3115, ' the':279, ' quantity':12472, ' of':315, '':198, ' ':415, ' labour':23791, ' which':902, ' had':1047, ' before':1603, ' been':1027, ' sufficient':14343, ' to':311, ' supply':8312, ' it':433, '.':13, ' The':578, ' fish':7795, ' must':2011, '':198, ' ':415, ' generally':8965, ' be':387, ' sought':16495, ' for':369, ' at':520, ' a':264, ' greater':7191, ' distance':6138, ',':11, ' larger':8294, ' vessels':31080, ' must':2011, ' be':387, '':198, ' ':415, ' employed':20011, ',':11, ' and':323, ' more':810, ' expensive':11646, ' machinery':26953, ' of':315, ' every':1475, ' kind':3169, ' made':1903, ' use':1005, ' of':315, '.':13, ' The':578, ' real':1972, '':198, ' ':415, ' price':3430, ' of':315, ' this':420, ' commodity':38983, ',':11, ' therefore':9093, ',':11, ' naturally':18182, ' rises':38268, ' in':304, ' the':279, ' progress':5208, ' of':315, '':198, ' ':415, ' improvement':16048, '.':13, ' It':1102, ' has':706, ' accordingly':28178, ' done':2884, ' so':779, ',':11, ' I':358, ' believe':4510, ',':11, ' more':810, ' or':477, ' less':2753, ' in':304, ' every':1475, '':198, ' ':415, ' country':3224, '.':13, ' ':7361, ' ':415, ' Though':18056, ' the':279, ' success':2450, ' of':315, ' a':264, ' particular':4040, ' day':1938, '‚':529, 's':82, ' fishing':20543, ' may':1253, ' be':387, ' a':264, ' very':1633, ' uncertain':36218, '':198, ' ':415, ' matter':5030, ',':11, ' yet':3686, ' the':279, ' local':2254, ' situation':6671, ' of':315, ' the':279, ' country':3224, ' being':1694, ' supposed':10171, ',':11, ' the':279, ' general':4689, '':198, ' ':415, ' efficacy':41265, ' of':315, ' industry':5064, ' in':304, ' bringing':12967, ' a':264, ' certain':3738, ' quantity':12472, ' of':315, ' fish':7795, ' to':311, ' market':3157, ',':11, '':198, ' ':415, ' taking':4737, ' the':279, ' course':3388, ' of':315, ' a':264, ' year':1060, ',':11, ' or':477, ' of':315, ' several':3892, ' years':1667, ' together':3871, ',':11, ' it':433, ' may':1253, ',':11, '':198, ' ':415, ' perhaps':8530, ',':11, ' be':387, ' thought':3463, ' is':374, ' certain':3738, ' enough':3403, ';':26, ' and':323, ' it':433, ',':11, ' no':912, ' doubt':10712, ',':11, ' is':374, ' so':779, '.':13, ' As':1666, ' it':433, '':198, ' ':415, ' depends':14117, ' more':810, ',':11, ' however':4869, ',':11, ' upon':5304, ' the':279, ' local':2254, ' situation':6671, ' of':315, ' the':279, ' country':3224, ',':11, ' than':1109, ' upon':5304, '':198, ' ':415, ' the':279, ' state':1614, ' of':315, ' its':1202, ' wealth':12205, ' and':323, ' industry':5064, ';':26, ' as':439, ' upon':5304, ' this':420, ' account':2759, ' it':433, ' may':1253, ' in':304, '':198, ' ':415, ' different':2204, ' countries':5961, ' be':387, ' the':279, ' same':1890, ' in':304, ' very':1633, ' different':2204, ' periods':18852, ' of':315, ' improvement':16048, ',':11, '':198, ' ':415, ' and':323, ' very':1633, ' different':2204, ' in':304, ' the':279, ' same':1890, ' period':4261, ';':26, ' its':1202, ' connection':3717, ' with':449, ' the':279, ' state':1614, ' of':315, '':198, ' ':415, ' improvement':16048, ' is':374, ' uncertain':36218, ';':26, ' and':323, ' it':433, ' is':374, ' of':315, ' this':420, ' sort':3460, ' of':315, ' uncertainty':27924, ' that':430, ' I':358, ' am':1097, '':198, ' ':415, ' here':1618, ' speaking':12365, '.':13, ' ':7361, ' ':415, ' In':763, ' increasing':7859, ' the':279, ' quantity':12472, ' of':315, ' the':279, ' different':2204, ' minerals':34072, ' and':323, ' metals':37182, ' which':902, ' are':527, '':198, ' ':415, ' drawn':15107, ' from':505, ' the':279, ' bow':15631, 'els':2053, ' of':315, ' the':279, ' earth':9578, ',':11, ' that':430, ' of':315, ' the':279, ' more':810, ' precious':27498, ' ones':6305, '':198, ' ':415, ' particularly':8104, ',':11, ' the':279, ' efficacy':41265, ' of':315, ' human':3823, ' industry':5064, ' seems':5084, ' not':539, ' to':311, ' be':387, ' limited':7347, ',':11, ' but':719, '':198, ' ':415, ' to':311, ' be':387, ' altogether':31155, ' uncertain':36218, '.':13, ' ':7361, ' ':415, ' The':578, ' quantity':12472, ' of':315, ' the':279, ' precious':27498, ' metals':37182, ' which':902, ' is':374, ' to':311, ' be':387, ' found':1766, ' in':304, ' any':904, ' country':3224, ',':11, '':198, ' ':415, ' is':374, ' not':539, ' limited':7347, ' by':555, ' any':904, ' thing':3245, ' in':304, ' its':1202, ' local':2254, ' situation':6671, ',':11, ' such':1778, ' as':439, ' the':279, ' fertility':48111, '':198, ' ':415, ' or':477, ' barren':95088, 'ness':2136, ' of':315, ' its':1202, ' own':1866, ' mines':34757, '.':13, ' Those':13266, ' metals':37182, ' frequently':14134, ' abound':87690, ' in':304, '':198, ' ':415, ' countries':5961, ' which':902, ' possess':15575, ' no':912, ' mines':34757, '.':13, ' Their':11205, ' quantity':12472, ',':11, ' in':304, ' every':1475, ' particular':4040, '':198, ' ':415, ' country':3224, ',':11, ' seems':5084, ' to':311, ' depend':6904, ' upon':5304, ' two':1403, ' different':2204, ' circumstances':13463, ';':26, ' first':1176, ',':11, ' upon':5304, ' its':1202, '':198, ' ':415, ' power':2410, ' of':315, ' purchasing':23395, ',':11, ' upon':5304, ' the':279, ' state':1614, ' of':315, ' its':1202, ' industry':5064, ',':11, ' upon':5304, ' the':279, ' annual':9974, '':198, ' ':415, ' produce':8356, ' of':315, ' its':1202, ' land':4363, ' and':323, ' labour':23791, ',':11, ' in':304, ' consequence':29774, ' of':315, ' which':902, ' it':433, ' can':649, ' afford':10150, ' to':311, '':198, ' ':415, ' employ':3539, ' a':264, ' greater':7191, ' or':477, ' a':264, ' smaller':9333, ' quantity':12472, ' of':315, ' labour':23791, ' and':323, ' subs':5258, 'istence':81624, ',':11, ' in':304, '':198, ' ':415, ' bringing':12967, ' or':477, ' purchasing':23395, ' such':1778, ' super':2307, 'flu':27256, 'ities':1385, ' as':439, ' gold':6761, ' and':323, ' silver':15310, ',':11, ' either':3060, ' from':505, '':198, ' ':415, ' its':1202, ' own':1866, ' mines':34757, ',':11, ' or':477, ' from':505, ' those':1884, ' of':315, ' other':1023, ' countries':5961, ';':26, ' and':323, ',':11, ' second':2132, 'ly':398, ',':11, ' upon':5304, ' the':279, '':198, ' ':415, ' fertility':48111, ' or':477, ' barren':95088, 'ness':2136, ' of':315, ' the':279, ' mines':34757, ' which':902, ' may':1253, ' happen':3621, ' at':520, ' any':904, ' particular':4040, '':198, ' ':415, ' time':892, ' to':311, ' supply':8312, ' the':279, ' commercial':8518, ' world':1917, ' with':449, ' those':1884, ' metals':37182, '.':13, ' The':578, ' quantity':12472, ' of':315, '':198, ' ':415, ' those':1884, ' metals':37182, ' in':304, ' the':279, ' countries':5961, ' most':1455, ' remote':8870, ' from':505, ' the':279, ' mines':34757, ',':11, ' must':2011, ' be':387, ' more':810, ' or':477, '':198, ' ':415, ' less':2753, ' affected':11754, ' by':555, ' this':420, ' fertility':48111, ' or':477, ' barren':95088, 'ness':2136, ',':11, ' on':389, ' account':2759, ' of':315, ' the':279, ' easy':4228, ' and':323, '':198, ' ':415, ' cheap':12136, ' transportation':18386, ' of':315, ' those':1884, ' metals':37182, ',':11, ' of':315, ' their':872, ' small':2678, ' bulk':20155, ' and':323, ' great':2294, ' value':907, '.':13, '':198, ' ':415, ' Their':11205, ' quantity':12472, ' in':304, ' China':5734, ' and':323, ' Ind':2314, 'ost':537, 'an':276, ' must':2011, ' have':617, ' been':1027, ' more':810, ' or':477, ' less':2753, ' affected':11754, '':198, ' ':415, ' by':555, ' the':279, ' abundance':37492, ' of':315, ' the':279, ' mines':34757, ' of':315, ' America':5270, '.':13, ' ':7361, ' ':415, ' So':2100, ' far':3117, ' as':439, ' their':872, ' quantity':12472, ' in':304, ' any':904, ' particular':4040, ' country':3224, ' depends':14117, ' upon':5304, ' the':279, ' former':4846, '':198, ' ':415, ' of':315, ' those':1884, ' two':1403, ' circumstances':13463, ' ':220, '(':7, 'the':1820, ' power':2410, ' of':315, ' purchasing':23395, '),':705, ' their':872, ' real':1972, ' price':3430, ',':11, '':198, ' ':415, ' like':1093, ' that':430, ' of':315, ' all':682, ' other':1023, ' lux':14379, 'uries':10612, ' and':323, ' super':2307, 'flu':27256, 'ities':1385, ',':11, ' is':374, ' likely':4461, ' to':311, ' rise':10205, ' with':449, '':198, ' ':415, ' the':279, ' wealth':12205, ' and':323, ' improvement':16048, ' of':315, ' the':279, ' country':3224, ',':11, ' and':323, ' to':311, ' fall':4498, ' with':449, ' its':1202, ' poverty':19542, '':198, ' ':415, ' and':323, ' depression':18710, '.':13, ' Countries':54837, ' which':902, ' have':617, ' a':264, ' great':2294, ' quantity':12472, ' of':315, ' labour':23791, ' and':323, '':198, ' ':415, ' subs':5258, 'istence':81624, ' to':311, ' spare':24804, ',':11, ' can':649, ' afford':10150, ' to':311, ' purchase':7782, ' any':904, ' particular':4040, ' quantity':12472, ' of':315, '':198, ' ':415, ' those':1884, ' metals':37182, ' at':520, ' the':279, ' expense':20900, ' of':315, ' a':264, ' greater':7191, ' quantity':12472, ' of':315, ' labour':23791, ' and':323, '':198, ' ':415, ' subs':5258, 'istence':81624, ',':11, ' than':1109, ' countries':5961, ' which':902, ' have':617, ' less':2753, ' to':311, ' spare':24804, '.':13, ' ':7361, ' ':415, ' So':2100, ' far':3117, ' as':439, ' their':872, ' quantity':12472, ' in':304, ' any':904, ' particular':4040, ' country':3224, ' depends':14117, ' upon':5304, ' the':279, ' latter':15629, '':198, ' ':415, ' of':315, ' those':1884, ' two':1403, ' circumstances':13463, ' ':220, '(':7, 'the':1820, ' fertility':48111, ' or':477, ' barren':95088, 'ness':2136, ' of':315, ' the':279, ' mines':34757, ' which':902, '':198, ' ':415, ' happen':3621, ' to':311, ' supply':8312, ' the':279, ' commercial':8518, ' world':1917, '),':705, ' their':872, ' real':1972, ' price':3430, ',':11, ' the':279, ' real':1972, '':198, ' ':415, ' quantity':12472, ' of':315, ' labour':23791, ' and':323, ' subs':5258, 'istence':81624, ' which':902, ' they':814, ' will':690, ' purchase':7782, ' or':477, ' exchange':9473, '':198, ' ':415, ' for':369, ',':11, ' will':690, ',':11, ' no':912, ' doubt':10712, ',':11, ' sink':19868, ' more':810, ' or':477, ' less':2753, ' in':304, ' proportion':21801, ' to':311, ' the':279, ' fertility':48111, ',':11, ' and':323, '':198, ' ':415, ' rise':10205, ' in':304, ' proportion':21801, ' to':311, ' the':279, ' barren':95088, 'ness':2136, ' of':315, ' those':1884, ' mines':34757, '.':13, ' ':7361, ' ':415, ' The':578, ' fertility':48111, ' or':477, ' barren':95088, 'ness':2136, ' of':315, ' the':279, ' mines':34757, ',':11, ' however':4869, ',':11, ' which':902, ' may':1253, ' happen':3621, ' at':520, ' any':904, '':198, ' ':415, ' particular':4040, ' time':892, ' to':311, ' supply':8312, ' the':279, ' commercial':8518, ' world':1917, ',':11, ' is':374, ' a':264, ' circumstance':53237, ' which':902, ',':11, '':198, ' ':415, ' it':433, ' is':374, ' evident':30576, ',':11, ' may':1253, ' have':617, ' no':912, ' sort':3460, ' of':315, ' connection':3717, ' with':449, ' the':279, ' state':1614, ' of':315, ' industry':5064, '':198, ' ':415, ' in':304, ' a':264, ' particular':4040, ' country':3224, '.':13, ' It':1102, ' seems':5084, ' even':1524, ' to':311, ' have':617, ' no':912, ' very':1633, ' necessary':5995, '':198, ' ':415, ' connection':3717, ' with':449, ' that':430, ' of':315, ' the':279, ' world':1917, ' in':304, ' general':4689, '.':13, ' As':1666, ' arts':19071, ' and':323, ' commerce':36754, ',':11, '':198, ' ':415, ' indeed':13118, ',':11, ' gradually':27115, ' spread':9041, ' themselves':5694, ' over':927, ' a':264, ' greater':7191, ' and':323, ' a':264, ' greater':7191, ' part':961, ' of':315, '':198, ' ':415, ' the':279, ' earth':9578, ',':11, ' the':279, ' search':2778, ' for':369, ' new':502, ' mines':34757, ',':11, ' being':1694, ' extended':11838, ' over':927, ' a':264, ' wider':22622, ' surface':7479, ',':11, '':198, ' ':415, ' may':1253, ' have':617, ' somewhat':14738, ' a':264, ' better':2731, ' chance':6140, ' for':369, ' being':1694, ' successful':6992, ' than':1109, ' when':994, ' confined':45408, '':198, ' ':415, ' within':2949, ' narrower':91529, ' bounds':14597, '.':13, ' The':578, ' discovery':18841, ' of':315, ' new':502, ' mines':34757, ',':11, ' however':4869, ',':11, ' as':439, ' the':279, ' old':2362, '':198, ' ':415, ' ones':6305, ' come':2586, ' to':311, ' be':387, ' gradually':27115, ' exhausted':39019, ',':11, ' is':374, ' a':264, ' matter':5030, ' of':315, ' the':279, ' greatest':12474, '':198, ' ':415, ' uncertainty':27924, ',':11, ' and':323, ' such':1778, ' as':439, ' no':912, ' human':3823, ' skill':10151, ' or':477, ' industry':5064, ' can':649, ' insure':70632, '.':13, ' All':2052, '':198, ' ':415, ' indications':56190, ',':11, ' it':433, ' is':374, ' acknowledged':26579, ',':11, ' are':527, ' doubtful':75699, ';':26, ' and':323, ' the':279, ' actual':5150, ' discovery':18841, '':198, ' ':415, ' and':323, ' successful':6992, ' working':3318, ' of':315, ' a':264, ' new':502, ' mine':10705, ' can':649, ' alone':7636, ' ascertain':77277, ' the':279, ' reality':8903, ' of':315, '':198, ' ':415, ' its':1202, ' value':907, ',':11, ' or':477, ' even':1524, ' of':315, ' its':1202, ' existence':14209, '.':13, ' In':763, ' this':420, ' search':2778, ' there':1070, ' seem':2873, ' to':311, ' be':387, ' no':912, '':198, ' ':415, ' certain':3738, ' limits':13693, ',':11, ' either':3060, ' to':311, ' the':279, ' possible':3284, ' success':2450, ',':11, ' or':477, ' to':311, ' the':279, ' possible':3284, '':198, ' ':415, ' disappointment':41698, ' of':315, ' human':3823, ' industry':5064, '.':13, ' In':763, ' the':279, ' course':3388, ' of':315, ' a':264, ' century':9478, ' or':477, ' two':1403, ',':11, ' it':433, ' is':374, '':198, ' ':415, ' possible':3284, ' that':430, ' new':502, ' mines':34757, ' may':1253, ' be':387, ' discovered':11352, ',':11, ' more':810, ' fertile':70225, ' than':1109, ' any':904, ' that':430, ' have':617, '':198, ' ':415, ' ever':3596, ' yet':3686, ' been':1027, ' known':3967, ';':26, ' and':323, ' it':433, ' is':374, ' just':1120, ' equally':18813, ' possible':3284, ',':11, ' that':430, ' the':279, ' most':1455, '':198, ' ':415, ' fertile':70225, ' mine':10705, ' then':1243, ' known':3967, ' may':1253, ' be':387, ' more':810, ' barren':95088, ' than':1109, ' any':904, ' that':430, ' was':574, ' wrought':79703, '':198, ' ':415, ' before':1603, ' the':279, ' discovery':18841, ' of':315, ' the':279, ' mines':34757, ' of':315, ' America':5270, '.':13, ' Whether':13440, ' the':279, ' one':832, ' or':477, ' the':279, ' other':1023, '':198, ' ':415, ' of':315, ' those':1884, ' two':1403, ' events':4455, ' may':1253, ' happen':3621, ' to':311, ' take':1935, ' place':2035, ',':11, ' is':374, ' of':315, ' very':1633, ' little':2697, ' importance':12939, '':198, ' ':415, ' to':311, ' the':279, ' real':1972, ' wealth':12205, ' and':323, ' prosperity':44202, ' of':315, ' the':279, ' world':1917, ',':11, ' to':311, ' the':279, ' real':1972, ' value':907, ' of':315, ' the':279, '':198, ' ':415, ' annual':9974, ' produce':8356, ' of':315, ' the':279, ' land':4363, ' and':323, ' labour':23791, ' of':315, ' mankind':43384, '.':13, ' Its':11699, ' nominal':47855, ' value':907, ',':11, ' the':279, '':198, ' ':415, ' quantity':12472, ' of':315, ' gold':6761, ' and':323, ' silver':15310, ' by':555, ' which':902, ' this':420, ' annual':9974, ' produce':8356, ' could':1436, ' be':387, '':198, ' ':415, ' expressed':13605, ' or':477, ' represented':15609, ',':11, ' would':1053, ',':11, ' no':912, ' doubt':10712, ',':11, ' be':387, ' very':1633, ' different':2204, ';':26, ' but':719, ' its':1202, ' real':1972, '':198, ' ':415, ' value':907, ',':11, ' the':279, ' real':1972, ' quantity':12472, ' of':315, ' labour':23791, ' which':902, ' it':433, ' could':1436, ' purchase':7782, ' or':477, ' command':3290, ',':11, '':198, ' ':415, ' would':1053, ' be':387, ' precisely':24559, ' the':279, ' same':1890, '.':13, ' A':362, ' sh':559, 'illing':9585, ' might':2643, ',':11, ' in':304, ' the':279, ' one':832, ' case':1162, ',':11, ' represent':4097, '':198, ' ':415, ' no':912, ' more':810, ' labour':23791, ' than':1109, ' a':264, ' penny':50169, ' does':1587, ' at':520, ' present':3118, ';':26, ' and':323, ' a':264, ' penny':50169, ',':11, ' in':304, ' the':279, ' other':1023, ',':11, '':198, ' ':415, ' might':2643, ' represent':4097, ' as':439, ' much':1790, ' as':439, ' a':264, ' sh':559, 'illing':9585, ' does':1587, ' now':1457, '.':13, ' But':2030, ' in':304, ' the':279, ' one':832, ' case':1162, ',':11, ' he':568, '':198, ' ':415, ' who':889, ' had':1047, ' a':264, ' sh':559, 'illing':9585, ' in':304, ' his':813, ' pocket':18301, ' would':1053, ' be':387, ' no':912, ' richer':59774, ' than':1109, ' he':568, ' who':889, ' has':706, ' a':264, '':198, ' ':415, ' penny':50169, ' at':520, ' present':3118, ';':26, ' and':323, ' in':304, ' the':279, ' other':1023, ',':11, ' he':568, ' who':889, ' had':1047, ' a':264, ' penny':50169, ' would':1053, ' be':387, ' just':1120, ' as':439, '':198, ' ':415, ' rich':9257, ' as':439, ' he':568, ' who':889, ' has':706, ' a':264, ' sh':559, 'illing':9585, ' now':1457, '.':13, ' The':578, ' cheap':12136, 'ness':2136, ' and':323, ' abundance':37492, ' of':315, ' gold':6761, ' and':323, '':198, ' ':415, ' silver':15310, ' plate':12235, ' would':1053, ' be':387, ' the':279, ' sole':13612, ' advantage':9610, ' which':902, ' the':279, ' world':1917, ' could':1436, ' derive':43530, ' from':505, '':198, ' ':415, ' the':279, ' one':832, ' event':1567, ';':26, ' and':323, ' the':279, ' de':409, 'arness':24422, ' and':323, ' scarcity':82484, ' of':315, ' those':1884, ' trif':90203, 'ling':2785, '':198, ' ':415, ' super':2307, 'flu':27256, 'ities':1385, ',':11, ' the':279, ' only':1193, ' incon':28093, 'ven':1055, 'i':72, 'ency':2301, ' it':433, ' could':1436, ' suffer':7831, ' from':505, ' the':279, ' other':1023, '.':13, ' ':7361, '':198, '':74694, '':271, '<|eot_id|>':128009, '<|start_header_id|>':128006, 'assistant':78191, '<|end_header_id|>':128007, '':271, '-':12, 'BEGIN':38688, ' RE':3680, 'WRITE':33881, '-':12 ] [1719242810] recalculate the cached logits (check): embd_inp.empty() false, n_matching_session_tokens 0, embd_inp.size() 2057, session_tokens.size() 0, embd_inp.size() 2057 [1719242810] sampling: repeat_last_n = 64, repeat_penalty = 1.000, frequency_penalty = 0.000, presence_penalty = 0.000 top_k = 40, tfs_z = 1.000, top_p = 0.950, min_p = 0.050, typical_p = 1.000, temp = 0.100 mirostat = 0, mirostat_lr = 0.100, mirostat_ent = 5.000 [1719242810] sampling order: CFG -> Penalties -> top_k -> tfs_z -> typical_p -> top_p -> min_p -> temperature [1719242810] generate: n_ctx = 6144, n_batch = 2048, n_predict = -2, n_keep = 0 [1719242810]

[1719242810] embd_inp.size(): 2057, n_consumed: 0 [1719242810] [end of text] [1719242810] [1719242810] llama_print_timings: load time = 401.42 ms [1719242810] llama_print_timings: sample time = 0.00 ms / 1 runs ( 0.00 ms per token, inf tokens per second) [1719242810] llama_print_timings: prompt eval time = 0.00 ms / 0 tokens ( nan ms per token, nan tokens per second) [1719242810] llama_print_timings: eval time = 0.00 ms / 1 runs ( 0.00 ms per token, inf tokens per second) [1719242810] llama_print_timings: total time = 10.93 ms / 1 tokens [1719242810] ggml_metal_free: deallocating [1719242810] Log end