Daemontatox commited on
Commit
af2f80a
·
verified ·
1 Parent(s): 512e6e4

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +6 -37
README.md CHANGED
@@ -6,6 +6,8 @@ tags:
6
  - transformers
7
  - unsloth
8
  - qwen3_moe
 
 
9
  license: apache-2.0
10
  language:
11
  - en
@@ -25,10 +27,10 @@ new_version: Daemontatox/FerrisMind
25
  - **Year released:** 2025
26
  - **License:** apache-2.0
27
  - **Base model:** [unsloth/qwen3-coder-30b-a3b-instruct](https://huggingface.co/unsloth/qwen3-coder-30b-a3b-instruct)
28
- - **Model type:** Instruction-tuned large language model for code generation
29
 
30
  ## Model Summary
31
- FerrisMind is a finetuned variant of Qwen3 Coder Flash, specialized for **Rust programming**.
32
  It is optimized for:
33
  - Idiomatic Rust generation
34
  - High-performance and memory-safe code practices
@@ -47,8 +49,8 @@ It is optimized for:
47
 
48
  ## Training
49
  - **Finetuned from:** unsloth/qwen3-coder-30b-a3b-instruct
50
- - **Objective:** Specialization in Rust code generation and idiomatic best practices
51
- - **Methods:** Instruction tuning and domain-specific data
52
 
53
  ## Limitations
54
  - May generate non-compiling Rust code in complex cases
@@ -66,37 +68,4 @@ async fn main() -> io::Result<()> {
66
  file.read_to_string(&mut contents).await?;
67
  println!("File content: {}", contents);
68
  Ok(())
69
- }
70
- ```
71
-
72
- ```rust
73
- use std::thread;
74
- use std::sync::mpsc;
75
-
76
- fn main() {
77
- let (tx, rx) = mpsc::channel();
78
-
79
- for i in 0..5 {
80
- let tx_clone = tx.clone();
81
- thread::spawn(move || {
82
- let message = format!("Message from thread {}", i);
83
- tx_clone.send(message).unwrap();
84
- });
85
- }
86
-
87
- drop(tx); // Close the original sender
88
-
89
- for received in rx {
90
- println!("Got: {}", received);
91
- }
92
- }
93
- ```
94
-
95
-
96
-
97
- @misc{daemontatox2025ferrismind,
98
- title={FerrisMind: Rust-specialized Qwen3 Coder Finetune},
99
- author={Daemontatox},
100
- year={2025},
101
- howpublished={\url{https://huggingface.co/Daemontatox/FerrisMind}}
102
  }
 
6
  - transformers
7
  - unsloth
8
  - qwen3_moe
9
+ - hybrid-thinking
10
+ - coding-assistant
11
  license: apache-2.0
12
  language:
13
  - en
 
27
  - **Year released:** 2025
28
  - **License:** apache-2.0
29
  - **Base model:** [unsloth/qwen3-coder-30b-a3b-instruct](https://huggingface.co/unsloth/qwen3-coder-30b-a3b-instruct)
30
+ - **Model type:** Instruction-tuned large language model for code generation, specifically designed to mimic hybrid thinking and utilize it in coding instruct models.
31
 
32
  ## Model Summary
33
+ FerrisMind is a finetuned variant of Qwen3 Coder Flash, specialized for **Rust programming**. It was trained using GRPO in an attempt to mimic hybrid thinking and utilize it in coding instruct models.
34
  It is optimized for:
35
  - Idiomatic Rust generation
36
  - High-performance and memory-safe code practices
 
49
 
50
  ## Training
51
  - **Finetuned from:** unsloth/qwen3-coder-30b-a3b-instruct
52
+ - **Objective:** Specialization in Rust code generation and idiomatic best practices, mimicking hybrid thinking.
53
+ - **Methods:** Instruction tuning with GRPO and domain-specific data
54
 
55
  ## Limitations
56
  - May generate non-compiling Rust code in complex cases
 
68
  file.read_to_string(&mut contents).await?;
69
  println!("File content: {}", contents);
70
  Ok(())
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
71
  }