Instructions to use meta-models/Muse-Glimmer-30B-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use meta-models/Muse-Glimmer-30B-GGUF with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf meta-models/Muse-Glimmer-30B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf meta-models/Muse-Glimmer-30B-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf meta-models/Muse-Glimmer-30B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf meta-models/Muse-Glimmer-30B-GGUF:Q4_K_M
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf meta-models/Muse-Glimmer-30B-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf meta-models/Muse-Glimmer-30B-GGUF:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf meta-models/Muse-Glimmer-30B-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf meta-models/Muse-Glimmer-30B-GGUF:Q4_K_M
Use Docker
docker model run hf.co/meta-models/Muse-Glimmer-30B-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use meta-models/Muse-Glimmer-30B-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "meta-models/Muse-Glimmer-30B-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "meta-models/Muse-Glimmer-30B-GGUF", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/meta-models/Muse-Glimmer-30B-GGUF:Q4_K_M
- Ollama
How to use meta-models/Muse-Glimmer-30B-GGUF with Ollama:
ollama run hf.co/meta-models/Muse-Glimmer-30B-GGUF:Q4_K_M
- Unsloth Studio
How to use meta-models/Muse-Glimmer-30B-GGUF with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for meta-models/Muse-Glimmer-30B-GGUF to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for meta-models/Muse-Glimmer-30B-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for meta-models/Muse-Glimmer-30B-GGUF to start chatting
- Pi
How to use meta-models/Muse-Glimmer-30B-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf meta-models/Muse-Glimmer-30B-GGUF:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "meta-models/Muse-Glimmer-30B-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- OpenClaw new
How to use meta-models/Muse-Glimmer-30B-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf meta-models/Muse-Glimmer-30B-GGUF:Q4_K_M
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "meta-models/Muse-Glimmer-30B-GGUF:Q4_K_M" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
- Docker Model Runner
How to use meta-models/Muse-Glimmer-30B-GGUF with Docker Model Runner:
docker model run hf.co/meta-models/Muse-Glimmer-30B-GGUF:Q4_K_M
- Lemonade
How to use meta-models/Muse-Glimmer-30B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull meta-models/Muse-Glimmer-30B-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Muse-Glimmer-30B-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use meta-models/Muse-Glimmer-30B-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf meta-models/Muse-Glimmer-30B-GGUF:Q4_K_M
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default meta-models/Muse-Glimmer-30B-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
Add license, usage policy, and model card
Browse files- LICENSE +202 -0
- README.md +216 -0
- USAGE_POLICY.md +46 -0
LICENSE
ADDED
|
@@ -0,0 +1,202 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
Apache License
|
| 3 |
+
Version 2.0, January 2004
|
| 4 |
+
http://www.apache.org/licenses/
|
| 5 |
+
|
| 6 |
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
| 7 |
+
|
| 8 |
+
1. Definitions.
|
| 9 |
+
|
| 10 |
+
"License" shall mean the terms and conditions for use, reproduction,
|
| 11 |
+
and distribution as defined by Sections 1 through 9 of this document.
|
| 12 |
+
|
| 13 |
+
"Licensor" shall mean the copyright owner or entity authorized by
|
| 14 |
+
the copyright owner that is granting the License.
|
| 15 |
+
|
| 16 |
+
"Legal Entity" shall mean the union of the acting entity and all
|
| 17 |
+
other entities that control, are controlled by, or are under common
|
| 18 |
+
control with that entity. For the purposes of this definition,
|
| 19 |
+
"control" means (i) the power, direct or indirect, to cause the
|
| 20 |
+
direction or management of such entity, whether by contract or
|
| 21 |
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
| 22 |
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
| 23 |
+
|
| 24 |
+
"You" (or "Your") shall mean an individual or Legal Entity
|
| 25 |
+
exercising permissions granted by this License.
|
| 26 |
+
|
| 27 |
+
"Source" form shall mean the preferred form for making modifications,
|
| 28 |
+
including but not limited to software source code, documentation
|
| 29 |
+
source, and configuration files.
|
| 30 |
+
|
| 31 |
+
"Object" form shall mean any form resulting from mechanical
|
| 32 |
+
transformation or translation of a Source form, including but
|
| 33 |
+
not limited to compiled object code, generated documentation,
|
| 34 |
+
and conversions to other media types.
|
| 35 |
+
|
| 36 |
+
"Work" shall mean the work of authorship, whether in Source or
|
| 37 |
+
Object form, made available under the License, as indicated by a
|
| 38 |
+
copyright notice that is included in or attached to the work
|
| 39 |
+
(an example is provided in the Appendix below).
|
| 40 |
+
|
| 41 |
+
"Derivative Works" shall mean any work, whether in Source or Object
|
| 42 |
+
form, that is based on (or derived from) the Work and for which the
|
| 43 |
+
editorial revisions, annotations, elaborations, or other modifications
|
| 44 |
+
represent, as a whole, an original work of authorship. For the purposes
|
| 45 |
+
of this License, Derivative Works shall not include works that remain
|
| 46 |
+
separable from, or merely link (or bind by name) to the interfaces of,
|
| 47 |
+
the Work and Derivative Works thereof.
|
| 48 |
+
|
| 49 |
+
"Contribution" shall mean any work of authorship, including
|
| 50 |
+
the original version of the Work and any modifications or additions
|
| 51 |
+
to that Work or Derivative Works thereof, that is intentionally
|
| 52 |
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
| 53 |
+
or by an individual or Legal Entity authorized to submit on behalf of
|
| 54 |
+
the copyright owner. For the purposes of this definition, "submitted"
|
| 55 |
+
means any form of electronic, verbal, or written communication sent
|
| 56 |
+
to the Licensor or its representatives, including but not limited to
|
| 57 |
+
communication on electronic mailing lists, source code control systems,
|
| 58 |
+
and issue tracking systems that are managed by, or on behalf of, the
|
| 59 |
+
Licensor for the purpose of discussing and improving the Work, but
|
| 60 |
+
excluding communication that is conspicuously marked or otherwise
|
| 61 |
+
designated in writing by the copyright owner as "Not a Contribution."
|
| 62 |
+
|
| 63 |
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
| 64 |
+
on behalf of whom a Contribution has been received by Licensor and
|
| 65 |
+
subsequently incorporated within the Work.
|
| 66 |
+
|
| 67 |
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
| 68 |
+
this License, each Contributor hereby grants to You a perpetual,
|
| 69 |
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
| 70 |
+
copyright license to reproduce, prepare Derivative Works of,
|
| 71 |
+
publicly display, publicly perform, sublicense, and distribute the
|
| 72 |
+
Work and such Derivative Works in Source or Object form.
|
| 73 |
+
|
| 74 |
+
3. Grant of Patent License. Subject to the terms and conditions of
|
| 75 |
+
this License, each Contributor hereby grants to You a perpetual,
|
| 76 |
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
| 77 |
+
(except as stated in this section) patent license to make, have made,
|
| 78 |
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
| 79 |
+
where such license applies only to those patent claims licensable
|
| 80 |
+
by such Contributor that are necessarily infringed by their
|
| 81 |
+
Contribution(s) alone or by combination of their Contribution(s)
|
| 82 |
+
with the Work to which such Contribution(s) was submitted. If You
|
| 83 |
+
institute patent litigation against any entity (including a
|
| 84 |
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
| 85 |
+
or a Contribution incorporated within the Work constitutes direct
|
| 86 |
+
or contributory patent infringement, then any patent licenses
|
| 87 |
+
granted to You under this License for that Work shall terminate
|
| 88 |
+
as of the date such litigation is filed.
|
| 89 |
+
|
| 90 |
+
4. Redistribution. You may reproduce and distribute copies of the
|
| 91 |
+
Work or Derivative Works thereof in any medium, with or without
|
| 92 |
+
modifications, and in Source or Object form, provided that You
|
| 93 |
+
meet the following conditions:
|
| 94 |
+
|
| 95 |
+
(a) You must give any other recipients of the Work or
|
| 96 |
+
Derivative Works a copy of this License; and
|
| 97 |
+
|
| 98 |
+
(b) You must cause any modified files to carry prominent notices
|
| 99 |
+
stating that You changed the files; and
|
| 100 |
+
|
| 101 |
+
(c) You must retain, in the Source form of any Derivative Works
|
| 102 |
+
that You distribute, all copyright, patent, trademark, and
|
| 103 |
+
attribution notices from the Source form of the Work,
|
| 104 |
+
excluding those notices that do not pertain to any part of
|
| 105 |
+
the Derivative Works; and
|
| 106 |
+
|
| 107 |
+
(d) If the Work includes a "NOTICE" text file as part of its
|
| 108 |
+
distribution, then any Derivative Works that You distribute must
|
| 109 |
+
include a readable copy of the attribution notices contained
|
| 110 |
+
within such NOTICE file, excluding those notices that do not
|
| 111 |
+
pertain to any part of the Derivative Works, in at least one
|
| 112 |
+
of the following places: within a NOTICE text file distributed
|
| 113 |
+
as part of the Derivative Works; within the Source form or
|
| 114 |
+
documentation, if provided along with the Derivative Works; or,
|
| 115 |
+
within a display generated by the Derivative Works, if and
|
| 116 |
+
wherever such third-party notices normally appear. The contents
|
| 117 |
+
of the NOTICE file are for informational purposes only and
|
| 118 |
+
do not modify the License. You may add Your own attribution
|
| 119 |
+
notices within Derivative Works that You distribute, alongside
|
| 120 |
+
or as an addendum to the NOTICE text from the Work, provided
|
| 121 |
+
that such additional attribution notices cannot be construed
|
| 122 |
+
as modifying the License.
|
| 123 |
+
|
| 124 |
+
You may add Your own copyright statement to Your modifications and
|
| 125 |
+
may provide additional or different license terms and conditions
|
| 126 |
+
for use, reproduction, or distribution of Your modifications, or
|
| 127 |
+
for any such Derivative Works as a whole, provided Your use,
|
| 128 |
+
reproduction, and distribution of the Work otherwise complies with
|
| 129 |
+
the conditions stated in this License.
|
| 130 |
+
|
| 131 |
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
| 132 |
+
any Contribution intentionally submitted for inclusion in the Work
|
| 133 |
+
by You to the Licensor shall be under the terms and conditions of
|
| 134 |
+
this License, without any additional terms or conditions.
|
| 135 |
+
Notwithstanding the above, nothing herein shall supersede or modify
|
| 136 |
+
the terms of any separate license agreement you may have executed
|
| 137 |
+
with Licensor regarding such Contributions.
|
| 138 |
+
|
| 139 |
+
6. Trademarks. This License does not grant permission to use the trade
|
| 140 |
+
names, trademarks, service marks, or product names of the Licensor,
|
| 141 |
+
except as required for reasonable and customary use in describing the
|
| 142 |
+
origin of the Work and reproducing the content of the NOTICE file.
|
| 143 |
+
|
| 144 |
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
| 145 |
+
agreed to in writing, Licensor provides the Work (and each
|
| 146 |
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
| 147 |
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
| 148 |
+
implied, including, without limitation, any warranties or conditions
|
| 149 |
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
| 150 |
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
| 151 |
+
appropriateness of using or redistributing the Work and assume any
|
| 152 |
+
risks associated with Your exercise of permissions under this License.
|
| 153 |
+
|
| 154 |
+
8. Limitation of Liability. In no event and under no legal theory,
|
| 155 |
+
whether in tort (including negligence), contract, or otherwise,
|
| 156 |
+
unless required by applicable law (such as deliberate and grossly
|
| 157 |
+
negligent acts) or agreed to in writing, shall any Contributor be
|
| 158 |
+
liable to You for damages, including any direct, indirect, special,
|
| 159 |
+
incidental, or consequential damages of any character arising as a
|
| 160 |
+
result of this License or out of the use or inability to use the
|
| 161 |
+
Work (including but not limited to damages for loss of goodwill,
|
| 162 |
+
work stoppage, computer failure or malfunction, or any and all
|
| 163 |
+
other commercial damages or losses), even if such Contributor
|
| 164 |
+
has been advised of the possibility of such damages.
|
| 165 |
+
|
| 166 |
+
9. Accepting Warranty or Additional Liability. While redistributing
|
| 167 |
+
the Work or Derivative Works thereof, You may choose to offer,
|
| 168 |
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
| 169 |
+
or other liability obligations and/or rights consistent with this
|
| 170 |
+
License. However, in accepting such obligations, You may act only
|
| 171 |
+
on Your own behalf and on Your sole responsibility, not on behalf
|
| 172 |
+
of any other Contributor, and only if You agree to indemnify,
|
| 173 |
+
defend, and hold each Contributor harmless for any liability
|
| 174 |
+
incurred by, or claims asserted against, such Contributor by reason
|
| 175 |
+
of your accepting any such warranty or additional liability.
|
| 176 |
+
|
| 177 |
+
END OF TERMS AND CONDITIONS
|
| 178 |
+
|
| 179 |
+
APPENDIX: How to apply the Apache License to your work.
|
| 180 |
+
|
| 181 |
+
To apply the Apache License to your work, attach the following
|
| 182 |
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
| 183 |
+
replaced with your own identifying information. (Don't include
|
| 184 |
+
the brackets!) The text should be enclosed in the appropriate
|
| 185 |
+
comment syntax for the file format. We also recommend that a
|
| 186 |
+
file or class name and description of purpose be included on the
|
| 187 |
+
same "printed page" as the copyright notice for easier
|
| 188 |
+
identification within third-party archives.
|
| 189 |
+
|
| 190 |
+
Copyright [yyyy] [name of copyright owner]
|
| 191 |
+
|
| 192 |
+
Licensed under the Apache License, Version 2.0 (the "License");
|
| 193 |
+
you may not use this file except in compliance with the License.
|
| 194 |
+
You may obtain a copy of the License at
|
| 195 |
+
|
| 196 |
+
http://www.apache.org/licenses/LICENSE-2.0
|
| 197 |
+
|
| 198 |
+
Unless required by applicable law or agreed to in writing, software
|
| 199 |
+
distributed under the License is distributed on an "AS IS" BASIS,
|
| 200 |
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| 201 |
+
See the License for the specific language governing permissions and
|
| 202 |
+
limitations under the License.
|
README.md
CHANGED
|
@@ -1,3 +1,219 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
+
base_model: meta-models/Muse-Glimmer-30B
|
| 4 |
+
pipeline_tag: image-text-to-text
|
| 5 |
+
tags:
|
| 6 |
+
- gguf
|
| 7 |
---
|
| 8 |
+
# Muse Glimmer Model Card
|
| 9 |
+
|
| 10 |
+
**Authors:** Meta Superintelligence Lab
|
| 11 |
+
**Model Release Date:** August 2026
|
| 12 |
+
**License:** [Apache 2.0](https://www.apache.org/licenses/LICENSE-2.0)
|
| 13 |
+
|
| 14 |
+
Muse Glimmer is a 30-billion-parameter causal language model with a dedicated perception encoder, distilled from Muse Spark and purpose-built for autonomous agentic tasks on consumer hardware. The model integrates multi-step reasoning, reliable tool use, multimodal understanding, and failure recovery into a single model that runs locally without requiring cloud infrastructure or network access.
|
| 15 |
+
|
| 16 |
+
Building effective agents requires key capabilities working together to achieve the user’s goals. Muse Glimmer is trained and evaluated on these capabilities:
|
| 17 |
+
|
| 18 |
+
* **End-to-end Agentic Task Completion.** Muse Glimmer achieves strong success rates on full-task benchmarks including DeepSearch QA, MCP-Atlas, 𝛕3\-Bench and SWE-Bench, which measure its ability to work within scaffolds, write and debug code, and resolve multi-turn requests from start to finish.
|
| 19 |
+
* **Reliable Tool Use.** The model handles a wide range of function calls, invoking tools with precise schemas throughout extended workflows.
|
| 20 |
+
* **Multi-Step Reasoning.** Muse Glimmer chains reasoning over long horizons, sustaining coherent plans across complex, extended workflows.
|
| 21 |
+
* **Failure Recovery.** When a tool call fails or returns an unexpected result, the model diagnoses the error and retries rather than halt.
|
| 22 |
+
* **Multimodal Input and Reasoning.** Through a dedicated perception encoder, the model accepts interleaved text and images. This enables agents to interpret screenshots, charts, and documents alongside conversation.
|
| 23 |
+
* **Scaffold Compatibility.** Muse Glimmer works across OpenClaw, Hermes Agent, and other agentic orchestration patterns.
|
| 24 |
+
* **Controllable Effort.** The model supports different reasoning strengths to select the right balance between quality and speed.
|
| 25 |
+
* **Multilingual.** Muse Glimmer is trained on data from more than 100 languages.
|
| 26 |
+
|
| 27 |
+
## Muse Glimmer-30B Model Overview
|
| 28 |
+
|
| 29 |
+
| Model Architecture | Dense Causal Transformer with Perception Encoder |
|
| 30 |
+
| :---- | :---- |
|
| 31 |
+
| **Total Parameters** | \~29.6B |
|
| 32 |
+
| **Language Model** | |
|
| 33 |
+
| **Architecture** | Dense Causal Transformer |
|
| 34 |
+
| **Number of Parameters** | 29.6B (including vision encoder) |
|
| 35 |
+
| **Hidden dimension** | 6656 |
|
| 36 |
+
| **Layers** | 52 |
|
| 37 |
+
| **Attention pattern** | \[Local, Local, Local, Global\] repeating |
|
| 38 |
+
| **Sliding window size** | 2048 |
|
| 39 |
+
| **Gated attention** | Yes |
|
| 40 |
+
| **Attention heads (Q / KV)** | 32 / 2 (GQA ratio 16:1) |
|
| 41 |
+
| **Head dimension** | 128 |
|
| 42 |
+
| **FFN type** | SwiGLU |
|
| 43 |
+
| **FFN intermediate dimension** | 19,968 |
|
| 44 |
+
| **Position encoding** | RoPE (θ \= 500,000), local layers only |
|
| 45 |
+
| **Perception [encoder](https://arxiv.org/abs/2504.13181)** | \~1.8B param ViT-G/14, 50 layers, width 1536, patch size 14 |
|
| 46 |
+
| **Vocabulary size** | 202,048 |
|
| 47 |
+
| **Tokenizer** | 200,000 BPE tokens \+ 2,048 special tokens |
|
| 48 |
+
| **Max visual tokens per image** | 4,096 |
|
| 49 |
+
| **Context length** | 131,072+ |
|
| 50 |
+
| **Supported modalities** | Input: text \+ image, Output: text |
|
| 51 |
+
| **Training Data** | Multimodal content sourced from publicly available data, data provided by third parties and information from Meta's products and services, curated and enriched by external vendor networks and Meta personnel. |
|
| 52 |
+
| **Knowledge cutoff** | January 4, 2026 |
|
| 53 |
+
|
| 54 |
+
## Optimized for Local Deployments
|
| 55 |
+
|
| 56 |
+
Muse Glimmer was optimized for local deployment, and designed to run at practical speeds on consumer hardware without sacrificing quality.
|
| 57 |
+
|
| 58 |
+
**Fitting the Model on Your Device.** We use quantization techniques to compress the model's weights to approximately 4-bit precision, shrinking the language model to under 20 GB. This leaves enough headroom for the model's KV cache, the perception encoder for image understanding, and the speculative decoding drafter to run simultaneously within a 24 GB or 32 GB envelope. Critically, we validated that this compression introduces minimum to no degradation on agentic tasks.
|
| 59 |
+
|
| 60 |
+
| | Full Precision | K-Quant-Dynamic | K-Quant-17GB |
|
| 61 |
+
| :---- | :---: | :---: | :---: |
|
| 62 |
+
| % Degradation\* | \- | 0.2% | 1.0% |
|
| 63 |
+
| Target Hardware | 64GB VRAM | 32GB VRAM | 24GB VRAM |
|
| 64 |
+
|
| 65 |
+
\* Degradation measured using an average on accuracy metrics across 15 common benchmarks
|
| 66 |
+
|
| 67 |
+
**Faster Generation Through Speculative Decoding** Muse Glimmer ships with a lightweight "drafter" model based on [DFlash](https://arxiv.org/abs/2602.06036), a small companion network that proposes entire blocks of tokens at once. The DFlash block-diffusion model predicts entire blocks of 16 tokens in a single forward pass. The main model then verifies these proposals in parallel, accepting correct tokens and correcting wrong ones. This technique lets Muse Glimmer generate text significantly faster than standard token-by-token generation while producing identical output quality. We provide quantized drafter versions to incur a smaller memory overhead in the release.
|
| 68 |
+
|
| 69 |
+
| Component | Setting |
|
| 70 |
+
| :---- | :---- |
|
| 71 |
+
| Draft layers | 5 |
|
| 72 |
+
| Block size | 16 |
|
| 73 |
+
| Attention | Sliding-window, 2048, all layers |
|
| 74 |
+
| Attention heads | 32 query / 8 KV (GQA) |
|
| 75 |
+
| Sequence length | 131,072 |
|
| 76 |
+
| Hidden-feature layers | 5, uniform over target: {1, 13, 25, 37, 49} of 52 |
|
| 77 |
+
|
| 78 |
+
We measure the speed of our K-Quant-17GB model alongside the quantized DFlash drafter on MacBook M4-Max, M5-Max and on an Nvidia RTX-5090. The model is fast enough for fluid conversation and real-time agent interaction, all running entirely on your device.
|
| 79 |
+
|
| 80 |
+
| GPU | Baseline No-speculation (tok/s) | Avg\* with DFlash Speculation (tok/s) | Speedup |
|
| 81 |
+
| :---- | :---: | :---: | :---: |
|
| 82 |
+
| **Nvidia RTX 5090** | 74.9 | 233.4 | 3.1x |
|
| 83 |
+
| **Apple M4 Max** | 23.7 | 37.8 | 1.5x |
|
| 84 |
+
| **Apple M5 Max** | 26.6 | 50.2 | 1.8x |
|
| 85 |
+
|
| 86 |
+
\* Average across a diverse prompt set. Measurements done with batch size 1 and greedy decoding. M4/M5 measurements were done using ExecuTorch, and RTX using llama.cpp.
|
| 87 |
+
|
| 88 |
+
## Benchmarks
|
| 89 |
+
|
| 90 |
+
We evaluated Muse Glimmer across a broad range of benchmarks to assess the diverse capabilities required for effective autonomous agent behavior. Compared with Gemma4-31B and Qwen3.6-27B, Muse Glimmer performs strongly for its size class on several widely used LLM benchmarks.
|
| 91 |
+
|
| 92 |
+
| Category | Benchmark | Muse Glimmer-30BHigh Reasoning | Gemma4-31B Thinking Mode | Qwen3.6-27B Thinking Mode |
|
| 93 |
+
| :---- | :---- | :---: | :---: | :---: |
|
| 94 |
+
| *General Agentic* | MCP Atlas (Public) | **75.5** | 54.2 | 62.5 |
|
| 95 |
+
| | DeepSearch QA | **74.6** | 61.7 | 71.1 |
|
| 96 |
+
| | 𝛕3\-Banking | **23.5** | 15.1 | 16.7 |
|
| 97 |
+
| | WildClawBench | **47.6** | 37.6 | 43.2 |
|
| 98 |
+
| | GDPVal-AA v2 | 953 | 811 | **1141** |
|
| 99 |
+
| | Gaia2 | **43.3** | 36.4 | 40.0 |
|
| 100 |
+
| | SkillsBench (with skills) | 44.3 | 32.4 | **46.6** |
|
| 101 |
+
| | OSWorld-Verified | 65.9 | 58.5 | **75.6** |
|
| 102 |
+
| *Agentic Coding* | SWE-Bench Pro | **51.2** | 36.9 | 50.2 |
|
| 103 |
+
| | SWE-Bench Verified | 76.0 | 66.6 | **77.2** |
|
| 104 |
+
| | TerminalBench 2.1 (with terminus2) | 51.7 | 43.4 | **60.7** |
|
| 105 |
+
| | SciCode | **43.6** | 43.4 | 39.8 |
|
| 106 |
+
| *Multimodal* | Charxiv Reasoning | **78.8** | 77.7 | 78.4 |
|
| 107 |
+
| | ScreenSpot Pro | 75.4 | 75.9 | **76.1** |
|
| 108 |
+
| | OmniDocBench v1.5 | 75.8 | 72.5 | **77.8** |
|
| 109 |
+
| | MMMU Pro | 74 | 73 | **75** |
|
| 110 |
+
| | | | | |
|
| 111 |
+
| *Safety* | CI Memories | Violation (↓): 26.4 <br> Coverage: 64.8 | Violation (↓): **12.1** <br>Coverage: 53.0 | Violation (↓): 53.4 <br>Coverage: **66.9** |
|
| 112 |
+
| | Siren AgentDojo | Attack Success Rate (↓): 28.4 <br>Utility: **94.2** | Attack Success Rate (↓): **25.6** <br>Utility: 90.8 | Attack Success Rate (↓): 40.3 <br>Utility: 92.7 |
|
| 113 |
+
| | | | | |
|
| 114 |
+
| *General Capabilities and Reasoning* | IFBench | **77.0** | 76.0 | 70.8 |
|
| 115 |
+
| | AIME 2026 | **94.7** | 89.2 | 94.1 |
|
| 116 |
+
| | GPQA Diamond (AA) | 83.5 | **85.7** | 84.2 |
|
| 117 |
+
| | HLE Text (AA) | 22.0 | **23.6** | 23.1 |
|
| 118 |
+
| | AA-LCR | **80.0** | 68.3 | 73.3 |
|
| 119 |
+
| | Beam128K | **65.1** | 58.2 | 63.0 |
|
| 120 |
+
|
| 121 |
+
For more detail about our evaluations, see our [report](https://research.meta.ai/static/muse-glimmer-methodology).
|
| 122 |
+
|
| 123 |
+
## Best Practices
|
| 124 |
+
|
| 125 |
+
To achieve best performance, we recommend the following settings:
|
| 126 |
+
|
| 127 |
+
**Sampling Parameters:** Use the following configuration:
|
| 128 |
+
|
| 129 |
+
* temperature \= 1.0
|
| 130 |
+
* top\_p \= 0.95
|
| 131 |
+
* top\_k \= 64
|
| 132 |
+
|
| 133 |
+
**Reasoning Strength:** Reasoning strength controls how much the model thinks before responding to the prompt. Reasoning strength can be defined as part of the system prompt as `Reasoning strength: <value>`. Muse Glimmer supports the following levels: low / medium / high / xhigh. Use high or xhigh for complex problem solving, coding, and agentic tasks.
|
| 134 |
+
|
| 135 |
+
## Trust and Safety
|
| 136 |
+
|
| 137 |
+
As we would for other large language models, we strongly recommend that Muse Glimmer be deployed not as an endpoint in itself but as part of an overall AI system with additional guardrails as required or appropriate for the use cases and context of its deployment. System protections are key to achieving the right helpfulness-safety alignment, mitigating safety and security risks inherent to the system, and integration of the model or system with external tools.
|
| 138 |
+
|
| 139 |
+
**Evaluations**
|
| 140 |
+
We evaluated Muse Glimmer for common use cases as well as specific capabilities. Common use cases evaluations measure safety risks of systems for most commonly built applications including chat bot and visual, QA. We built dedicated, adversarial evaluation datasets and evaluated systems composed of Muse Glimmer models and those safeguards to filter input prompt and output response. It is important to evaluate applications in context, and we recommend building dedicated evaluation datasets for your use case.
|
| 141 |
+
|
| 142 |
+
Capability evaluations measure vulnerabilities of models inherent to specific capabilities, for which were crafted dedicated benchmarks. We also used industry standard safety and capability benchmarks where appropriate.
|
| 143 |
+
|
| 144 |
+
Muse Glimmer was primarily evaluated across four risk axes:
|
| 145 |
+
|
| 146 |
+
1. **Content safety** — Standard alignment for refusal of harmful requests and calibrated responses to borderline prompts.
|
| 147 |
+
2. **Agentic risk** — Policies for irreversible-action confirmation, data minimization, scaffold boundary respect, and indirect prompt-injection resistance.
|
| 148 |
+
3. **Privacy (Appropriate Information Flows)** — Respect for contextual integrity of information when interacting with third parties on an individual's behalf, inspired by CI theory.
|
| 149 |
+
4. **Preparedness** — Chemical & biological, cyber, and loss-of-control risks.
|
| 150 |
+
|
| 151 |
+
### Preparedness
|
| 152 |
+
|
| 153 |
+
Muse Glimmer does not fall under the definition of “Frontier AI” in Meta’s Advanced AI Scaling Framework (AAISF), since it is generally less capable than Muse Spark. However, as a matter of prudence, our Preparedness Team assessed Muse Glimmer’s risk profile and determined that it would receive the following designations:
|
| 154 |
+
|
| 155 |
+
* Chem/Bio: Moderate or lower risk;
|
| 156 |
+
* Cyber: Moderate or lower risk (inferred);
|
| 157 |
+
* Loss of Control: Moderate or lower risk (inferred).
|
| 158 |
+
|
| 159 |
+
Cyber and Loss of Control risk levels are inferred to be Moderate or lower since Muse Glimmer is broadly weaker than Muse Spark 1.0, which received the same risk designation in these domains.
|
| 160 |
+
|
| 161 |
+
In the chem/bio domain, we evaluated Muse Glimmer on a range of benchmarks for scientific knowledge and wet-lab debugging (most performant in Muse Glimmer’s size class are bolded; second most performant is underlined — Kimi K3 is also included for context):
|
| 162 |
+
|
| 163 |
+
| Benchmark | Muse Glimmer-30B | Gemma4-31B | Qwen3.6-27B | *Kimi K3* |
|
| 164 |
+
| :---- | :---- | :---- | :---- | :---- |
|
| 165 |
+
| MBCT | 41.5% | **50.6%** | 45.9% | *58.9%* |
|
| 166 |
+
| HPCT | 52.3% | **54.0%** | 48.7% | *59.6%* |
|
| 167 |
+
| VCT | 37.0% | **43.5%** | 33.7% | *48.0%* |
|
| 168 |
+
| WMDP (Bio) | **86.5%** | 85.9% | 84.8% | *89.1%* |
|
| 169 |
+
| WMDP (Chem) | 75.2% | **80.5%** | 74.8% | *84.2%* |
|
| 170 |
+
| Lab Bench (ProtocolQA) | **80.2%** | 75.8% | 69.1% | *81.9%* |
|
| 171 |
+
|
| 172 |
+
We find that Muse Glimmer’s abilities are approximately in line with other models in its size class, while showing strictly lower capabilities than larger open-weight models, suggesting that it is unlikely to materially enable new threats upon release. We also evaluated it on our suite that focuses on the unique set of bottlenecks that would otherwise deter or limit the success of real-world threat actors; here, our evaluation rated its risk rating at moderate or lower as well. See the [Muse Spark Safety & Preparedness Report](https://ai.meta.com/static-resource/muse-spark-safety-and-preparedness-report/) for a detailed description of the above evaluations and our methodology.
|
| 173 |
+
|
| 174 |
+
### Train-Time Mitigations
|
| 175 |
+
|
| 176 |
+
1. **Safety SFT:** Curated examples demonstrating correct safety behavior, including agentic safety scenarios covering tool-use boundaries, prompt injection resistance, and permission handling.
|
| 177 |
+
2. **Safety RL:** Reinforcement learning with safety-specific reward signals that penalize policy violations while rewarding helpful responses to legitimate requests.
|
| 178 |
+
3. **Appropriate information flows:** Principles of data sensitivity recognition, minimization, and local-first execution embedded directly into model weights through dedicated synthetic training data.
|
| 179 |
+
|
| 180 |
+
## Intended Use
|
| 181 |
+
|
| 182 |
+
**Intended Use Cases:** Muse Glimmer is intended for commercial and research use. The model is optimized for autonomous agentic tasks including:
|
| 183 |
+
|
| 184 |
+
* **Local AI agents:** Multi-step planning, sequential tool invocation, failure recovery, and long-horizon task execution running entirely on consumer devices.
|
| 185 |
+
* **Coding agents:** Writing, debugging, and resolving real-world software engineering tasks (e.g., SWE-Bench style workflows).
|
| 186 |
+
* **Tool use and function calling:** Reliable schema-based tool invocation across extended, multi-turn workflows.
|
| 187 |
+
* **Multimodal reasoning:** Interpreting screenshots, charts, documents, and images alongside conversation for agentic and information-rich environments.
|
| 188 |
+
* **Synthetic data generation:** Generating high-quality training data for downstream model development.
|
| 189 |
+
* **LLM-as-a-judge evaluation:** Serving as an evaluator for other models' outputs.
|
| 190 |
+
|
| 191 |
+
**Out-of-scope:** Use in any manner that violates applicable laws or regulations (including trade compliance laws). Use in any other way that is prohibited by the Apache 2.0 License terms. Audio input/output is not supported.
|
| 192 |
+
|
| 193 |
+
## Considerations and Limitations
|
| 194 |
+
|
| 195 |
+
Muse Glimmer is a technology that carries known and unknown risks. Testing conducted to date has not, and could not, cover all scenarios.
|
| 196 |
+
|
| 197 |
+
**Limitations:**
|
| 198 |
+
|
| 199 |
+
* The model may produce inaccurate, biased, or objectionable responses to user prompts.
|
| 200 |
+
* While optimized for agentic tasks, the model may still make errors in multi-step reasoning, particularly in novel scenarios not well represented in training data.
|
| 201 |
+
* The model is not explicitly optimized for video; video input is processed as individual frames.
|
| 202 |
+
* The model has not been evaluated on all languages contained in the pre-training data. Performance may degrade on languages outside the strongly supported set.
|
| 203 |
+
* Quantized inference may show minor quality differences in edge cases compared to full-precision.
|
| 204 |
+
* The model is not intended to be downloaded by or used by individuals under the age of 18\. Where deployed within systems that may be used by individuals under the age of 18, deployers are responsible for ensuring that any risks associated with such use by individuals under the age of 18 has been fully assessed and appropriately mitigated, and complies with all applicable laws.
|
| 205 |
+
|
| 206 |
+
**Responsible Use:** Developers should perform their own safety testing and tuning tailored to their specific applications and proposed languages. Our Usage Policy can be found here \[[link](https://huggingface.co/meta-models/Muse-Glimmer-30B/blob/main/USAGE_POLICY.md)\]. We recommend implementing additional guardrails (such as human-in-the-loop confirmation for irreversible actions) when deploying the model in agentic contexts where it can take real-world actions.
|
| 207 |
+
|
| 208 |
+
## Released Artifacts
|
| 209 |
+
|
| 210 |
+
All artifacts are released under Apache 2.0:
|
| 211 |
+
|
| 212 |
+
| Artifact | Description |
|
| 213 |
+
| :---- | :---- |
|
| 214 |
+
| Full-precision weights (BF16) | Complete model weights for fine-tuning and research |
|
| 215 |
+
| 4-bit quantized weights (2 variants) | Optimized for inference on 24/32 GB consumer hardware |
|
| 216 |
+
| DFlash drafter head | Speculative decoding companion for faster generation |
|
| 217 |
+
| Perception encoder | Frozen ViT-G/14 vision encoder (\~1.8B params) |
|
| 218 |
+
|
| 219 |
+
**Where to send questions or comments about the model:** Please provide any feedback, comments or bug reports on the model through the Hugging Face page at [https://huggingface.co/meta-models/](https://huggingface.co/meta-models/). For more technical information about generation parameters and recipes for how to use Muse Glimmer in applications, please see the developer documentation.
|
USAGE_POLICY.md
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Muse Glimmer Usage Policy
|
| 2 |
+
|
| 3 |
+
Meta is committed to promoting safe and fair use of its tools and features, including Muse Glimmer. This Usage Policy (“Policy”) applies to your access or use of Muse Glimmer. The most recent copy of this policy can be found at: [https://huggingface.co/meta-models/Muse-Glimmer-30B/blob/main/USAGE\_POLICY](https://huggingface.co/meta-models/Muse-Glimmer-30B/blob/main/USAGE_POLICY.md)
|
| 4 |
+
|
| 5 |
+
## Prohibited Uses
|
| 6 |
+
|
| 7 |
+
We want everyone to use Muse Glimmer safely and responsibly. Muse Glimmer is not intended for individuals under the age of 18\.
|
| 8 |
+
|
| 9 |
+
You should not use, or allow others to use, Muse Glimmer to:
|
| 10 |
+
|
| 11 |
+
1. **Violate the law or others' rights, including to:**
|
| 12 |
+
1. Engage in, promote, generate, contribute to, encourage, plan, incite, or further illegal or unlawful activity or content, such as:
|
| 13 |
+
1. Violence or terrorism
|
| 14 |
+
2. Exploitation or harm to children, including the solicitation, creation, acquisition, or dissemination of child exploitative content or failure to report Child Sexual Abuse Material
|
| 15 |
+
3. Human trafficking, exploitation, and sexual violence
|
| 16 |
+
4. The illegal distribution of information or materials to minors, including obscene materials, or failure to employ legally required age-gating in connection with such information or materials
|
| 17 |
+
5. Sexual solicitation
|
| 18 |
+
6. Any other criminal activity
|
| 19 |
+
2. Engage in, promote, incite, or facilitate the harassment, abuse, threatening, or bullying of individuals or groups of individuals
|
| 20 |
+
3. Engage in, promote, incite, or facilitate discrimination or other unlawful or harmful conduct in the provision of employment, employment benefits, credit, housing, other economic benefits, or other essential goods and services
|
| 21 |
+
4. Engage in the unauthorized or unlicensed practice of any profession including, but not limited to, financial, legal, medical/health, or related professional practices
|
| 22 |
+
5. Collect, process, disclose, generate, or infer private or sensitive information about individuals, including information about individuals' identity, health, or demographic information, unless you have obtained the right to do so in accordance with applicable law
|
| 23 |
+
6. Engage in or facilitate any action or generate any content that infringes, misappropriates, or otherwise violates any third-party rights, including the outputs or results of any products or services using Muse Glimmer
|
| 24 |
+
7. Create, generate, or facilitate the creation of malicious code, malware, computer viruses or do anything else that could disable, overburden, interfere with or impair the proper working, integrity, operation or appearance of a website or computer system
|
| 25 |
+
8. Engage in any action, or facilitate any action, to intentionally circumvent or remove usage restrictions or other safety measures, or to enable functionality disabled by Meta
|
| 26 |
+
2. **Engage in, promote, incite, facilitate, or assist in the planning or development of activities that present a risk of death or bodily harm to individuals, including use of Muse Glimmer related to the following:**
|
| 27 |
+
1. Military, warfare, nuclear industries or applications, espionage, use for materials or activities that are subject to the International Traffic Arms Regulations (ITAR) maintained by the United States Department of State or to the U.S. Biological Weapons Anti-Terrorism Act of 1989 or the Chemical Weapons Convention Implementation Act of 1997
|
| 28 |
+
2. Guns and illegal weapons (including weapon development)
|
| 29 |
+
3. Illegal drugs and regulated/controlled substances
|
| 30 |
+
4. Operation of critical infrastructure, transportation technologies, or heavy machinery
|
| 31 |
+
5. Self-harm or harm to others, including suicide, cutting, and eating disorders
|
| 32 |
+
6. Any content intended to incite or promote violence, abuse, or any infliction of bodily harm to an individual
|
| 33 |
+
3. **Intentionally deceive or mislead others, including use of Muse Glimmer related to the following:**
|
| 34 |
+
1. Generating, promoting, or furthering fraud or the creation or promotion of disinformation
|
| 35 |
+
2. Generating, promoting, or furthering defamatory content, including the creation of defamatory statements, images, or other content
|
| 36 |
+
3. Generating, promoting, or further distributing spam
|
| 37 |
+
4. Impersonating another individual without consent, authorization, or legal right
|
| 38 |
+
5. Representing that the use of Muse Glimmer or outputs are human generated
|
| 39 |
+
6. Generating or facilitating false online engagement, including fake reviews and other means of fake online engagement
|
| 40 |
+
4. **Fail to appropriately disclose to end users any known dangers of your AI system**
|
| 41 |
+
5. **Interact with third party tools, models, or software designed to generate unlawful content or engage in unlawful or harmful conduct and/or represent that the outputs of such tools, models, or software are associated with Meta or Muse Glimmer**
|
| 42 |
+
|
| 43 |
+
Please report any violation of this Policy, software "bug," or other problems that could lead to a violation of this Policy through one of the following means:
|
| 44 |
+
|
| 45 |
+
* Reporting issues with the model: [https://huggingface.co/meta-models/](https://huggingface.co/meta-models/)
|
| 46 |
+
* Reporting bugs and security concerns: [https://facebook.com/whitehat/info](https://facebook.com/whitehat/info)
|