nlpcloud 1.0.42 → 1.0.43
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/nlpcloud.rb +5 -12
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bb82d8ac819fd557e5bef86758822fac410bdc27fa2e9c0c3c18f42d06353dd1
|
4
|
+
data.tar.gz: 56c214eabee690c342c1f122df6a2793e6dc6075b0127d99d1b9c932cb481f36
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6dd2821fc24e63fe7d84045fb83c7382924f577a718e3e8693f9bc1273281ff3c2bd90cf92c4353a3f2c00e8271636c4d4c9befd3870f623731a56948dddb92b
|
7
|
+
data.tar.gz: b0656713011e671583fde43e702df15d56b322a21202cdd9f514a98c34ccad0b818d4b4524babc4ede43e91855eff23d2ef179be6c181c8832f1374e3feeb845
|
data/lib/nlpcloud.rb
CHANGED
@@ -117,31 +117,24 @@ module NLPCloud
|
|
117
117
|
JSON.parse(response.body)
|
118
118
|
end
|
119
119
|
|
120
|
-
def generation(text,
|
121
|
-
end_sequence: nil, remove_input: nil,
|
122
|
-
|
123
|
-
temperature: nil, repetition_penalty: nil,
|
124
|
-
is_instruct: nil)
|
120
|
+
def generation(text, max_length: nil, length_no_input: nil,
|
121
|
+
end_sequence: nil, remove_input: nil, num_beams: nil,
|
122
|
+
num_return_sequences: nil, top_k: nil, top_p: nil,
|
123
|
+
temperature: nil, repetition_penalty: nil, bad_words: nil, remove_end_sequence: nil)
|
125
124
|
payload = {
|
126
125
|
'text' => text,
|
127
|
-
'min_length' => min_length,
|
128
126
|
'max_length' => max_length,
|
129
127
|
'length_no_input' => length_no_input,
|
130
128
|
'end_sequence' => end_sequence,
|
131
129
|
'remove_input' => remove_input,
|
132
|
-
'do_sample' => do_sample,
|
133
130
|
'num_beams' => num_beams,
|
134
|
-
'early_stopping' => early_stopping,
|
135
|
-
'no_repeat_ngram_size' => no_repeat_ngram_size,
|
136
131
|
'num_return_sequences' => num_return_sequences,
|
137
132
|
'top_k' => top_k,
|
138
133
|
'top_p' => top_p,
|
139
134
|
'temperature' => temperature,
|
140
135
|
'repetition_penalty' => repetition_penalty,
|
141
|
-
'length_penalty' => length_penalty,
|
142
136
|
'bad_words' => bad_words,
|
143
|
-
'remove_end_sequence' => remove_end_sequence
|
144
|
-
'is_instruct' => is_instruct
|
137
|
+
'remove_end_sequence' => remove_end_sequence
|
145
138
|
}
|
146
139
|
response = RestClient.post("#{@root_url}/generation", payload.to_json, @headers)
|
147
140
|
JSON.parse(response.body)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: nlpcloud
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.43
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Julien Salinas
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-08-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rest-client
|