Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,21 +1,34 @@
|
|
| 1 |
---
|
| 2 |
-
base_model:
|
| 3 |
-
tags:
|
| 4 |
-
- text-generation-inference
|
| 5 |
-
- transformers
|
| 6 |
-
- unsloth
|
| 7 |
-
- gemma4
|
| 8 |
license: apache-2.0
|
| 9 |
-
|
| 10 |
-
-
|
|
|
|
|
|
|
|
|
|
| 11 |
---
|
| 12 |
|
| 13 |
-
#
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 14 |
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
|
| 19 |
-
|
| 20 |
|
| 21 |
-
|
|
|
|
| 1 |
---
|
| 2 |
+
base_model: google/gemma-3n-e4b-it
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
license: apache-2.0
|
| 4 |
+
tags:
|
| 5 |
+
- selenium
|
| 6 |
+
- java
|
| 7 |
+
- experimental
|
| 8 |
+
pipeline_tag: text-generation
|
| 9 |
---
|
| 10 |
|
| 11 |
+
# selenium-java-llm v0.1
|
| 12 |
+
|
| 13 |
+
> **Experimental. Not an official release.**
|
| 14 |
+
|
| 15 |
+
Gemma 3n E4B fine-tuned to reason about Selenium WebDriver tests in Java —
|
| 16 |
+
diagnosing flaky tests, suggesting resilient locators, explaining failures,
|
| 17 |
+
and emitting `<tool_call>` JSON envelopes.
|
| 18 |
+
|
| 19 |
+
## Disclaimers
|
| 20 |
+
|
| 21 |
+
- Not affiliated with SeleniumHQ, Google, or any official maintainer.
|
| 22 |
+
- Personal research experiment. No warranty, no support.
|
| 23 |
+
- Hallucinates Selenium APIs. Always verify generated code.
|
| 24 |
+
- Base model licensing (Gemma Terms of Use) governs use.
|
| 25 |
+
|
| 26 |
+
## Usage with vLLM
|
| 27 |
|
| 28 |
+
```bash
|
| 29 |
+
vllm serve harsha509/selenium-java-llm-v0.1 --max-model-len 32768
|
| 30 |
+
```
|
| 31 |
|
| 32 |
+
## Intended use
|
| 33 |
|
| 34 |
+
Research and experimentation. **Not for** production test triage or unattended code edits.
|