Spaces:
Configuration error
Configuration error
File size: 3,547 Bytes
8b0c3b9 4f14f18 8b0c3b9 | 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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 | # Unemployeed - Experiments Repository
This is an experimentation repository for `Unemployeed` - a place to play around with code, test new ideas, and prototype features before integrating them into the main project.
## π Repository Structure
```
experiments/
βββ ai-experiments/ # AI/ML related experiments
β βββ hf_models/ # Hugging Face model services for career prep
βββ alt-stacks/ # Alternative tech stack experiments
βββ design-experiments/ # UI/UX and design system experiments
βββ README.md # This file
```
## π§ͺ Experiment Categories
### AI Experiments (`ai-experiments/`)
Experiments related to artificial intelligence, machine learning, and LLM integrations.
**Current Projects:**
- **`hf_models/`**: Career Prep LLM Services - A Hugging Face Spaces-compatible service layer providing:
- Career diagnosis
- Breakthrough analysis
- Personalized roadmap generation
- Resume analysis with ATS scoring
See [ai-experiments/hf_models/README.md](./ai-experiments/hf_models/README.md) for detailed documentation.
### Alt Stacks (`alt-stacks/`)
Experiments with alternative technology stacks, frameworks, or architectures.
### Design Experiments (`design-experiments/`)
UI/UX prototypes, design system components, and visual experiments.
## π Quick Start
### Prerequisites
- Python 3.9+ (for AI experiments)
- Git
- Virtual environment tool (venv, conda, etc.)
### Setting Up an Experiment
1. **Navigate to the experiment directory:**
```bash
cd ai-experiments/hf_models # or your experiment directory
```
2. **Create a virtual environment:**
```bash
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
```
3. **Install dependencies:**
```bash
pip install -r requirements.txt
```
4. **Follow the experiment-specific README** for detailed setup instructions.
## π Adding New Experiments
When creating a new experiment:
1. **Create a new directory** under the appropriate category (or create a new category if needed)
2. **Add a README.md** explaining:
- What the experiment does
- How to set it up
- How to run it
- Key findings or notes
3. **Include a `.gitignore`** if needed (the root `.gitignore` covers most cases)
4. **Document dependencies** in a `requirements.txt` or equivalent
## π― Experiment Guidelines
- **Keep it experimental**: This is a safe space to try new things
- **Document learnings**: Update READMEs with findings and insights
- **Isolate experiments**: Each experiment should be self-contained
- **Clean up**: Remove experiments that are no longer relevant or have been integrated
## π§ Common Commands
### Running Tests
```bash
# From a Python experiment directory
pytest
pytest --cov=. --cov-report=html # With coverage
```
### Managing Dependencies
```bash
# Generate requirements.txt
pip freeze > requirements.txt
# Install from requirements.txt
pip install -r requirements.txt
```
## π Resources
- [AI Experiments - HF Models](./ai-experiments/hf_models/README.md) - Career Prep LLM Services documentation
## π€ Contributing
This is a personal experimentation repository. Feel free to:
- Add new experiments
- Document findings
- Refactor and improve existing experiments
- Remove outdated experiments
## π License
[Add your license here]
---
**Note**: This repository is for experimentation and prototyping. Code here may be incomplete, unstable, or experimental. Use at your own discretion.
|