maxsonderby commited on
Commit
d1af77b
Β·
verified Β·
1 Parent(s): 8882d27

Upload folder using huggingface_hub

Browse files
Files changed (2) hide show
  1. README.md +11 -75
  2. upload_org_card.sh +7 -0
README.md CHANGED
@@ -1,81 +1,17 @@
1
- ---
2
- title: README
3
- emoji: 🐨
4
- colorFrom: blue
5
- colorTo: red
6
- sdk: static
7
- pinned: false
8
- ---
9
- # πŸ” OverseerAI
10
 
11
- ## Mission
12
- OverseerAI is dedicated to advancing open-source AI safety and content moderation tools. We develop state-of-the-art models and datasets for brand safety classification, making content moderation more accessible and efficient for developers and organizations.
13
 
14
- ## 🌟 Our Projects
15
 
16
- ### Datasets
17
- #### [BrandSafe-16k](https://huggingface.co/datasets/OverseerAI/BrandSafe-16k)
18
- A comprehensive dataset for training brand safety classification models, featuring 16 distinct risk categories:
 
19
 
20
- | Category | Description |
21
- |----------|-------------|
22
- | B1-PROFANITY | Explicit language and cursing |
23
- | B2-OFFENSIVE_SLANG | Informal offensive terms |
24
- | B3-COMPETITOR | Competitive brand mentions |
25
- | B4-BRAND_CRITICISM | Negative brand commentary |
26
- | B5-MISLEADING | Deceptive or false information |
27
- | B6-POLITICAL | Political content and discussions |
28
- | B7-RELIGIOUS | Religious themes and references |
29
- | B8-CONTROVERSIAL | Contentious topics |
30
- | B9-ADULT | Adult or mature content |
31
- | B10-VIOLENCE | Violent themes or descriptions |
32
- | B11-SUBSTANCE | Drug and alcohol references |
33
- | B12-HATE | Hate speech and discrimination |
34
- | B13-STEREOTYPE | Stereotypical content |
35
- | B14-BIAS | Biased viewpoints |
36
- | B15-UNPROFESSIONAL | Unprofessional content |
37
- | B16-MANIPULATION | Manipulative content |
38
 
39
- ### Models
 
40
 
41
- #### [vision-1](https://huggingface.co/OverseerAI/vision-1)
42
- Our flagship model for brand safety classification:
43
- - Architecture: Meta Llama 3.1 (15GB)
44
- - Full precision model optimized for high accuracy
45
- - Trained on BrandSafe-16k dataset
46
- - Ideal for production deployments with high-end GPU resources
47
-
48
- #### [vision-1-mini](https://huggingface.co/OverseerAI/vision-1-mini)
49
- A lightweight, optimized version of vision-1:
50
- - Size: 4.58 GiB
51
- - Architecture: Llama 3.1 8B
52
- - Quantization: GGUF V3 (Q4_K)
53
- - Optimized for Apple Silicon
54
- - Fast load time: 3.27s
55
- - Efficient memory usage: 4552.80 MiB CPU / 132.50 MiB Metal
56
- - Perfect for local deployment and smaller compute resources
57
-
58
- ## πŸ’‘ Use Cases
59
- - Content moderation for social media platforms
60
- - Brand safety monitoring for advertising
61
- - User-generated content filtering
62
- - Real-time content classification
63
- - Safe content recommendation systems
64
-
65
- ## 🀝 Contributing
66
- We welcome contributions from the community! Whether it's:
67
- - Improving model accuracy
68
- - Expanding the dataset
69
- - Optimizing for different hardware
70
- - Adding new classification categories
71
- - Reporting issues or suggesting improvements
72
-
73
- ## πŸ“« Contact
74
- - GitHub: [OverseerAI](https://github.com/OverseerAI)
75
- - HuggingFace: [OverseerAI](https://huggingface.co/OverseerAI)
76
-
77
- ## πŸ“œ License
78
- Our models are released under the Llama 3.1 license, and our datasets are available under open-source licenses to promote accessibility and innovation in AI safety.
79
-
80
- ---
81
- *OverseerAI - Making AI Safety Accessible and Efficient*
 
1
+ # Union Street
 
 
 
 
 
 
 
 
2
 
3
+ Union Street is a personal AI lab focused on local models, agent infrastructure, and practical open-source AI systems.
 
4
 
5
+ Current work centers on:
6
 
7
+ - local-first model serving on Apple Silicon and GPU infrastructure
8
+ - agent tooling, evals, and long-context workflows
9
+ - post-training experiments for useful, candid, technically capable assistants
10
+ - small open releases from the Union Street lab
11
 
12
+ Selected projects:
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
 
14
+ - **Helios Rabbit**: an experimental Helios identity LoRA for Qwopus/Qwen3.5 MoE.
15
+ - **UnionBench**: local evals for speed, values, reasoning, and long-horizon coding work.
16
 
17
+ Website: [unionstreet.ai](https://unionstreet.ai)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
upload_org_card.sh ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+
4
+ CARD_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
5
+
6
+ hf repo create UnionStreet/README --type space --space-sdk static --public --exist-ok
7
+ hf upload UnionStreet/README "$CARD_DIR" . --repo-type space