Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

params.yml 917 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
  1. model:
  2. cv: CountVectorizer()
  3. cv__analyzer: word
  4. cv__binary: false
  5. cv__decode_error: strict
  6. cv__dtype: <class 'numpy.int64'>
  7. cv__encoding: utf-8
  8. cv__input: content
  9. cv__lowercase: true
  10. cv__max_df: 1.0
  11. cv__max_features: null
  12. cv__min_df: 1
  13. cv__ngram_range: (1, 1)
  14. cv__preprocessor: null
  15. cv__stop_words: null
  16. cv__strip_accents: null
  17. cv__token_pattern: (?u)\b\w\w+\b
  18. cv__tokenizer: null
  19. cv__vocabulary: null
  20. lr: LogisticRegression()
  21. lr__C: 1.0
  22. lr__class_weight: null
  23. lr__dual: false
  24. lr__fit_intercept: true
  25. lr__intercept_scaling: 1
  26. lr__l1_ratio: null
  27. lr__max_iter: 100
  28. lr__multi_class: auto
  29. lr__n_jobs: null
  30. lr__penalty: l2
  31. lr__random_state: null
  32. lr__solver: lbfgs
  33. lr__tol: 0.0001
  34. lr__verbose: 0
  35. lr__warm_start: false
  36. memory: null
  37. steps: '[(''cv'', CountVectorizer()), (''lr'', LogisticRegression())]'
  38. verbose: false
  39. model_class: logisticregression
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...